2007-08-13 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
1 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
2
3         * pedump.c (main): changed from mono_init to mono_init_from_assembly
4         so 2.0 types are accessible
5
6
7 2007-08-13  Miguel de Icaza  <miguel@novell.com>
8
9         * domain.c (mono_init_internal): Call mono_assembly_load_friends
10         once we load mscorlib.   Due to the order in which we initialize,
11         the mono_assembly_load_full routine that loads mscorlib did not
12         load friends.   We now load it once we load the
13         mono_defaults.internals_visible_class class. 
14
15         * assembly.c: Expose the mono_load_friend_assemblies method.
16
17 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
18
19         * verify.c: improved the handling of boxing, better
20         type checking for unary ops and conversion. Fix bug
21         regarding managed pointer compatibility checking
22
23 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
24
25         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
26
27         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
28
29 2007-08-09  Raja R Harinath  <rharinath@novell.com>
30
31         * reflection.c (dup_type): Remove.
32         * class.c (dup_type): Remove.
33         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
34         instead of the dodgy 'dup_type'.
35         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
36         handle the case where 'dup_type' needed the second argument.
37
38 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
39
40         * domain.c: Fix a warning.
41
42 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
43
44         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
45         checking that methods with the same fqname are not overridden
46         with a method from an ancestor.
47
48 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
49
50         * threads.c (free_thread_static_data_helper): Avoid a crash if
51         thread->static_data is not yet set.
52
53 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
54
55         * marshal.c: Use correct image when emitting
56         native wrapper for COM calls.
57    
58         Code is contributed under MIT/X11 license.
59
60 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
61
62         * icall-def.h, security.c, security.h :
63           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
64
65 2007-08-07  Martin Baulig  <martin@ximian.com>
66
67         * mono-debug-debugger.h
68         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
69
70         * domain.c (mono_domain_free): Call
71         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
72
73 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
74
75         * verify.c (check_underflow, check_overflow): error message now returns IL offset
76         * verify.c (in_same_block): code should test if either offset is inside the clauses
77         * verify.c (mono_method_verify): push the exception into the eval stack of exception
78         and filter blocks
79
80 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
81
82         * image.c (mono_image_close): Fix a leak.
83
84         * object.c (mono_runtime_invoke_array): Avoid using alloca.
85
86         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
87
88 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
89
90         * domain.c, threads.c, threads-types.h: fix memory retention issue
91         with thread static variables not being cleared on domain unload.
92         Reuse thread static slots after domain unload.
93
94 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
95
96         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
97         nullable type.
98
99         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
100         now done in mono_runtime_invoke_array.
101
102         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
103         receiver is a nullable type.
104
105         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
106         generic parameter.
107
108 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
109
110         * marshal.c: Implement COM Objects as return type for 
111         managed->unmanaged calls. Added Release calls for COM Object
112         out/return values in managed->unmanaged calls.
113
114         Code is contributed under MIT/X11 license.
115
116 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
117
118         * threads.h, threads-type.h: move the hazard pointer declarations
119         to the private header.
120
121 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
122
123         * file-io.c, appdomain.c: memory leak fixes.
124
125 2007-08-02  Dick Porter  <dick@ximian.com>
126
127         * socket-io.c
128         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
129         SO_REUSEADDR setting into io-layer/sockets.c.
130
131 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
132
133         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
134         from Object when called on a generic parameter. Fixes #82211.
135
136 2007-08-01  Dick Porter  <dick@ximian.com>
137
138         * file-io.c (convert_share): Test FileShare values bit-by-bit.
139         Fixes bug 79250 yet again.
140
141 2007-07-30  Martin Baulig  <martin@ximian.com>
142
143         Merged the `debugger-dublin' branch.
144
145         * mono-debug.h
146         (MonoDebugDataTable): New typedef.
147         (MonoDebugMethodAddressList): New typedef.
148         (MonoDebugWrapperData): Removed.
149         (MonoDebugSymbolTable): Removed `current_data_table',
150         `current_data_table_size', `current_data_table_offset'.
151         (MonoDebugDataItemType): Moved into mono-debug.c.
152         (MonoDebugMethodJitInfo): Remove `address'.
153         (mono_debug_data_table): New global variable.
154         (mono_debug_lookup_method_addresses): New public function.
155         (mono_debug_find_method): Take a `MonoMethod *', not a
156         `MonoDebugMethodInfo *'.
157
158         * mono-debug.c: Drop support for the old symbol tables.
159
160 2007-06-28  Martin Baulig  <martin@ximian.com>
161
162         * mono-debug.c (mono_debug_debugger_version): New public variable.
163
164 2007-07-31  William Holmes  <billholmes54@gmail.com>
165
166         * metadata.c Changed mono_type_create_from_typespec to not insert
167           the type into the hash map until after
168           do_mono_metadata_parse_type has completed.
169         Fixes Bug #82194
170         Code is contributed under MIT/X11 license.
171
172 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
173
174         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
175         generic parameter. Fixes #82211.
176
177 2007-07-27  Jb Evain  <jbevain@novell.com>
178
179         * pedump.c (dump_metadata, dump_metadata_header): dump
180         versions contained in the metadata header.
181
182 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
183
184         * threads.c: register small_id_table with the GC.
185
186 2007-07-27  Mark Probst  <mark.probst@gmail.com>
187
188         * threads.c, threads.h, class-internals.h, object-internals.h:
189         Hazard pointers, to be used by lock-free parallel algorithms.
190
191 2007-07-26  Dick Porter  <dick@ximian.com>
192
193         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
194         routine on non-windows platforms, as I've not managed to think of
195         a non-kludgy way of doing this.  Finishes off bug 78739.
196
197 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
198
199         * object.c: properly setup interface_bitmap in proxy vtables.
200
201 2007-07-25  Marek Habersack  <mhabersack@novell.com>
202
203         * appdomain.c (get_shadow_assembly_location): do not use TickCount
204         to create unique shadow copy target directories, use the domain's
205         serial number instead. Each domain gets a unique target directory
206         that way.
207
208         * domain.c (mono_domain_create): added code to increment domain
209         shadow copy serial number and cache the value in the current
210         domain structure.
211
212         * domain-internals.h (struct _MonoDomain): added a new field -
213         shadow_serial to hold the serial number used in generation of
214         shadow-copy directories. This is to make sure that the directory
215         name is unique for each and every domain created. We avoid a race
216         condition with overriding assemblies already in use by other app
217         domains.
218
219 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
220
221         * class.c (mono_bounded_array_class_get): fixed memory leak when 
222         binding generic parameters.
223
224 2007-07-24  Raja R Harinath  <rharinath@novell.com>
225
226         * metadata.c (do_mono_metadata_parse_generic_class): Use
227         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
228         error.
229
230 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
231
232         * loader.c, class-internals.h, reflection.c: removed the per-method
233         generics hashtable: we use the global one through the call of
234         mono_class_inflate_generic_method ().
235
236 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
237
238         * class.c, metadata.c, class-internals.h: introduce yet another
239         generics global cache for inflated methods (fixes 98% of the perf
240         issue in bug #81806).
241
242 2007-07-23  Raja R Harinath  <rharinath@novell.com>
243
244         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
245         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
246         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
247         return a MonoGenericInst containing (a copy) of those types.
248         (mono_metadata_inflate_generic_inst): Update to changes.
249         (mono_metadata_parse_generic_inst): Likewise.
250         (mono_get_shared_generic_inst): Likewise.
251         * reflection.c (mono_class_bind_generic_parameters): Likewise.
252         (mono_reflection_bind_generic_method_parameters): Likewise.
253         * metadata-internals.h: Likewise.
254         * icall.c (free_generic_context): Kill.
255         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
256
257         * reflection.c (reflection_methodbuilder_to_mono_method): Use
258         mono_metadata_type_dup.
259         * marshal.c (mono_mb_create_method): Likewise.
260
261         * metadata.c (mono_metadata_type_dup): Rename from
262         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
263         MonoImage.  Handle a few more cases, esp. when no mempool is given.
264         * marshal.c, metadata-internals.h: Update to changes.
265
266 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
267
268         * class.c: fixed a small leak for array classes and removed warning.
269
270 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
271
272         * loader.c (mono_method_get_param_token): Make this work on generic methods.
273         Return 0x8000000 for return parameters. Fixes #82161.
274
275 2007-07-21  Marek Habersack  <grendello@gmail.com>
276
277         * appdomain.c (get_shadow_assembly_location): append the current
278         ticks value to the path. Avoids overwriting the same assemblies by
279         several threads at the same time.
280
281 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
282         and Raja R Harinath  <rharinath@novell.com>
283
284         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
285         Simplify slightly.
286         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
287         property for testing if a method is a generic method definition.
288
289 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
290
291         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
292
293 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
294
295         * verify.c: used function from private branch, reverted to the one in class.h 
296
297 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
298
299         * verify.c: a typo slipped in and the code wont compile
300
301 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
302
303         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
304         disabled box instruction as it is doing the wrong thing
305         improved stack dump messages, now it is easier to debug type related issues
306
307
308 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
309
310         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
311
312 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
313
314         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
315         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
316         grouped with class and valuetype. This change will simply 
317         the code as it should be handled just like unmanaged pointers.
318
319 2007-07-19  Mark Probst  <mark.probst@gmail.com>
320
321         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
322
323 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
324
325         * verify.c: several stack merge issues fixed, reference comparisons now
326         check the type size. strict type check now works correctly.
327         added more uses of IS_MANAGED_POINTER macro.
328         fixed issues pointed by running the test suite against .net.
329         
330
331 2007-07-19  Mark Probst  <mark.probst@gmail.com>
332
333         * class.c, loader.c, class-internals.h: Removed the
334         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
335         defines.
336
337         * icall.c: Better error checking in some internal reflection
338         methods.
339
340 2007-07-18  William Holmes  <billholmes54@gmail.com>
341
342         * filewatcher.c : removed unused variable 'filename' in 
343           ves_icall_System_IO_FSW_SupportsFSW
344
345 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
346
347         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
348         obsolete, removed.
349
350 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
351
352         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
353         
354         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
355
356 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
357
358         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
359         Implement generics support.
360         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
361
362         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
363         type_args and method_args arguments.
364         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
365         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
366         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
367
368 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
369
370         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
371           It adds a rootimage parameter to mono_reflection_get_type_internal,
372           adds new function mono_reflection_get_type_with_rootimage and use
373           the rootimage to resolve the types instead of the current image
374
375 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
376
377         * culture-info-table.h: Forgot to update after r78304.
378
379 2007-07-13  Raja R Harinath  <rharinath@novell.com>
380
381         * class.c (mono_class_is_open_constructed_type)
382         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
383
384 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
385
386         * class.c (mono_bounded_array_class_get):  method fails if used with
387         an incomplete TypeBuilder enum (no basetype field), fixed it by 
388         avoiding calculating the size for such array as it cannot be instantiated.
389         Fix bug #82015
390
391 2007-07-12  Raja R Harinath  <rharinath@novell.com>
392
393         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
394         field.
395         * metadata.c, reflection.c: Update to changes.
396
397 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
398
399         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
400         mono_class_is_valid_enum, they are used to valide a enum when loading.
401         * reflection.c: used new functions to throw TypeLoadException when and
402         invalid enum is build with TypeBuilder. Fixes #82018
403   
404 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
405
406         * object.c: forgot commit of mono_class_setup_methods () to access
407         iface->methods.
408         * object-internals.h: added a few more handy fields to
409         MonoIMTCheckItem.
410
411 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
412
413         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
414         iface->methods.
415
416 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
417
418         * class-internals.h, object-internals.h, object.c: IMT-based
419         interface invocation core from Massimiliano Mantione
420         (massi@ximian.com) with a reworked arch-specific interface,
421         bsearch implementation and a few bugfixes and memory savings by me.
422
423 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
424
425         * class.c (mono_class_create_from_typedef): mono would segfault if 
426         an enum did not have a __value field. It now throws a TypeLoadException
427         for such cases. Fix bug #82022
428
429 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
430
431         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
432
433 2007-07-09  Mark Probst  <mark.probst@gmail.com>
434
435         * class.c (mono_class_init): If a class is already inited but has
436         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
437
438 2007-07-09  Mark Probst  <mark.probst@gmail.com>
439
440         * class.c: Properly handle the case of an unimplemented interface
441         method.  Fixes: 81673.
442
443 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
444
445         * class-internals.h, object.c: cleanup patch from massi: use
446         MonoVTable->interface_bitmap since the vtable interfaces offset array
447         is going away.
448
449 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
450
451         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
452         GetMDStreamVersion icall instead.
453
454 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
455
456         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
457         not use mono_dl_build_path() with a full library name: makes
458         fallbacks to libgaim and libfam work.
459
460 2007-07-06  William Holmes  <billholmes54@gmail.com>
461
462         * assembly.c: Added a continue statement in probe_for_partial_name when
463          parse_assembly_directory_name fails.  Fixes : 82002
464
465 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
466
467         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
468         and added a verification  for TYPEDBYREF.
469         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
470         make native int interchangeable with int32 and some small cleanup and formating.
471         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
472         handle byref of byref.
473         * verify.c (push_local): handle byref of byref.
474         * verify.c (do_binop): invalid mix of values is unverifiable
475         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
476         added visibility checks
477         * verify.c (field related method): added visibility checks
478         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
479
480 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
481
482         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
483         string.
484
485 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
486
487         * profiler.c (mono_profiler_load): Fix an off-by-one error.
488
489         * marshal.c (emit_marshal_string): When returning a string from managed code,
490         allways make a copy even for unicode strings. Fixes #81990.
491
492 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
493
494         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
495         of byref generic inst types (bug #81997).
496
497 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
498
499         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
500         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
501
502 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
503
504         * marshal.c (emit_marshal_string): Add support for unicode strings in
505         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
506
507 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
508
509         * verify.c: field load/store are now verified, missing only access checks now
510
511 2007-06-28  Martin Baulig  <martin@ximian.com>
512
513         * mono-debug.c (mono_debug_debugger_version): New public variable.
514
515 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
516
517         * locales.c: When constructing DateTimeFormat or NumberFormat for
518         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
519         MonoCultureInfo contructed from the current locale is always
520         read-only and has UseUserOverride set to true. All MonoCultureInfo
521         instances returned for GetCultures have both IsReadOnly and
522         UseUserOverride set to true. Fixes part of bug #81930.
523
524 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
525
526        * icall-def.h: Update System.__ComObject icalls
527        * marshal.c: Avoid managed transition (and object creation)
528        when looking up COM interface in RCW.
529        * marshal.h: Ditto.
530        
531        Code is contributed under MIT/X11 license.
532
533 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
534
535         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
536         to avoid crashes during assembly unloading.
537
538 2007-06-22  Raja R Harinath  <rharinath@novell.com>
539
540         Fix MethodInfo.IsGenericMethodDefinition
541         * reflection.c (mono_reflection_bind_generic_method_parameters):
542         Rearrange code to ensure we always uses a generic method definition.
543         * class.c (mono_class_inflate_generic_method_full): Set
544         'generic_container' field only for generic method definitions.
545         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
546         Use presense of 'generic_container' field as indication of being a
547         generic method definition.
548
549 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
550
551         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
552
553         * object-internals.h: Reflect changes in the layout of the managed Delegate
554         class.
555         
556         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
557         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
558         runtime memory used by the dynamic method. Fixes #77146.
559
560 2007-06-21  Dick Porter  <dick@ximian.com>
561
562         * file-io.h: 
563         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
564         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
565         81767.
566
567 2007-06-21  Raja R Harinath  <rharinath@novell.com>
568
569         * reflection.c (method_encode_methodspec): Add a tripwire.
570         * class.c (inflate_generic_type): The fully open generic type is
571         not the same as the generic type definition.
572
573 2007-06-21  Martin Baulig  <martin@ximian.com>
574
575         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
576
577         * mono-debug-debugger.h
578         (MonoDebuggerBreakpointInfo): Removed.
579         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
580         (mono_debugger_remove_breakpoint): Likewise.
581         (mono_debugger_breakpoint_callback): Likewise.
582         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
583
584 2007-06-21  Raja R Harinath  <rharinath@novell.com>
585
586         * metadata.c (mono_metadata_lookup_generic_class): The fully open
587         generic type is not the same as the generic type definition.
588         * class.c (mono_generic_class_get_class): Likewise.
589
590 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
591
592         * icall.c: The second argument to 
593         System.Reflection.MethodBase.GetMethodFromHandleInternalType
594         is a MonoType not a MonoClass.
595
596 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
597
598         * verify.c: support for function pointers in the verifier
599
600 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
601
602         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
603
604 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
605
606         * assembly.c: removed Mono.Data.SqliteClient from the list of
607         forward-compatible assemblies as it breaks the ABI (bug #81899).
608
609 2007-06-19  Raja R Harinath  <rharinath@novell.com>
610
611         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
612         lookup/update with the loader lock.
613         * reflection.c (mono_class_bind_generic_parameters): No need to
614         protect mono_metadata_lookup_* with the loader lock.
615         * class.c (inflate_generic_type): Likewise.
616         
617         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
618         on a generic instantiated type.
619
620 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
621
622         *verify.c: produce meanfull error messages on verification error
623         *verify.c: fixed some cases of verification errors reported as validation errors
624         *pedump.c: fixed the error name array, now it shows validation errors properly
625         *verify.h: fixed the contant that should be used for verification errors
626
627 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
628
629         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
630         for bug #77596, 81858 and 80743 (generics data structures on domain
631         unload).
632
633 2007-06-15  Raja R Harinath  <rharinath@novell.com>
634
635         Avoid allocating 'MonoGenericContext' on the heap.
636         * class-internals (_MonoMethodInflated::context): Make field
637         inline, not a pointer.
638         * loader.c (method_from_methodspec): Allocate 'new_context' on the
639         stack.  Use the context embedded within the inflated method as the
640         hash key, rather than 'new_context'.
641         * class.c (inflate_generic_context): Simplify.  Return a struct
642         rather than allocating on the heap.
643         (mono_class_inflate_generic_method_full): Update to changes.  Now,
644         doesn't salt away a copy of the context -- simplifying the
645         lifetime rules of a 'MonoGenericContext *'.
646         (mono_method_get_context): Return pointer to embedded context.
647         (setup_generic_array_ifaces): Allocate temporary context on stack.
648         * reflection.c (inflate_mono_method): Likewise.
649         (mono_reflection_bind_generic_method_parameters): Likewise.
650         Use the context embedded within the inflated method as the hash key.
651
652         Avoid a source of allocation of 'MonoGenericContext'.
653         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
654         and 'cached_context' fields into embedded 'MonoGenericContext' field.
655         * class.c: Update to changes.
656         (mono_generic_class_get_context): Simplify drastically.  Now just
657         returns a pointer to the field.
658         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
659         argument as a const pointer.
660         (mono_metadata_generic_context_equal): Likewise.
661         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
662         Update to changes.
663
664 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
665
666         * verify.c improved the handling of brtrue/brfalse, factored out common code
667
668 2007-06-14  Raja R Harinath  <rharinath@novell.com>
669
670         Kill MonoGenericMethod.
671         * class-internals.h (MonoGenericContext::method_inst): Rename from
672         'gmethod' and convert to a MonoGenericInst.
673         (MonoGenericMethod): Remove.
674         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
675         * loader.c (method_from_methodspec): Update to changes.  Use a
676         MonoGenericContext as the key to the hashtable.
677         * metadata.c (mono_metadata_generic_context_equal): Rename from 
678         'mono_metadata_generic_method_equal' and take MonoGenericContext.
679         (mono_metadata_generic_context_hash): Likewise from
680         'mono_metadata_generic_method_hash'.  Change hash function.
681         (mono_metadata_load_generic_params): Update to changes.
682         (mono_get_shared_generic_method): Remove.
683         * metadata-internals.h (mono_get_shared_generic_method): Remove.
684         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
685         (inflate_generic_context): Likewise.
686         (mono_class_inflate_generic_method_full): Likewise.
687         (setup_generic_array_ifaces): Likewise.
688         (mono_class_create_from_typespec): Likewise.
689         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
690         (method_encode_methodspec): Update callsite.
691         (reflection_methodbuilder_to_mono_method): Update to changes.
692         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
693         MonoGenericContext as the key to the hashtable.
694         (inflate_mono_method): Update to changes.
695
696         * class-internals.h (MonoGenericMethod::container): Remove.
697         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
698
699 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
700
701         * profiler-private.h, profiler.c, profiler.h: added API to profile
702         exception events.
703
704 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
705
706         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
707
708 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
709
710         * verify.c: method invocation is now validated, now we verify parameter types on stack.
711         Fixed overflow and underflow not aborting the verification process.
712
713 2007-06-13  Mark Probst  <mark.probst@gmail.com>
714
715         * class-internals.h (MonoStats): Added stats entries for dynamic
716         code allocations.
717
718 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
719
720         * loader.c (mono_free_method): Free header->locals and header->clauses.
721
722         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
723         dynamic case.
724
725         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
726
727         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
728
729 2007-06-12  Raja R Harinath  <rharinath@novell.com>
730
731         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
732         the tables.
733
734 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
735
736         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
737
738 2007-06-11  Raja R Harinath  <harinath@gmail.com>
739
740         MonoGenericMethod on a diet
741         * class-internals.h (_MonoMethodInflated::reflection_info): Move
742         here ...
743         (_MonoGenericMethod::reflection_info): ... from here.
744         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
745         Update to changes.
746         * reflection.c (inflate_mono_method): Likewise.
747         (mono_reflection_bind_generic_method_parameters): Likewise.
748
749 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
750
751         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
752         *verify.c: factored long ldarg forms to share code with short forms
753
754 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
755
756         *verify.c: fixed code formating factored some duplicate code
757         into a new function
758
759         *verify.h: fixed binary incompatibility introduced earlier
760
761         *pedump.c: fixed formating
762
763 2007-06-11  Raja R Harinath  <harinath@gmail.com>
764
765         Fix assertion when disassembling Mono.C5.dll
766         * loader.c (method_from_methodspec): Avoid inflating a method
767         twice with the same context.  If the methodref is inflated, use
768         the declaring method instead.
769
770         * class.c (mono_class_from_generic_parameter): Fix case similar to
771         bug #81830 handled below, but for method containers.
772
773 2007-06-10  Raja R Harinath  <harinath@gmail.com>
774
775         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
776         get_shared_generic_class.  Directly inflate the instance.
777         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
778         (inflate_generic_class): Delete.
779         (get_shared_generic_class): Delete.  Move setting of
780         'cached_class' and 'cached_context' ...
781         * metadata.c (mono_metadata_lookup_generic_class): ... here.
782
783         * metadata.c (mono_metadata_lookup_generic_class): Change
784         signature to take the components of a MonoGenericClass rather than
785         an allocated MonoGenericClass.  Change semantics to be intern-like.
786         * reflection.c (mono_class_bind_generic_parameters): Update to
787         changes.  Make locking region tighter.
788         * class.c (inflate_generic_class): Update to changes.
789         (get_shared_generic_class): Likewise.
790         * metadata-internals.h: Likewise.
791
792         * reflection.c (mono_class_bind_generic_parameters): Take and
793         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
794         (mono_reflection_bind_generic_parameters): Use
795         'mono_class_bind_generic_parameters' rather than duplicate the code.
796         * class.c (mono_bounded_array_class_get): Update to changes.
797         * object-internals.h: Likewise.
798
799         * reflection.c (mono_class_bind_generic_parameters): Only support
800         parameterizing generic type definitions.  Remove support for other
801         open types.
802
803 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
804
805         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
806
807         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
808         in the dynamic case.
809
810 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
811
812         * threads.c: When cleaning up thread, reset the Background bit.
813         Fixes bug #81720.
814
815 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
816
817        * metadata.c: Move variable declarations to top of scope.
818        * verify.c: Move variable declarations to top of scope.
819
820        Code is contributed under MIT/X11 license.
821
822 2007-06-08  Raja R Harinath  <rharinath@novell.com>
823
824         * reflection.c (mono_class_bind_generic_parameters): Replace
825         open-coded loop with mono_metadata_inflate_generic_inst.
826
827         * class.c (get_shared_generic_class): Don't call
828         mono_get_shared_generic_inst.  Use the container's own
829         'class_inst'.
830
831         * metadata.c (mono_metadata_load_generic_params): Move
832         initialization of 'context' field here from ...
833         * class.c (mono_class_create_from_typedef): ... here, and ...
834         * loader.c (mono_get_method_from_token): ... here.
835
836         * class.c (get_shared_generic_class): Rename from
837         mono_get_shared_generic_class and make static.
838         (mono_get_shared_generic_inst): Move to metadata.c.
839         * loader.c (mono_get_shared_generic_method): Likewise.
840         * class-internals.h, metadata-internals.h: Update to changes.
841
842         Fix #81830
843         * class.c (mono_class_from_generic_parameter): Don't assume a
844         generic container owner exists.  Generic containers from monodis
845         don't have any.
846
847 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
848
849         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
850         * verify.h: new typedefs to returns the non-verifiable status
851         * verify.c: initial implementation of generics, stack merging and object compatibility check
852
853 2007-06-06  Mark Probst  <mark.probst@gmail.com>
854
855         * class.c, image.c, class-internals.h (MonoImage): class_cache is
856         a MonoInternalHashTable again (fixed bug in internal hash table
857         code).
858
859 2007-06-06  Mark Probst  <mark.probst@gmail.com>
860
861         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
862         MonoInternalHashTable again (fixed bug in internal hash table
863         code).
864
865 2007-06-06  Mark Probst  <mark.probst@gmail.com>
866
867         * class.c, image.c, class-internals.h, domain.c,
868         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
869         changes.  Have to figure out what makes them break the SWF
870         regression.
871
872 2007-06-04  Mark Probst  <mark.probst@gmail.com>
873
874         * class.c, image.c, class-internals.h (MonoImage): class_cache is
875         a MonoInternalHashTable now.
876
877 2007-06-04  Mark Probst  <mark.probst@gmail.com>
878
879         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
880         MonoInternalHashTable now.
881
882 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
883
884         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
885         invoke_impl code.
886
887         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
888
889         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
890         dependent trampoline.
891
892         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
893
894         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
895
896 2007-05-29  Robert Jordan  <robertj@gmx.net>
897
898         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
899
900 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
901
902         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
903
904 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
905
906        * marshal.c: Fix interface lookup loops for
907        cominterop_get_com_slot_for_method and 
908        cominterop_get_method_interface. Only need to lookup
909        if type is a class, else use interface type method is on.
910
911        Code is contributed under MIT/X11 license.
912
913 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
914
915         * reflection.c: HasSecurity can be present even if no specially 
916         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
917         SecurityAttribute). Fix CAS regression tests on buildbot.
918
919 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
920
921        * appdomain.c: Add configure checks for header files.
922        * image.c: Add configure checks for header files.
923        * file-io.c: Add configure checks for header files.
924        * debug-mono-symfile.c: Add configure checks for header files.
925        * threadpool.c: Add configure checks for header files.
926        * console-io.c: Add configure checks for header files.
927        * profiler.c: Add configure checks for header files.
928        * rawbuffer.c: Add configure checks for header files.
929        * icall.c: Add configure checks for header files.
930        * rand.c: Add configure checks for header files.
931        * socket-io.c: Add configure checks for header files.
932
933        Code is contributed under MIT/X11 license.
934
935 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
936
937         * reflection.c (mono_custom_attrs_from_builders): Remove the 
938         assertion as it breaks the build.
939         
940         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
941
942         * reflection.c (lookup_custom_attr): Make a copy here too.
943
944         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
945         dynamic images.
946
947         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
948         images.
949
950         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
951         info.
952
953 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
954
955         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
956         (load_cattr_value): Ditto.
957
958 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
959
960         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
961
962 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
963
964         * threads.c: In "start_wrapper", set apartment_state to MTA if
965         apartment_state is Unknown and we're running on 2.0 profile or
966         higher.
967         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
968         to main method, then set apartment_state to Unknown on 1.0 profile,
969         and MTA on 2.0 profile.
970
971 2007-05-16  Jb Evain  <jb@nurv.fr>
972
973         * class-internals.h (MonoDefaults): Add an attribute_class and
974           customattribute_data_class.
975         * domain.c (mono_init_internal): Populate them.
976         * reflection.c: Use them to remove duplicates. Make a vew
977         MonoClass variables `static'.
978
979 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
980
981         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
982         step in implementing IMT, so that all isinst checks now can go
983         through the bitmap.
984         This was needed because vtables for TransparentProxy need to look
985         like the vtable of the "target" class, so they need to point to
986         its interface bitmap directly.
987
988         * object.c: inside "mono_class_create_runtime_vtable" and
989         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
990
991 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
992
993         * object-internals.h
994           culture-info.h : added territory field in MonoCulture and
995           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
996         * locales.c : fill territory field above too.
997         * culture-info-table.h : regenerated.
998
999 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
1000
1001         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
1002         Fixes #81599.
1003
1004 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
1005
1006         * object.c: Always initialize apartment, even if 
1007         there is no custom attributes on entry point.
1008         
1009         Code is contributed under MIT/X11 license.
1010
1011 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
1012
1013         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
1014         * metadata.c: If no encoding is set, check for unicode
1015         on class.
1016         
1017         Code is contributed under MIT/X11 license.
1018
1019 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1020
1021         * threads.c: Handle if mono_thread_current returns NULL 
1022         
1023         Code is contributed under MIT/X11 license.
1024
1025 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1026
1027         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
1028         in start_wrapper. Added mono_thread_init_apartment_state and
1029         mono_thread_cleanup_apartment_state.
1030         * object.c: Initialize thread apartment state on main thread
1031         by checking for STAThreadAttribute on entry point.
1032         * object-internals.h: Add apartment_state field to MonoThread.
1033         * threads-types.h: Add unmanaged definition of 
1034         System.Threading.ApartmentState, MonoThreadApartmentState.
1035         
1036         Code is contributed under MIT/X11 license.
1037         
1038 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
1039
1040         * class.c: Fix windows build.
1041         * class-internals.h: Fix windows build.
1042         
1043         Code is contributed under MIT/X11 license.
1044
1045 2007-05-08  Robert Jordan  <robertj@gmx.net>
1046
1047         * process.c (CreateProcess_internal):
1048         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
1049         .CreateNoWindow was specified. Fixes #81496.
1050
1051 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1052
1053         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
1054         step in implementing IMT, replaced it with two compact arrays
1055         (interfaces_packed and interface_offsets_packed) and a bitmap that
1056         is used for isinst checks (interface_bitmap).
1057
1058         * class.c: (compare_interface_ids): compare function to pass to
1059         bsearch when looking for an interface with a given id.
1060         (mono_class_interface_offset): reimplemented using bsearch on
1061         interfaces_packed, getting the offset from interface_offsets_packed.
1062         (print_implemented_interfaces): utility debugging function.
1063         (setup_interface_offsets): reworked to initialize interfaces_packed,
1064         interface_offsets_packed and interface_bitmap.
1065
1066         * object.c: replaced all accesses to "MonoClass.interface_offsets"
1067         with uses of interfaces_packed and interface_offsets_packed.
1068
1069 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1070
1071         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
1072         mono_class_interface_offset prototype to wrap all accesses to
1073         "MonoClass.interface_offsets".
1074
1075         * class.c: Implemented mono_class_interface_offset, and wrapped all
1076         accesses to "MonoClass.interface_offsets".
1077
1078         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
1079         "MonoClass.interface_offsets".
1080
1081 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
1082
1083         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
1084         GetMethodFromHandle overloads (bug #78637).
1085
1086 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
1087
1088         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
1089         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
1090
1091 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
1092
1093         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
1094         #81498.
1095
1096         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
1097         gracefully.
1098         (mono_custom_attrs_from_index): Ditto.
1099
1100         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
1101         Fixes #81501.
1102
1103 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
1104
1105         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
1106         is now allocated from a mempool.
1107
1108 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
1109
1110         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
1111         caller holds threads_lock, leading to deadlocks. Fixes #81476.
1112
1113 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
1114
1115         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
1116         mono_loader_clear_error () too late. Fixes #81463.
1117
1118 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
1119
1120         * culture-info-table.h : regenerated.
1121
1122 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
1123
1124         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
1125         is missing.
1126
1127 2007-04-25  Dick Porter  <dick@ximian.com>
1128
1129         * Makefile.am: Put the mingw enforced-optimisation back into the
1130         PLATFORM_WIN32 section.
1131
1132 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
1133
1134         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
1135         patch.
1136
1137         * image.c (mono_image_load_module): New API function to load a module reference.
1138
1139         * image.c (load_modules): Load modules lazily. Fixes #80812.
1140
1141         * class.c (mono_class_from_typeref): Use mono_image_load_module.
1142         
1143         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
1144
1145         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
1146         to mono_image_load_module_dynamic.
1147
1148 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
1149
1150         * marshal.c: Fix calling convention for CCW on non-windows
1151         platforms. STDCALL on windows, CDECL everywhere else to work 
1152         with XPCOM and MainWin COM.
1153         
1154         Code is contributed under MIT/X11 license.
1155
1156 2007-04-23  Martin Baulig  <martin@ximian.com>
1157
1158         Fix #80969.
1159
1160         * loader.c
1161         (method_from_memberref): Added `gboolean *used_context' argument.
1162         (mono_get_method_from_token): Likewise.
1163         (mono_get_method_full): Don't insert the method in the cache when
1164         `used_context' is true.
1165
1166 2007-04-23  Raja R Harinath  <rharinath@novell.com>
1167
1168         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
1169
1170         * reflection.c (mono_reflection_bind_generic_parameters): Don't
1171         create new MonoTypes for returned types.
1172         * class.c (mono_generic_class_get_class): Export mono-internal.
1173         * class-internals.h: Update to changes.
1174
1175 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
1176
1177         * threadpool.c, threadpool.h, icall-def.h: patch from
1178         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
1179
1180 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
1181
1182         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
1183         
1184         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
1185
1186         * threads.c (mono_thread_get_stack_bounds): New helper function.
1187
1188         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
1189         Correctly compute stack bounds when attaching. Fixes #81394.
1190
1191 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
1192
1193         * reflection.c: fix handling of doubles in custom attributes
1194         for the arm-fpa format (bug #81368).
1195
1196 2007-04-18  Raja R Harinath  <rharinath@novell.com>
1197
1198         * reflection.c (assembly_add_win32_resources): Mildly relax an
1199         bounds check to let the end pointer point just past the end of the
1200         allocated buffer.  (may fix #81384)
1201
1202 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
1203
1204         * culture-info-table.h : regenerated.
1205
1206 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
1207
1208         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
1209         the thread is aborted early.
1210
1211 2007-04-05  Dick Porter  <dick@ximian.com>
1212
1213         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
1214         FindFirstFile()/FindNextFile() to find entries.  This lets the
1215         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
1216         81038.
1217
1218         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
1219         the parameters of
1220         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
1221
1222 2007-04-04  Martin Baulig  <martin@ximian.com>
1223
1224         * debug-helpers.c
1225         (mono_method_desc_full_match): Add support for nested classes.
1226
1227 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
1228
1229         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
1230
1231 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
1232
1233         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
1234         waiting for too many threads.
1235
1236 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
1237
1238         * environment.c: Fix return value check on uname so we can get the 
1239         executing version on Solaris operating systems.
1240
1241 2007-03-28  Jb Evain  <jbevain@gmail.com>
1242
1243         * class.c (mono_type_get_name_recurse): Complete the
1244         fix for the creation of assembly qualified names for
1245         pointer types. Fixes #81208.
1246
1247 2007-03-27  Dick Porter  <dick@ximian.com>
1248
1249         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
1250         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
1251         changed.
1252
1253         * threads.c
1254         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
1255         the value of ReleaseMutex().
1256
1257 2007-03-27  Dick Porter  <dick@ximian.com>
1258
1259         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
1260         in little-endian order, not network endian, so must be converted
1261         to host endian here.  Fixes bug 80593.
1262
1263 2007-03-22  Jb Evain  <jbevain@gmail.com>
1264
1265         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
1266         qualified names for pointer types. Fixes #81208.
1267
1268 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
1269
1270         * marshal.c: Add support for PreserveSigAttribute. 
1271         
1272         Code is contributed under MIT/X11 license.
1273
1274 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
1275
1276         * process.c: Fix endianness issues. Fixes #81126.
1277
1278         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
1279         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
1280
1281         * image.c (mono_image_lookup_resource): Make this work on big-endian
1282         machines.Change API contract so the caller needs to free the return value.
1283         
1284         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
1285         API change.
1286         
1287 2007-03-14  Martin Baulig  <martin@ximian.com>
1288
1289         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
1290         mono_type_get_desc() as well.
1291
1292 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1293
1294         * icall.c:  Fix environ access in VS.  
1295         
1296 2007-03-13  Alp Toker  <alp@atoker.com>
1297
1298         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
1299         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
1300         #63841.
1301
1302 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
1303
1304         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
1305         circular references among dynamic methods. Fixes #81091.
1306
1307         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
1308
1309 2007-03-09  Martin Baulig  <martin@ximian.com>
1310
1311         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
1312
1313 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
1314
1315         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
1316         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
1317         
1318         Code is contributed under MIT/X11 license.
1319         
1320 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
1321
1322         * loader.c: Reapply patch for bug #79424.
1323
1324 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1325
1326         * metadata.c (mono_type_to_unmanaged): Only convert object to
1327         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
1328
1329 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
1330
1331         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
1332         (and incorrectly set) is_reference field from MonoGenericInst.
1333
1334 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1335
1336         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
1337         a little earlier.
1338
1339         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
1340
1341         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
1342
1343 2007-03-05  Miguel de Icaza  <miguel@novell.com>
1344
1345         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
1346         FileOptions.1 value to mean "temporary", map that to
1347         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
1348
1349         Fixes 80688
1350
1351 2007-03-03  Marek Habersack  <mhabersack@novell.com>
1352
1353         * appdomain.c: implement MS .Net style shadow copying. Copies of
1354         the assemblies are made in a subdirectory of the dynamic base
1355         directory, the assembly names are preserved.
1356         Copy .mdb and .config files along with the assemblies being shadowed.
1357
1358 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1359
1360         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
1361         (emit_marshal_handleref): Ditto.
1362
1363         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
1364         on Visual C++. Fixes #80671.
1365
1366 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
1367
1368         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
1369         for clone operations.
1370
1371 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1372
1373         * marshal.c: Fix warnings.
1374
1375 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
1376
1377         * loader.c: allow case-insensitive matching of the dll name
1378         in dllmap handling when prefixed with "i:".
1379
1380 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
1381
1382         * threads.c: Fix #ifdef for dummy_apc function for VS.
1383
1384 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
1385
1386         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
1387
1388 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
1389         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
1390         giving precedence to the methods with a fully qualified name
1391         (InterfaceName.MethodName) when building the interface sections
1392         of the vtable.
1393
1394 2007-02-16  Dick Porter  <dick@ximian.com>
1395
1396         * threadpool.c (append_job): Fix fast-path array handling, so it's
1397         less likely the array will grow exponentially when the load is
1398         heavy.
1399
1400 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1401
1402         * metadata-internals.h, loader.c: fix dllmap lookup order
1403         for non-function maps, too, and prepare for fallback code.
1404
1405 2007-02-12  Robert Jordan  <robertj@gmx.net>
1406
1407         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
1408         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
1409         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
1410         GlobalFree. Fixes a part of bug #77075.
1411
1412 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
1413
1414         * loader.c: implemented typedef parent in field memberref.
1415
1416 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
1417
1418         * marshal.c: Fix warnings and remember to call Release on
1419         IUnknown of RCW.
1420         
1421         Code is contributed under MIT/X11 license.
1422
1423 2007-02-10  Miguel de Icaza  <miguel@novell.com>
1424
1425         * class-internals.h: Add MonoHandleRef definition, and
1426         handleref_class to mono_defaults. 
1427
1428         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
1429         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
1430
1431         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
1432         (do nothing on this stage)
1433         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
1434         (emit_marshal_handleref): New method, used for argument handling
1435         of HandleRefs. 
1436
1437 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
1438
1439         * class.c (mono_class_setup_parent): Lazily init com types.
1440         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
1441         init com types.
1442         * object.c (mono_remote_class_vtable): Lazily init com types.
1443         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
1444         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
1445         * domain-internals.h: Expose mono_init_com_types.
1446         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
1447         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
1448         Add support for COM Callable Wrapper marshalling.
1449         * marshal.h: Add icall definitions.
1450         * gc.c: Handle freeing of CCWs in finalizer code.
1451         
1452         Code is contributed under MIT/X11 license.
1453
1454 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
1455
1456         * reflection.c: changed all the signature encoding code to use
1457         a variable-sized buffer.
1458
1459 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1460
1461         * marshal.c: locking fixes: never take the loader lock
1462         or other runtime locks when holding the marshal lock
1463         (fixes bug#80664).
1464
1465 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
1466
1467         * marshal.c: make the delegate function pointer mapping
1468         work for the moving GC.
1469
1470 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
1471
1472         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
1473         for bug #80618.
1474
1475 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1476
1477         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
1478         gmodule.
1479
1480 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
1481
1482         * threadpool.c: made the code moving-GC safe.
1483
1484 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
1485
1486         * assembly.c, boehm-gc.c, class-internals.h, class.c,
1487         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
1488         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
1489         warning cleanup.
1490         * reflection.c: warning cleanup, some threading and moving GC fixes.
1491
1492 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
1493
1494         * class.c, loader.c: create the needed Set/Get/Address array methods
1495         as well as the .ctors in mono_class_init (), fixes bug #80567.
1496
1497 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
1498
1499         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
1500         we doesn't decrease its alignment. Should fix the sparc build.
1501
1502 2007-01-24  Dick Porter  <dick@ximian.com>
1503
1504         * socket-io.c
1505         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1506         Create the returned object if we need to ignore an unsupported
1507         socket option.  Fixes a segfault reported by Atsushi.
1508
1509 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
1510
1511         * class.c, object.c: restrict GC-tracked fields to
1512         UIntPtr fields used inside corlib, so we provide better
1513         type info to the GC and also allow broken packing as in
1514         bug #80580.
1515
1516 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
1517
1518         * sgen-gc.c: removed duplicated function.
1519
1520 2007-01-19  Miguel de Icaza  <miguel@novell.com>
1521
1522         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
1523         value that means that the value is not supported, but that we
1524         should not return a failure, but instead report this as a
1525         successful operation.
1526
1527 2007-01-19  Raja R Harinath  <rharinath@novell.com>
1528
1529         Fix tests/bug79956.2.il
1530         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
1531         (mono_generic_class_get_class): If the generic definition in an
1532         enum, copy over other fields related to it.
1533
1534 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
1535
1536         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
1537         genericinst enums (bug #79215).
1538
1539 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
1540         * class.c: Fix bug 80307.
1541
1542 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
1543
1544         * image.c: if the file table is not present, try to load
1545         all the modules, since we don't have info about them
1546         having or not metadata (bug #80517).
1547         * assembly.c: allow mono_assembly_load_references () to
1548         work for netmodules.
1549
1550 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1551
1552         * image.c, metadata-internals.h, object.c: execute module
1553         cctors when running on the 2 runtime if present (bug #80487).
1554
1555 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
1556
1557         * icall.c: optimized InitializeArray() on bigendian.
1558
1559 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
1560
1561         * icall.c: fix for the broken ARM FPA double format.
1562
1563 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
1564
1565         * icall.c: handle endian issues for r4 and r8 types, too, in
1566         the InitializeArray() icall.
1567
1568 2007-01-15  Miguel de Icaza  <miguel@novell.com>
1569
1570         * loader.c (mono_loader_error_prepare_exception): Clear the error
1571         once we have extracted the information from it, do this before we
1572         call into the JIT's class loading mechanisms.
1573
1574         * object.c (mono_class_create_runtime_vtable): Do not clear the
1575         loader error before calling mono_class_get_exception_for_failure
1576         as the loader error is needed inside
1577         mono_class_get_exception_for_failure to throw the error (thinko).
1578
1579         Fixes #80521
1580         
1581 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
1582
1583         * reflection.c: align fields rva data so it's faster to load at
1584         runtime.
1585
1586 2007-01-12  Raja R Harinath  <rharinath@novell.com>
1587
1588         Prepare to simplify GenericMethod handling.
1589         * class-internals.h (mono_method_get_context): New accessor function.
1590         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
1591         rather than directly accessing '->context' field.
1592
1593         * class-internals.h (_MonoGenericParam.method): Move ...
1594         (_MonoGenericContainer): ... here.  Add into union with klass field.
1595         * class.c, icall.c, loader.c, metadata.c, reflection.c:
1596         Update to changes.
1597
1598 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
1599
1600         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
1601         the wrapper type enum and reduce relocations.
1602
1603 2007-01-12  Raja R Harinath  <rharinath@novell.com>
1604
1605         * reflection.c (inflate_mono_method): Reuse method instantiation
1606         from the generic method, if available.
1607
1608 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1609
1610         * marshal.c (emit_marshal_variant): Fix conv_arg
1611         type in last commit, based on whether parameter is byref.
1612         
1613 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1614
1615         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
1616         marshalling.
1617         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
1618         MONO_TYPE_OBJECT back for VARIANT support.
1619
1620 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1621
1622         * marshal.c, marshal.h, icall-def.h: Implement 
1623         Marshal.ReAllocCoTaskMem.
1624
1625 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
1626
1627         * marshal.c: memory retention fixes: use the proper
1628         image cache for runtime_invoke method lookups.
1629
1630 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
1631
1632         * mempool.c: added code to help debug mempool allocations.
1633
1634 2007-01-11  Dick Porter  <dick@ximian.com>
1635
1636         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
1637         support (experimenting with faking it with IP_MTU_DISCOVER for
1638         systems that don't have IP_DONTFRAGMENT.)
1639         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
1640         icall.
1641
1642         * icall-def.h: new System.Net.Sockets.Disconnect icall.
1643
1644         * socket-io.h: Add new fields to MonoSocketAsyncResult
1645         corresponding to the new ones in Socket.cs.
1646
1647 2007-01-11  Raja R Harinath  <rharinath@novell.com>
1648
1649         Fix IronPython regression mentioned in #80249
1650         * metadata.c (do_mono_metadata_parse_generic_class): Clear
1651         'cached_context' field, since it may have been initialized as a
1652         side-effect of metadata parsing.
1653
1654         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
1655         (_MonoGenericClass.cached_class): Move here and rename from lone
1656         remaining field of ...
1657         (_MonoInflatedGenericClass): ... this.  Remove.
1658         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
1659         to changes.
1660
1661         Fix mcs/tests/test-128.cs regression.
1662         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
1663         2007-01-10 change below.
1664         [MONO_TYPE_OBJECT]: Recurse into array case.
1665
1666 2007-01-11  Raja R Harinath  <harinath@gmail.com>
1667
1668         * class-internals.h (mono_get_inflated_generic_class): Remove.
1669         * class.c (mono_get_inflated_generic_class): Remove.
1670         (mono_generic_class_get_class): Rename from
1671         mono_class_create_generic.
1672         (mono_class_from_mono_type) [GENERICINST]: Use it.
1673         * reflection.c, metadata.c: Update to changes.  Use
1674         'mono_class_from_mono_type'.
1675
1676 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
1677
1678         * reflection.c: use passed type when encoding an array element
1679         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
1680
1681 2007-01-09  Robert Jordan  <robertj@gmx.net>
1682
1683         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
1684         result arguments (someDelegate.EndInvoke (unrelatedAres)).
1685         Fixes bug #80392.
1686
1687 2007-01-09  Raja R Harinath  <rharinath@novell.com>
1688
1689         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
1690
1691         * object.c (set_value): Avoid aliasing between type->data.klass
1692         and type->data.generic_class.
1693
1694         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
1695
1696 2007-01-08  Raja R Harinath  <rharinath@novell.com>
1697
1698         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
1699         between type->data.klass and type->data.generic_class.
1700
1701 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
1702
1703         * marshal.c: In MS.NET, StringBuilder objects are not copied by
1704         value in out parameters.
1705
1706 2007-01-08  Raja R Harinath  <rharinath@novell.com>
1707
1708         Simplify invariant for MonoGenericClass::klass field.
1709         * class.c (mono_class_create_generic): Verify 'klass' is null.
1710         * metadata.c (do_mono_metadata_parse_generic_class): Don't
1711         initialize 'klass' field.
1712
1713 2007-01-05  Raja R Harinath  <rharinath@novell.com>
1714
1715         Ongoing work to avoid redundant data and simplify invariants.
1716         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
1717         'generic_class', and change type to a GenericInst.
1718         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
1719         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
1720
1721 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
1722
1723         * class.c : skip io-layer under PLATFORM_WIN32.
1724
1725 2007-01-03  Tor Lillqvist  <tml@novell.com>
1726
1727         Fix #80305: In a bundled executable, look in the bundled exe
1728         assembly to determine the runtime version. Add the possibility to
1729         bundle also the machine.config file.
1730         
1731         * assembly.c (mono_assembly_open_from_bundle): Make
1732         non-static. Allow being called even if we have no bundled
1733         assemblies, and return NULL right away in that case.
1734
1735         * domain-internals.h: Declare mono_assembly_open_from_bundle()
1736         here.
1737
1738         * domain.c (app_config_parse): Take an assembly exe file name as
1739         parameter instead of a config file name. Check for a bundled
1740         config file for that assembly by calling
1741         mono_config_string_for_assembly_file() (see below) before looking
1742         for one in the file system.
1743         (get_runtimes_from_exe): Corrsponding change to call of
1744         app_config_parse().
1745         (get_runtimes_from_exe): Check for bundled assembly exe file first
1746         by calling mono_assembly_open_from_bundle(). If no bundled
1747         assembly exe file is found, call mono_image_open() as before to
1748         look it up in the file system.
1749
1750         * mono-config.c: Add variable bundled_machinec_onfig.
1751         (mono_config_string_for_assembly_file): New function.
1752         (mono_config_for_assembly): Move code snippet that looks for a
1753         bundled assembly .config file into the above new function. Call
1754         it.
1755         (mono_register_machine_config, mono_get_machine_config): New
1756         functions to set and retrieve
1757
1758         * assembly.h: Declare mono_register_machine_config().
1759
1760         * mono-config.h: Declare mono_get_machine_config() and
1761         mono_config_string_for_assembly_file().
1762
1763         * icall.c: No declaration of environ necessary on Win32. It is
1764         declared (as a macro expanding to a function call) in stdlib.h.
1765         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
1766         New internal mono function. Returns the value of
1767         mono_get_machine_config() as a Mono string.
1768
1769         * icall-def.h: Add get_bundled_machine_config().
1770
1771 2007-01-04  Raja R Harinath  <rharinath@novell.com>
1772
1773         Remove redundant field
1774         * class-internals.h (_MonoGenericContext.container): Remove field.
1775         * loader.c (mono_method_get_signature_full): Don't parse a
1776         "container" for a signature parse when the signature is inflated
1777         immediately.
1778         (method_from_methodspec): Likewise, for a generic_inst.
1779         * class.c, metadata.c, reflection.c: Update to changes.
1780
1781 2006-01-04  Raja R Harinath  <rharinath@novell.com>
1782
1783         * class-internals.h (_MonoGenericClass): Rename 'context' field to
1784         'cached_context', and change semantics -- it starts off NULL, and
1785         is initialized on demand.
1786         * class.c (mono_generic_class_get_context): New accessor to
1787         replace 'context' field accesses.
1788         (mono_class_get_context): New helper.
1789         (*): Update to changes.
1790         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
1791
1792 2007-01-03  Miguel de Icaza  <miguel@novell.com>
1793
1794         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
1795         before the memcpy.   Fixes Marshal2 regression.
1796
1797 2007-01-02  Jb Evain  <jbevain@gmail.com>
1798
1799         * blob.h: add a MONO_TYPE_ENUM definition
1800         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
1801         fix the encoding of arrays of enums in custom attributes.
1802
1803         Fixes #79666.
1804
1805 2007-01-01  Miguel de Icaza  <miguel@novell.com>
1806
1807         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
1808         string is null terminated, but only cut the string short if it
1809         overflows the buffer.   
1810         
1811         (mono_string_to_byvalstr): Also fix this routine.   The code here
1812         was not properly terminating a string (it was only terminated
1813         because of the previous catch-all memset). 
1814
1815         I left the memset, because I do not know if applications expect
1816         the runtime to clear this region. 
1817
1818         Fixes #79944.
1819
1820         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
1821         Clear the error before returning to unmanaged code to prevent the
1822         runtime from being confused later on (fixes  80420).
1823         (ves_icall_type_from_name): Always call mono_loader_clear_error
1824         after parsing a type that could have failed.
1825         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
1826
1827         * loader.c (mono_loader_clear_error): Fix indentation.
1828
1829 2006-12-28  Martin Baulig  <martin@ximian.com>
1830
1831         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
1832
1833 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
1834
1835         * reflection.c: patch from Rolf Bjarne Kvinge to fix
1836         getting a token for an EnumBuilder.
1837
1838 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
1839
1840         * reflection.c: be more careful in case resource generation
1841         fails to create the data array.
1842
1843 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
1844
1845         * sgen-gc.c: write barrier for clone and fix unregister handles.
1846
1847 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
1848
1849         * reflection.c: some fixes needed in the generics code for the moving GC.
1850
1851 2006-12-22  Robert Jordan  <robertj@gmx.net>
1852
1853         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
1854         account. Fixes bug #80299.
1855
1856 2006-12-21  Raja R Harinath  <rharinath@novell.com>
1857
1858         Fix WaitHandle usage in delegates.
1859         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
1860         * object.c (mono_wait_handle_new): Use the property set method to
1861         initialize the handle.
1862         (mono_wait_handle_get_handle): New.
1863         * threadpool.c (mono_async_invoke): Use it.
1864         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
1865         Likewise.
1866         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
1867
1868 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
1869
1870         * marshal.c (emit_marshal): Call emit_marshal_variant and
1871         emit_marshal_com_interface when applicable.
1872         (emit_marshal_variant, emit_marshal_com_interface): Add
1873         methods for this case and remove if's from emit_marshal_object.
1874         
1875 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
1876
1877         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
1878
1879 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
1880
1881         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
1882         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
1883         and GlobalFree on Windows. Remove FIXME.
1884
1885 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
1886
1887         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
1888         implementation for managed objects.
1889
1890 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
1891
1892         * object.c: implemented code to be used for checking
1893         that no reference field overlaps with non-references.
1894
1895 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1896
1897         * threadpool.c: fix queue code to be compatible with the
1898         moving GC.
1899
1900 2006-12-18  Miguel de Icaza  <miguel@novell.com>
1901
1902         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
1903         in structures by throwing ArgumentNullException.
1904
1905         (emit_marshal_safehandle): Also when they are null parameters.
1906
1907         (emit_marshal_safehandle): Add support for ref
1908         SafeHandles parameters
1909
1910 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
1911
1912         * profiler.c: updated to use the mono-dl API instead of
1913         gmodule.
1914
1915 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1916
1917         * profiler.c: updated to use the mono-dl dynamic loading
1918         API instead of gmodule.
1919
1920 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
1921
1922         * profiler.c: use readlink, older versions of glib don't have
1923         g_file_read_link ().
1924
1925 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1926
1927         * profiler.c: try to detect the path to mono if libc fails to provide
1928         a useful name (bug #80286).
1929
1930 2006-12-16  Raja R Harinath  <rharinath@novell.com>
1931
1932         Fix #80242
1933         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
1934         instance, use the generic type definition instead.
1935         (ves_icall_Type_GetNestedTypes): Likewise.
1936         * class.c (mono_class_create_generic): Always set the
1937         nested_classes of a generic instance to NULL, even if the generic
1938         type definition has nested types.
1939
1940 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
1941
1942         * marshal.c (mono_string_from_bstr): Revert previous Windows change
1943         and fix on Linux.
1944         
1945 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1946
1947         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
1948         my arguments were in the wrong order.   I also fixed the Windows
1949         version which seems to have had the same issue.
1950
1951         (mono_free_bstr): On Unix, this is g_free.
1952         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
1953         conversions (for the tests in corlib to pass).
1954
1955 2006-12-14  Miguel de Icaza  <miguel@novell.com>
1956
1957         * marshal.c (emit_ptr_to_object_conv): For now, ignore
1958         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
1959         exception if a ref SafeHandle in a struct has changed).
1960         
1961         (emit_struct_conv): Do not perform layout checks for classes
1962         derived from SafeHandle, as those are specially handled. 
1963
1964         (emit_object_to_ptr_conv): Add support for
1965         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
1966
1967         (emit_marshal_safehandle): Implement conversion of return values
1968         of safehandles (MARSHAL_ACTION_CONV_RESULT).
1969         
1970         * threads.c: WaitHandle now is compiled with two different handles
1971         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
1972         for 2.0.
1973         
1974         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
1975         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
1976         these routines to cope with both kinds of fields.
1977
1978 2006-12-12  Miguel de Icaza  <miguel@novell.com>
1979
1980         * metadata.c (mono_type_to_unmanaged): Handle the case where
1981         type->data.klass is a SafeHandle, and in that case, return the
1982         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
1983         MONO_MARSHAL_CONV_SAFEHANDLE. 
1984
1985 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1986
1987         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
1988         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
1989         calling emit_marshal_object.
1990
1991         (emit_marshal_safehandle): Implement marshalling of
1992         SafeHandle parameters (no ref support yet).
1993
1994         (MarshalAction): Document the defines as I implement
1995         them for SafeHandle.
1996
1997         (emit_marshal_object): indentation police.
1998
1999         * class-internals.h: Define MonoSafeHandle.
2000         Add safehandle_class to MonoDefaults type.
2001
2002         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
2003         list of classes to check for fields. 
2004
2005         * domain.c (mono_init_internal): Add SafeHandle to the list of
2006         mono_defaults loaded.
2007
2008 2006-12-15  Raja R Harinath  <rharinath@novell.com>
2009
2010         Fix #80253
2011         * reflection.c (mono_reflection_bind_generic_parameters): If the
2012         generic type definition is a type builder, ensure that it is fully
2013         initialized before instantiating it.  Kill some dead code.
2014
2015 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
2016
2017         * object.c: clear the loader_error () before loading
2018         more metadata stuff (bug #80258).
2019
2020 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
2021
2022         * icall.c, icall-defs.h: type modifiers icalls for
2023         parameters and properties.
2024
2025 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
2026
2027         * object.c, icall.c: fixed warnings.
2028
2029 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2030
2031         * marshal.c: fixed a couple of leaks and coding style in a few places.
2032
2033 2006-12-08  Dick Porter  <dick@ximian.com>
2034
2035         * process.c: Cope with NULL ProcessStartInfo arguments on windows
2036         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
2037         80173.
2038
2039 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2040
2041         * process.c: ProcessStartInfo may have only filename set and
2042         arguments can be NULL.
2043
2044 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2045
2046         * icall.c: fix leak found by Robert Jordan.
2047
2048 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2049
2050         * marshal.c, marshal.h: generate managed method to access an element
2051         of a multi-dimensional array.
2052
2053 2006-11-30  Paolo Molaro (lupus@ximian.com)
2054
2055         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
2056
2057 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2058
2059         * icall.c: back out GetFields () fix until the serialization code is
2060         fixed to not depend on the incorrect behaviour.
2061
2062 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
2063
2064         * profiler.c: provide defaults if none are set.
2065
2066 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
2067
2068         * Makefile.am, attrdefs.h: new public header file with
2069         constants for attributes for use by embedders.
2070
2071 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
2072
2073         * icall.c: GetFields () fix for bug #80064.
2074
2075 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
2076
2077         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
2078         removed long unused icalls.
2079
2080 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
2081   
2082         * marshal.c: 
2083                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
2084                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
2085                 can be generated without a delegate class.
2086                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
2087         
2088         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2089
2090 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2091
2092         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
2093         #80069.
2094
2095 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2096
2097         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
2098         icall-def.h: added icalls needed by System.GC.
2099
2100 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
2101
2102         * loader.c: ensure the class in catch clauses is handled
2103         correctly for generics methods (fixes bug#79980).
2104
2105 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
2106
2107         * monitor.h, monitor.c: added mono_locks_dump () function
2108         to help debug deadlocks involving managed locks.
2109
2110 2006-11-13  Dick Porter  <dick@ximian.com>
2111
2112         * file-io.c (get_file_attributes): If the file is a symlink try
2113         and get the stat data for the target, but also add the
2114         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
2115         the specs for the windows symlink support, but will probably have
2116         to be reworked when I have test data from a vista machine.  Fixes
2117         bug 79887.
2118
2119 2006-11-13  Dick Porter  <dick@ximian.com>
2120
2121         * gc.c (mono_domain_finalize): 
2122         * marshal.c (mono_delegate_begin_invoke): 
2123         * threadpool.c (socket_io_init, mono_thread_pool_init)
2124         (mono_thread_pool_finish): 
2125         * monitor.c (mono_monitor_try_enter_internal): 
2126         * threads.c (mono_thread_resume, mono_thread_init)
2127         (mono_thread_suspend_all_other_threads)
2128         (mono_thread_execute_interruption): 
2129         * appdomain.c (mono_domain_unload): Check for NULL error returns
2130         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
2131         75733.
2132
2133 2006-11-11  Miguel de Icaza  <miguel@novell.com>
2134
2135         * process.c
2136         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
2137         Only close the handle if the value of the handle is not
2138         INVALID_HANDLE_VALUE.  This just makes the process a bit more
2139         robust.
2140
2141         Improvement for #75733, so that we do not run into this problem. 
2142
2143         
2144         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
2145         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
2146         internal variables.  Fixes #79462 
2147         
2148
2149 2006-11-09  Dick Porter  <dick@ximian.com>
2150
2151         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2152         Use poll() not select().  Fixes bug 79397.
2153
2154 2006-11-09  Raja R Harinath  <rharinath@novell.com>
2155
2156         Fix #79872
2157         * assembly.c (mono_assembly_load_from_full): Check that the given
2158         image has an assembly manifest.
2159
2160 2006-11-09  Ankit Jain  <jankit@novell.com>
2161
2162         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
2163         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
2164         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
2165
2166 2006-11-07  Dick Porter  <dick@ximian.com>
2167
2168         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2169         Put the old resolver behaviour back for pre-2.0 profiles.
2170
2171 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2172
2173         * threadpool.c: precise GC and locking fixes.
2174
2175 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
2176
2177         * class.c: don't load types that have an explicit unaligned
2178         managed reference. Provide better info in the TypeLoad exception.
2179         Part of the fix for bug #79744.
2180         * object.c: use the correct check for class type load issues.
2181
2182 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
2183
2184         * class.c: enforce alignment of fields with managed references
2185         even when Pack=1 is forced by the user (bug #77788).
2186
2187 2006-11-03  Dick Porter  <dick@ximian.com>
2188
2189         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2190         If the address reverse lookup fails, return it as the hostname
2191         anyway.  Fixes bug 79721.
2192
2193 2006-11-03  Dick Porter  <dick@ximian.com>
2194
2195         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
2196         Fix build on Windows.
2197
2198 2006-11-02  Dick Porter  <dick@ximian.com>
2199
2200         * icall-def.h: 
2201         * object-internals.h: 
2202         * exception.c (mono_get_exception_thread_interrupted): 
2203         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
2204         Fixes bug 74525.
2205
2206         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
2207         Check for pending Thread.Interrupt.
2208
2209 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
2210         * loader.c: Fixed bug 79684.
2211
2212 2006-10-27  Dick Porter  <dick@ximian.com>
2213
2214         * file-io.c (get_file_attributes): Force symlinks to directories
2215         to be returned as a regular file.  Fixes bug 79733.
2216 2006-10-26  Dick Porter  <dick@ximian.com>
2217
2218         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
2219         CreateFile to open a directory then we need to set the
2220         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
2221
2222 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
2223
2224         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
2225         friends.
2226
2227 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2228
2229         * sgengc.c: small cleanup of timer code.
2230
2231 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2232
2233         * sgen-gc.c: fix some warnings and start adding support for
2234         complete object removal on domain unload.
2235
2236 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
2237
2238         * assembly.c: build_assembly_name should not consider a version
2239         number without build or revision number invalid. Fixes bug #79715.
2240
2241 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
2242
2243         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
2244         call kernel32 function OutputDebugString directly.
2245         
2246         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2247         
2248 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
2249
2250         * reflection.c: small cleanup, using a function to insert a MonoString
2251         in the string heap.
2252
2253 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
2254
2255         * reflection.c: moving GC fixes.
2256
2257 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
2258
2259         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
2260         all the objects with finalizers belonging to an unloading appdomain.
2261
2262 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
2263
2264         * sgen-gc.c: added ability to allocate even when the nursery is fully
2265         pinned and fixed a couple of bugs.
2266
2267 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2268
2269         * threads.h: Revert the last change for now.
2270
2271         * threads.h (mono_thread_get_pending_exception): Rename this to
2272         mono_thread_get_undeniable_exception ().
2273
2274 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
2275
2276         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
2277         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
2278         when fname does not refer to valid assembly. This result in a more
2279         meaningful error message.
2280         * exception.c: added mono_get_exception_bad_image_format2 which 
2281         constructs a BadImageFormatException using the ctor taking a custom
2282         message and the file name. Passing in a NULL msg results in a default
2283         message.
2284         * exception.h: define mono_get_exception_bad_image_format2 function.
2285         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
2286         when file name pointed to an invalid IL image. Use 
2287         mono_get_exception_file_not_found2 to construct FileNotFoundException,
2288         as this results in a more meaningful error message.
2289
2290 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2291
2292         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
2293         #79465.
2294
2295 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
2296
2297         * metadata.c (mono_type_size): Change the align parameter to guint32 for
2298         consistency with the other _size functions.
2299         (mono_type_stack_size): Ditto.
2300
2301         * class.c object.c icall.c: Fix warnings caused by the above change.
2302
2303         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
2304
2305         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
2306
2307         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
2308
2309 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2310
2311         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
2312         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
2313         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
2314         threadpool.h, threads-types.h: mark more internal functions.
2315
2316 2006-10-11  Dick Porter  <dick@ximian.com>
2317
2318         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2319         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
2320         reproduce the bug even before applying the fix.)
2321
2322 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
2323
2324         * reflection.c: allow retrieving attributes for arguments in generic
2325         methods (bug #79241).
2326
2327 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
2328
2329         * debug-mono-symfile.c: properly check fopen () result (found by
2330         coverity).
2331
2332 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
2333
2334         * reflection.c: make error message clearer and fixed two
2335         issuelets found by Coverity.
2336
2337 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
2338
2339         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
2340
2341 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2342
2343         * object-internals.h, gc-internal.h, profiler-private.h:
2344         mark internal functions.
2345
2346 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2347
2348         * reflection.c: put data in the text section.
2349         * icall.c: recognize more types in type_from_typename ().
2350         * process.c, marshal.c: added some GC FIXMEs.
2351
2352 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2353
2354         * loader.c: check for NULL before initializing.
2355
2356 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
2357
2358         * gc.c (finalizer_thread): Use a non-alertable wait here.
2359
2360         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
2361         until the correct solution is found.
2362
2363 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2364
2365         * reflection.c (mono_module_get_object): Avoid an assert when operating on
2366         modules with no metadata. Fixes #79596.
2367
2368         * image.c (load_metadata_ptrs): Put back the error message when
2369         the #- heap is encountered since the support is not complete yet.
2370
2371 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2372
2373         * gc.c: do not allow the user to SuppressFinalize () a
2374         delegate because it would leak the trampoline if present.
2375
2376 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2377
2378         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
2379         PropertyPtr table.
2380
2381 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
2382
2383         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
2384
2385         * metadata.c (mono_metadata_get_param_attrs): Ditto.
2386
2387         * row-indexes.h: Add definitions for *Ptr tables.
2388
2389         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
2390
2391         * metadata.c (mono_metadata_translate_token_index): New helper function to
2392         translate table indexes used in uncompressed metadata.
2393         (mono_metadata_decode_table_row): Ditto.
2394         (mono_metadata_decode_table_row_col): Ditto.
2395
2396         * metadata.c: Add table schema for *Ptr tables.
2397
2398         * class.c loader.c: Use the new helper function to access the affected metadata
2399         tables.
2400         
2401         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
2402         #38532.
2403         
2404 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
2405
2406         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
2407         sequences which can be unbounded in size. Fixes #79583.
2408
2409 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
2410
2411         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
2412         static initialization.
2413
2414         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
2415
2416         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
2417
2418         * domain.c (mono_domain_free): Free up type_init_exception_hash.
2419
2420         * object.c (mono_runtime_class_init): Implement correct semantics when a static
2421         ctor fails, i.e. throw the same exception on subsequent accesses.
2422         
2423 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
2424
2425         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
2426         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
2427         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
2428         Handle marshalling of interfaces and VARIANTs contained in structs.
2429         
2430         Code is contributed under MIT/X11 license.
2431         
2432 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
2433
2434         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
2435         
2436         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
2437         mempool.
2438
2439 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2440
2441         * console-io.c: ignore previous SIGINT handler.
2442
2443 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
2444
2445         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
2446         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
2447         #79460, #79461, #79485.
2448
2449         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
2450
2451         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
2452         #79217.
2453
2454 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2455
2456         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
2457         could be generated from it.
2458
2459 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
2460
2461         * rand.c: fix read loop to correctly handle EINTR.
2462
2463 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2464
2465         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
2466         internal calls are defined to keep methods closer to the declaring
2467         type and allow a significant reduction in runtime relocations and
2468         memory usage.
2469
2470 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
2471
2472         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
2473         exception message to have FileNotFoundException use the default
2474         assembly load error message. Fixes bug #79426.
2475         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
2476
2477 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2478
2479         * threadpool.c: (start_thread_or_queue) use the root domain when
2480         creating the thread instead of the async object one.
2481
2482 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
2483
2484         * class.c, object.c, class-internals.h, reflection.c:
2485         for arrays, store element_size inside MonoClass (speedup
2486         for array object creation).
2487
2488 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
2489
2490         * icall.c: fixed CodeBase to use the file name and not the module
2491         name (bug #79365).
2492
2493 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2494
2495         * mono-debug.c, mono-debug.h: export find_method as
2496         mono_debug_find_method ().
2497
2498 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2499
2500         * debug-helpers.c, class-internals.h: added a few functions useful
2501         when debugging under gdb.
2502
2503 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2504
2505         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
2506         characters that need special handling.
2507
2508 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
2509
2510         * mono-config.c: make the os/cpu specification more flexible,
2511         allowing lists and negation.
2512
2513 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
2514
2515         * marshal.c: COM Interop fixes. Handle case where method->klass.
2516         is interface. Handle BSTR/MonoString when null. Use CDECL as 
2517         calling convention on non-windows platforms. This is for
2518         compatibility with XPCOM and MainWin COM.
2519         
2520         Code is contributed under MIT/X11 license.
2521         
2522
2523 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
2524
2525         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
2526         correctly. Fixes #79217.
2527
2528         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
2529
2530 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
2531
2532         * mono-config.c: allow both an os and cpu attribute for dllmap
2533         and dllentry elemnets to enable a single config file to be used
2534         for multiple architectures.
2535
2536 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
2537
2538         * loader.c: MonoLoaderError was cleared too soon on load failure.
2539         Fixes bug #79424.
2540
2541 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
2542
2543         * icall.c: use the defining class vtable when accessing a
2544         static field, not a pobblibly derived class.
2545
2546 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
2547
2548         * icall.c string-icalls.c: Remove references to unicode.h.
2549
2550         * unicode.h unicode.c Makefile.am: Remove these unused source files.
2551
2552         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
2553
2554         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
2555         indicating the image where custom marshaller types should be looked up.
2556         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
2557         custom marshallers, instead of corlib. Fixes #79425.
2558
2559 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
2560
2561         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
2562
2563 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
2564
2565         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
2566         Implement Environment.ProcessorCount.
2567         
2568         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
2569         Implement Environment.ProcessorCount.
2570         
2571         * icall.c: 
2572         Add Environment.ProcessorCount icall.
2573         
2574         Patch by Jason McFall.
2575
2576 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2577
2578         * assembly.c: don't append .exe/.dll when the filename already contains
2579         one of those extensions.
2580
2581 2006-09-12  Martin Baulig  <martin@ximian.com>
2582
2583         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
2584         to array interfaces.
2585
2586 2006-09-11  Martin Baulig  <martin@ximian.com>
2587
2588         * reflection.c (mono_image_build_metadata): Create the
2589         MethodImpl's after emitting all types and methods, so we don't
2590         need another fixup pass for them.
2591
2592 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
2593
2594         * class.c (mono_class_from_name_case): Fix regression introduced by the last
2595         change.
2596
2597 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
2598
2599         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
2600         unload.
2601
2602 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
2603
2604         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
2605         args is not set. Fixes #78926.
2606
2607 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
2608
2609         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
2610
2611         * image.c (load_class_names): Move this to class.c, and rename it to 
2612         'mono_image_init_name_cache'.
2613         (load_modules): Fix a warning.
2614
2615         * class.c icall.c image.c: Initialize image->name_cache lazily.
2616
2617         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
2618         on its name using information in the AOT file.
2619
2620         * class.c (mono_class_from_name): Use the new hook function.
2621
2622 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
2623
2624         * reflection.c (mono_param_get_objects): Handle enum default parameter values
2625         correctly.
2626
2627         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
2628         Fixes #79289.
2629         
2630 2006-09-06  Martin Baulig  <martin@ximian.com>
2631
2632         * icall.c (mono_lookup_internal_call): Small fix.
2633
2634 2006-09-05  Raja R Harinath  <rharinath@novell.com>
2635
2636         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
2637         double g_free.
2638
2639 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
2640
2641         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
2642         when --debug is specified.
2643
2644 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
2645
2646         * class.c (setup_generic_array_ifaces): Fix a warning.
2647
2648 2006-09-04  Miguel de Icaza  <miguel@novell.com>
2649
2650         * Temporarily remove the patch to assemly.c that checks the
2651         assembly versions as it breaks our gacutil.
2652
2653 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
2654
2655         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
2656
2657         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
2658         a net 1.0 runtime.
2659
2660         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
2661         created using the default ctor. Fixes #79152.
2662         (mono_string_builder_to_utf16): Ditto.
2663
2664 2006-09-01  Martin Baulig  <martin@ximian.com>
2665
2666         Fix handling of the generic array interfaces.
2667
2668         * class-internals.h
2669         (MonoDefaults): Removed `generic_array_class' and added
2670         `generic_ilist' class.
2671
2672         * class.c
2673         (mono_bounded_array_class_get): Add the new generic array interfaces.
2674         (setup_generic_array_ifaces): New static method; create vtable
2675         entries for each method in the generic array interfaces.
2676
2677         * metadata.c
2678         (select_container): Allow "parent-less" generic methods.
2679
2680         * marshal.c
2681         (mono_marshal_get_generic_array_helper): New public method.
2682
2683         * icall.c
2684         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
2685         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
2686         moved the interncall into System.Array.
2687
2688 2006-09-01  Raja R Harinath  <rharinath@novell.com>
2689
2690         A few more cases of avoiding work on types with ->byref set.
2691         Has the real fix for #79238
2692         * icall.c (is_generic_parameter): New helper.
2693         (ves_icall_Type_GetGenericParameterPosition): Use it.
2694         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
2695         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
2696         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
2697         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
2698         reference types.
2699         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
2700         reference types.
2701         (ves_icall_Type_get_IsGenericInstance): Likewise.
2702         (ves_icall_Type_get_IsGenericType): Likewise.
2703
2704 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
2705
2706         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
2707         class if possible.
2708
2709         * mempool.h (mono_mempool_get_allocated): New helper function.
2710
2711         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
2712         change.
2713
2714         * mempool.c: Fix warnings and the calculation of stats.
2715
2716         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
2717
2718         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
2719
2720         * loader.c (mono_get_method_from_token): Update method_count stat.
2721
2722         * class-internals.h (MonoStats): Add some stats.
2723
2724 2006-08-31 Robert Jordan  <robertj@gmx.net>
2725
2726         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
2727         with managed variants.
2728         All code is contributed under the MIT/X11 license.
2729         
2730 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
2731
2732         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
2733         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
2734
2735         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
2736
2737         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
2738         with cycles in classes.
2739
2740         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
2741
2742         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
2743         missing a [MarshalAs] directive. Fixes #79203.
2744
2745         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
2746         klass->marshal_info. Fixes #79217.
2747
2748 2006-08-30  Martin Baulig  <martin@ximian.com>
2749
2750         Committing a patch from Joachim Ante <joe@otee.dk>:
2751         Add support for binary data symbol stores.
2752
2753         * debug-mono-symfile.c
2754         (mono_debug_open_mono_symbol_file): Renamed into
2755         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
2756         arguments.
2757
2758         * mono-debug.c
2759         (mono_debug_open_image): Added `raw_contents' and `size' args.
2760         (mono_debug_init_2_memory): New public function.
2761
2762 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
2763
2764         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
2765
2766 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2767
2768         * appdomain.c: implement support for ShadowCopyFiles.
2769
2770 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
2771
2772         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
2773         when value is NULL (and should remove CID #51).
2774
2775 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2776
2777         * image.c: moved 2 functions to ../utils.
2778
2779 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
2780
2781         * gc.c: cope with the target object of a GC handle being NULL
2782         (bug #78877).
2783
2784 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
2785
2786         * class.c: recursively check parent's explicit implementations
2787         of interface methods (fixes bug #79125).
2788
2789 2006-08-19  Miguel de Icaza  <miguel@novell.com>
2790
2791         * filewatcher.c: Avoid warnings when building, do not redefine
2792         constants that are defined.
2793
2794         Remove warnings.
2795
2796 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2797
2798         * image.c: don't fail when the link points to an absolute path.
2799
2800 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
2801
2802         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
2803         Fix CID #3.
2804
2805 2006-08-17  Miguel de Icaza  <miguel@novell.com>
2806
2807         * image.c (full_path): A new method used to obtain the actual path
2808         of an assembly even in the presence of symbolic links.  
2809
2810         This is necessary for the case where we are running a binary that
2811         has been GACed, but we are using the "published" path name
2812         ($prefix/mono/1.0/blah.exe) which happens to point to the real
2813         file in the GAC.
2814
2815         This was the source of the failure for the `xsp' command with the
2816         recent AppDomain changes, as far as the runtime was concerned,
2817         there were two different assemblies: $prefix/mono/1.0/blah.exe and
2818         $prefix/mono/gac/blah/version/blah.exe.
2819
2820         (do_mono_image_open): use full path
2821
2822 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2823
2824         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
2825
2826 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
2827
2828         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
2829         domain_id is supplied. Fix CID #241 and corlib's unit tests.
2830
2831 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2832
2833         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
2834         small structures. Fixes #78990.
2835
2836 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2837
2838         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
2839
2840         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
2841
2842 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2843
2844         * appdomain.c:
2845         * marshal.c: don't load all the assemblies from a domain into newly
2846         created ones. The new domains might have different rules and load
2847         assemblies from different locations. Fixes bug #76757.
2848
2849         Patch by Lluis. Conflicts resolved by Brian Crowell.
2850
2851 2006-08-16  Alp Toker  <alp@atoker.com>
2852
2853         * socket-io.c: First half of the fix for #79084.
2854         Set sa_size to the length of the content, not that of the struct.
2855         Don't add NULL suffix to the content, this should be done in
2856         managed code if needed.
2857
2858 2006-08-14  Raja R Harinath  <rharinath@novell.com>
2859
2860         Fix part of #79012
2861         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
2862         mono_metadata_parse_type returns NULL.
2863
2864 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
2865
2866         * normalization-tables.h : new file for string normalization data.
2867         * locales.c, locales.h, icall.c :
2868           added load_normalization_resource() for string normalization,
2869           and icall as well.
2870         * Makefile.am : added normalization-tables.h to the sources.
2871
2872 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
2873
2874         * marshal.c: Add more helper functions to reduce code duplication and use them
2875         everywhere.
2876
2877 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
2878
2879         * marshal.c: Fix non-x86 stdcall warnings.
2880         
2881         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
2882         them everywhere.
2883
2884 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
2885
2886         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
2887         type check on multi-dimensional arrays. Fixes #79000.
2888
2889 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
2890
2891         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
2892         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
2893         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
2894         * class-internals.h: add is_com_object to class structure.
2895         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
2896         null checks to COM object marshalling. Fix .ctor call on RCW.
2897         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
2898         
2899         All code is contributed under the MIT/X11 license.
2900
2901 2006-08-09  Dick Porter  <dick@ximian.com>
2902
2903         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
2904         racing mono_monitor_allocator_lock() somewhere, so don't delete
2905         the critical section for now.  Found by running and exiting
2906         monodevelop.
2907
2908 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
2909
2910         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
2911         (ves_icall_System_ComObject_FindInterface): Ditto.
2912         (ves_icall_System_ComObject_CacheInterface): Ditto.
2913
2914         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
2915         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
2916
2917 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2918
2919         * threadpool.c: treat pipes from process asynchronous reads as sockets
2920         when reading from them, so we get select/poll or epoll to wait for
2921         data.
2922
2923 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
2924
2925         * loader.c: Fix a typo (CID #233) in the null check.
2926
2927 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
2928
2929         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
2930         Hopefully fixes #78949.
2931         
2932         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
2933         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
2934         bytes. Fixes #78972.
2935
2936 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2937
2938         * filewatcher.c: we need to set errno here.
2939
2940 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2941
2942         * filewatcher.c: let Win32Exception get the error value.
2943
2944 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2945
2946         * filewatcher.c: translate errno into win32 errors for Win32Exception
2947         to know what happened.
2948
2949 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
2950
2951         * threadpool.c: Fix more warnings.
2952
2953         * assembly.c (search_loaded): Fix warnings.
2954
2955         * threadpool.c (mono_thread_pool_finish): Fix warnings.
2956         (mono_async_invoke): Ditto.
2957
2958 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
2959
2960         * object.c (mono_remote_class_vtable): Need to create proxy vtable
2961         entries for __ComObject type in addition to ComImport types.
2962         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
2963         about hash table.
2964         
2965         All code is contributed under the MIT/X11 license.
2966
2967 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2968
2969         * image.c: avoid tentative loading of modulerefs that contain
2970         no metadata (P/Invoke library names).
2971
2972 2006-07-28  Dick Porter  <dick@ximian.com>
2973
2974         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
2975         mono_loader_lock() somewhere, so don't delete the critical section
2976         for now.  Found by running and exiting monodevelop.
2977
2978 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2979
2980         * filewatcher.c: define the inotify syscalls when we're building on
2981         linux and have sys/syscall.h. The build system might not have support
2982         for inotify but the target system might have it.
2983
2984 2006-07-26  Miguel de Icaza  <miguel@novell.com>
2985
2986         * domain.c: Documentation updates.
2987
2988         * loader.c (mono_free_method): Do not release the method
2989         information if we are being profiled, as profilers will use this
2990         information at shut down to present some data to the user.
2991
2992         This is needed so that the profiler does not crash, as the
2993         profiler tends to keep MonoMethods around, and they might become
2994         invalid if we free these.
2995
2996         (mono_get_method_constrained): Return the original CIL stream
2997         method as well, so verification can be performed against it.
2998
2999 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3000
3001         * filewatcher.[ch]: support for inotify file system watcher.
3002         * icall.c: add new internal calls for the inotify file system watcher.
3003
3004 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3005
3006         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
3007         #78888.
3008
3009 2006-07-20  Dick Porter  <dick@ximian.com>
3010
3011         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
3012         warning.
3013
3014 2006-07-20  Dick Porter  <dick@ximian.com>
3015
3016         * threads.c (start_wrapper): Do the thread cleanup while we still
3017         hold a reference to its object.  Fixes bug 78123.
3018
3019 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
3020
3021         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
3022         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
3023           "managed-to-managed".
3024         * icall.c: Redirect string constructors that take sbyte* to
3025           ves_icall_System_String_ctor_RedirectToCreateString.
3026         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
3027           to CreateString () methods with matching signature.
3028         * reflection.c: Use original security informations for
3029           MONO_WRAPPER_MANAGED_TO_MANAGED.
3030         * security-manager.c: Use original security informations for
3031           MONO_WRAPPER_MANAGED_TO_MANAGED.
3032         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
3033           that is a placeholder and only its address should be used.
3034         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
3035           that is a placeholder and only its address should be used.
3036
3037 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
3038
3039         Begin implementing COM Interop.
3040         * appdomain.c: Increment corlib version.
3041         * class.c: Set ComImport classes' parent to __ComObject.
3042         * loader.c: Mark cominterop methods as such.
3043         * domain.c: Add __ComObject class to MonoDefaults structure.
3044         * image.c: Add 2 hashtables to the image for COM Interop related methods
3045         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
3046         using the mempool allocator
3047         
3048         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
3049         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
3050         declaration for mono_metadata_type_dup_mp.
3051         
3052         * debug-helpers.c: Added strings for two additional wrapper types
3053         * object.c: Create proxy objects for ComImport classes
3054         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
3055         and added __ComObject class to MonoDefaults structure.
3056         
3057         * object-internals.h: Finish MonoRealProxy definition, and add definition of
3058         MonoComInteropProxy and MonoComObject.
3059         
3060         * marshal.c: Added support for COM Interop
3061         (signature_cominterop): Converts managed signature to corresponding
3062         unmanaged COM signature.
3063         (cominterop_get_function_pointer): gets unmanaged function pointer via
3064         COM object vtable
3065         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
3066         (cominterop_get_method_interface): returns interface type that method is defined on
3067         (mono_mb_emit_cominterop_call): emits native call to function pointer
3068         gotten from vtable
3069         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
3070         that matches signature of unmanaged function.
3071         (cominterop_get_native_wrapper): wrapper around adjusted method call.
3072         (cominterop_get_invoke): forwards call from proxy to __ComObject
3073         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
3074         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
3075         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
3076         
3077         * marshal.h: Added Marshal icall declarations.
3078         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
3079         so we can access them in finalizer
3080         
3081 2006-07-14  Dick Porter  <dick@ximian.com>
3082
3083         * object.c (mono_type_initialization_cleanup): Fix a race
3084         condition by temporarily commenting out the critical section
3085         deletion.
3086
3087 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
3088
3089         * reflection.c (create_custom_attr): Fix some warnings.
3090         (create_custom_attr_data): Ditto.
3091         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
3092         types. Fixes #78855.
3093
3094 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
3095
3096         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
3097
3098         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
3099
3100 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
3101
3102         * reflection.c (resolve_object): Add support for DynamicMethod.
3103
3104         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
3105         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
3106
3107 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
3108
3109         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
3110         don't leak GPtrArray's pdata has we have no use (nor free) for it.
3111
3112 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
3113
3114         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
3115         Fixes #77888.
3116
3117 2006-06-30  Raja R Harinath  <rharinath@novell.com>
3118
3119         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
3120         slightly: remove a shadow local variable.
3121
3122 2006-06-29  Raja R Harinath  <rharinath@novell.com>
3123
3124         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
3125         definition that introduces the virtual function slot.
3126         Also fix Coverity #105.
3127
3128 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
3129
3130         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
3131         for dynamic assemblies. Fixes #78724.
3132
3133 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
3134
3135         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
3136         Fixes #78722.
3137
3138 2006-06-21  Martin Baulig  <martin@ximian.com>
3139
3140         * reflection.c
3141         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
3142         fixes #76484.
3143
3144 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
3145
3146         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
3147
3148 2006-06-20  Raja R Harinath  <rharinath@novell.com>
3149
3150         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
3151         nor TYPEREFs.
3152         * class.c (mono_class_create_from_typespec): Add 'context' argument.
3153         Inflate result if necessary.
3154         (mono_class_get_full): Remove old version.  Rename from
3155         'mono_class_get' and add 'context' argument.  Pass it to
3156         ..._create_from_typespec.
3157         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
3158         (mono_ldtoken): Revert change below.
3159
3160 2006-06-20  Martin Baulig  <martin@ximian.com>
3161
3162         * class.c (mono_ldtoken): Don't pass the generic context to
3163         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
3164
3165 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
3166
3167         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
3168         and later freeing it. Fixes #78638.
3169
3170 2006-06-15  Miguel de Icaza  <miguel@novell.com>
3171
3172         * icall.c (mono_class_get_throw): Revert over-zealous error
3173         throwing, the caller for mono_class_get_throw will cope with
3174         errors when classes are not properly initialized already.
3175
3176         The code still copes with loader exceptions though.
3177
3178         Fixes the regression in reftype1 and reftype3 from the CAS tests.
3179         
3180 2006-06-14  Miguel de Icaza  <miguel@novell.com>
3181
3182         Fixes the `make run1' version of RuntimeAbort (to be commited,
3183         source is in Bugzilla).
3184         
3185         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
3186         FALSE on class loading failure instead of returning true.
3187
3188         * class.c (mono_class_create_from_typedef): It is possible for
3189         mono_metadata_interfaces_from_typedef_full to fail if a class is
3190         not found, cope with this.
3191         
3192
3193 2006-06-14  Dick Porter  <dick@ximian.com>
3194
3195         * socket-io.c: 
3196         * process.c: Fix a bunch of signed/unsigned warnings from gcc
3197         4.1.1
3198
3199 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
3200
3201         * culture-info-table.h : oops, forgot to make it nsync with r61548.
3202
3203 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3204
3205         * icall.c: Another fix for building mono in Visual Studio.
3206
3207 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3208
3209         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
3210         
3211 2006-06-09  Martin Baulig  <martin@ximian.com>
3212
3213         * debug-mono-symfile.c: Put this back and really fix it this
3214         time. Sorry for all the trouble.
3215
3216 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
3217
3218         * icall.c (mono_class_get_throw): Fix a warning.
3219         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
3220         ReflectionTypeLoadException if needed. Fixes #78606.
3221
3222         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
3223         (mono_class_init): Ditto.
3224
3225         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
3226         ref_only exceptions.
3227         (mono_loader_clear_error): Make this work even if there is no error.
3228
3229 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
3230
3231         * object-internals.h marshal.c marshal.h icall.c: Implement method 
3232         Marshal.GetComSlotForMethodInfo using internal call.
3233
3234 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
3235
3236         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
3237         a function for signalling it.
3238
3239         * class.c (mono_class_from_typeref): Use the new kind of loader error when
3240         a referenced assembly is not found.
3241
3242         * loader.c (mono_loader_error_prepare_exception): Add support for 
3243         LOADER_ERROR_ASSEMBLY. Fix formatting.
3244
3245 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
3246
3247         * domain.c appdomain.c class-internals.h marshal.c: Add support 
3248         for VARIANT marshalling on windows and increment corlib version
3249         since Variant struct was added.
3250
3251 2006-06-03  Miguel de Icaza  <miguel@novell.com>
3252
3253         * debug-mono-symfile.c: Revert Martin's previous patch which broke
3254         stack trace line information:
3255
3256         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
3257         (Martin) when looking up B which is between A and C, return A not C.
3258
3259         Bug is #78573.
3260
3261         Thanks to Alexander Olk for tracking this down.
3262
3263 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
3264
3265         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
3266         
3267         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
3268         avoid clobbering its value.
3269         (mono_string_to_lpstr): Fix a warning on windows.
3270
3271 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3272
3273         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
3274
3275         * reflection.c loader.c: Removed references to 'dummy' flag.
3276
3277         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
3278
3279         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
3280         it gets GC tracking.
3281
3282         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
3283         GC tracking.
3284         
3285         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
3286
3287         * marshal.c threadpool.c: Update callers of mono_async_result_new.
3288
3289         * appdomain.c: Bump corlib version.
3290
3291 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3292
3293         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3294         CEE_STIND_REF when working with object references.
3295
3296 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3297
3298         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
3299         Fixes #78539.
3300
3301 2006-05-30  Miguel de Icaza  <miguel@novell.com>
3302
3303         * loader.c (method_from_memberref): Fix argument value for
3304         mono_loader_set_error_method_load (I was passing the MonoClass
3305         instead of the class name char *).
3306
3307 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3308
3309         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3310         CEE_STIND_REF when working with object references.
3311
3312 2006-05-30  Martin Baulig  <martin@ximian.com>
3313
3314         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
3315         mono_method_full_name() change and replace the ':' with a '.'
3316         here.
3317
3318 2006-05-30  Martin Baulig  <martin@ximian.com>
3319
3320         * debug-mono-symfile.c
3321         (mono_debug_symfile_lookup_location): Fix the algorithm:
3322         when looking up B which is between A and C, return A not C.
3323
3324 2006-05-29  Martin Baulig  <martin@ximian.com>
3325
3326         * mono-debug.h
3327         (MonoDebugMethodInfo): Make the typedef public.
3328         (MonoDebugSourceLocation): New public struct.
3329
3330         * mono-debug.c
3331         (mono_debug_source_location_from_address): Removed.
3332         (mono_debug_source_location_from_il_offset): Removed.
3333         (mono_debug_il_offset_from_address): Removed.
3334         (mono_debug_address_from_il_offset): Removed.
3335         (mono_debug_lookup_method): New public function.
3336         (mono_debug_lookup_source_location): New public function; replaces
3337         the old mono_debug_source_location_from_*() functions; see the
3338         inline documentation.
3339         (mono_debug_free_source_location): New public function.
3340         (mono_debug_print_stack_frame): New public function; see the
3341         inline documentation.
3342
3343         * debug-mono-symfile.c
3344         (mono_debug_find_source_location): Renamed into
3345         mono_debug_symfile_lookup_location(); only take a
3346         `MonoDebugMethodInfo *' and an `offset' argument; added inline
3347         documentation.
3348         (mono_debug_find_method): Renamed into
3349         mono_debug_symfile_lookup_method().
3350
3351 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
3352
3353         * assembly.c (mono_assembly_open_full): Dont overwrite the status
3354         returned by mono_image_open_full ().
3355
3356         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
3357         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
3358         #78517.
3359
3360         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
3361         #78518.
3362
3363 2006-05-27  Miguel de Icaza  <miguel@novell.com>
3364
3365         * class.c (mono_class_from_typeref): handle missing images
3366         earlier, deals with bug #78418.   Refactor code; 
3367
3368         Fix a warning introduced in my previous commit (some stale code
3369         from before I revisited my patch).
3370
3371         * class.c (mono_class_create_from_typedef): On failure, remove the
3372         class from the MonoImage->class_cache as the class is not
3373         initialized;   Fixes the leak pointed out by Paolo.
3374
3375 2006-05-25  Dick Porter  <dick@ximian.com>
3376
3377         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
3378         DeleteCriticalSections until I figure out which one may still be
3379         sometimes locked when mono_thread_cleanup is called.
3380
3381 2006-05-24  Dick Porter  <dick@ximian.com>
3382
3383         * threads.c (mono_thread_cleanup): Move the threading cleanup out
3384         of mono_thread_manage and back into its own function, so it can be
3385         called after the finalizer thread has finished.
3386
3387         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
3388
3389 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
3390
3391         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
3392         Fixes #78495.
3393
3394         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
3395         with non-blittable elements.
3396         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
3397
3398 2006-05-24  Martin Baulig  <martin@ximian.com>
3399
3400         * mono-debug-debugger.h (MonoDebuggerEvent): Added
3401         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
3402
3403         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
3404         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
3405         `mono_debugger_event_handler' to NULL.
3406
3407 2006-05-24  Martin Baulig  <martin@ximian.com>
3408
3409         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
3410
3411 2006-05-24  Martin Baulig  <martin@ximian.com>
3412
3413         * mono-debug-debugger.h
3414         (mono_debugger_create_notification_function): Added
3415         `MonoCodeManager *' argument.
3416
3417 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
3418
3419         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
3420
3421 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
3422
3423         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
3424         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
3425         implementation.
3426
3427 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
3428
3429         * icall.c: precise GC support: objects can't be stored in unmanaged
3430         memory anymore, even if they are kept alive by other references: since
3431         they can move the GC needs to be able to always find them.
3432
3433 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
3434
3435         * object.c: precise GC support for static fields. Support
3436         for moving GCs: write barriers and pinned allocation for interned
3437         strings.
3438
3439 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
3440
3441         * domain.c, domain-internals.h: precise GC support for the MonoDomain
3442         structure.
3443
3444 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
3445
3446         * class.c, gc.c: sgen and precise GC updates.
3447
3448 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
3449
3450         * marshal.h, marshal.c: added write barrier wrapper and precise type
3451         fixes.
3452
3453 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
3454
3455         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
3456         support.
3457
3458 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
3459
3460         * reflection.c: precise and sgen GC updates.
3461
3462 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
3463
3464         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
3465
3466 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
3467
3468         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
3469
3470 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
3471
3472         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
3473         MONO_TYPE_OBJECT. Fixes #78462.
3474
3475 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
3476
3477         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
3478         and blittable types.
3479
3480 2006-05-17  Miguel de Icaza  <miguel@novell.com>
3481
3482         * class.c (mono_class_get_exception_for_failure): Implement parts
3483         of a TODO: if the loader error is set (instead of the class
3484         error), we return a Loader exception that can be properly thrown
3485         elsewhere.
3486
3487         This was exposed by some Winforms 2.0 code that I tried to run
3488         (Atsushi pointed me to it).
3489
3490 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
3491
3492         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
3493         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
3494         
3495         * marshal.c (emit_marshal_vtype): Add limited support for 
3496         UnmanagedType.LPStruct. Fixes #78427.
3497
3498         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
3499         Applied a patch from kangaroo to fix #77523.
3500
3501 2006-05-17  Martin Baulig  <martin@ximian.com>
3502
3503         * threads.c
3504         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
3505         (debugger_thread_created): Removed.
3506         (debugger_thread_exited): Removed.
3507
3508 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
3509
3510         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3511
3512         * object-internals.h (MonoReflectionResource): Sync with managed version.
3513
3514 2006-05-12  Wade Berrier <wberrier@novell.com>
3515
3516         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
3517
3518 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
3519
3520         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
3521         functions try to allocate from the image mempool.
3522
3523 2006-05-12  Dick Porter  <dick@ximian.com>
3524
3525         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
3526
3527 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
3528
3529         * object.c: The FieldGetter and FieldSetter methods require the full
3530         name of the class, not only the name. Fixes bug #78277.
3531
3532 2006-05-11  Miguel de Icaza  <miguel@novell.com>
3533
3534         * loader.c (method_from_memberref): Do not pass the NULL klass to
3535         mono_loader_set_error_() methods.  Pass the non-NULL value
3536         (class). 
3537
3538 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
3539
3540         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
3541         (mono_assembly_close): Null out assembly->image->references after freeing it.
3542
3543         * image.c (mono_image_close): Free image->references.
3544         
3545         * reflection.c (mono_image_basic_init): Fix a small memory leak.
3546
3547 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
3548
3549         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
3550         before checking if it's NULL (g_assert).
3551
3552 2006-05-10  Martin Baulig  <martin@ximian.com>
3553
3554         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
3555         I thought I already killed that two months ago, but now it somehow reappeared.
3556
3557 2006-05-10  Martin Baulig  <martin@ximian.com>
3558
3559         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
3560
3561 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
3562
3563         * reflection.c: Allocate memory for dynamically created methods in the image
3564         mempools.
3565
3566 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
3567
3568         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
3569         don't use the ad pointer before checking if it's NULL (g_assert).
3570
3571 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
3572
3573         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
3574         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
3575
3576         * marshal.c: Allocate all signatures from mempools.
3577
3578         * marshal.c: Allocate some more signatures from mempools.
3579
3580 2006-05-09  Miguel de Icaza  <miguel@novell.com>
3581
3582         * object.c (mono_load_remote_field): The code used to provide a
3583         temporary variable for returning results if the user did not
3584         provide a result pointer.  But our temporary variable was allocted
3585         on the satck.
3586
3587         Fix calling code to always pass a result area.   Coverity ID 103.
3588
3589 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
3590
3591         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
3592         value, not the old. Fixes #78312.
3593         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
3594
3595         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
3596         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
3597         per-image cache.
3598
3599         * assembly.c (mono_assembly_close): Free image->references.
3600
3601         * assembly.c (mono_assembly_names_equal): Fix a warning.
3602         (mono_assemblies_cleanup): Cleanup more global data.
3603
3604         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
3605
3606         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
3607         ptr_cache and image->modules.
3608
3609         * image.c (mono_image_init): Allocate array_cache lazily.
3610         
3611 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3612
3613         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
3614         behavior was changed recently and has bad side effects.
3615
3616 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
3617
3618         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
3619         
3620         * assembly.c (mono_assembly_close): Remove a debug printf.
3621
3622         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
3623
3624         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
3625         to also allow for temporary references between mono_image_open ()/close ().
3626
3627         * domain.c (get_runtimes_from_exe): Add a FIXME.        
3628
3629 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
3630
3631         * marshal.c: Fix support for dynamic methods.
3632
3633         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
3634
3635         * marshal.c (mono_marshal_cleanup): New cleanup function.
3636
3637         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
3638         image mempools.
3639
3640         * class.c (mono_class_init): Fix leaking class->nested_classes.
3641
3642         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
3643
3644         * image.c (mono_image_init): Initialize the new cashes.
3645
3646         * image.c (mono_image_close): Destroy the new cashes.
3647
3648         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
3649
3650         * mempool.c (mono_mempool_strdup): New helper function.
3651
3652         * class-internals.h: Add prototype for mono_loader_unlock ().
3653
3654         * domain.c (mono_jit_info_table_find): Fix a warning.
3655         (mono_debugger_check_runtime_version): Ditto.
3656
3657         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
3658         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
3659         functions to these modules.
3660
3661         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
3662         metadata modules.
3663         
3664         * marshal.c (mono_free_bstr): Fix a warning.
3665
3666         * assembly.c (mono_assembly_open_full): Fix another small leak.
3667
3668         * object.c: Fix some unload leaks in the remoting code.
3669
3670         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
3671         function.
3672
3673         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
3674
3675         * reflection.c: Fix some unload leaks in dynamic assemblies.
3676
3677 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
3678
3679         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
3680         * marshal.h: Add BSTR support on Win32
3681         * icall.c: Add BSTR icalls
3682         * metadata.h: Add BSTR enums
3683
3684 2006-04-28  Miguel de Icaza  <miguel@novell.com>
3685
3686         Work to catch the crash from #76795 and turn it into an
3687         exception.   As I stubbed out pieces of the VisualBasic support,
3688         I found a number of places where the code was failing and I added
3689         checks to those places. 
3690         
3691         * metadata.c (do_mono_metadata_parse_generic_class): Make this
3692         function return a status code.  If we fail to parse the signature
3693         from mono_metadata_parse_generic_inst, return FALSE.
3694
3695         * loader.c (mono_get_method_from_token): If we fail to load the
3696         method (mono_class_get) return NULL.   
3697
3698         * (method_from_memberref): Return NULL if we are unable to parse
3699         the method signature
3700
3701         (mono_loader_error_prepare_exception): Since we now use the
3702         loader_error flag internally to stop processing, and obtaining
3703         exceptions that might be thrown will walk this code path the
3704         proper way of going from a MonoLoaderError into a
3705         MonoException was convoluted.   This new routine encapsulates the
3706         process of turning the error into an exception and *clearing* the
3707         error afterwards.
3708         
3709 2006-04-27  Miguel de Icaza  <miguel@novell.com>
3710
3711         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
3712         with missing assemblies), and to cope with:
3713
3714                 * Missing fieldref from a non-existing assembly.
3715                 * Missing methodref from a non-existing assembly.
3716
3717         The first batch of work to address *some* of the issues from 76661.
3718         
3719         * object.c (mono_class_create_runtime_vtable): If we fail to
3720         initialize the class raise the exception here. 
3721
3722         * metadata.c (mono_class_get_overrides_full): If any methods fail
3723         to load return the failure to the caller.
3724
3725         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
3726         flagging assemblies that failed to load.   
3727
3728         Do not crash if we are unable to load the assembly.
3729
3730         (mono_assembly_close): Do nothing with REFERENCE_MISSING
3731         assemblies. 
3732
3733         * loader.c (mono_loader_set_error_type_load): Change the
3734         convention to always pass unallocated strings, so we make our own
3735         copies (I know our own code had duplicated strings before, but
3736         this keeps the normal conventions).
3737         (method_from_memberref): Call mono_loader_set_error_method_load
3738         for all possible failures of loading the class. 
3739         Remove assert, turn into a loader error.
3740
3741         (mono_loader_error_to_exception): Move this routine from mini
3742         (mini_loader_error_to_exception) there was no need to have that in
3743         mini. 
3744
3745         * class.c (mono_class_from_typeref): If we were not able to load
3746         the assembly with mono_assembly_load_reference, call the
3747         mono_loader_set_error_type_load to register the problem.
3748
3749         (mono_class_setup_fields): If we fail to load the type from
3750         mono_metadata_parse_type_full, call mono_class_set_failure and
3751         break from the loop.
3752
3753         If class->exception_type is set, we do not layout the fields as
3754         that might crash the runtime, and instead return (from breaking
3755         from the previous loop).
3756
3757         (mono_class_setup_vtable): This now returns a boolean indicating
3758         whether the table was properly setup.   The decision is driven by
3759         mono_class_get_overrides_full which might run into non-existing
3760         methods. 
3761         
3762         (mono_class_init): Returns TRUE on success or FALSE if there was a
3763         problem in loading the type (incorrect assemblies, missing
3764         assemblies, methods, etc).
3765
3766         When we call mono_class_setup_fields we also check for a potential
3767         error inside this call (either a class exception or a general
3768         loader exception).
3769
3770         (mono_class_create_from_typedef): If the parent fails to load
3771         (calling mono_class_get_full) return NULL.
3772         
3773         ** Important **
3774
3775         calls to mono_metadata_parse_type_full should be checked
3776         everywhere and set the mono_class_set_failure
3777         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
3778
3779         The current patch checks the places where my manually constructed
3780         tests show the errors are showing up, but we should do it
3781         everywhere. 
3782
3783         ** Important2 **
3784
3785         mono_class_init return values should be tested everywhere, like
3786         the previous case this is something that we should audit
3787         everywhere and not only on the cases exposed by the tests I
3788         created. 
3789
3790 2006-04-26  Miguel de Icaza  <miguel@novell.com>
3791
3792         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
3793         boolean parameter and instead pass the information on `options'
3794         parameter (FileOptions).
3795
3796         * icall.c: Register the new signature for MonoIO.Open.
3797
3798         * debug-helpers.c (dis_one): Trying to understand how coverity
3799         works.  Fix Run 5, item 78.
3800
3801 2006-04-26  Dick Porter  <dick@ximian.com>
3802
3803         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
3804         dereference.
3805
3806 2006-04-25  Martin Baulig  <martin@ximian.com>
3807
3808         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
3809
3810         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
3811         debugger_thread_created().
3812         (debugger_gc_push_all_stacks): Don't handle the main thread in any
3813         special way.
3814         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
3815         (mono_debugger_finalize_threads): New function; undo the effects
3816         of mono_debugger_init_threads().
3817         (mono_debugger_create_all_threads): Removed.
3818
3819 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
3820
3821         * image.c (mono_image_close): Tidy up trace messages.
3822
3823         * assembly.c (mono_assembly_close): Ditto.
3824
3825         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
3826         no longer references an already freed assembly. Fixes #78168.
3827
3828 2006-04-21  Dick Porter  <dick@ximian.com>
3829
3830         * threads.c (mono_thread_detach): Fix reference counting when
3831         detaching threads.
3832
3833 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
3834
3835         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
3836         #78155.
3837
3838 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
3839
3840         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
3841         (mono_type_to_stind): Ditto.
3842
3843         * marshal.c: Use the new helper functions to simplify code.
3844
3845         * image.c (mono_image_close): Add some code for help debug assembly unloading
3846         problems.
3847
3848         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
3849         image mempool.
3850
3851         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
3852         assembly was already loaded in another appdomain. Fixes #78083.
3853
3854 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
3855
3856         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
3857         referenced assemblies.
3858         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
3859
3860         * domain.c (mono_domain_free): Add a trace message.
3861
3862         * appdomain.c (add_assemblies_to_domain): Ditto.        
3863
3864         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
3865         field.  
3866
3867 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3868
3869         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
3870
3871 2006-04-12  Martin Baulig  <martin@ximian.com>
3872
3873         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
3874         `USE_INCLUDED_LIBGC'.   
3875
3876 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3877
3878         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
3879         the patch contains ../ and a small directory name later. Hopefully fixes
3880         #78035.
3881
3882 2006-04-10  Martin Baulig  <martin@ximian.com>
3883
3884         Clean up the debugger's thread-handling code.
3885
3886         The debugger's thread-handling code has been moved from
3887         ../mini/debug-debugger.c to threads.c.  We now iterate directly
3888         over the `threads' hash, keep track of exiting threads and also
3889         use proper locking.
3890
3891         We can now debug XSP and XSP based applications with the debugger.
3892
3893         * object-internals.h (MonoThread): Added `gpointer end_stack'.
3894
3895         * threads.h
3896         (MonoThreadCallbacks): Removed; this was only used by the debugger.
3897         (mono_install_thread_callbacks): Likewise.      
3898
3899         * threads.c (mono_thread_callbacks): Removed.
3900         (debugger_thread_created, debugger_thread_exited): New static functions.
3901         (start_wrapper): Call debugger_thread_created().
3902         (thread_cleanup): Call debugger_thread_exited().
3903         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
3904         (mono_debugger_init_threads): New public function.
3905         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
3906         iterate directly over the `threads' hash and also use proper locking.
3907
3908         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
3909
3910         * mono-debug-debugger.h
3911         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
3912
3913 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
3914
3915         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
3916         argument type=array. Fixes #78057.
3917
3918 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
3919
3920         * culture-info-table.h : regenerated. Fixed bug #69652.
3921
3922 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
3923
3924         * loader.c metadata.c: Reapply a variant r59116.
3925         
3926         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
3927
3928         * class.c (mono_class_setup_interface_offsets): New internal function.
3929
3930         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
3931         interfaces too. Fixes #77398.
3932
3933         * reflection.c (encode_cattr_value): Add support for 
3934         parameter type=object, argument type=array.
3935         (load_cattr_value): Ditto. Fixes #77916.
3936
3937         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
3938         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
3939
3940         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
3941         a byval char array and CharSet is Ansi.
3942
3943         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
3944
3945 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
3946
3947         * metadata.c: Add some locking comments.
3948         
3949         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
3950         mempool.
3951         (mono_metadata_free_method_signature): Don't free the signature itself.
3952
3953         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
3954
3955         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
3956         reference the same MonoImage.
3957         (mono_assembly_load_from_full): Add an assert.
3958
3959 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
3960
3961         * image.c (mono_image_close): Don't put the image we are about to free into the
3962         loaded_images_guid_hash.
3963
3964         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
3965         to reduce code duplication.
3966
3967         * marshal.c: Register the native functions called by this module as icalls, to
3968         somewhat centralize the creation of MonoMethodSignature's.
3969
3970         * loader.c (mono_method_signature): Add a cache for method signatures.
3971
3972         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
3973         the parameter attributes of a method.
3974         (mono_metadata_parse_method_signature_full): Refactored the computation of
3975         parameter attributes into a separate function. Also avoid one allocation in
3976         most cases.
3977
3978         * assembly.c (mono_assembly_close): Ditto.
3979
3980         * image.c (mono_image_close): Log trace messages with INFO level.
3981
3982         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
3983
3984         * image.c reflection.c: Correct reference counting of image modules.
3985         
3986         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
3987         of this function from the image mempool.
3988         
3989         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
3990         to allow more cached types to be used.
3991
3992         * mono-debug.c (mono_debug_add_method): Appled patch from
3993         David S. Miller  <davem@sunset.davemloft.net>: Access 
3994         minfo->lexical_blocks[] entry elements using read32().
3995
3996 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
3997
3998         * loader.c (mono_free_method): No longer free the method header for non-dynamic
3999         methods as it is allocated from the mempool.
4000
4001         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
4002         image mempool.
4003
4004         * metadata-internals.h: Add comments describing the reference counting scheme
4005         used for MonoImage and MonoAssembly.
4006
4007         * image.c assembly.c reflection.c: Rework reference counting of images and 
4008         assemblies so they are freed when the runtime is shut down. Free some 
4009         additional memory structures when an image is unloaded.
4010         
4011 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
4012
4013         * class.c loader.c reflection.c: Allocate more data structures in
4014         the image mempool.
4015
4016 2006-03-31  Miguel de Icaza  <miguel@novell.com>
4017
4018         * icall.c
4019         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
4020         build on pre glib 2.4 systems.
4021
4022 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
4023
4024         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
4025
4026         * icall.c: Fix some warnings.
4027
4028 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
4029
4030         * culture-info-table.h : regenerated.
4031
4032 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
4033
4034         * threads.c, object-internals.h, verify.c: changed the culture caching
4035         code to use a normal MonoArray for storage so the GC can keep track of
4036         them easily. Fixed bits of the cache logic, too and simplified the
4037         code.
4038
4039 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
4040
4041         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
4042         thread for non-Boehm GCs.
4043
4044 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
4045
4046         * domain.c, object.c, domain-internals.h: reduce the amount of memory
4047         needed to keep track of the data for static fields.
4048
4049 2006-03-29  Raja R Harinath  <rharinath@novell.com>
4050
4051         Fix #75172
4052         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
4053         for interface classes.  Use 'num_methods' instead.
4054         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
4055         before using '->vtable_size' field.
4056
4057 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
4058
4059         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
4060         doesn't contain managed pointers, so use a normal hashtable.
4061
4062 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
4063
4064         * reflection.c, class-internals.h, domain.c: fixed handling of types
4065         used as values for objects in custom attributes (bug #77915):
4066
4067 2006-03-24  Martin Baulig  <martin@ximian.com>
4068
4069         * class.c (mono_class_setup_fields): Added support for generic
4070         instances; fixes #77580.
4071
4072 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4073
4074         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
4075
4076 2006-03-24  Dick Porter  <dick@ximian.com>
4077
4078         * file-io.c (get_file_attributes): More stat macro breakage.
4079         Fixes bug 77759.
4080
4081 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
4082
4083         * profiler.c: added the file=filename option in the default profiler
4084         to output the profile data to filename.
4085
4086 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4087
4088         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
4089         bug #77877.
4090
4091 2006-03-22  Martin Baulig  <martin@ximian.com>
4092
4093         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
4094         allocated `MonoClassField *' in `fb->handle'.
4095
4096 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4097
4098         * class.c, image.c, metadata-internals.h: implemented new mechanism to
4099         allocate interface ID to save memory and allow better ID reuse on
4100         appdomain unload. setup_generic_vtable () removal from Martin.
4101
4102 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4103
4104         * object.h, appdomain.c, domain.c, exception.c, icall.c,
4105         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
4106         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
4107         write barriers for reference stores with managed objects accessed with
4108         C structures in the runtime and in embedding programs.
4109
4110 2006-03-20  Raja R Harinath  <rharinath@novell.com>
4111
4112         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
4113         'interface_id' and 'max_interface_id' fields of MonoClasses
4114         representing open generic types.
4115
4116 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
4117
4118         * object.h, object.c, icall.c: added functions to deal with
4119         storing valuetypes that contain references in managed objects.
4120         * reflection.c, string-icalls.c, threads.c, marshal.c: small
4121         fixes and comments around uses of mono_array_addr ().
4122
4123 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
4124
4125         * object.h, icall.c, monitor.c: object.GetHashCode ()
4126         implementation that supports the moving garbage collector.
4127
4128 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
4129
4130         * icall.c, threads-types.h, threads.c: implemented finalizer for
4131         LocalDataStoreSlot.
4132
4133 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
4134
4135         * metadata.c (mono_type_size): Add a fixme.
4136         (mono_type_stack_size): Ditto.
4137
4138         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
4139         'type_forwarders' field.
4140
4141         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
4142         attribute from net 2.0.
4143
4144         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
4145         from class.c.
4146
4147         * class.c (mono_class_setup_fields): Fix a warning.
4148         
4149         * class.c (mono_class_from_name): Add support for assemblyref entries
4150         in the EXPORTEDTYPE table.
4151
4152         * reflection.c: Add support for handling type forwarders under net 2.0.
4153
4154         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
4155         
4156 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
4157
4158         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
4159         overwriting entries in ModuleBuild->types, also clean up the code
4160         a little. Fixes #77774.
4161
4162 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
4163
4164         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
4165         load friend assembly info when present.
4166
4167 2006-03-14  Raja R Harinath  <rharinath@novell.com>
4168
4169         Fix crasher on gtest-158.cs.
4170         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
4171         the return value if the MonoClass we want is yet in an
4172         inconsistent state.
4173         * class.c (mono_class_create_from_typedef): Add an comment
4174         explaining an order dependency between mono_class_setup_parent and
4175         mono_class_setup_mono_type.
4176
4177 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
4178
4179         * class.c: documentation updates and events bug fix.
4180
4181 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
4182
4183         * class.c: some cleanup, locking fixes.
4184
4185 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
4186
4187         * class.c: fix the generics code to setup nested
4188         type info to the instantiated type (bug #77770).
4189
4190 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
4191
4192         * marshal.c: fixed a few type correctness issues.
4193
4194 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4195
4196         * loader.c: the Set/Get/Addrtess array methods should be public.
4197
4198 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
4199
4200         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
4201         
4202         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
4203         info->wrapper.
4204
4205 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
4206
4207         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
4208
4209         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
4210
4211         * mempool.c (mono_mempool_alloc): Speed this up a bit.
4212         (mono_mempool_alloc0): Ditto.
4213
4214 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4215
4216         * socket-io.c:
4217         (create_object_from_sockaddr): it was allocating 4 extra bytes
4218         for the AF_UNIX data. Fixes bug #77747.
4219
4220 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
4221
4222         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
4223
4224 2006-03-09  Dick Porter  <dick@ximian.com>
4225
4226         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
4227         Fixes bug 76966 again.
4228
4229 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
4230
4231         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
4232         names from r57532
4233         * appdomain.c: Bumped corlib version to 48 (due to r57532)
4234
4235 2006-03-07  Martin Baulig  <martin@ximian.com>
4236
4237         * object.c
4238         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
4239
4240 2006-03-07  Martin Baulig  <martin@ximian.com>
4241
4242         * class.c
4243         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
4244         regression introduced in r56970; see gtest-252.cs.
4245
4246         * loader.c (mono_get_method_constrained): Correctly handle generic
4247         methods; see gtest-253.cs.
4248
4249 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
4250
4251         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
4252
4253 2006-03-04  Martin Baulig  <martin@ximian.com>
4254
4255         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
4256         compute the parent type at runtime, just like we're already doing
4257         it for interfaces.
4258
4259         * reflection.c
4260         (mono_reflection_bind_generic_parameters): Don't compute the
4261         parent type anymore.
4262
4263         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
4264
4265 2006-03-04  Martin Baulig  <martin@ximian.com>
4266
4267         * mono-debug-debugger.h
4268         (mono_debugger_create_notification_function): Allocate memory at
4269         runtime and return a pointer to it.
4270
4271 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
4272
4273         * assembly.c: Fix windows build.
4274         
4275         * assembly.c: Fix build.
4276
4277         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
4278
4279         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
4280         
4281 2006-03-03  Dick Porter  <dick@ximian.com>
4282
4283         * process.c
4284         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4285         Check parameters before dereferencing them.  Fixes Aaron's part of
4286         bug 77393.
4287
4288 2006-03-03  Raja R Harinath  <rharinath@novell.com>
4289
4290         Fix performance regression.
4291         * loader.c (find_method_in_class): Add 'from_class' argument.
4292         Rename 'klass' argument to 'in_class'.  The signature is compared
4293         against the method in 'in_class', and the corresponding method is
4294         returned from 'from_class'.
4295         (find_method): Walk both 'in_class' and 'from_class' in parallel.
4296         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
4297         type definition and generic instantiation in parallel.
4298         (mono_get_method_constrained): Update to changes.
4299
4300 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
4301
4302         * threads.c: make sure the domain is correct, too when doing
4303         mono_thread_attach ().
4304
4305 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
4306
4307         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
4308         windows. Fixes #77683.
4309
4310 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
4311
4312         * object.h, *: introduced specific way to set elements of an array
4313         of references to be used as write barrier. Still need to audit the
4314         uses of mono_array_addr.
4315
4316 2006-03-01  Miguel de Icaza  <miguel@novell.com>
4317
4318         * object-internals.h: New field to cache the assmebly name, patch
4319         from Tambet Ingo (tambet@ximian.com)
4320
4321 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4322
4323         * decimal.h, class-internals.h, metadata-internals.h,
4324         file-io.h: mark a few function declarations as internal, to
4325         reduce the number of PLT entries.
4326
4327 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4328
4329         * file-io.c: fix typo in warning message.
4330
4331 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
4332
4333         * loader.c: on unix, lookup the "*A" version of a function
4334         if charset is auto as a second option before failing.
4335
4336 2006-02-28  Raja R Harinath  <rharinath@novell.com>
4337
4338         * class.h (mono_class_inflate_generic_method): Revert to two
4339         argument version.
4340         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
4341         (mono_class_inflate_generic_method_full): Add.
4342         * class.c (mono_class_inflate_generic_method_full): Rename from
4343         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
4344         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
4345         * loader.c, reflection.c: Update to changes.
4346
4347 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
4348
4349         * icall.c: const fixes and small improvements.
4350
4351 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4352
4353         * threadpool.c: for asynchronous connect(), enable the same workaround
4354         for BSD 6 as for the Mac. Fixes bug #77637.
4355
4356 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
4357
4358         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
4359         formatted classes. Fixes #77524.
4360
4361 2006-02-24  Raja R Harinath  <rharinath@novell.com>
4362
4363         * class.c (inflate_generic_type): Add a couple more
4364         micro-optimizations.
4365         (inflate_generic_context): Don't use the 'gmethod' from
4366         'inflate_with'.
4367         (mono_class_inflate_generic_method): If the method has generic
4368         parameters, but the passed-in context doesn't have a 'gmethod',
4369         create one.  Use the possibly simplified generic instantiation
4370         from the declaring class instead of the one passed in.
4371
4372 2006-02-24  Raja R Harinath  <harinath@gmail.com>
4373
4374         Make generic method signature and method header handling lazy.
4375         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
4376         (inflate_generic_header): Likewise.
4377         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
4378         parameter to avoid inflating types.
4379         (mono_get_inflated_method): Empty out.
4380         * class.h (mono_class_inflate_generic_method): Update to changes.
4381         * loader.c (mono_get_method_from_token): Don't parse signature for
4382         generic methods, nor methods of generic classes.
4383         (mono_method_signature): Rename from 'mono_method_signature'.
4384         Inflate signature on demand.
4385         (mono_method_get_header): Inflate method header on demand.
4386         * reflection.c: Update to changes.
4387
4388 2006-02-23  Raja R Harinath  <rharinath@novell.com>
4389
4390         * metadata.c (mono_metadata_inflate_generic_inst): If the
4391         instantiation is closed, don't bother expanding it in the new
4392         context.
4393         * class.c (inflate_generic_class): If the generic instantiation
4394         doesn't change after inflation, return the argument itself.
4395         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
4396         Add bounds checks.
4397         (inflate_generic_context): If neither the generic class nor the
4398         generic method instantiations change, return the original context.
4399         * reflection.c (mono_method_get_object): Do
4400         'mono_get_inflated_method' before accessing the ->klass field.
4401         (inflate_mono_method): Don't create a MonoGenericMethod unless
4402         necessary.
4403         (inflate_method): Don't pass a constructed type as the declaring
4404         type of a methodbuilder.
4405
4406 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
4407
4408         * object.c: fix memory overwrite.
4409
4410 2006-02-22  Dick Porter  <dick@ximian.com>
4411
4412         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
4413         it doesn't work any more.
4414         (mono_threads_request_thread_dump): Fix unused variable warnings.
4415
4416 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4417
4418         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
4419         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
4420         the public header file.
4421
4422 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
4423
4424         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
4425
4426 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
4427
4428         * class-internals.h, object.c: reduce the size of MonoVTable
4429         and store the interface_offsets array at negative offsets.
4430
4431 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
4432
4433         * metadata.c: tweak table descriptors data structures to reduce
4434         size and runtime relocations.
4435
4436 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
4437
4438         * marshal.c: fix some types and opcodes to be type-safe
4439         in marshaling wrappers.
4440
4441 2006-02-21  Ankit Jain  <jankit@novell.com>
4442
4443         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
4444
4445 2006-02-21  Raja R Harinath  <rharinath@novell.com>
4446
4447         * metadata.c (get_constraints): Relax debugging checks for monodis.
4448
4449 2006-02-21  Ankit Jain  <jankit@novell.com>
4450
4451         * metadata.c (mono_metadata_load_generic_params): Move the code
4452         checking for ambiguous generic params from here to mono/dis/get.c
4453         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
4454
4455 2006-02-21  Raja R Harinath  <harinath@gmail.com>
4456
4457         Fix assertion triggered when compiling nemerle.
4458         * class.c (mono_get_shared_generic_inst): Rename from
4459         get_shared_inst and make non-static.
4460         * loader.c (mono_get_shared_generic_method): New.  Used to create
4461         the MonoGenericContext-equivalent of a MonoGenericContainer.
4462         (mono_get_method_from_token): Initialize the 'context' field of
4463         the created MonoGenericContainer.
4464         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
4465         * metadata.c (get_constraints): Add sanity check.
4466         * class-internals.h: Add new internal methods.
4467
4468         * reflection.c (verify_safe_for_managed_space): New sanity check.
4469         Currently checks that owner-less generic parameters aren't allowed
4470         in managed space.
4471         (mono_type_get_object): Use it.
4472         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
4473         that are now in mono_type_get_object.
4474         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
4475
4476 2006-02-19  Raja R Harinath  <harinath@gmail.com>
4477
4478         * metadata.c (mono_type_create_from_typespec): Rename from
4479         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
4480         argument and caching of types in the generic container.
4481         (unwrap_arrays, find_generic_param): Remove.
4482         * metadata-internals.h: Update.
4483         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
4484
4485 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
4486
4487         * class.c (mono_class_get_exception_for_failure): Fix a warning.
4488
4489         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
4490         return values. Fixes #77581.
4491
4492         * class.c (mono_fnptr_class_get): Switch name and name_space.
4493
4494         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
4495         classes and add support for [In, Out] attributes.
4496         (mono_marshal_free_asany): Ditto. Fixes #77524.
4497
4498 2006-02-18  Raja R Harinath  <harinath@gmail.com>
4499
4500         * class.c (mono_class_from_generic_parameter): Make more robust to
4501         incomplete MonoGenericContainers from monodis.
4502
4503 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4504
4505         * class-internals.h: added some more exception types.
4506         * class.c, metadata.c: added a few checks to handle missing
4507         types.
4508
4509 2006-02-17  Raja R Harinath  <rharinath@novell.com>
4510
4511         Use owner-less generic-params some more.
4512         * class.c (my_mono_class_from_generic_parameter): Remove.
4513         (mono_class_from_generic_parameter): Handle null image,
4514         param->name and param->owner.
4515         (mono_class_from_mono_type): Update.
4516         (mono_class_create_from_typespec): Remove 'container' parameter.
4517         If that parameter is non-null, the result is always inflated by
4518         'mono_class_get_full' anyway.
4519         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
4520         parameter.
4521         (mono_class_get_full): Update.
4522
4523         * class.c (inflate_generic_type) [GENERICINST]: If the generic
4524         instance is not open, don't bother inflating.
4525         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
4526         parse metadata for inflated classes.
4527         (_mono_class_get): Change GenericContext* parameter to
4528         GenericContainer*.
4529         (mono_class_create_from_typespec): Likewise.  Simplify, and
4530         implement trivially.  All the cases are handled in
4531         mono_class_from_mono_type.  Don't inflate returned class.
4532         (mono_class_get_full): Delegate GENERICINST optimization to
4533         inflate_generic_type.
4534         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
4535
4536 2006-02-16  Dick Porter  <dick@ximian.com>
4537
4538         * socket-io.c (create_object_from_sockaddr): Fix typo.
4539         (create_sockaddr_from_object): Check array lengths before
4540         potentially accessing items off the end.
4541         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
4542         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
4543         (ves_icall_System_Net_Sockets_Socket_Send_internal)
4544         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
4545         length checks to avoid wraparound overflows.
4546         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
4547         contents of the array of sockets
4548         (hostent_to_IPHostEntry2)
4549         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
4550         Check return value of inet_ntop ().
4551         (addrinfo_to_IPHostEntry): Fix typo
4552
4553 2006-02-16  Raja R Harinath  <rharinath@novell.com>
4554
4555         Type metadata parsing doesn't use generic-instantiation information.
4556         * metadata.c (mono_metadata_parse_array_full): Change
4557         MonoGenericContext* parameter to MonoGenericContainer*.
4558         (mono_metadata_parse_type_full): Likewise.
4559         (mono_type_create_from_typespec_full): Likewise.
4560         (mono_metadata_parse_mh_full): Likewise.
4561         (mono_metadata_parse_generic_inst): Likewise.
4562         (do_mono_metadata_parse_generic_class): Likewise.
4563         (do_mono_metadata_parse_type): Likewise.
4564         * metadata-internals.h: Update to changes.
4565         * class.c (mono_class_find_enum_basetype): Likewise.
4566         (mono_class_setup_fields): Likewise.
4567         (mono_class_create_from_typespec): Likewise.
4568         * loader.c (method_from_methodspec): Likewise.
4569         (mono_get_method_from_token): Likewise.
4570         (mono_method_get_header): Likewise.
4571
4572 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
4573
4574         * marshal.c: handle additional GENERICINST case (patch from
4575         Thong Nguyen <tum@veridicus.com>).
4576         Fix a few cases where LDIND_I/STIND_I was used for references.
4577
4578 2006-02-16  Raja R Harinath  <rharinath@novell.com>
4579
4580         * reflection.c (mono_reflection_get_token): Remove unused variable.
4581
4582 2006-02-16  Martin Baulig  <martin@ximian.com>
4583
4584         * reflection.c (mono_reflection_get_token): Add support for fields
4585         in instantiated generic types.
4586
4587         * icall.c
4588         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
4589
4590 2006-02-15  Martin Baulig  <martin@ximian.com>
4591
4592         * icall.c
4593         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
4594         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
4595         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
4596         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
4597
4598 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
4599
4600         * class.c, metadata.c, metadata.h, object.c, icall.c,
4601         marshal.c: changed mono_type_get_underlying_type () to do
4602         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
4603         Fixed handling of instantiated generic valuetypes (bug #75479).
4604
4605 2006-02-15  Raja R Harinath  <rharinath@novell.com>
4606
4607         * metadata.c (mono_metadata_decode_signed_value): Simplify.
4608         Delegate to mono_metadata_decode_value, and work on the returned value.
4609
4610         * icall.c (ves_icall_MonoType_GetGenericArguments):
4611         Add consistency check here too.
4612         
4613 2006-02-15  Ankit Jain  <jankit@novell.com>
4614
4615         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
4616         char/short etc.
4617
4618 2006-02-15  Ankit Jain  <jankit@novell.com>
4619
4620         * metadata.c (mono_metadata_decode_signed_value): New function to decode
4621         signed values, used only for representing lower bounds of arrays.
4622         (mono_metadata_parse_array_full): Use new
4623         mono_metadata_decode_signed_value to decode lower bounds.
4624
4625 2006-02-14  Martin Baulig  <martin@ximian.com>
4626
4627         * reflection.c
4628         (mono_reflection_get_token): Support "MonoGenericMethod" and
4629         "MonoGenericCMethod" and allow generic instances / methods.
4630
4631 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
4632
4633         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
4634         to obtain the terminal size using an ioctl.
4635
4636         * object.c (mono_nullable_init): Revert this as nullable reference
4637         types are not valid.
4638         (mono_nullable_box): Ditto.
4639
4640 2006-02-09  Dick Porter  <dick@ximian.com>
4641
4642         * threads.c (mono_thread_detach): Drop a reference to the thread
4643         we're detaching.
4644
4645 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
4646
4647         * object.c (mono_nullable_init): Handle nullable reference types.
4648         (mono_nullable_box): Ditto. Fixes #77446.
4649
4650 2006-02-07  Martin Baulig  <martin@ximian.com>
4651
4652         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
4653
4654 2006-02-07  Ankit Jain  <jankit@novell.com>
4655
4656         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
4657         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
4658         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
4659         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
4660         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
4661         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
4662
4663 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
4664
4665         * class.c (mono_class_create_generic): Set type_token as well.
4666
4667         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
4668         compatible with MS.
4669
4670 2006-02-02  Martin Baulig  <martin@ximian.com>
4671
4672         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
4673         has never been used so far.
4674
4675 2006-02-02  Martin Baulig  <martin@ximian.com>
4676
4677         * mono-debug-debugger.h: Changed comment at the top of this file;
4678         the header is not installed, but it's safe to #include it from
4679         within the JIT.
4680
4681         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
4682         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
4683
4684 2006-02-02  Martin Baulig  <martin@ximian.com>
4685
4686         * mono-debug.h
4687         (MonoSymbolTable): Removed the `metadata_info' field.
4688
4689         * mono-debug.c
4690         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
4691
4692         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
4693         (mono_debugger_add_builtin_types): Removed.
4694         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
4695         (mono_debugger_create_notification_function): We now operate on a
4696         pre-allocated area; take a `gpointer' and return `void'.
4697
4698         * mono-debug-debugger.c
4699         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
4700         (mono_debugger_add_builtin_types): Removed.
4701
4702 2006-02-02  Martin Baulig  <martin@ximian.com>
4703
4704         * threads.c (mono_debugger_create_all_threads): New public method.
4705
4706 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4707
4708         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
4709         breaks on several platforms.
4710
4711 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
4712
4713         * assembly.c: the VS.NET build doesn't supply default values for
4714         MONO_ASSEMBLIES and MONO_CFG_DIR.
4715
4716 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
4717
4718         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
4719         helper function.
4720
4721         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
4722
4723         * loader.c (method_from_memberref): Fix a warning.
4724
4725         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
4726
4727         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
4728         with explicit layout. Fixes #77433.
4729
4730 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
4731
4732         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
4733         max_interface_id is initialized before using it. Fixes #77398.
4734         (ves_icall_Type_GetInterfaces): Ditto.
4735
4736 2006-01-30  Raja R Harinath  <rharinath@novell.com>
4737
4738         * metadata.c (mono_metadata_parse_method_signature_full): Don't
4739         allocate memory for parameter attributes when parsing memberref
4740         signatures.
4741         * loader.c (mono_loader_set_error_method_load): Don't warn.
4742         (method_from_memberref): Ensure MissingMethodException gets thrown
4743         if method is not found.  Make warning more informative.
4744
4745 2006-01-29  Raja R Harinath  <harinath@gmail.com>
4746
4747         Fix #77397
4748         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
4749         return true if is byref.
4750         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
4751         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
4752         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
4753
4754 2006-01-27  Raja R Harinath  <rharinath@novell.com>
4755
4756         Fix tests/find-method.2.il
4757         * loader.c (find_method, find_method_in_class): Remove is_inflated
4758         argument.  Revert 2006-01-18 change.
4759         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
4760         is generic, search for method in its generic definition.
4761         * class.c (mono_class_setup_vtable_general): Print generic
4762         arguments of generic types in debugging printf.
4763
4764 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
4765
4766         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
4767
4768         * threads.c (mono_threads_request_thread_dump): New helper function.
4769
4770 2006-01-25  Raja R Harinath  <rharinath@novell.com>
4771
4772         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
4773
4774 2006-01-25  Ankit Jain  <jankit@novell.com>
4775
4776         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
4777         move definition to ..
4778         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
4779         
4780 2006-01-25  Ankit Jain  <jankit@novell.com>
4781             Raja R Harinath  <rharinath@novell.com>
4782
4783         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
4784         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
4785         as necessary.
4786
4787 2006-01-25  Martin Baulig  <martin@ximian.com>
4788
4789         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
4790         `MonoDebuggerThread' into debug-debugger.c.
4791
4792 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
4793
4794         * profiler.c: fix printing of data.
4795
4796 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
4797
4798         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
4799           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
4800
4801 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
4802
4803         * object.c: fix deadlock related to string interning.
4804
4805 2006-01-23  Martin Baulig  <martin@ximian.com>
4806
4807         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
4808
4809         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
4810
4811 2006-01-23  Martin Baulig  <martin@ximian.com>
4812
4813         * mono-debug.h: Moved the prototypes of some functions which are
4814         used by the JIT here from mono-debug-debugger.h.
4815
4816 2006-01-21  Martin Baulig  <martin@ximian.com>
4817
4818         * Makefile.am: Don't install mono-debug-debugger.h.
4819
4820 2006-01-21  Martin Baulig  <martin@ximian.com>
4821
4822         * mono-debug-debugger.h: Enforce the private status of this header
4823         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
4824         Moved some stuff from mono-debugger-jit-wrapper.h here.
4825
4826 2006-01-20  Raja R Harinath  <rharinath@novell.com>
4827
4828         * class.c (mono_class_from_typeref): Add a sanity test to help
4829         catch lack of assembly load/search hooks.
4830
4831 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
4832
4833         * marshal.c (emit_struct_conv): Relax the fields with same offset
4834         check even more. Fixes #77230.
4835
4836 2006-01-18  Martin Baulig  <martin@ximian.com>
4837
4838         * loader.c (find_method_in_class): Added `gboolean is_inflated'
4839         argument; if false, we compare the uninstantiated signatures.
4840         (method_from_memberref): Compare the uninstantiated signatures;
4841         fixes #76417.
4842
4843 2006-01-18  Robert Jordan  <robertj@gmx.net>
4844
4845         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
4846         Clear the weak link. Fixes bug #77170.
4847
4848         * gc.c (mono_gchandle_free):
4849         Reflect *-gc.c changes (tiny optimization).
4850
4851 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
4852
4853         * metadata.c (mono_metadata_signature_dup): Applied patch from
4854         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
4855         Fixes #77288.
4856
4857 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
4858
4859         * marshal.c (emit_struct_conv): Allow fields with the same offset when
4860         marshalling from native to managed code. Fixes #77230.
4861
4862 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4863
4864         * threadpool.c: fix problem (Mac only) when more than one asynchronous
4865         connect. Fixes bug #77020.
4866
4867 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
4868
4869         * class.c: fixed id assignement for nested interfaces (bug #77275).
4870         Added also better info for --print-vtable debugging.
4871
4872 2006-01-12  Martin Baulig  <martin@ximian.com>
4873
4874         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
4875         interfaces on-the-fly; fixes #76625.
4876
4877         * class-internals.h
4878         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
4879         don't need that anymore.
4880
4881 2006-01-12  Miguel de Icaza  <miguel@novell.com>
4882
4883         * socket-io.c
4884         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4885         To avoid initing the nested_classes when not needed I turned the
4886         PeerCredData as a toplevel internal class, as it has to be shared
4887         anyways. 
4888
4889         Fixes the CASA issue.
4890
4891 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
4892
4893         * domain.c: Accessors for MonoJitInfo
4894
4895         * profiler-private.h: Add jitinfo to the end jit hook
4896
4897         * profiler.[ch]: Define new hooks, called after jitting which give
4898         the MonoJitInfo that was compiled
4899
4900 2006-01-10  Martin Baulig  <martin@ximian.com>
4901
4902         * class.c (mono_class_setup_events): Add support for generic
4903         classes; fixes #76440.
4904
4905 2006-01-06  Raja R Harinath  <rharinath@novell.com>
4906
4907         Fix #77160.
4908         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
4909         on passed-in method.
4910
4911 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4912
4913         * object.c (mono_runtime_invoke_array): Add Nullable support.
4914
4915         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
4916
4917 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
4918
4919         * file-io.c: Don't consider sockets as directory and avoid an endless
4920         loop. Fix bug #76966.
4921
4922 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4923
4924         * object.c (mono_nullable_init): New helper function.
4925         (mono_nullable_box): Ditto.
4926
4927         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
4928
4929         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
4930
4931         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
4932         
4933 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
4934
4935         * class.c (mono_class_is_assignable_from): Make T assignable to 
4936         Nullable<T>.
4937
4938 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
4939
4940         * appdomain.c: Bump corlib version to 46.
4941         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
4942         serialization purpose) and changed ves_icall_System_Reflection_
4943         Assembly_get_code_base signature to accept a boolean (to escape, or 
4944         not, the assembly code base).
4945
4946 2005-12-23  Dick Porter  <dick@ximian.com>
4947
4948         * icall.c: 
4949         * threads-types.h: 
4950         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
4951         CreateEvent icall now returns "created" boolean parameter.
4952
4953 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
4954
4955         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
4956         #76967.
4957
4958         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
4959         when attr_klass is an interface. Fixes #77045.
4960
4961 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
4962
4963         * marshal.c (emit_struct_conv): Fix previous patch.
4964         
4965         * marshal.c (emit_struct_conv): Add a check for fields with the same
4966         offset.
4967
4968 2005-12-20  Raja R Harinath  <rharinath@novell.com>
4969
4970         Fix regression in Mono.C5.
4971         * class.c (mono_class_create_generic): If 'klass' is an interface
4972         set up the interface offsets.
4973         (mono_class_is_assignable_from): Don't throw away generic arguments.
4974
4975 2005-12-19  Raja R Harinath  <rharinath@novell.com>
4976
4977         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
4978         type parameters.
4979
4980 2005-12-15  Raja R Harinath  <rharinath@novell.com>
4981
4982         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
4983         dead store.
4984         (do_mono_metadata_parse_generic_class): Don't pass the current
4985         generic context when parsing the type being instantiated: it
4986         cannot use it, anyway.
4987
4988         * loader.c (method_from_memberref): Don't inflate a signature if
4989         it doesn't contain any type parameters.
4990
4991 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
4992
4993         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
4994
4995 2005-12-14  Martin Baulig  <martin@ximian.com>
4996
4997         * class.c
4998         (mono_type_get_name_recurse): Don't return null for type
4999         parameters and open generic classes.
5000         (mono_class_setup_methods): Don't exclude generic instances.
5001         (mono_get_unique_iid): Use different IDs for different
5002         instantiations of the same generic type.
5003         (mono_class_setup_vtable): Only use setup_generic_vtable() for
5004         open generic instances; create a normal vtable for closed generic
5005         instances.
5006         (mono_class_setup_vtable_general): We're now also called for
5007         closed generic instances.
5008
5009         * reflection.c
5010         (mono_reflection_bind_generic_parameters): Correctly use
5011         mono_metadata_lookup_generic_inst() everywhere.
5012
5013 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
5014
5015         * object.c (mono_class_create_runtime_vtable): Call 
5016         mono_class_setup_vtable ().
5017
5018         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
5019         function.
5020         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
5021         #76959.
5022
5023         * loader.c (mono_loader_set_error_type_load): Print the type load
5024         warnings to the console so they are more visible to the user.
5025         (mono_loader_set_error_method_load): Ditto.
5026
5027         * reflection.c (ensure_runtime_vtable): Revert the last change as it
5028         is still broken.
5029         
5030         * reflection.c (ensure_runtime_vtable): Fix build.
5031
5032         * reflection.c (ensure_runtime_vtable): Disable an optimization which
5033         doesn't work in all cases.
5034
5035 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
5036
5037         * object.c (mono_array_new_full): Treat a single dimensional array
5038         with 0 lower bounds as an szarray. Fixes #76973.
5039
5040         * reflection.c (custom_attr_visible): Really fix this.
5041
5042 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
5043
5044         * reflection.c (custom_attr_visible): Allow nested public attributes
5045         as well.
5046
5047         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
5048         interface check.
5049
5050 2005-12-12  Raja R Harinath  <harinath@gmail.com>
5051
5052         * class.c (set_generic_param_owner): Delete.
5053         (mono_class_create_from_typedef): Don't set ->owner field of
5054         generic parameters to "param containers" of enclosing classes.
5055         * reflection.c (mono_reflection_initialize_generic_parameter):
5056         Likewise.
5057
5058 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
5059
5060         * reflection.c (custom_attr_visible): Fix build.
5061
5062 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
5063
5064         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
5065         private attributes.
5066         
5067         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
5068         handling of null parameter defaults.
5069
5070 2005-12-09  Raja R Harinath  <rharinath@novell.com>
5071
5072         * class.c (mono_class_from_generic_parameter): Don't set
5073         klass->generic_container.
5074         (my_mono_class_from_generic_parameter): Likewise.
5075
5076 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
5077
5078         * reflection.c (load_public_key): Fix a warning.
5079         (method_encode_code): Fix unaligned accesses.
5080
5081 2005-12-07  Martin Baulig  <martin@ximian.com>
5082
5083         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
5084
5085         * reflection.c
5086         (write_generic_param_entry): Encode our custom attrs.
5087
5088         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
5089
5090 2005-12-07  Martin Baulig  <martin@ximian.com>
5091
5092         * reflection.c (encode_new_constraint): Removed; we don't use the
5093         `NewConstraintAttribute' anymore.
5094
5095 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
5096
5097         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
5098         not fire a TypeResolve event when Assembly.GetType () is called.
5099
5100 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
5101
5102         Beginning of support for nullable types in the runtime. Parts of
5103         this patch are from Martin.
5104
5105         * appdomain.c (MONO_CORLIB_VERSION): Bump
5106
5107         * domain.c (mono_init_internal): get the nullable type
5108
5109         * class.c (mono_class_is_nullable): New method
5110         (mono_class_get_nullable_param): New mehod
5111         (mono_class_create_generic): In types T? set cast_class to T
5112
5113         * class-internals.h (MonoDefaults): new nullable default class
5114         (mono_class_get_nullable_param, mono_class_get_nullable_param):
5115         new methods.
5116
5117 2005-12-05  Raja R Harinath  <rharinath@novell.com>
5118
5119         * metadata.c (select_container): New.  Refactor code to select the
5120         appropriate GenericContainer given the type of generic parameter
5121         we are looking for.
5122         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
5123         not a MonoGenericContext.  Use select_container.  Update parameters.
5124         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
5125         and MONO_TYPE_MVAR.
5126         (unwrap_arrays): Remove duplicate tests.
5127         (find_generic_param): Rename from 'has_same_context'.  Now walks a
5128         generic instantiated class to find any arguments that are generic
5129         parameters.
5130         (mono_type_create_from_typespec_full): Use find_generic_param to
5131         avoid evicting some generic instantiations from the typespec
5132         cache.
5133
5134 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
5135
5136         * reflection.c: fixed writing of doubles on ARM FPA.
5137
5138 2005-12-02  Robert Jordan  <robertj@gmx.net>
5139
5140         * icall.c: Fixed EventInfo.ReflectedType (#76829).
5141
5142 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5143
5144         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
5145         least on SUSE 10 they are not the same (on debian, they are just the
5146         same thing).
5147
5148 2005-12-01  Raja R Harinath  <rharinath@novell.com>
5149
5150         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
5151         DeclaringType for VARs and MVARs.
5152         * class.c (set_generic_param_owner): Fix initialization of owner
5153         fields.
5154
5155 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
5156
5157         * icall.c: fixed Enum.ToObject() to correctly convert the values.
5158
5159 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5160
5161         * threadpool.c: workaround for a bug that shows up on the Mac:
5162         select()+connect() on a blocking socket is not like it should
5163         be, so we proceed to connect() in that case, wasting the I/O
5164         threadpool thread until connect succeedes. Fixes bug #75436.
5165
5166 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5167
5168         * threadpool.c: fix typo when setting file descriptor states.
5169
5170 2005-11-28  Raja R Harinath  <rharinath@novell.com>
5171
5172         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
5173         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5174         create a temporary signature container.
5175         (mono_metadata_parse_generic_param): Update to changes.
5176         (mono_type_create_from_typespec_full): Update to changes.
5177         * loader.c (method_from_memberref): Don't use a
5178         MonoGenericContainer while parsing a memberref signature.
5179         (method_from_methodspec): Remove dead-store of the 'container'
5180         variable.  It's overwritten before use.
5181
5182         * metadata.c (mono_type_create_from_typespec_full): Make debugging
5183         checks tighter.
5184         (mono_metadata_parse_generic_param): Likewise.
5185         * loader.c (find_method_in_class): Does not need a
5186         MonoGenericContainer.  Use 'mono_method_signature' rather than
5187         'mono_method_signature_full'.
5188         (find_method, mono_get_method_constrained, method_from_memberref):
5189         Update to changes.
5190
5191         * metadata.c (mono_type_create_from_typespec_full): Ensure that
5192         owner-less generic-parameters are never evicted from the typespec
5193         cache.
5194
5195         * loader.c (method_from_memberref): Don't use the current context
5196         when parsing signatures.
5197         (method_from_methodspec, mono_get_method_from_token): Update to changes.
5198
5199         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
5200         side-effects in g_assert.
5201         * loader.c (mono_get_method_from_token): Resolve klass earlier so
5202         that we don't potentially lose information.
5203
5204 2005-11-26  Dick Porter  <dick@ximian.com>
5205
5206         * icall.c:
5207         * threads.c: icalls to implement basic (ie, not named)
5208         System.Threading.Semaphore.
5209
5210 2005-11-24  Dick Porter  <dick@ximian.com>
5211
5212         * process.c
5213         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
5214         Use GetProcessId() if it's available.
5215
5216 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
5217
5218         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
5219
5220 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5221             Ankit Jain  <jankit@novell.com>
5222
5223         * loader.c (mono_get_method_from_token): Initialize 'method' field
5224         of all generic parameters before parsing the signature.  Remove
5225         code that "fixed"-up MVAR references.
5226
5227 2005-11-23  Ankit Jain  <jankit@novell.com>
5228
5229         * metadata.c (mono_metadata_has_generic_params):
5230         (mono_metadata_load_generic_param_constraints):
5231         (mono_metadata_load_generic_params): Move duplicate code ...
5232         (mono_metadata_get_generic_param_row): ... here. Returns the
5233         first row-id in GenericParam table for a given owner (token).
5234         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
5235         prototype.
5236
5237 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5238             Ankit Jain  <jankit@novell.com>
5239
5240         * metadata.c (mono_metadata_class_equal): Pass signature_only when
5241         comparing VARs too.
5242         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
5243         type->data.generic_param only if the type is an MVAR.
5244         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
5245         leak owner-less VARs and MVARs into managed space.
5246
5247 2005-11-21  Martin Baulig  <martin@ximian.com>
5248
5249         * class-internals.h
5250         (MonoMethod): Moved the `generic_container' here from
5251         `MonoMethodNormal' since we now also need it for
5252         `MonoMethodPInvoke';
5253         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
5254         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
5255         an union containing both `MonoMethodNormal' and
5256         `MonoMethodPInvoke'.
5257
5258         * loader.c
5259         (mono_get_method_from_token): Allow implementing generic methods
5260         as interncalls.
5261
5262         * threads.c
5263         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
5264         icall.
5265
5266 2005-11-17  Dick Porter  <dick@ximian.com>
5267
5268         * icall.c: 
5269         * process.h: 
5270         * process.c: Split the Process Start_internal icall into
5271         ShellExecuteEx_internal and CreateProcess_internal, which are
5272         called depending on whether UseShellExecute is true.  Fixes bug
5273         76670.
5274
5275         * appdomain.c (MONO_CORLIB_VERSION): Incremented
5276
5277 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
5278
5279         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
5280         'msize' parameters, use the information in 'mspec' instead.
5281         (emit_object_to_ptr_conv): Ditto.
5282
5283         * marshal.c (emit_struct_conv): Handle explicit layout structs with
5284         fields out of order. Fixes #76733.
5285
5286 2005-11-17  Ankit Jain  <jankit@novell.com>
5287
5288         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
5289
5290 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
5291
5292         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
5293           bug #76575.
5294
5295 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5296
5297         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
5298         for types with non-auto layout. Fixes #76717.
5299
5300 2005-11-16  Ankit Jain  <jankit@novell.com>
5301
5302         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
5303         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
5304         if generic_context is null.
5305           (mono_metadata_generic_param_equal): param->owner can be null.
5306           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
5307         null.
5308
5309 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5310
5311         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
5312         the correct value.
5313
5314 2005-11-15  Martin Baulig  <martin@ximian.com>
5315
5316         * object.c (set_value): Use mono_class_from_mono_type() instead of
5317         the hack for generic instances; fixes #76136.
5318
5319 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
5320
5321         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
5322         fields.
5323
5324         * image.c (load_metadata_ptrs): Initialize the new fields.
5325
5326         * reflection.c (create_dynamic_mono_image): Ditto.
5327
5328         * reflection.c (build_compressed_metadata): Use the new fields.
5329
5330         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
5331         icall.
5332
5333         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
5334         icall.
5335         
5336 2005-11-15  Ankit Jain  <jankit@novell.com>
5337             Raja R Harinath  <harinath@gmail.com>
5338
5339         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
5340         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
5341         new per-generic_container cache if the cached MonoType's context matches
5342         the current context.
5343           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
5344         to the expected context.
5345           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
5346
5347 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5348
5349         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
5350         we changed the signature of an icall.
5351         * icall.c: Modify to mono_double_ParseImpl return true/false 
5352         depending on the success, instead of throwing the exception. This will
5353         help us in Double.TryParse methods.
5354         
5355 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
5356
5357         * marshal.c (emit_marshal_object): Throw an exception when
5358         marshalling 'object' instead of crashing. Fixes #76696.
5359
5360 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5361
5362         * class-internals.h: Add prototype for mono_type_get_full_name ().
5363
5364 2005-11-11  Dick Porter  <dick@ximian.com>
5365
5366         * threads.c (mono_thread_manage): Make sure the main thread has
5367         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
5368
5369 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5370
5371         * loader.c (mono_loader_set_error_type_load): Log a warning to the
5372         console about the missing type.
5373         (mono_loader_set_error_method_load): Ditto.
5374
5375 2005-11-09  Miguel de Icaza  <miguel@novell.com>
5376
5377         * mono-config.c (mono_get_config_dir): Set the system defaults if
5378         none is specified.
5379
5380         * assembly.c (mono_set_dirs): New API entry point to set the
5381         assembly and the config directory in one call
5382
5383 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
5384
5385         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
5386         the ftnptr was created from a delegate in a domain other than the
5387         current domain. Fixes #75377.
5388
5389         * exception.h exception.c: Add mono_get_exception_not_supported ().
5390
5391 2005-11-08  Martin Baulig  <martin@ximian.com>
5392
5393         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
5394
5395 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
5396
5397         * security-manager.h: Added definitions to deal with strongname key 
5398         pairs bigger (and smaller) than 1024 bits.
5399         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
5400         adjust wrt the public key length being used.
5401
5402 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
5403
5404         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
5405           Windows build (r51396-51397).
5406
5407 2005-11-03  Martin Baulig  <martin@ximian.com>
5408
5409         * class.c (mono_class_setup_vtable_general): Also add generic
5410         methods to the vtable; fixes #76581.
5411
5412 2005-11-01  Miguel de Icaza  <miguel@novell.com>
5413
5414         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
5415         sure that we lookup GetString method from the System.Text.Encoding
5416         class, not the derived class or we get an empty method.
5417
5418         Fixed class #76612.
5419
5420 2005-10-25  Miguel de Icaza  <miguel@novell.com>
5421
5422         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
5423         if it has been previously set (embedders). 
5424
5425         Make mono_set_rootdir available also on Unix.
5426
5427 005-10-24  Robert Jordan  <robertj@gmx.net>
5428
5429         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
5430
5431 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
5432
5433         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
5434         only calls which are made to native code use this flag.
5435
5436         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
5437
5438 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
5439
5440         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
5441         Add support for FieldBuilders.
5442
5443 2005-10-29  Martin Baulig  <martin@ximian.com>
5444
5445         * mono-debug.c
5446         (mono_debug_using_mono_debugger): New public method; returns
5447         whether we're running inside the debugger.
5448
5449 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
5450
5451         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
5452         for Method/Constructor/FieldBuilders.
5453
5454 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
5455
5456         * reflection.c (module_add_cattrs): Save custom attributes for global methods
5457         and fields as well.
5458
5459 2005-10-26  Martin Baulig  <martin@ximian.com>
5460
5461         * mono-debug-debugger.c
5462         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
5463
5464 2005-10-24  Raja R Harinath  <harinath@gmail.com>
5465
5466         * icall.c (base64_to_byte_array): Don't pass an out-of-range
5467         integer to isspace.
5468
5469 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
5470
5471         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
5472         when passing valuetypes byref. Fixes #76502.
5473
5474 2005-10-19  Jackson Harper  <jackson@ximian.com>
5475
5476         * profiler.c: Don't put a . in front of types that are not in a
5477         namespace.
5478
5479 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
5480
5481         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
5482
5483 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
5484
5485         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
5486         #76436.
5487         (mono_marshal_get_ldflda_wrapper): Fix a warning.
5488
5489 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5490
5491         * assembly.c metadata-internals.h icall.c: Define an additional
5492         parameter for mono_assembly_name_parse_full, so we can avoid creating
5493         S.R.AssemblyName.Version when no version info wasn't passed.
5494         
5495 2005-10-09  Miguel de Icaza  <miguel@novell.com>
5496
5497         * class.c (mono_type_get_full_name): Reimplement method that was
5498         removed. 
5499
5500         * image.c: Some docs
5501
5502 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
5503
5504         * profiler.c (output_newobj_profile): Fix printing of Total memory
5505         on x86.
5506
5507 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5508
5509         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
5510
5511 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
5512
5513         * threads.c: remove debug output.
5514
5515 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5516
5517         * threads.c (mono_thread_manage): Fix crashes if more than 64
5518         threads need to be aborted. Hopefully fixes #75899.
5519
5520         * assembly.c (mono_stringify_assembly_name): New helper function.
5521
5522         * class.c: Use mono_stringify_assembly_name instead of the similar
5523         static function.
5524
5525         * assembly.h assembly.c: Add support for calling a postload search 
5526         hook if an assembly cannot be loaded.
5527
5528         * appdomain.c: Register new search hooks which call the AssemblyResolve
5529         events in AppDomain. Fixes #75231
5530
5531 2005-10-07  Martin Baulig  <martin@ximian.com>
5532
5533         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
5534         methods without debug info.
5535
5536 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
5537
5538         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
5539         wrappers.
5540
5541 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5542
5543         * file-io.c: now that we return symlinks, use lstat and, when the file
5544         is a symbolic link, stat, to get the file attributes. Also avoid the
5545         conversion to/from utf16/external.
5546
5547 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
5548
5549         * class.c (mono_class_layout_fields): Compute klass->has_references
5550         correctly if an embedded valuetype is not yet initialized. Fixes
5551         #76331.
5552
5553 2005-10-04  Martin Baulig  <martin@ximian.com>
5554
5555         * metadata.c
5556         (mono_metadata_load_generic_param_constraints): New public
5557         function; splitted the constraints loading out from
5558         mono_metadata_load_generic_params().
5559
5560         * class.c (mono_class_create_from_typedef): Call
5561         mono_metadata_load_generic_param_constraints() after setting up
5562         the type and creating our parent; fixes #75329.
5563
5564 2005-10-04  Martin Baulig  <martin@ximian.com>
5565
5566         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
5567         non-dynamic parent classes.
5568
5569 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
5570
5571         * file-io.c : win32 build fix (ETXTBSY seems not found).
5572
5573 2005-10-04  Martin Baulig  <martin@ximian.com>
5574
5575         * reflection.c
5576         (mono_image_get_methodspec_token): Make the cache actually work;
5577         fixes #75974.
5578
5579 2005-10-04  Martin Baulig  <martin@ximian.com>
5580
5581         * class.c (mono_class_name_from_token): Removed the unneccessary
5582         `MonoGenericContext *' argument.
5583
5584 2005-10-04  Martin Baulig  <martin@ximian.com>
5585
5586         * loader.c
5587         (method_from_methodspec): Make the caching work again; fixes the
5588         performance regression from #76262.
5589
5590 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5591
5592         * file-io.c:
5593         * file-io.h:
5594         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
5595         GetFileSystemEntries that performs the same work but without going
5596         into io-layer, locking, etc.
5597
5598 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
5599
5600         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
5601         ThreadState_Stopped as well. Fixes #76047.
5602
5603 2005-09-29  Martin Baulig  <martin@ximian.com>
5604
5605         * class.c
5606         (inflate_generic_context): If the new context has a `gmethod', set
5607         its `container' that that gmethod's `container'.
5608
5609         * metadata.c
5610         (mono_metadata_parse_generic_param): Simplify things;
5611         `generic_container = generic_context->container;' is just fine.
5612
5613         * loader.c (method_from_methodspec): Code cleanups.
5614
5615 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
5616
5617         * decimal.c: fix warning (and let gcc generate correct
5618         code on ARM with optimizations).
5619
5620 2005-09-28  Martin Baulig  <martin@ximian.com>
5621
5622         * loader.c
5623         (method_from_memberref): Added `MonoGenericContext *class_context'
5624         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
5625         (method_from_methodspec): If we're a memberref, use the enclosing
5626         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
5627
5628 2005-09-28  Martin Baulig  <martin@ximian.com>
5629
5630         * object.c (mono_runtime_invoke_array): Added support for
5631         MONO_TYPE_GENERICINST; fixes #75917.
5632
5633 2005-09-27  Martin Baulig  <martin@ximian.com>
5634
5635         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
5636         `k->byval_arg.type' to determine the actual type.
5637
5638         * loader.c (method_from_methodspec): Removed some hacks.
5639
5640 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
5641
5642         * class-internals.h (mono_field_is_deleted): Do the test for
5643         rtspecialname before we check the actual name of the field. This
5644         prevents us from dereferencing a pointer into the string table,
5645         saving us from accessing a few pages
5646
5647         * *.c: Replace the use of {Enter,Leave}CriticalSection with
5648         macros. This will allow a deadlock debugger to easily be plugged
5649         in.
5650
5651 2005-09-27  Martin Baulig  <martin@ximian.com>
5652
5653         * loader.c (method_from_methodspec): Create a "signature"
5654         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
5655
5656 2005-09-27  Martin Baulig  <martin@ximian.com>
5657
5658         * class.c
5659         (inflate_generic_class): Correctly set the new context's
5660         container.
5661
5662         * loader.c
5663         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
5664         instead of a `MonoGenericContext *'.
5665         (mono_method_signature_full): Take a `MonoGenericContainer *'
5666         instead of a `MonoGenericContext *'.
5667
5668         * metadata.c
5669         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
5670         instead of a `MonoGenericContext *'.
5671         (mono_metadata_parse_method_signature_full): Likewise.
5672
5673 2005-09-26  Martin Baulig  <martin@ximian.com>
5674
5675         * class.c
5676         (mono_class_from_generic_parameter): Set `klass->generic_container'
5677         (mono_class_from_generic_parameter): Likewise.
5678         (mono_bounded_array_class_get): We inherit the generic container
5679         from the element class.
5680
5681         * loader.c
5682         (find_method, find_method_in_class): Take a `MonoGenericContext *'
5683         argument rather than computing it here.
5684         (method_from_memberref): Correctly set the generic context before
5685         parsing the signature.  Fixes #75681.
5686
5687 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
5688
5689         * object.c (mono_class_has_special_static_fields): Fix warnings.
5690
5691 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5692
5693         * assembly.c: Add parse_public_key function, to
5694         par the public keys. Also added mono_assembly_name_parse_full,
5695         to define it the parsed key should be freed or not.
5696         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
5697         to parse a long format assembly name.
5698         * metadata-internals.h: Keep mono_assembly_name_parse_full as
5699         private, since calling it to preserve the key requires
5700         freeing it manually.
5701         
5702 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
5703
5704         * locales.c : removed HAVE_ICU part.
5705
5706 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
5707
5708         * object.c (mono_class_create_runtime_vtable): Avoid calling 
5709         field_is_special_static if the klass has no special static fields.
5710
5711         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
5712         (MonoCachedClassInfo): Likewise.
5713
5714         * object.c (mono_class_has_special_static_fields): New helper function.
5715
5716 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5717
5718         * class.c (mono_class_create_from_typedef): Don't call 
5719         interfaces_from_typedef_full for enums.
5720         (mono_class_create_from_typedef): Compute the base types of enums directly
5721         without calling mono_class_setup_fields ().
5722         (mono_class_find_enum_basetype): New helper function.
5723
5724         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
5725         one place inside the string heap.
5726         
5727 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
5728
5729         * class.c: locking fixes, code cleanups, some docs added.
5730         Allocate some data structures in the image mempool.
5731
5732 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5733
5734         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
5735         the example code.
5736         
5737 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
5738
5739         * class-internals.h, class.c, reflection.c: reduce memory taken by
5740         MonoClass.
5741
5742 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
5743
5744         * metadata.c, metadata.h, loader.h: documentation updates, code and
5745         API cleanups.
5746
5747 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5748
5749         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
5750         the example code.
5751
5752         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
5753         page faults caused by the runtime while reading metadata.
5754
5755 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5756
5757         * socket-io.c: the field names were changed 3 months ago and no one
5758         realized until bug #76077 got filed!
5759
5760 2005-09-20  Martin Baulig  <martin@ximian.com>
5761
5762         * icall.c (assembly_icalls): Removed some unused debugger icalls.
5763
5764 2005-09-20  Martin Baulig  <martin@ximian.com>
5765
5766         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
5767         write the rank into the class entry.
5768
5769 2005-09-20  Martin Baulig  <martin@ximian.com>
5770
5771         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
5772
5773 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
5774
5775         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5776
5777         * icall.c (custom_attrs_defined_internal): New icall.
5778
5779         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
5780         function.
5781         (mono_custom_attrs_construct_by_type): New helper function.
5782
5783 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
5784
5785         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
5786         terminate the resulting string. Fixes #76123.
5787
5788 2005-09-16  Martin Baulig  <martin@ximian.com>
5789
5790         * mono-debug.c
5791         (mono_debug_add_method): Ignore inflated methods for the moment.
5792
5793 2005-09-14  Martin Baulig  <martin@ximian.com>
5794
5795         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
5796
5797 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
5798
5799         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
5800         return a success/failure indication.
5801         (mono_metadata_interfaces_from_typedef_full): Ditto.
5802         (get_constraints): Ditto.
5803
5804 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
5805
5806         * marshal.c (emit_marshal_array): Fix handling of null arrays.
5807         
5808         * marshal.c (emit_marshal_array): Add support for returning string
5809         arrays from delegates. Fixes #76063.
5810
5811         * marshal.c: Use the emit_ldloc/stloc macros where possible.
5812
5813 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
5814
5815         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
5816         icall.
5817
5818 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
5819
5820         * reflection.c icall.c: Fix after mono_get_exception_type_load
5821         signature change.
5822
5823         * assembly.c (mono_assembly_get_assemblyref): New helper function.
5824         (mono_assembly_load_reference): Use the new helper.
5825
5826         * class-internals.h (MonoLoaderError): New structure containing 
5827         information about type loading errors.
5828
5829         * class-internals.h loader.c: Add APIs to store per-thread loader
5830         error information.
5831
5832         * loader.c class.c: Set the loader error if needed.
5833
5834         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
5835
5836 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
5837
5838         * decimal.c: fixed to handle the broken ARM fp format.
5839
5840 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
5841
5842         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
5843         broken.
5844
5845 2005-09-06  Martin Baulig  <martin@ximian.com>
5846
5847         * domain.c (supported_runtimes): Added v2.0.50727.
5848
5849 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
5850
5851         * culture-info.h: reduce the size of some structures.
5852
5853 2005-09-05  Martin Baulig  <martin@ximian.com>
5854
5855         Reflect latest API changes in the August CTP.
5856
5857         * icall.c
5858         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
5859         ("MonoType.HasGenericArguments"): Removed.
5860         ("MonoMethod.BindGenericParameters"): Renamed to
5861         "MakeGenericMethod".
5862         ("MethodBuilder.BindGenericParameters"): Renamed to
5863         "MakeGenericMethod".    
5864
5865 2005-09-05  Martin Baulig  <martin@ximian.com>
5866
5867         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
5868
5869 2005-09-05  Martin Baulig  <martin@ximian.com>
5870
5871         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5872
5873         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
5874         generic_container is non-NULL.
5875
5876 2005-09-05  Martin Baulig  <martin@ximian.com>
5877
5878         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5879
5880         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
5881
5882 2005-08-29  Michal Moskal  <malekith@nemerle.org>
5883
5884         * reflection.c (encode_locals,
5885         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
5886         for large generic types.
5887
5888 2005-09-05  Martin Baulig  <martin@ximian.com>
5889
5890         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5891
5892         * class.c (mono_dup_array_type): New public method.
5893         (mono_metadata_signature_deep_dup): New public method.
5894         (dup_type): Correctly duplicate array and function types.
5895
5896 2005-09-05  Martin Baulig  <martin@ximian.com>
5897
5898         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5899
5900         * reflection.c (get_default_param_value_blobs): Handle generic types
5901         and generic methods.
5902
5903 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
5904
5905         * class.c: Fixed error reporting (method/class were inversed) for 
5906         inheritance demands.
5907         * security-manager.c|h: Added the AppDomain when calling the managed
5908         System.Security.SecurityManager.InheritanceDemand method.
5909
5910 2005-09-01  Raja R Harinath  <rharinath@novell.com>
5911
5912         * reflection.c (encode_marshal_blob): 'marshaltype' and
5913         'marshaltyperef' are alternate sources for the custom marshaler
5914         name.
5915
5916 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
5917
5918         * class.c: fix creation of array classes with rank == 1
5919         (patch by Ankit Jain <jankit@novell.com>).
5920
5921 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
5922
5923         * object.c: fix check for creating the bound data for arrays vs
5924         szarrays.
5925
5926 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5927
5928         * object.c: configuration file name is now based on the executable name,
5929         not the image name. Fixes bug #75931.
5930
5931 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
5932
5933         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
5934         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
5935
5936 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
5937
5938         * rand.c: Use wincrypt.h instead of WinCrypt.h.
5939
5940 2005-08-24  Ankit Jain  <jankit@novell.com>
5941             Raja R Harinath  <rharinath@novell.com>
5942
5943         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
5944           called by it recursively.
5945           (mono_class_init): Remove special case in pending_init handling, since it's
5946           superseded by the fix to mono_class_from_typeref.
5947
5948 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
5949
5950         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
5951         BROKEN_THREAD_START stuff.
5952
5953 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
5954
5955         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
5956         trampoline.
5957
5958         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
5959         
5960         * object.c (mono_delegate_ctor): Replace the original function address with
5961         a delegate trampoline.
5962
5963 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
5964
5965         * icall.c: add boolean argument to base64_to_byte_array and 
5966         InternalFromBase64String to control whether a whitespace-only string
5967         is allowed (or should casue a FormatException to be thrown). We need
5968         this as the behavior has changed between MS.NET 1.x and 2.0, and we
5969         to match the MS behaviour in both profiles.
5970         * appdomain.c: Bump corlib version.
5971
5972 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5973
5974         This patch implements a big portion of publisher policy
5975         support, used to bind assembly versions and redirect
5976         one assembly from version A to version B.
5977
5978         * assembly.c:
5979         New GSList loaded_assembly_bindings, for storing the cached
5980         assembly bindings.
5981         (assembly_binding_maps_name): New static function for checking if a 
5982         assembly binding information maps an assembly name.
5983         (mono_assembly_binding_info_free): New function for freeing
5984         assembly binding information resources.
5985         (get_publisher_policy_info): New static function for retrieving 
5986         assembly binding information from a MonoImage.
5987         (compare_versions): New static function for comparing an assembly
5988         binding information data and the version of an assembly name.
5989         (check_policy_versions): New static function for checking if an
5990         assembly binding info mapping an assembly name is valid for it.
5991         (mono_assembly_load_publisher_policy): New static function for
5992         loading the 'policy.major.minor.MyAssembly' image for an assembly
5993         with an assembly name 'aname'.
5994         (mono_assembly_bind_version): New static function for updating
5995         assembly redirection.
5996         (mono_assembly_apply_binding): New static function for applying
5997         assembly binding.
5998         (search_binding_loaded): New static function for searching 
5999         loaded assembly binding infos in the cache domain.
6000         (mono_assembly_load_full): Don't apply assembly binding for
6001         reflection only assemblies.
6002
6003         * metadata-internals.h: Add MonoAssemblyBindingInfo,
6004         which contains information about assembly binding. Also
6005         declare signature for mono_config_parse_publisher_policy ()
6006         function, used to retrieve pub policy info.
6007         
6008         * mono-config.c:
6009         (publisher_policy_start): New static function used to parse publisher 
6010         policy config files.
6011         (publisher_policy_parser): New static MonoParseHandler containing 
6012         the functions used when parsing config files.
6013         (mono_config_parse_publisher_policy): New function for parsing
6014         publisher policy files.
6015         
6016 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
6017
6018         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
6019
6020         * marshal.c (mono_delegate_free_ftnptr): Ditto.
6021
6022         * object.c (mono_get_addr_from_ftnptr): New helper function.
6023
6024         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
6025
6026         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6027
6028 2005-08-19  Dick Porter  <dick@ximian.com>
6029
6030         * threads.c, threads.h, appdomain.c, appdomain.h,
6031         profiler-private.h, monitor.c, object.c, object-internals.h,
6032         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
6033         store the thread ID, so it can hold a 64 bit value if needed.
6034
6035 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
6036
6037         * reflection.c (mono_reflection_create_dynamic_method): Store the
6038         handle class into the method references as well so ldtoken works in
6039         dynamic methods.
6040
6041         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
6042         types.
6043
6044 2005-08-19  Ankit Jain <jankit@novell.com>
6045
6046         Fix #75847.
6047         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
6048           here rather than using the method signature of a arbitrary function
6049           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
6050           two arguments.
6051           Hack done with Harinath.
6052
6053 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6054
6055         * threadpool.c: disable printing stack traces when we get a exception
6056         in a threadpool thread. I need to do more testing to figure out which
6057         cases actually print this. Fixes bug #75828.
6058
6059 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6060
6061         * icall.c: there might be ignored whitespace after the last '='. This
6062         fixes length computation and bug #75840.
6063
6064 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
6065
6066         * assembly.c (mono_assembly_load_full): Consider .exe extension as
6067         well. Fixes #75809.
6068
6069         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
6070         #75784.
6071         
6072         * reflection.c (create_custom_attr_data): Ditto.
6073
6074 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
6075
6076         * locales.c, culture-info.h : removed RegionLCIDMap.
6077         * culture-info-tables.h : regenerated.
6078
6079 2005-08-16  Martin Baulig  <martin@ximian.com>
6080
6081         * class.c (mono_type_get_name_recurse): Small fix.
6082
6083 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6084
6085         * locales.c : indentation fixie.
6086
6087 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
6088
6089         * object-internals.h,
6090           locales.h,
6091           locales.c,
6092           culture-info.h,
6093           icall.c : added RegionInfo table support.
6094         * culture-info-table.h : regenerated for region support.
6095
6096 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
6097
6098         * reflection.c (resolve_object): handle all kinds of MonoMethod
6099         including generic ones
6100
6101 2005-08-12  Ankit Jain <jankit@novell.com>
6102
6103         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
6104           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
6105
6106 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
6107
6108         * process.c: Don't close a thread handle when it's NULL. This is a
6109         workaround for bug #75733.
6110
6111 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
6112
6113         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
6114
6115 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
6116
6117         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
6118
6119 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6120
6121         * threadpool.c: if a work item in the thread pool has a callback that
6122         catches a exception, don't propagate it after invoking the callback.
6123         Fixes bug #75336.
6124
6125 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
6126
6127         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
6128
6129         * class-internals.h (MonoCachedClassInfo): Add some new fields.
6130
6131         * class.c (mono_class_init): Load field info lazily in the AOT case.    
6132
6133         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
6134
6135 2005-08-03  Ankit Jain  <jankit@novell.com>
6136
6137         Fix #75683.
6138         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
6139           PInvoke calling convention is 0.
6140
6141 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
6142
6143         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
6144         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
6145
6146 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
6147
6148         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
6149         to handle threads not started by the GC (patch by Michael Meeks
6150         <michael.meeks@novell.com>).
6151
6152 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
6153
6154         * reflection.c: Make buffer used in emitting types larger for some
6155         big generic types (patch by Michal Moskal).
6156
6157 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
6158
6159         * mono-debug.c: Fix some (not all) alignment problems.
6160
6161 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6162
6163         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
6164         Invoke mono_image_load_from_data_full passing the refonly
6165         parameter.
6166
6167         * assembly.c
6168         (mono_assembly_open_from_bundle): Add the refonly argument, 
6169         in order to pass it to other methods it calls to.
6170         (do_mono_assembly_open): Add the refonly argument, in order 
6171         to pass it to other methods it calls to.
6172         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
6173         the refonly parameter to it.
6174
6175         * image.c: Add loaded_images_refonly_hash and
6176         loaded_images_refonly_guid_hash to cache the reflection
6177         only loaded images.
6178         (mono_images_init): Initialize the hash tables used for
6179         caching the reflection only images.
6180         (load_modules): Invoke mono_image_open_full passing the refonly
6181         parameter to load the modules the correct way.
6182         (build_guid_table): Add the refonly argument, to re-build the 
6183         correct hash table.
6184         (do_mono_image_open): Added the refonly argument, in order to
6185         define it for the loaded image.
6186         (mono_image_loaded_full): New function, which receives an
6187         additional parameter to look for the image in the refonly or
6188         non-refonly section.
6189         (mono_image_loaded): Updated, using mono_image_loaded_full.
6190         (mono_image_loaded_by_guid_full): The same case that happens
6191         with mono_image_loaded_full.
6192         (mono_image_loaded_by_guid): Likewise.
6193         (register_image): Use the ref_only variable inside MonoImage
6194         to decide in which hash table store the current image.
6195         (mono_image_open_from_data_full): Rename
6196         mono_image_open_from_data to mono_image_open_from_data_full,
6197         adding the refonly argument, to define the ref_only variable 
6198         inside MonoImage.
6199         (mono_image_open_from_data): Return 
6200         mono_image_open_from_data_full.
6201         (mono_image_open_full): Rename mono_image_open to
6202         mono_image_open_full, receiving the new refonly argument,
6203         to pass it to inner methods.
6204         (mono_pe_file_open): Update this function, to open
6205         a MonoImage as a non-refonly image.
6206         (mono_image_close): Use the refonly variable inside
6207         MonoImage to remove the image from the correct caches.
6208
6209         * image.h: Add the signatures of mono_image_open_full,
6210         mono_image_open_from_data_full, mono_image_loaded_full,
6211         mono_image_loaded_by_guid_full.
6212
6213         * metadata-internals.h: Add the ref_only field to 
6214         MonoImage.
6215         
6216 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6217
6218         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
6219         Fix the last behavior, which used to load the assemblies and
6220         extract MonoReflectionAssemblyName information, instead of
6221         extract it from the metadata tables. Needed for Reflection
6222         Only assemblies.
6223         
6224 2005-07-29  Martin Baulig  <martin@ximian.com>
6225
6226         * mono-debug-debugger.c
6227         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
6228         not initialized.
6229
6230         * mono-debug.c
6231         (mono_debug_address_from_il_offset): Check whether we have
6232         debugging support before attempting to take the lock.
6233         (mono_debug_source_location_from_address): Likewise.
6234         (mono_debug_source_location_from_il_offset): Likewise.
6235         (mono_debug_il_offset_from_address): Likewise.
6236         (mono_debug_address_from_il_offset): Likewise.
6237
6238 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
6239
6240         * class.c (mono_class_from_name_case): Add support for dynamic images.
6241         Fixes #75650.
6242
6243         * object.c (mono_class_compute_gc_descriptor): Add a workaround
6244         for #75479.
6245
6246 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6247         
6248         * reflection.c (mono_method_get_object): Fix warning.
6249
6250 2005-07-28  Martin Baulig  <martin@ximian.com>
6251
6252         * mono-debug.c
6253         (mono_debug_add_wrapper): Also write the wrapper type.
6254
6255 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6256
6257         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
6258         
6259         * class.c (mono_class_init): Avoid reading nested classes if the AOT
6260         data indicates the class has none.
6261
6262 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
6263
6264         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
6265         loader lock with the debugger lock. Prevents deadlocks for beagle.
6266
6267         Beagle can now run on an smp box for a weekend without any
6268         issues. Woohoo!
6269
6270 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
6271
6272         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
6273         in a module. Fixes #75629.
6274
6275 2005-07-26  Martin Baulig  <martin@ximian.com>
6276
6277         * mono-debug.c (mono_debug_add_wrapper): New static method.
6278         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
6279         interncall or a wrapper.
6280
6281         * mono-debug.h (MonoDebugWrapperData): New public typedef.
6282         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
6283         (MONO_DEBUGGER_VERSION): Bump to 51.
6284
6285         * mono-debug-debugger.c
6286         (mono_debugger_add_type): Removed this empty function.
6287         (mono_debugger_add_method): Likewise.
6288
6289 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
6290
6291         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
6292         before accessing method->slot.
6293
6294 2005-07-21  Jb Evain  <jbevain@gmail.com>
6295
6296         * reflection.c (method_encode_clauses/class): Handle filters clauses.
6297         Fixes #75010.
6298
6299 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
6300
6301         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
6302         #75587.
6303
6304 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
6305
6306         * image.h image.c: Add mono_image_get_guid () API function.
6307
6308 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
6309
6310         There were issues when multiple threads tried to load
6311         assemblies. A deadlock was created between assemblies_mutex and
6312         mono_domain_assemblies_lock. This fixes the issue by making the
6313         assembly ref counting be lock free. See bug 75586.
6314         
6315         * image.c (mono_image_close): The add ref function here was using
6316         Interlocked operations while the unref was using a mutex and a
6317         --. I don't think this was ever a bug that would be exposed in a
6318         non-pendantic way (ie, by an embedder doing a ref on one thread
6319         and an unref on another), but for the sake of correctness, this is
6320         now Interlocked.
6321
6322         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
6323         (mono_assembly_load_reference): Call mono_assembly_addref rather
6324         than touching the refcount ourselves.
6325         (mono_assembly_close): Use InterlockedDecrement to unref the
6326         assembly. Don't acquire the lock unless it is actually needed.
6327
6328 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6329
6330         * class.c (mono_class_layout_fields): Fix calculation of has_references
6331         for generic types.
6332
6333 2005-07-12  Martin Baulig  <martin@ximian.com>
6334
6335         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6336
6337         * metadata.c
6338         (mono_type_hash): Provide better hashing for generic instances.
6339         (mono_generic_inst_hash): Improve hashing.
6340         (mono_generic_class_hash): Likewise.
6341
6342         * reflection.c (mymono_metadata_type_hash): Improve hashing for
6343         generic instances.
6344
6345 2005-07-12  Martin Baulig  <martin@ximian.com>
6346
6347         * reflection.c (mono_reflection_create_runtime_class): Remove the
6348         hack for generic type definitions and non-`Run' assemblies.
6349         (mono_reflection_bind_generic_parameters): Also use
6350         `klass->wastypebuilder' to check for TypeBuilders.
6351
6352 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6353
6354         * class.c (mono_class_layout_fields): Fix calculation of has_references
6355         for generic types.
6356
6357         * class.c (inflate_generic_class): Fix a leak.
6358         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
6359         for generic types.
6360
6361 2005-07-11  Martin Baulig  <martin@ximian.com>
6362
6363         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
6364         on error.
6365
6366 2005-07-11  Martin Baulig  <martin@ximian.com>
6367
6368         * loader.c (find_method): Also lookup in
6369         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
6370
6371 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6372
6373         * appdomain.c (mono_domain_unload): Don't free the error message
6374         before passing it to mono_get_exception_...
6375
6376         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
6377         
6378 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
6379
6380         * threads.c: try to better guess an available RT signal (bug #75387).
6381
6382 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6383
6384         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
6385         and CACHE_OBJECT.
6386
6387 2005-07-07  Martin Baulig  <martin@ximian.com>
6388
6389         * class.c (mono_type_get_name_full): Return NULL for
6390         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
6391         fixes #75408.
6392
6393 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6394
6395         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
6396         exit the appdomain as well being aborted.
6397
6398         * threadpool.c: Create all threadpool threads inside the root appdomain, and
6399         change back to the root domain after calling managed code. This enables
6400         appdomains using threadpools to be unloaded.
6401
6402 2005-07-07  Martin Baulig  <martin@ximian.com>
6403
6404         * class-internals.h
6405         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
6406         into `MonoDynamicGenericClass' since we only need it for dynamic
6407         types.
6408
6409         * reflection.c (mono_class_bind_generic_parameters): We don't need
6410         to compute the `parent' here.
6411
6412 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
6413
6414         * culture-info-table.h : regenerated.
6415
6416 2005-07-06  Martin Baulig  <martin@ximian.com>
6417
6418         * icall.c
6419         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
6420
6421         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
6422
6423 2005-07-06  Martin Baulig  <martin@ximian.com>
6424
6425         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
6426         we're doing a signature-only comparision; fixes #74945.
6427
6428 2005-07-06  Martin Baulig  <martin@ximian.com>
6429
6430         * class-internals.h (MonoGenericClass): Moved some things out into
6431         a new `MonoInflatedGenericClass' type.  
6432         (MonoInflatedGenericClass): New type; the `klass' of a
6433         `MonoGenericClass' is now computed lazyly in
6434         mono_get_inflated_generic_class().      
6435
6436         * class.c (mono_get_inflated_generic_class): New public function.
6437         (mono_class_inflate_generic_method): Removed the unused
6438         `MonoClass *' argument.
6439         (setup_generic_vtable): Don't call mono_get_inflated_method() on
6440         all the methods.
6441         (mono_class_create_generic): Make this static and merge it with
6442         mono_class_create_generic_2(); we're now called automatically from
6443         mono_get_inflated_generic_class().
6444
6445         * loader.c (mono_method_signature): Call
6446         mono_get_inflated_method() here.
6447
6448 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
6449
6450         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
6451         type of fields with RVA.
6452
6453         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
6454         for this pseudo class.
6455         (my_mono_class_from_generic_parameter): Likewise.
6456         (mono_class_init): Allow interfaces to have cctors.
6457
6458 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6459
6460         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
6461         lazily for AOT methods.
6462
6463 2005-07-05  Martin Baulig  <martin@ximian.com>
6464
6465         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
6466         returns FALSE for a successful match, not TRUE.
6467
6468 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6469
6470         * loader.c (mono_method_get_index): Optimize this a bit.
6471
6472 2005-07-04  Martin Baulig  <martin@ximian.com>
6473
6474         * class.c
6475         (class_compute_field_layout): Move the check for generic type
6476         definitions into mono_class_layout_fields().  Fixes #74684.
6477         (mono_class_from_generic_parameter): Correctly compute
6478         `klass->parent'; fixes #75457.
6479
6480         * reflection.c (register_assembly, register_module): Make sure
6481         `domain->rejobject_hash' is already created.
6482
6483 2005-07-02  Martin Baulig  <martin@ximian.com>
6484
6485         * class-internals.h
6486         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
6487         `MonoDynamicGenericClass'.      
6488
6489 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
6490
6491         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
6492         returned by a field getter is null, since null is a valid value.
6493
6494 2005-07-01  Martin Baulig  <martin@ximian.com>
6495
6496         * reflection.c (mono_reflection_generic_class_initialize): Update
6497         the `dgclass->fields [i].parent' to the correct class.
6498         (mono_image_get_fieldref_token): Use the declaring type, not the
6499         reflected type.
6500
6501 2005-07-01  Martin Baulig  <martin@ximian.com>
6502
6503         * loader.c (find_method): Also look in the interfaces; fixes #75429.
6504
6505 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
6506
6507         * threads.c (thread_cleanup): assert that thread != NULL
6508         (wait_for_tids_or_state_change): We were using the wrong variable
6509         when accessing wait->threads. `i' was always out of the bounds of
6510         the array.
6511
6512 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6513
6514         * loader.c: map user32 and kernel32 to libMonoSupportW
6515
6516 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
6517
6518         * appdomain.c (unload_thread_main): Mark this as WINAPI.
6519
6520 2005-06-28  Martin Baulig  <martin@ximian.com>
6521
6522         * loader.c (method_from_methodspec): Fix #75334.
6523
6524 2005-06-28  Martin Baulig  <martin@ximian.com>
6525
6526         Fix #74953 - Arrays now implement the generic IList<T> interface
6527         on the 2.0 platform.
6528
6529         * class-internals.h (MonoDefaults): Added `generic_array_class'.
6530
6531         * reflection.c (mono_class_bind_generic_parameters): New public
6532         function; similar to mono_reflection_bind_generic_parameters(),
6533         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
6534
6535         * domain.c (mono_init_internal): Try to initialize.
6536         `mono_defaults.generic_array_class' here; this'll only succeed if
6537         we're using the 2.0 corlib.
6538
6539         * icall.c
6540         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
6541         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
6542         (mono_lookup_internal_call): Added support for nested classes.
6543
6544         * loader.c
6545         (mono_get_method_from_token): Set `result->signature->pinvoke' if
6546         we're an interncall and have generic arguments.
6547
6548         * class.c
6549         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
6550         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
6551         instance of System.Array.InternalArray<T> for arrays, so they
6552         implement the generic IList<T> interface.
6553
6554 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
6555
6556         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
6557         (chastamar@yahoo.com). Fixes #75374.    
6558
6559 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
6560
6561         * culture-info-table.h: regenerated.
6562
6563 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6564
6565         * icall.c: handle spaces correctly for base64 strings.
6566
6567 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
6568
6569         * *.c: Kill some warnings.
6570
6571 2005-06-23  Duncan Mak  <duncan@novell.com>
6572
6573         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
6574         that this builds on Solaris 10 (x86).
6575
6576 2005-06-23  Martin Baulig  <martin@ximian.com>
6577
6578         * class.c
6579         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
6580         generic type definitions.
6581
6582 2005-06-23  Martin Baulig  <martin@ximian.com>
6583
6584         Fix #75331.
6585
6586         * metadata.c (mono_class_get_overrides): Renamed to
6587         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
6588         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
6589         pass it to mono_get_method_full().
6590
6591 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
6592
6593         * reflection.c (mono_reflection_create_runtime_class): take the
6594         mono_domain_lock in this method. Prevents deadlocks
6595
6596 2005-06-22  Martin Baulig  <martin@ximian.com>
6597
6598         * loader.c (method_from_methodspec): Fix #75330.
6599
6600 2005-06-22  Martin Baulig  <martin@ximian.com>
6601
6602         * reflection.c (type_get_qualified_name): Use
6603         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
6604         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
6605         argument; use it if we don't have an assembly name.
6606
6607 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
6608
6609         * object.c: In mono_message_init, set "copy out" flag for in
6610         parameters with the [Out] flag.
6611
6612 2005-06-21  Martin Baulig  <martin@ximian.com>
6613
6614         * class.c
6615         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
6616         and MONO_TYPE_PTR.
6617
6618 2005-06-21  Martin Baulig  <martin@ximian.com>
6619
6620         * class.c (mono_class_init): Don't initialize `class->fields' for
6621         generic instances since they're initialized again in
6622         compute_field_layout(). 
6623         (compute_field_layout): Set the field's `generic_info' here; fix
6624         #75320. 
6625
6626 2005-06-21  Martin Baulig  <martin@ximian.com>
6627
6628         * class-internals.h
6629         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
6630
6631         * metadata.c (mono_metadata_generic_method_equal): Also
6632         distinguish the `generic_class'; fixes #75334.
6633
6634 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6635
6636         * domain.c:
6637         * appdomain.c:
6638         * domain-internals.h:
6639         * reflection.c: 'domain_assemblies' field is now protected by its own
6640         lock. Don't call into managed code to run the AssemblyLoad event if we
6641         now there are no registered delegates for it.
6642
6643 2005-06-20  Martin Baulig  <martin@ximian.com>
6644
6645         * class.c (mono_class_is_assignable_from): Use a custom version of
6646         mono_class_has_parent() to make things work for generic instances;
6647         fix #75300.
6648
6649 2005-06-20  Martin Baulig  <martin@ximian.com>
6650
6651         * loader.c (method_from_methodspec): Apply a patch from
6652         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
6653
6654 2005-06-20  Martin Baulig  <martin@ximian.com>
6655
6656         * class.c (mono_class_init): Reverted Zoltan's last change; it
6657         breaks generics.
6658
6659 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
6660
6661         * threads.c (wait_for_tids_or_state_change): Add missing locking.
6662
6663 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6664
6665         * socket-io.c: fix the index in the socket array for writable/error
6666         sockets. Fixes bug #75306.
6667
6668 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
6669
6670         * class.c (mono_class_init): Allow interfaces to have static ctors.
6671
6672 2005-06-17  Martin Baulig  <martin@ximian.com>
6673
6674         * loader.c (method_from_methodspec): Use `context->container' when
6675         parsing the `gmethod->inst'.
6676
6677 2005-06-17  Martin Baulig  <martin@ximian.com>
6678
6679         * class.c (mono_type_get_name_recurse): Don't add the assembly
6680         name for type arguments.
6681
6682 2005-06-15  Martin Baulig  <martin@ximian.com>
6683
6684         * reflection.c (mono_image_get_inflated_method_token): Encode
6685         correct klass; fixes #75260.
6686
6687 2005-06-13 Michal Moskal <malekith@nemerle.org>
6688
6689         * icall.c: Make GetCorrespondingMethod/Constructor take
6690         MonoReflectionMethod method not MonoMethod. Removed
6691         MonoType.GetCorrespondingField, and make
6692         MonoGenericType.GetCorrespondingField take name not
6693         MonoClassField.
6694
6695 2005-06-13  Michal Moskal <malekith@nemerle.org>
6696
6697         * reflection.c (field_encode_signature, encode_locals):
6698          Make sizes of buffers for types larger (for big generic types).
6699          (create_generic_typespec,
6700          mono_reflection_sighelper_get_signature_local,
6701          mono_reflection_sighelper_get_signature_field):
6702          Add asserts for too small buffers.
6703
6704 2005-06-15  Martin Baulig  <martin@ximian.com>
6705
6706         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
6707         if our parent is not a dynamic type.
6708
6709 2005-06-15  Martin Baulig  <martin@ximian.com>
6710
6711         * class-internals.h (MonoTypeNameFormat): New enum.
6712
6713         * class.c
6714         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
6715         (mono_type_get_full_name): Removed.
6716         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
6717         argument instead of the boolean's.
6718
6719         * icall.c (ves_icall_System_MonoType_getFullName):
6720         Added `gboolean assembly_qualified'.    
6721
6722         * reflection.h
6723         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
6724
6725         * reflection.c (mono_reflection_parse_type): Parse the new type
6726         name format.
6727
6728 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6729
6730         * icall.c: no need to convert from utf16 to utf8 and then back again
6731         after the call to GetLogicalDrives.
6732
6733 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6734
6735         * icall.c: frombase64. Fix problems exposed by new tests.
6736
6737 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6738
6739         * icall.c: added internal calls for converting char [] and strings in
6740         base64 into byte [].
6741
6742 2005-06-10  Martin Baulig  <martin@ximian.com>
6743
6744         * class.c (mono_class_create_generic_2): Read the nested classes
6745         from the metadata rather than from `gklass->nested_classes' since
6746         `gklass' might not be initialized yet.
6747
6748 2005-06-09  Duncan Mak  <duncan@novell.com>
6749
6750         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
6751         all public headers. Fixes #74919.
6752
6753 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
6754
6755         * domain.c: The key for proxy_vtable_hash is now a pointer
6756         array. Added new GHashFunc and GCompareFunc functions for this.
6757
6758         * class.h: The list of interfaces in MonoRemoteClass is known in
6759         advance and can't grow (we create a new MonoRemoteClass if needed),
6760         so now the interface array can be allocated together with
6761         MonoRemoteClass.
6762         
6763         * object.c: Added a new method create_remote_class_key.
6764         Fixed mono_remote_class so it does not depend on
6765         mono_upgrade_remote_class.
6766         Removed extend_interface_array.
6767         Added new method clone_remote_class(), which makes a copy of a remote
6768         class and adds a new interface or class to it.
6769         mono_upgrade_remote_class() now creates a new remote class (or gets
6770         it from the cache) if an vtable upgrade is needed. In this way
6771         we make sure that other objects sharing the same remote class
6772         don't get the new vtable with unwanted interfaces.
6773         
6774         * object-internals.h:
6775         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
6776         
6777         * marshal.c: Track changes in mono_upgrade_remote_class().
6778
6779 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
6780         * icall.c: Add runtime methods for obtaining members of inflated
6781         class, which were created from supplied non-inflated members. It
6782         is used in internal Get{Method,Constructor,Field} methods in
6783         System.Type
6784
6785 2005-06-09  Martin Baulig  <martin@ximian.com>
6786
6787         * reflection.c
6788         (mono_reflection_bind_generic_method_parameters): Fix #75169.
6789
6790 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6791         * reflection.c (mono_image_basic_init): Define
6792         Version in MonoDynamicAssembly. 
6793         
6794 2005-06-08  Martin Baulig  <martin@ximian.com>
6795
6796         Fix #75136.
6797
6798         * loader.c
6799         (mono_method_signature_full): New public method; takes a
6800         `MonoGenericContext *'.
6801         (find_method): Use mono_method_signature_full() and pass the
6802         klass'es context to it.
6803
6804         * class.c (mono_class_is_inflated_method): Use
6805         mono_method_signature_full() and pass the context to it.
6806
6807 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
6808
6809         * object.c: add proper locking in mono_remote_class_vtable(),
6810         fixes possible memory corruption.
6811
6812 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
6813
6814         * marshal.c (mono_remoting_marshal_init): set
6815         initialized after initialization.
6816
6817 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
6818
6819         * locales.c : hush.
6820
6821 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
6822
6823         * object.c (extend_interface_array): fix really silly
6824         memory corrupting / comparison bug.
6825
6826 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6827
6828         * reflection.c: Functions added to support the creation
6829         of CustomAttributeData, which includes Attribute data
6830         used by ReflectionOnly methods.
6831
6832         * reflection.h:  mono_reflection_get_custom_attrs_data and
6833          mono_custom_attrs_data_construct added (functions exposed).
6834
6835          * icall.c: Added mono_reflection_get_custom_attrs_data
6836          as icall.
6837         
6838 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
6839
6840         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
6841         lupus's request.
6842
6843 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
6844
6845         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
6846
6847         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
6848         dynamic DllImportAttribute.
6849
6850         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
6851         dynamic DllImportAttribute.
6852
6853         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
6854         Fixes #75162.
6855
6856 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6857
6858         * threads.c: avoid segfault when an unstarted thread is aborted.
6859
6860 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
6861
6862         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
6863         Returns the name and version of the runtime for reporting.
6864
6865 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6866
6867         * appdomain.c: bump corlib version.
6868         * object-internals.h: new field in MonoReflectionAssembly.
6869
6870 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6871
6872         * object-internals.h: Carlos forgot to add this field.
6873
6874 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6875
6876         * icall.c: Added create_version to create instances
6877         of Version of MonoReflectionAssemblyName. This change helps
6878         the AssemblyName tests to keep running fine.
6879         
6880 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
6881   
6882         * object.c (mono_method_return_message_restore): A somehow less
6883         intrusive fix for #75138.
6884
6885 2005-06-03  Raja R Harinath  <rharinath@novell.com>
6886
6887         * object.c (mono_method_return_message_restore): Fix computation
6888         of expected number of out args.
6889
6890 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6891
6892         * reflection.c (mono_image_get_method_info): Fix the case when the
6893         charset is empty.
6894
6895 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
6896
6897         * object.c: Added missing null check in
6898           mono_method_return_message_restore.
6899
6900 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6901
6902         * reflection.c (mono_image_get_method_info): Handle the case when
6903         dllentry is empty.
6904
6905 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
6906
6907         * object.c: When creating the vtable for a proxy, take into account
6908         all inherited interfaces, not only the ones registered in
6909         iclass->interfaces. This fixs bug #74996.
6910         Also, in mono_method_return_message_restore, verify that the array
6911         of out args has the expected lengh.
6912
6913 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6914
6915         * socket-io.c: update the timeout in Poll when the call is interrupte.
6916
6917 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6918
6919         * socket-io.c: support abort/suspend in Select_internal after last
6920         change.
6921
6922 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6923
6924         * threadpool.c: remove warning.
6925
6926 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6927
6928         * icall.c:
6929         * socket-io.[ch]: Select_internal uses poll() now when available, thus
6930         removing the 1024 limit from select(). Runtime part of the fix for
6931         bug #71203.
6932
6933 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6934
6935         * socket-io.c: when resolving the addresses for the same
6936         host returned by gethostname(), get the local IPs from the interface
6937         list. Loopback addresses are discarded if the are interfaces up with
6938         non-loopback ones. Fixes bug #63265.
6939
6940 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
6941
6942         * appdomain.c, verify.c, object-internals.h, reflection.c:
6943         bumped corlib number to 36, and added new extra_flags field
6944         to ReflectionMethodBuilder and friends.  Fixes #75060.
6945
6946 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
6947
6948         * gc.c: register a new weak link only if the object is non-null
6949         (fixes bug#75047).
6950
6951 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6952
6953         * culture-info.h : short time pattern too.
6954
6955 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6956
6957         * culture-info.h : expand long time pattern string length.
6958
6959 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6960
6961         * culture-info-table.h : update (more French date format; #72788).
6962
6963 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
6964
6965         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
6966         the method is static. Fixes #75029.
6967
6968 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
6969
6970         * reflection.c: Update the table_idx field of method builders after
6971         saving the module, since it can change. This is a workaround for
6972         bug #74914. 
6973
6974 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6975
6976         * culture-info-table.h : update (additional French date format).
6977
6978 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
6979
6980         * icall.c (ves_icall_type_Equals): Revert last change.
6981         
6982         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
6983
6984         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
6985
6986 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
6987
6988         * class-internals.h: Added executioncontext_class field to 
6989         MonoDefaults structure.
6990         * domain.c: Cache System.Threading.ExecutionContext class in 
6991         mono_defaults.
6992         * object.c: Capture the ExecutionContext for asynchroneous calls in
6993          mono_async_result_new.
6994         * object-internals.h: Added execution_context and original_context 
6995         fields to MonoAsyncResult. Added execution_context to MonoThread.
6996         * security-manager.c|.h: Added mono_get_context_capture_method to 
6997         return the capture method (if required by the security manager or by
6998         the framework version used).
6999         * threadpool.c: Apply capture (if present) ExecutionContext in 
7000         mono_async_invoke and revert to original context after it completes.
7001
7002 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
7003
7004         * culture-info-table.h : updated (real hacky solution for zh-CHT).
7005
7006 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
7007
7008         * culture-info-table.h : zh-CHT related workaround.
7009
7010 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7011
7012         * marshal.c (emit_marshal_custom): Add some error checking and call the
7013         methods in the ICustomMarshaler interface. Fixes #74875.
7014         
7015         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
7016         native->managed wrappers.
7017
7018 2005-05-12  Martin Baulig  <martin@ximian.com>
7019
7020         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
7021         here and use the loader lock.
7022
7023         * mono-debug.c: Properly lock when the debugger is not attached.
7024         (mono_debug_init): Release the initial lock if we're not running
7025         in the debugger.
7026
7027 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7028
7029         * marshal.c (emit_marshal_custom): Pass through NULL values without
7030         calling the custom marshalling routines.
7031
7032         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
7033         conversion in structures. Fixes #74882.
7034
7035 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
7036
7037         * culture-info-table.h : zh-* cultures were missing.
7038
7039 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
7040
7041         * threads.c: Added a new event background_change_event which is signaled
7042         when a thread changes its background mode.
7043         Moved here several checks previously done in managed code. The checks
7044         require the thread lock, and using the thread lock in managed code
7045         can result in deadlocks.
7046         Merged Start_internal and Thread_internal into a single method. Now 
7047         Thread_internal does all work of creating and starting a thread.
7048         Added icalls for setting and getting the state of the object. Moved from
7049         managed code to avoid locking there.
7050         Added wait_for_tids_or_state_change() which is called instad of
7051         wait_for_tids when waiting for non-backround threads to end. This method
7052         will return if one of the threads ends or the background_change_event
7053         is signaled.
7054         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
7055         the background mode. This method signals the background_change_event
7056         event.
7057         * icall.c:
7058         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
7059         removed Start_internal.
7060         
7061 2005-05-11  Martin Baulig  <martin@ximian.com>
7062
7063         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
7064         to order of some fields to get proper alignment on 64-bit machines.
7065
7066 2005-05-11  Martin Baulig  <martin@ximian.com>
7067
7068         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
7069         changes as they're broken and completely fuck up the debugger.
7070
7071         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
7072
7073 2005-05-10  Martin Baulig  <martin@ximian.com>
7074
7075         * reflection.c (mono_reflection_generic_class_initialize): Don't
7076         call mono_class_setup_parent() here.
7077
7078 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7079
7080         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
7081         send/receive timeout use an integer in milliseconds. We were using a
7082         struct timeval.
7083
7084 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7085
7086         * locales.c:
7087         (internal_get_cultures): reserve the first slot of the array for the
7088         InvariantCulture, which will be filled in managed code.
7089
7090 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
7091
7092         * reflection.c (mono_image_fill_module_table): Initialize the
7093         GENERATION field as well.
7094
7095 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7096
7097         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
7098         Monitor.Enter on the object.
7099
7100 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
7101
7102         * threads.c: Enable the wait for running threads when exiting.
7103         * icall.c: Suspend all threads before exiting.
7104
7105 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
7106
7107         * assembly.c (mono_assembly_load_reference): Fix warning.
7108
7109 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7110
7111         * threadpool.c: changed the default number of threads per cpu. From now
7112         on, the default will be 20 + (5 * number of cpus) instead of 50.
7113
7114 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
7115
7116         * loader.c (mono_method_get_signature_full): Add locking here.
7117
7118 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
7119
7120         * appdomain.c: Moved methods for parsing and freeing assembly
7121         names to assembly.c.
7122         * assembly.c, domain-internals.h: Created public methods for parsing
7123         assembly names. Fixed mono_assembly_load_with_partial_name:
7124         it now finds the best match, taking into account the version,
7125         token and culture specified in the partial name. Also return
7126         the latest version if no version information is specified.
7127
7128 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
7129
7130         * threadpool.c: replace check for SocketAsyncCall class.
7131
7132 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7133
7134         * threadpool-internals.h:
7135         * Makefile.am: added threadpool-internals.h
7136
7137         * threadpool.c: call mono_unhandled_exception on exceptions not handled
7138         that happen in threadpool threads (tested on MS).
7139         (mono_thread_pool_remove_socket): new function that dispatch any pending
7140         AIO call on a socket that is closing. By now only epoll really needs it,
7141         as select/poll wake up when the socket closes.
7142
7143
7144         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
7145
7146 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
7147
7148         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
7149
7150 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
7151
7152         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
7153
7154 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
7155
7156         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
7157         has an abort request, convert it into a suspend request.
7158
7159 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
7160
7161         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
7162         warning for the usage of `UnmanagedFunctionPointerAttribute' which
7163         is not supported yet.
7164
7165 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7166
7167         * image.c: register assemblies loaded from data (bundles) in the loaded
7168         assemblies hash. Fixes bug #74772.
7169
7170 2005-04-29  Martin Baulig  <martin@ximian.com>
7171
7172         * class.c (mono_type_get_name_recurse): Update to the new naming
7173         schema from the latest .NET 2.x beta2.
7174         (mono_class_setup_vtable_general): If we're a generic instance,
7175         copy the vtable from our generic type definition and inflate all
7176         the methods in it.
7177
7178         * loader.c (find_method): Update to the new naming schema from the
7179         latest .NET 2.x beta2.
7180
7181 2005-04-29  Raja R Harinath  <harinath@gmail.com>
7182
7183         * class.c (mono_class_init): Add a mono_loader_unlock to the
7184         #74734 fix.
7185
7186 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
7187
7188         * icall.c (ves_icall_System_Environment_Exit): Remove the 
7189         suspend_all_other_threads () call for the time being, since it can hang.
7190
7191         * threads.c (mono_thread_manage): Similarly, disable the waiting for
7192         the background threads to exit, since it can also hang.
7193
7194         * class.c (mono_class_init): Applied patch from Ankit Jain 
7195         (radical@gmail.com). Avoid pending init errors when a field refers
7196         to a nested class using a typeref. Fixes #74734.
7197
7198         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
7199         this for dynamic modules.
7200
7201 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7202
7203         * threads.c: don't wait for threads that are in the process of aborting
7204         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
7205         and waiting for background threads to finish. This makes xsp and
7206         mod-mono-server exit without random length delays and/or hangs.
7207
7208 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7209
7210         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
7211
7212 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
7213
7214         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
7215         dynamic types to prevent infinite loops. Fixes #74727.
7216
7217         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
7218         ..._is_assignable_to.
7219
7220 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
7221
7222         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
7223
7224 2005-04-25  Martin Baulig  <martin@ximian.com>
7225
7226         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
7227
7228         * domain.c
7229         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
7230
7231         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
7232
7233         * reflection.c (build_compressed_metadata): Set metadata header
7234         version to 2.0.
7235
7236 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
7237
7238         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
7239         number into an integral and a decimal part. Fixes #70473.
7240
7241         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
7242
7243 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
7244
7245         * culture-info-table.h : reflected the latest locale-builder output.
7246
7247 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7248
7249         * threadpool.c: check for SuspendRequested too when deciding if
7250         mono_thread_interruption_checkpoint should be called.
7251
7252 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7253
7254         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
7255         * threads.c: remove interruption_mutex and use Interlocked instead. When
7256         suspending all the threads, wait for all the suspended events at once.
7257         If we're shutting down and get an APC that is going to be queued,
7258         call mono_thread_execute_interruption immediately, as the thread might
7259         be sleeping on a pthread condition or mutex.
7260
7261         * icall.c: call mono_runtime_set_shutting_down before suspending the
7262         threads.
7263
7264         Fixes bug #74693. And now xsp is happier when exiting.
7265
7266 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
7267
7268         * loader.c (mono_stack_walk): Fix #74690.
7269
7270 2005-04-22  Martin Baulig  <martin@ximian.com>
7271
7272         * mono-debug.h (MonoDebugMethodJitInfo): Added
7273         `MonoDebugMethodJitInfo *jit'.
7274
7275         * mono-debug.c (mono_debug_read_method): Cache the
7276         MonoDebugMethodJitInfo in `address->jit'.
7277         (mono_debug_free_method_jit_info): New public method.
7278
7279 2005-04-22  Martin Baulig  <martin@ximian.com>
7280
7281         * class.c (mono_class_is_assignable_from): Disallow
7282         type parameter -> interface.
7283
7284 2005-04-21  Dick Porter  <dick@ximian.com>
7285
7286         * threads.c (mono_thread_create): Turn an assertion into an error.
7287
7288 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
7289
7290         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
7291         
7292         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
7293         Fix some gcc 4.0 warnings.
7294
7295 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
7296
7297         * file-io.c: fix alt dir separator char on unix systems
7298         and cleanup (fixes bug #71214).
7299
7300 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
7301
7302         * marshal.c: Use CALLVIRT instead of CALL when dispatching
7303         a call to a remote domain, since the method may be an
7304         interface method in the client domain. This fixes bug #74192.
7305
7306 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7307
7308         * threadpool.c: recv/send are now performed before going back to managed
7309         code to save one transition.
7310
7311 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7312
7313         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
7314
7315         * metadata/threadpool.c: removed hack to workaround the bug above.
7316
7317         Fixes bug #74618.
7318
7319 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
7320
7321         * reflection.c reflection.h: Fix handling of parameter defaults in
7322         dynamic methods. Also fixes handling of parameter attributes.
7323         Fixes #74609.
7324
7325         * mono-debug.c (mono_debug_close_image): Fix warning.
7326
7327 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7328
7329         * socket-io.h: replaced old unused field with new 'blocking'.
7330         * threadpool.c: restore socket blocking state on windows(tm).
7331
7332 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
7333
7334         * icall.c: don't return the codebase in the AssemblyName[] returned by
7335         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
7336         * object-internals.h: Removed FIXME (fields were presents) and fixed
7337         versioncompat declaration.
7338
7339 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7340
7341         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
7342         not closed, so don't cleanup when it happens.
7343
7344 2005-04-13  Chris Toshok  <toshok@ximian.com>
7345
7346         * mono-debug-debugger.h: change prototype for
7347         mono_debugger_lookup_type.
7348
7349         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
7350         this function, although it should probably be named
7351         mono_debugger_init_type.
7352
7353 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7354
7355         * threadpool.c: fix non-AIO case.
7356
7357 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
7358
7359         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
7360         the built-in profiler to measure just JIT compilation times.
7361
7362 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7363
7364         * threadpool.c: the epollfd might be closed by another thread at
7365         any time, so ignore EBADF at treat it as a "we're closing" sign.
7366
7367 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7368
7369         * threadpool.c: release the semaphores with a count equals to the number
7370         of working threads in both IO and regular pools. Fixed typo that messed
7371         up the count of IO pool threads. Don't initialize the pipe handles if
7372         we're using epoll.
7373
7374 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7375
7376         * threadpool.c: some systems don't like a NULL when deleting the socket
7377         from epoll.
7378
7379 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7380
7381         * threadpool.c: fix semaphore allocation.
7382
7383 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7384
7385         * threadpool.c: added epoll() based implementation for asynchronous IO
7386         that is used instead of the default poll() when available.
7387         It can be disabled by setting MONO_DISABLE_AIO.
7388
7389 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7390
7391         * threadpool.c: windows needs 'closesocket' and instead of returning
7392         0 when the stream is closed while in select, it returns -1. Fixes bug
7393         #74573.
7394
7395 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
7396
7397         * class.c (class_compute_field_layout): Fix the regression caused by
7398         the previous try.
7399
7400 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7401
7402         * threadpool.c: separate pool for socket async. IO.
7403         * threadpool.h: mono_max_worker_threads is not a global any more.
7404
7405 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
7406
7407         * class.c (class_compute_field_layout): Fix #74549.
7408
7409 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7410
7411         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
7412         use 2 connected sockets instead.
7413
7414 2005-04-08  Miguel de Icaza  <miguel@novell.com>
7415
7416         * mono-config.c: Add new entry point for mkbundle
7417         mono_config_parse_memory. 
7418
7419 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7420
7421         * threadpool.c: removed another unused function.
7422
7423 2005-04-08  Ankit Jain  <radical@corewars.org>
7424
7425         * reflection.c (get_default_param_value_blobs): Add 'types'
7426         parameter to get the types encoded in the constant table.
7427         (mono_param_get_objects): Use the type from the constant table,
7428         not the type of the parameter, when creating default values.
7429         Handle null default values correctly.
7430
7431 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7432
7433         * file-io.c:
7434         * file-io.h:
7435         * threadpool.c:
7436         * threadpool.h:
7437         * icall.c:
7438         * socket-io.c: removed dead code for async IO.
7439
7440 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7441
7442         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
7443
7444         * threadpool.c: intercept socket async. calls and pass them to a thread
7445         that is polling and dispatching the job items to the threadpool as
7446         socket become ready. Fixes bugs #71217, #71933.
7447
7448         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
7449         between char and short/ushort arrays.
7450
7451         * socket-io.c: remove dead code.
7452
7453 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7454
7455         * locales.c,
7456           icall.c : removed InternalToUpper_Comp() and
7457           InternalToLower_Comp().
7458
7459 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7460
7461         * char-conversions.h : The tables were incorrectly generated. Should
7462           be generated against invariant culture.
7463
7464 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
7465
7466         * object.c (mono_runtime_invoke_array): Fix return value when 
7467         passing pre-created valuetype objects to ctors.
7468
7469         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
7470         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
7471         Fixes #74338.
7472
7473 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
7474
7475         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
7476         only used with --security and hides the wrong corlib version error.
7477
7478 2005-03-30  Joshua Tauberer  <tauberer@for.net>
7479
7480         * class.c: Changed mono_class_name_from_token so that types
7481         outside of a namespace don't have an initial period.  Improved
7482         the g_warning message used in _mono_class_get when loading
7483         fails.
7484         * assembly.c: In mono_assembly_load_reference, when an assembly
7485         can't be found, "No such file or directory" is misleading and
7486         unhelpful because a few paths were checked for the presence of
7487         the assembly.  When that happens (ENOENT), display a nicer
7488         message indicating the directories that were searched.  In all
7489         cases, the warning is made easier to read for non-hackers.
7490
7491 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
7492
7493         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
7494         project/solution.
7495         * appdomain.h|domain.c: Removed inline from functions.
7496         * appdomain.c: Reduced warnings when compiling on windows.
7497         * icall.c: Fixed output_debug declaration to gunichar2*.
7498         * mono-config.c: Reduced warnings when compiling on windows.
7499         * rand.c: Added missing "windows.h". Added missing return value.
7500         * rawbuffer.c: Added missing winsock2.h for windows.
7501         * sysmath.h: Added mono-compiler.h header to allow/ease 
7502         compilation with non-GCC compilers.
7503         * threads.c: Fixed declarations to compile with VS.NET C compiler.
7504         Removed cast warnings.
7505
7506         Adapted from the work of J Lothian (for VC6).
7507
7508 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
7509
7510         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
7511         from default_path.
7512
7513 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
7514
7515         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
7516         the 2.0 profile.
7517
7518 2005-03-27  Raja R Harinath  <harinath@gmail.com>
7519
7520         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
7521         has to be in $(exec_prefix).  $(prefix) is for arch-independent
7522         stuff, and it would probably use $(prefix)/share rather than
7523         $(prefix)/lib.
7524
7525 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7526
7527         * console-io.c: added 2 includes that might be missing.
7528
7529 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
7530
7531         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
7532         profile.
7533
7534         * reflection.c (create_custom_attr): Allocate the params array using
7535         alloca so it gets GC tracking.
7536
7537 2005-03-23  Chris Toshok  <toshok@ximian.com>
7538
7539         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
7540         out some spew.
7541
7542 2005-03-24  Raja R Harinath  <rharinath@novell.com>
7543
7544         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
7545         changes to pick up any changes in prefix, etc.
7546
7547 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
7548
7549         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
7550         
7551         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
7552         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
7553
7554 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
7555
7556         * class-internals.h object-internals.h class.c reflection.c: Extend the
7557         mono_lookup_dynamic_token () function to return the class of the
7558         token as well. 
7559
7560         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
7561         well. Fixes #73848.
7562
7563 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
7564
7565         * security-manager.c: Skip inheritance checks for intra-corlib
7566         class inheritance and method overrides. This skips a lot of checks
7567         and (anyway) permissions cannot work until corlib is loaded.
7568
7569 2005-03-23  Martin Baulig  <martin@ximian.com>
7570
7571         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
7572         MONO_TYPE_GENERICINST.  
7573
7574 2005-03-23  Martin Baulig  <martin@ximian.com>
7575
7576         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
7577
7578 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7579
7580         * class.c: added locking comments to some functions.
7581         Cache the interface offsets arrays (saves about 20 KB
7582         of runtime memory in a typical app).
7583         Reduce the time overhead in mono_class_setup_supertypes ().
7584
7585 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
7586
7587         * icall.c: speedup and fix leaks in GetMethodsByName and
7588         GetPropertiesByName.
7589
7590 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7591
7592         * reflection.c: some locking fixes.
7593
7594 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7595
7596         * metadata.c: added missing break in case statement.
7597
7598 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
7599
7600         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7601         typedbyref return values. Fixes #73941.
7602
7603 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7604
7605         * security-manager.c|h: Added demandunmanaged method and 
7606         suppressunmanagedcodesecurity class to MonoSecurityManager.
7607         Renamed aptc class to allowpartiallytrustedcallers.
7608
7609 2005-03-17  Martin Baulig  <martin@ximian.com>
7610
7611         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
7612
7613 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7614
7615         * file-io.c: disabled file async. IO using aio_*. It uses the
7616         threadpool now. Workaround for bug #73718.
7617
7618 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7619
7620         * assembly.h, mono-config.c: added code to deal with bundled configs
7621         for bundled assemblies.
7622
7623 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
7624
7625         * *.c, private.h: cleanup, removing old private.h header file.
7626
7627 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
7628
7629         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
7630         and throw_on_unmappable_char attributes.
7631
7632 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
7633
7634         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
7635         _ProcessName_internal.
7636
7637 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
7638
7639         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
7640         #73631.
7641
7642         * icall.c threads.c threads-types.h: Remove slothash icalls as they
7643         are no longer used.
7644
7645 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
7646
7647         * object.c (compute_class_bitmap): Add support for generics. Fixes
7648         #73527.
7649
7650 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
7651
7652         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
7653
7654 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7655
7656         * filewatcher.c: commented out the code for windows watcher, as we don't
7657         use it (we use the managed implementation instead).
7658
7659 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
7660
7661         * object-internals.h (MonoThread): Remove 'unused1' field.
7662
7663         * appdomain.c: Bump corlib version.
7664
7665         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
7666
7667         * reflection.c (mono_reflection_create_runtime_class): Remove the
7668         AssemblyBuilder.Save optimization since it causes too many problems.
7669
7670 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
7671
7672         * exception.c|h: Added mono_get_exception_reflection_type_load to
7673         create a ReflectionTypeLoadException object.
7674         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
7675         to return NULL is a InheritanceDemand fails during reflection. Updated
7676         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
7677         ReflectionTypeLoadException if an InheritanceDemand fails during 
7678         reflection. Added icall mapping for GetLinkDemandSecurity.
7679         * security-manager.c|h: Added ves_icall_System_Security_
7680         SecurityManager_GetLinkDemandSecurity internal call to return the
7681         class and methods permissions set for a LinkDemand. Removed unused
7682         fields in MonoSecurityManager.
7683
7684 2005-03-10  Martin Baulig  <martin@ximian.com>
7685
7686         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
7687         it's a generic instance.
7688
7689 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
7690
7691         * reflection.c (mono_get_object_from_blob): Applied patch from
7692         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
7693
7694         * class.c (mono_class_is_assignable_from): Another try at fixing 
7695         #73469 without breaking anything.
7696
7697 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
7698
7699         * class.c: (mono_class_is_assignable_from): Revert the last changes
7700         since they don't work with generics.
7701         
7702         * class.c (mono_class_is_assignable_from): Fix build bustage.
7703
7704         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
7705         the managed IsAssignableFrom method. Fixes #73469.
7706
7707         * reflection.c (mono_reflection_call_is_assignable_from): New helper
7708         function.
7709
7710 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
7711
7712         * object.c (mono_load_remote_field_new): Fix returning uninitialized
7713         memory when the remoting callback does not sets the out arguments.
7714         Fixes #73007.
7715
7716         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
7717         by mistake.
7718
7719         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
7720
7721         * object-internals.h (MonoStackFrame): Sync with managed object layout.
7722
7723         * appdomain.c: Bump corlib version.
7724
7725 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
7726
7727         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
7728         function.
7729
7730         * threads.c (mono_thread_attach): Detect threads which are not started
7731         by the GC pthread wrappers.
7732
7733 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
7734
7735         * icall.c: Added new icall for RNG.
7736         * rand.c|h: Added new icall to open the RNG. This allows to share a 
7737         single handle on Linux to access /dev/urandom and fix #73183.
7738
7739 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
7740
7741         * object.c: setting the new vtable in a transparent proxy object must
7742         not change the GC descriptor.
7743
7744 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7745
7746         * object.c: fixed compilation without GCJ support.
7747         * reflection.c: for runtime-created types ensure klass->has_references
7748         is correct (bug #73215).
7749
7750 2005-03-02  Martin Baulig  <martin@ximian.com>
7751
7752         * class.c (mono_class_is_assignable_from): Make this work if
7753         `oklass' is a generic instance; fixes #72831.
7754
7755 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
7756
7757         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
7758         with hasthis set.
7759         
7760         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
7761
7762         * marshal.c: Reorganize native->managed marshalling code to also use
7763         the emit_marshal_... functions.
7764
7765 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
7766
7767         * object.c: typed allocs have issues with bitmap sizes > 30,
7768         so check for max_set >= 30.
7769
7770 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
7771
7772         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
7773         managed code. Fixes #73012.
7774
7775         * metadata.h (MonoMarshalSpec): Add elem_mult field.
7776
7777         * metadata.c reflection.c: Load/Emit elem_mult as well.
7778         
7779         * metadata.h (MonoMarshalSpec): Add comment.
7780
7781         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
7782
7783         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
7784         num_elem to -1 if not given.
7785
7786         * object-internals.h (MonoReflectionMarshal): Add has_size field.
7787
7788         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
7789         given values.
7790
7791 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
7792
7793         * null-gc.c (mono_gc_free_fixed): Was not compilable.
7794
7795 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
7796
7797         * reflection.c (encode_marshal_blob): Encode param_num field as well.
7798
7799         * object-internals.h (MonoReflectionMarshal): Add param_num field.
7800
7801 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
7802
7803         * object.c: generalized the reference bitmap creation
7804         and added hooks for the new GC.
7805         * class-internals.c: removed the gc_bitmap field from MonoClass.
7806
7807 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7808
7809         * domain.c: help the compiler to produce better code
7810         in mono_jit_info_table_find ().
7811
7812 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7813
7814         * object.c: make all allocations look typed.
7815
7816 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7817
7818         * socket-io.c: load Mono.Posix if it's not loaded already
7819         (fixes bug#73033).
7820
7821 2005-02-24  Martin Baulig  <martin@ximian.com>
7822
7823         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
7824         * reflection.c (dup_type): Likewise.
7825
7826 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
7827
7828         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
7829         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
7830
7831 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7832
7833         * domain.c, threads.c, object-internals.h: make the critical thread
7834         local vars use the fast access mode (even when we're compiled in
7835         a lib). Provide accessors to be used by the jit during codegen.
7836
7837 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7838
7839         * appdomain.c: Changed hook functios behavior to include
7840         support for the reflection only assemblies. Some icalls were changed
7841         to support the mentioned assemblies too. Signatures of static methods
7842         try_assembly_resolve and real_load now have an additional parameter:
7843         refonly.
7844
7845         * assembly.c: General changes to mono_assembly_ methods to support
7846         reflection only api. Functions mono_assembly_open, mono_assembly_load,
7847         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
7848         suffix, to support an additional gbool parameter to specify whether
7849         the assembli is reflection only or not. Created some new hook functions 
7850         to add support for reflection only assemblies. Signatures of static 
7851         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
7852         have now an additional parameter: refonly.
7853
7854         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
7855         indicating whether the assembly is reflection only or not.
7856
7857         * exception.c: Add mono_get_exception_invalid_operation.
7858
7859         * icall.c: Throw an InvalidOperationException when trying to invoke
7860         a property/method/event, or trying to set/get the value of a field.
7861         Also add an icall to retrieve the ref_only flag to the
7862         MonoReflectionAssembly.
7863
7864 2005-02-23  Chris Toshok  <toshok@ximian.com>
7865
7866         Part of fix for #72827.
7867         * mono-debug.c (mono_debug_add_method): add lexical block data to
7868         the info we write.  Kind of a hack at the moment - we copy the
7869         lexical block info from the MonoDebugMethodInfo to the
7870         MonoDebugMethodJitInfo here, before writing it.
7871         (mono_debug_read_method): read the lexical block info.
7872
7873         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
7874
7875         * debug-mono-symfile.h: add lexical block support.
7876
7877         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
7878         support.
7879
7880 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7881
7882         * loader.c (mono_lookup_pinvoke_call): Fix warning.
7883
7884         * object.c (mono_runtime_free_method): Call mono_free_method () and
7885         put the TODOs there.
7886
7887         * loader.c (mono_free_method): Free up most memory allocated for 
7888         dynamic methods.
7889
7890 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7891
7892         * reflection.c: properly flag a Type argument to a
7893         named custom attr value (bug #72248).
7894
7895 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7896
7897         * reflection.c: reduce code duplication in named custom
7898         attribute encoding.
7899
7900 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
7901
7902         * reflection.c: properly encode custom attrs of type object
7903         (bug #72649).
7904
7905 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7906
7907         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
7908
7909 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
7910
7911         * socket-io.c: load System.dll if it's not loaded already
7912         (bug #72850 and #70477).
7913
7914 2005-02-21  Martin Baulig  <martin@ximian.com>
7915
7916         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7917         generic instances.
7918
7919 2005-02-21  Martin Baulig  <martin@ximian.com>
7920
7921         * reflection.c (mono_image_build_metadata): We also need to
7922         "fixup" the MethodImpl table after we computed the final method
7923         indices.  Call fixup_methodimpl() to do that.
7924         (fixup_methodimpl): New private method.
7925
7926 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7927
7928         * assembly.c: special case mscorlib.dll (bug#72536),
7929         patch from Carlos Alberto Cortez.
7930
7931 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
7932
7933         * threads-types.h threads.c: Fix build bustage.
7934
7935         * threads.c: Use a union for long<->double conversions.
7936
7937         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
7938         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
7939
7940         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
7941         containing the checkpoint call with NOT_TAKEN.
7942         
7943         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
7944         checkpoint before pushing the arguments, so they won't have to be
7945         spilled to stack.
7946
7947 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7948
7949         * domain.c, assembly.c, domain-internals.h: make some data
7950         const and relocation-free.
7951
7952 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
7953
7954         * object.c, appdomain.c, class-internals.h: introduce the
7955         MonoClassRuntimeInfo structure to hold the info needed to
7956         use a class at runtime. Made mono_class_vtable() lock-free
7957         for all the appdomains.
7958
7959 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
7960
7961         * metadata-internals.h, image.c: introduce a per-image mempool to
7962         be used for memory that has the same lifetime as the image.
7963
7964 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
7965
7966         * domain.c: In mono_init_internal(), instead of selecting the first
7967         runtime version supported by an executable, get a list of all
7968         supported versions and select the one for which an mscorlib exists
7969         (since even if the runtime supports a given version, it doesn't mean
7970         that the framework for that version is installed).
7971         Modified get_runtimes_from_exe to support this behavior.
7972         In supported_runtimes, added information about additional system
7973         assembly versions.
7974         
7975         * assembly.c: Added support for more than one system assembly version
7976         per runtime version. Updated the assembly list.
7977         In mono_assembly_remap_version, removed the initial version check,
7978         since we don't know to which version we need to compare until we
7979         get the version set on which the assembly is based.
7980         Moved the code for loading corlib into the new method
7981         mono_assembly_load_corlib(), so it can be used by the initialization
7982         code.
7983         
7984         * domain-internals.h: Updated data structures and added declaration
7985         for mono_assembly_load_corlib.
7986
7987 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7988
7989         * reflection.c (resolve_object): Fix the creation of the signature in 
7990         the SignatureHelper case.
7991
7992         * assembly.c (mono_assembly_remap_version): Fix binary search.
7993         
7994 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
7995  
7996         * class.c: Added inheritance check when a method is overloaded (from a
7997         virtual method or when implementing an interface) and when a class is
7998         inherited. Added functions to set a failure for a class and to 
7999         retreive the exception from a failure.
8000         * class-internals.h: Added fields to MonoClass to keep the exception
8001         information status for inheritance (or other exceptions) to be thrown
8002         later (i.e. not at load time).
8003         * object.c: Throw the inheritance SecurityException when a type is to 
8004         be created with either class or method inheritance violations.
8005         * reflection.c|h: Fix when getting declsec from a class. Removed 
8006         unrequired code for class. Improved sanity in parameter naming.
8007         * security-manager.c|h: Added functions to check for class and method
8008         inheritance.
8009
8010 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8011
8012         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
8013         and has_finalize in dynamic types as well.
8014
8015 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
8016
8017         * culture-info-table.h : fixed currency format for en-GB (and so on).
8018
8019 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
8020
8021         * gc.c: ensure the GC handles never have 0 as a value.
8022
8023 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8024
8025         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
8026         a pointer to a struct to unmanaged code. Fixes #72625.
8027
8028 2005-02-16  Martin Baulig  <martin@ximian.com>
8029
8030         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
8031
8032 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8033
8034         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
8035
8036 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8037
8038         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
8039
8040         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
8041         UnmanagedFunctionPointerAttribute, use it for determining calling convention
8042         etc. Fixes #71471.
8043
8044         * reflection.c (mono_custom_attrs_get_attr): New helper function.
8045
8046         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
8047
8048 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
8049
8050         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
8051         changes to make the current context a field in MonoThread.
8052
8053 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8054
8055         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
8056         the last change.
8057         
8058         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
8059         extracted from mono_marshal_get_native_wrapper.
8060
8061         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
8062         to create wrappers around native functions.
8063
8064         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
8065         delegates for arbitrary function pointers. Fixes #71472.
8066
8067 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8068
8069         * threads.c: cleaned up the code a little.
8070
8071 2005-02-15  Martin Baulig  <martin@ximian.com>
8072
8073         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
8074         the data table.
8075
8076         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
8077         allocate larger chunks if needed.
8078
8079 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8080
8081         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
8082         in by mistake.
8083
8084 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
8085
8086         * domain.c: keep the domains in an array and ensure the domain ids
8087         are kept small, so they can be used as indexes to domain-specific data
8088         with a small memory overhead.
8089
8090 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8091
8092         * icall.c: Handle byref types in Type icalls. Fixes #72544.
8093
8094 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
8095
8096         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
8097
8098 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
8099
8100         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
8101
8102         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
8103         values.
8104
8105         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
8106         
8107 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
8108
8109         * domain-internals.h: add the hashtable here.
8110
8111         * class-internals.h: Remove `info' from MonoMethod
8112
8113         * domain.c: Add a new hashtable, jit_trampoline_hash
8114
8115 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8116
8117         * object.c: don't set the value of static fields
8118         (fixes bug#72494).
8119
8120 2005-02-11  Martin Baulig  <martin@ximian.com>
8121
8122         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
8123         (mono_debug_add_method): Silently ignore the method if it's too big.
8124         (mono_debug_add_type): Likewise.
8125
8126 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
8127
8128         * threads.c, appdomain.c: remove #ifdefs from the code.
8129
8130 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
8131
8132         * metadata-internals.h: Added flags to MonoAssembly to cache the most
8133         common security informations. This allows us to stay in unmanaged code
8134         when doing LinkDemand and it's special cases (except for the first 
8135         time for initialization). The flags a very much used with --security.
8136         * reflection.c|h: Added code to get declarative security attributes 
8137         for LinkDemand and InheritanceDemand. This required to refactor the
8138         existing code for Demand.
8139         * security-manager.c|h: Added new method fields for the special cases
8140         of LinkDemand.
8141
8142 2005-02-10  Martin Baulig  <martin@ximian.com>
8143
8144         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
8145         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
8146
8147 2005-02-10  Martin Baulig  <martin@ximian.com>
8148
8149         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
8150         debugging code; this is almost a complete rewrite.
8151
8152         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
8153
8154 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8155
8156         * domain.c, object.h: expose mono_string_equal () and 
8157         mono_string_hash ().
8158         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
8159         it's implemented in managed code.
8160
8161 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8162
8163         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
8164         lo leak objects between appdomains.
8165
8166 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8167
8168         * assembly.c: old compilers compilation fix from 
8169         robertj@gmx.net (Robert Jordan).
8170
8171 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
8172
8173         * class-internals.h: Little reminder for the future.
8174
8175         * debug-helpers.c: Fix up wrapper_type_names
8176
8177 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8178
8179         * image.c, metadata-internals.h: when loading an image from a file,
8180         mmap all of it and use the same codepaths as when using a
8181         in-memory image: the code is simpler and we use less memory
8182         (both writable and readonly).
8183
8184 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8185
8186         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
8187         API to alloc runtime data structures that need to be tracked by the
8188         GC and contain pointers.
8189         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
8190         make the code more readable and eventually use a different GC.
8191
8192 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
8193
8194         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
8195         for out arguments.
8196         
8197 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
8198
8199         * object.c: In release_type_locks(), don't release the cctor lock
8200         if it has already been released. This fixes a crash in the
8201         thread5 test.
8202
8203 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8204
8205         * gc.c, marshal.c, icall.c: register a delegate for finalization
8206         only when the native function pointer has been allocated for it.
8207
8208 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8209
8210         * object.c: cleaned up some code, allocate objects that are
8211         pointer free with the atomic malloc variant. Allocate memory
8212         for static data from the mempool if it's pointer-free.
8213         Allocate the bounds array at the end of the array data, when needed.
8214         * object-internals.h, object.h: move a private function in a private
8215         header.
8216         * class.c: handle missing case in tracking references in fields.
8217
8218 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8219
8220         * class.c, class-internals.h: keep track if a type has
8221         reference fields in either the instance or static fields.
8222
8223 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
8224
8225         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
8226         and renamed to MonoRuntimeInfo. Added fields to store the expected
8227         framework assembly version. Changed mono_get_framework_version and
8228         mono_get_runtime_version for a single mono_get_runtime_info method.
8229         
8230         * assembly.c: Added method to remap system assembly versions to the
8231         current executing runtime version. Removed old mapping code.
8232         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
8233         
8234         * icall.c, reflection.c: Track api changes.
8235
8236 2005-02-06  Miguel de Icaza  <miguel@novell.com>
8237
8238         * loader.c (method_from_memberref): Improve error reporting,
8239         produce the class name instead of the typeref/typedef index. 
8240
8241 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
8242
8243         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
8244
8245 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8246
8247         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
8248         stdcall and charset name mangling.  Reorganize the code and add
8249         some tracing stuff.
8250
8251 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8252
8253         * monodiet.c: More iters!
8254
8255         * marshal.c: Iter usage.
8256
8257         * icall.c: Iter usage.
8258
8259         * object.c: Use iters.
8260
8261         * debug-helpers.c: More iters
8262
8263 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8264
8265         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
8266         under win32.
8267
8268 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8269
8270         * mono-debug-debugger.c: use iters
8271
8272         * class.c, class-internals.h: mono_class_setup_events is static
8273         now
8274
8275         * All callers: use iters
8276
8277 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8278
8279         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
8280         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
8281
8282 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8283
8284         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
8285
8286         * marshal.h: Add prototypes for ldfld/stfld_remote.
8287
8288         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
8289         this is called during startup.
8290         
8291 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
8292
8293         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
8294         MonoThreadsSync struct private in monitor.c. Changed the way
8295         MonoThreadsSync is allocated so it's faster and there is no
8296         need to keep track of it with a finalizer and it uses less memory.
8297         This also finally allows us to allocate mono objects as ptrfree when
8298         there are no reference fields.
8299
8300 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
8301
8302         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
8303         disappearing link to the GC interface and use them to simplify
8304         the gchandles code.
8305
8306 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8307
8308         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
8309         stfld_remote which call mono_load/store_field_new. This allows methods
8310         calling ldfld/stfld wrappers to be AOTed.
8311
8312         * console-io.c: Include sys/filio.h under solaris.
8313         
8314         * console-io.c: Include curses.h if needed correctly.
8315
8316 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8317         
8318         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
8319         method->klass as well.
8320
8321         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
8322
8323         * class.c (mono_class_init): Switch on lazy initialization of 
8324         methods.
8325
8326         * class.c (mono_class_get_finalizer): Handle the case when the 
8327         finalizer is inherited.
8328
8329 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8330
8331         * console-io.c: <curses.h> is needed by term.h on solaris.
8332
8333 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
8334
8335         * icall.c, class-internals.h, monodiet.c, class.c: Remove
8336         mono_class_setup_properties where possible. Remove this ftn from
8337         the header file, and make it static.
8338
8339 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8340
8341         * loader.c: Add missing setup_... call.
8342
8343         * class.c: Add missing setup_... calls.
8344
8345         * class.c (mono_class_init): Switch on lazy initialization of 
8346         the generic vtable.
8347         
8348         * class.c (mono_class_init): Fix generics broken by the recent changes.
8349
8350         * monodiet.c (handle_type): Add missing setup_... calls.
8351
8352         * class.c: Back out garbage in previous patch.
8353         
8354         * class.c: Add missing setup_... calls.
8355
8356         * class.c (mono_class_get_method_from_name_flags): Avoid calling
8357         mono_class_setup_methods () if possible.
8358
8359         * class-internals.h (MonoClass): Add 'has_cctor' flag.
8360
8361         * class-internals.h (MonoCachedClassInfo): New structure.
8362
8363         * class.c: Initialize properties and events fields of MonoClass lazily.
8364
8365         * class.c: Add infrastructure for lazily initializing the methods and
8366         vtable fields of MonoClass. Not yet used.
8367
8368         * class.c (mono_class_get_finalizer): New helper function.
8369
8370         * class.c: Add infrastructure for loading some class related data from
8371         an AOT file.
8372
8373         * object.c: Add infrastructure for initializing the vtable from data
8374         in the AOT file.
8375
8376         * gc.c (run_finalize): Use mono_class_get_finalizer ().
8377
8378         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
8379         appropriate initialization function before accessing parts of the
8380         MonoClass structure.
8381
8382         * marshal.c: Fix warnings.
8383         
8384         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
8385
8386         * mono-debug-debugger.c (get_exception_message): Use 
8387         mono_class_get_method_from_name_flags ().
8388
8389 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
8390
8391         * reflection.c, appdomain.c: Replace a few manual searches that
8392         Zoltan missed. (Paolo approved this part of my initial patch).
8393
8394 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
8395
8396         * profiler.c: disable recording statistical events at report time.
8397
8398 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8399
8400         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
8401         to byteswap arrays of enum values, too (bug #72080).
8402
8403 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
8404
8405         * appdomain.c (set_domain_search_path): Allow this to be called if
8406         domain->setup is not yet set.
8407
8408         * loader.c (mono_method_get_index): New helper function.
8409
8410         * loader.c reflection.c: Use mono_method_get_index ().
8411
8412         * class.c (mono_class_get_method_from_name_flags): New helper method.
8413
8414         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
8415         this.
8416
8417         * class.c (mono_class_get_cctor): New helper method.
8418
8419         * string-icalls.c object.c class.c marshal.c reflection.c: Use
8420         mono_class_get_method () to look up methods.
8421
8422 2005-02-01  Miguel de Icaza  <miguel@novell.com>
8423
8424         * console-io.c: Fix the build, this should work on Windows.
8425
8426 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
8427
8428         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
8429         be set to null to keep things valid
8430
8431 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8432
8433         * icall.c: added Console 2.0 icalls.
8434         * Makefile.am: added console-io.[ch]
8435         * console-io.[ch]: internal calls for Console 2.0 API.
8436
8437 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8438
8439         * class.c: make sure we consider all the interfaces
8440         when calculating max_interface_id (bug found by
8441         Jeroen Frijters running ikvm).
8442
8443 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
8444
8445         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
8446         valuetype fields to null.
8447
8448         * object.c (set_value): Ditto. Fixes #71669.    
8449
8450 2005-01-31  Martin Baulig  <martin@ximian.com>
8451
8452         * metadata.c (mono_metadata_has_generic_params): New public
8453         function; checks whether something is a generic method.
8454
8455 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
8456
8457         * appdomain.c: fix infinite recursion when adding assemblies.
8458
8459 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
8460
8461         * object.c: Fix small typo to return all items for Environment.
8462         GetCommandLineArgs.
8463
8464 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8465
8466         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
8467         reflection.c: more domain and assembly-unload related fixes
8468         and memory leaks plugs.
8469
8470 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
8471
8472         * 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.
8473
8474 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
8475
8476         * loader.c (mono_method_signature): Make this method lazy
8477         (mono_get_method_from_token): Don't computate the signature here.
8478
8479         Doing this saves quite a bit of memory. I got 90 kb on starting up
8480         monodoc. It should also save some disk reads on startup.
8481
8482         * *: MonoMethod->signature might be NULL now. You *MUST* use
8483         mono_method_signature.
8484
8485 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
8486
8487         * object.c (mono_runtime_get_main_args): Return an array from the
8488         current domain here. Fixes #71938.
8489
8490 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
8491
8492         * monitor.c: formatting changes to comply with the
8493         mono coding style and remove #ifdefs from the code.
8494
8495 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8496
8497         * metadata.c, private.h: remove some unneeded data
8498         and use a more compact representation for table schemas.
8499
8500 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
8501
8502         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
8503         to get a better distribution in hash tables.
8504         * *.c: use mono_aligned_addr_hash() where appropriate.
8505         * assembly.c: make var static.
8506
8507 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
8508
8509         * domain-internals.h: Put MonoJitInfo on a diet.
8510
8511         * domain.c: Fix a warning.
8512
8513 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8514
8515         * gc.c: rework the gc handles code to reuse handles
8516         when freed.
8517
8518 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8519
8520         * domain.c: fixed long standing bug in mono_string_equal() which
8521         was brought to light with the ldstr changes.
8522
8523 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
8524
8525         * reflection.c: Remove warning by adding missing include for marshal.h
8526
8527 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8528
8529         * domain.c, object.c: change the ldstr_table to hold
8530         MonoString* as keys: makes the runtime isinterned lookup
8531         faster and simplifies memory management.
8532
8533 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
8534  
8535         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
8536         possible to add imperative security checks before calling the icall.
8537         * reflection.c: Return security attributes on the original MonoMethod
8538         (and not the wrapped one). This fix permissions on icalls.
8539
8540 2005-01-25  Dick Porter  <dick@ximian.com>
8541
8542         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
8543         the check for mktime() support actually test the mktime() return
8544         value.  "Fixes" bug 71682, though the output is still different to
8545         MS.
8546
8547 2005-01-25  Martin Baulig  <martin@ximian.com>
8548
8549         * class.c (mono_class_is_assignable_from): Make this work for
8550         generic instances.
8551
8552 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
8553
8554         * marshal.c (mono_string_utf8_to_builder)
8555         (mono_string_builder_to_utf16): We might not have ownership of the
8556         string. In thise case, we need to create a new buffer.
8557
8558         * object-internals.h (mono_stringbuilder_capacity): sb->str might
8559         be null, in which case, use the default capacity.
8560
8561 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8562
8563         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
8564         GC events to the profiler.
8565
8566 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8567
8568         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
8569         if you don't want the GC to run.
8570
8571 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
8572
8573         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
8574         start providing a GC API and keeping different implementations in
8575         their own file.
8576         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
8577
8578 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
8579
8580         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
8581         mmap rather than allocating a huge buffer.
8582         (mono_debug_close_mono_symbol_file): Free the buffer allocated
8583         above.
8584
8585 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
8586
8587         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
8588         and CheckExecutionRights.
8589         * reflection.c|h: Keep the index of the declarative security to be 
8590         used, instead of the pointer, when AOT compiler is used. Also add 
8591         class initialization when requesting demands.
8592         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
8593         CheckExecutionRights. Both properties are now FALSE by default, and
8594         unmodifiable, unless the --security option is used.
8595
8596 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8597
8598         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
8599         reflection.c: properly refcount images and assemblies, many leaks fixed.
8600
8601 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8602
8603         * threadpool.c: increase the timeout for threads in the thread pool to
8604         10s.  Fixes bug #67159.
8605
8606 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
8607
8608         * class-internals.h: Sun's compiler insists on explicit
8609         signed on bit fields to handle then correctly.
8610
8611 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
8612
8613         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
8614         Make the size of the array fit only the number of invalid path
8615         chars that we have.
8616
8617         * class.c (_mono_class_get): Improve the error reporting when a
8618         class referenced is not found, to assist debugging. 
8619
8620 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
8621
8622         * threads.c: fix off-by-one error.
8623         * domain.c: free data allocated in the domain.
8624
8625 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
8626
8627         * reflection.c (mono_method_body_get_object): Fill out exception info
8628         as well.
8629
8630         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
8631         structure.
8632         
8633 2005-01-19  Martin Baulig  <martin@ximian.com>
8634
8635         * loader.c (mono_get_method_constrained): Make this work again.
8636
8637 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
8638
8639         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
8640         guint16 to match the managed side.
8641
8642         * reflection.c (mono_reflection_body_get_object): Fill out local
8643         variables array.
8644
8645         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
8646         as well.
8647
8648         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
8649         'local_var_sig_token'.
8650
8651 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
8652
8653         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
8654         System.Drawing.
8655
8656         * reflection.c (mono_method_body_get_object): Handle abstract and
8657         runtime methods.
8658
8659 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
8660
8661         * marshal.c, loader.c, class-internals.h, reflection.c:
8662         store the emthod data for a wrapper in an array instead of a list.
8663
8664 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
8665
8666         * marshal.c: change the code to allocate memory more
8667         conservatively for method wrappers.
8668
8669 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
8670
8671         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
8672         fields from MonoClass to the marshal info structure where they belong.
8673
8674 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8675
8676         * class.c, object.c, class-internals.h, marshal.c: rearrange
8677         some fields and tweak some types to lower memory usage.
8678
8679 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
8680
8681         * threads.c (signal_thread_state_change): Handle the case when the
8682         target thread is the current thread.
8683
8684         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
8685
8686         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
8687         emit_ptr_to_object_conv. 
8688
8689         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
8690         marshalling. Fixes #71352.
8691
8692 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8693
8694         * metadata.h, blob.h: move table enum to blob.h so it can be included
8695         in any header.
8696         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
8697         cut the size of MonoImage/MonoDynamicImage.
8698
8699 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
8700
8701         * profiler.c (mono_profiler_install_simple): Fix default arguments.
8702
8703 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
8704
8705         * reflection.c, reflection.h, icall.c: add a function to check
8706         if an attribute type is defined for a metadata object.
8707
8708 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
8709
8710         * object-internals.h: Added some needed fields from StringBuilder class.
8711         * marshal.c: Set the maxCapacity when creating a StringBuilder.
8712
8713 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
8714
8715         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
8716         threads before shutting down the runtime.
8717
8718         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
8719
8720 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8721
8722         * object-internal.h, threads.c: implement stacksize and 
8723         parameterized thread start functionality (requires
8724         matching corlib). Marked broken code for later removal.
8725
8726 2005-01-12  Martin Baulig  <martin@ximian.com>
8727
8728         * class-internals.h (MonoGenericClass): Moved the `initialized'
8729         flag to MonoDynamicGenericClass, removed `init_pending'.
8730         (MonoGenericInst): Added `is_reference' flag.
8731
8732 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
8733
8734         * reflection.c (mono_image_create_pefile): Only set the pe_offset
8735         inside the MSDOS header. Fixes #71201.
8736
8737         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
8738         gc thread.
8739         (mono_domain_finalize): Ditto.
8740
8741 2005-01-12  Martin Baulig  <martin@ximian.com>
8742
8743         * class.c (mono_get_shared_generic_class): Use the cache for
8744         non-dynamic generic classes.
8745
8746         * class-internals.h (mono_class_create_generic_2): Removed
8747         function prototype, this function is now static inside class.c.
8748
8749         * class.c (mono_class_create_generic_2): Made this static, only
8750         call it from mono_class_init() and mono_class_setup_parent().
8751         (collect_implemented_interfaces_aux): Call mono_class_init() on
8752         the interfaces we collect.
8753         (mono_class_setup_vtable): Call mono_class_init (class->parent).
8754
8755 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
8756
8757         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
8758         it a real thread handle.
8759
8760         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
8761         MonoJitExceptionInfo, since each catch clause needs its own variable.
8762         
8763 2005-01-11  Dick Porter  <dick@ximian.com>
8764
8765         * image.c (mono_pe_file_open): New variant on mono_image_open()
8766         that does not set up the CLI metadata; used for FileVersionInfo so
8767         it can get the data for windows binaries too.
8768         
8769         * process.c (process_read_string_block): Don't read off the end of
8770         the StringTable block.
8771
8772         These both fix bug 70766.
8773
8774 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
8775
8776         * gc.c: set some fields to NULL at GC cleanup time.
8777         * threads.c: if we quit the main thread, call exit ().
8778
8779 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
8780
8781         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
8782
8783 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
8784
8785         * threads.h, threads.c, object.c: added accessor and settor for
8786         main_thread. Handle it specially when exiting from it: wait
8787         for other foreground threads to exit.
8788
8789 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
8790
8791         * process.c, verify.c: remove some bloat.
8792
8793 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
8794
8795         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
8796         the calling convention to cdecl under win32.
8797
8798 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
8799
8800         * object.c (mono_object_get_size): New function to get the size of
8801         an object instance.
8802
8803         * profiler.c (simple_allocation): Use above.
8804
8805 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
8806
8807         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
8808         ves_icall_System_AppDomain_getRootDomain (as it's not required to
8809         get an appdomain by it's id and we can't assume the root's id is 0).
8810         * domain-internals.h: Change the function prototype to match.
8811         * icall.c: Change the icall table for AppDomain.
8812
8813 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
8814
8815         * locales.c (string_invariant_compare_char): Only compute
8816         GUnicodeTypes in the case where we need them.  Test for ordinality
8817         first and return if so.
8818
8819         From the commit:
8820
8821                 /*
8822                  * FIXME: here we must use the information from c1type and c2type
8823                  * to find out the proper collation, even on the InvariantCulture, the
8824                  * sorting is not done by computing the unicode values, but their
8825                  * actual sort order.
8826                  */
8827
8828 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8829
8830         * loader.c: for P/Invoke methods, allow the "Internal" shared
8831         library name to refer to the calling process symbol namespace.
8832
8833 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
8834
8835         * Makefile.am: Add the security manager to the build.
8836         * security-manager.c|h: New. Initialization of the security manager.
8837
8838 2005-01-07  Dick Porter  <dick@ximian.com>
8839
8840         * threads.c: 
8841         * monitor.c: Update thread state during Monitor and WaitHandle
8842         waits.  Fixes bug 71031.
8843
8844 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
8845
8846         * reflection.c (property_encode_signature): Correctly handle when the
8847         property has no methods.
8848
8849 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
8850
8851         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
8852         
8853         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
8854         fields from mb, not rmb. Fixes #71017.
8855
8856         * marshal.c (emit_ptr_to_str_conv): Add support for 
8857         ByValTStr -> string conversion. Fixes #71015.
8858
8859         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
8860
8861         * mempool.c (mono_mempool_contains_addr): New helper function.
8862
8863 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8864
8865         * metadata.c (mono_metadata_compute_size): Fix size calculation of
8866         HasSematics encoded fields.
8867         
8868         * metadata.c (mono_type_to_unmanaged): Improve error message for 
8869         invalid string marshalling.
8870
8871         * metadata.c: Fix warnings.
8872         
8873 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8874
8875         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
8876         profiler support.
8877
8878 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8879
8880         * domain.c object.c domain-internals.h: Revert part of r38077 since the
8881         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
8882         tests.
8883
8884 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
8885
8886         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
8887         so methods containing these can be AOTed.
8888
8889 2005-01-03  Martin Baulig  <martin@ximian.com>
8890
8891         * loader.c (find_method): Removed the hack for generic instances.
8892         (method_from_memberref): If our parent is a generic instance, pass
8893         its generic type definition to find_method() and then inflate the
8894         method.
8895         (mono_get_method_constrained): Pass the generic type definition to
8896         find_method() and inflate the method later.
8897
8898         * class-internals.h (MonoStats): Added `generic_class_count'.
8899
8900         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
8901         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
8902
8903         * reflection.c (mono_custom_attrs_from_params): Don't ignore
8904         generic type definitions.
8905
8906 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
8907
8908         * loader.c icall.c: Fix warnings.
8909
8910 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
8911
8912         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
8913         blittable types. Fixes #70864.
8914
8915 2004-12-29  Martin Baulig  <martin@ximian.com>
8916
8917         * icall.c
8918         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
8919
8920         * reflection.c (mono_method_get_object): Create a
8921         "System.Reflection.MonoGenericMethod" for inflated methods; don't
8922         call mono_get_inflated_method().
8923
8924         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
8925
8926 2004-12-27  Martin Baulig  <martin@ximian.com>
8927
8928         * class-internals.h (MonoMethod): Added `is_inflated' flag.
8929         (MonoMethodInflated): Added `inflated' field.
8930
8931         * class.c (mono_class_inflate_generic_method): Don't really
8932         inflate the method here; just set the `is_inflated' flag in the
8933         MonoMethod.
8934         (mono_class_get_inflated_method): Actually inflate the method here
8935         if it's not already inflated; we use the MonoMethodInflated's new
8936         `inflated' field as a cache.
8937
8938 2004-12-26  Martin Baulig  <martin@ximian.com>
8939
8940         * class.c
8941         (inflate_generic_class): Moved some code out of inflate_generic_type().
8942         (mono_class_inflate_generic_method): If we're already inflated,
8943         inflate the context and use the declaring method; ie. make sure
8944         the declaring method of an inflated method is always the generic
8945         method definition.
8946         (mono_class_create_from_typedef): Create
8947         `class->generic_container->context->gclass'.
8948
8949 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
8950
8951         * metadata-internals.h, marshal.c, reflection.c: More
8952         MonoGHashTable->GHashTable.
8953
8954         * domain-internals.h, class.c: Change MonoGHashTable's into
8955         GHashTables for some cases where no gc stuff is used
8956
8957         All users: update apis
8958
8959 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
8960
8961         * metadata.c (builtin_types): Make this `const'. Makes this get
8962         put into the shareable section.
8963         (mono_metadata_init): Casts to make gcc happy.
8964
8965 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
8966
8967         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
8968
8969 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
8970
8971         * icall.c: Added an internal call to retrieve the position and length
8972         of assembly-level declarative security attributes (RequestMinimum, 
8973         RequestOptional and RequestRefuse). This is used by the Assembly class
8974         to re-create the corresponding permission sets.
8975
8976 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
8977
8978         * marshal.c: fix the stelemref wrapper to be type correct
8979         (and faster).
8980
8981 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
8982
8983         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
8984         to do key & 0x7fffffff. Hashtable already does this. It just
8985         results in longer code.
8986
8987 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
8988
8989         * appdomain.c: Bump corlib version.
8990         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
8991         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
8992         * reflection.c|h: Add functions to get declarative security infos
8993         (blob position and length) for assemblies, classes and methods.
8994
8995 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
8996
8997         * reflection.c: sort the constant table (bug #70693).
8998
8999 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
9000
9001         * object-internals.h, threads.c, domain.c: add accessors for
9002         the MonoThread and MonoDomain tls keys.
9003
9004 2004-12-18  Martin Baulig  <martin@ximian.com>
9005
9006         * class.c (inflate_generic_type): If we're inflating a generic
9007         instance, set `ngclass->context->container = context->container';
9008         ie. the container we inflated into.
9009
9010         * metadata.c (mono_metadata_parse_generic_param): Reflect above
9011         inflate_generic_type() changes.
9012
9013 2004-12-17  Martin Baulig  <martin@ximian.com>
9014
9015         * class-internals.h
9016         (MonoGenericClass): Replaced `MonoType *generic_type' with
9017         `MonoClass *generic_class'.  Removed `dynamic_info'; if
9018         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
9019         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
9020
9021 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
9022
9023         * exception.c (mono_exception_from_token): New helper function.
9024
9025 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
9026
9027         * assembly.c (mono_assembly_load_with_partial_name): Call 
9028         mono_assembly_loaded before invoking the preload hooks. Fixes
9029         #70564.
9030
9031         * object-internals.h (MonoThread): Change culture_info and 
9032         ui_culture_info into an array.
9033
9034         * threads.c: Cache culture info objects from more than one appdomain.
9035
9036         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
9037         current UI culture.
9038
9039 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
9040
9041         * threads.h threads.c appdomain.c: Clear the culture_info field of
9042         all threads during unloading if they point to an object in the dying
9043         appdomain.
9044
9045 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
9046
9047         * culture-info.h (TextInfoEntry): New struct
9048         * object-internals.h: sync with managed
9049         * locales.c: fill the `text_info_data' field
9050         * culture-info-tables.h: update
9051
9052 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
9053
9054         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
9055         collector.
9056
9057 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
9058
9059         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
9060         (ves_icall_ModuleBuilder_getMethodToken): Ditto
9061
9062 2004-12-12  Martin Baulig  <martin@ximian.com>
9063
9064         * mono-debug-debugger.c (write_type): If we're an enum and the
9065         builtin types have already been initialized, call mono_class_init().
9066
9067 2004-12-11  Martin Baulig  <martin@ximian.com>
9068
9069         * metadata.c (mono_metadata_load_generic_params): Added
9070         `MonoGenericContainer *parent_container' argument; automatically
9071         compute `container->is_method'; pass the correct owner to
9072         get_constraints().      
9073
9074         * reflection.c (compare_genericparam): Sort the GenericParam table
9075         according to increasing owners. 
9076
9077 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
9078
9079         * profiler.c: allow disabling the default profiler.
9080
9081 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
9082
9083         * decimal.c, icall.c: allow disabling System.Decimal support.
9084
9085 2004-12-09  Marek Safar <marek.safar@seznam.cz>
9086
9087         * reflection.c: Add support for null attribute arguments.
9088
9089 2004-12-09  Martin Baulig  <martin@ximian.com>
9090
9091         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
9092         names to get rid of compiler warnings.
9093
9094 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9095
9096         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
9097         mono_marshal_load_type_info (). Fixes #69625.
9098         (mono_marshal_get_ptr_to_struct): Likewise.
9099
9100 2004-12-08  Martin Baulig  <martin@ximian.com>
9101
9102         * mono-debug.h: Bumped version number to 47.
9103
9104         * mono-debug-debugger.c
9105         (mono_debugger_event_handler, mono_debugger_event): Take two
9106         guint64 arguments insteed of a gpointer and a guint32.  
9107
9108 2004-12-08  Martin Baulig  <martin@ximian.com>
9109
9110         * debug-mono-symfile.h
9111         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
9112         `address' to `native_offset'.
9113
9114 2004-12-08  Martin Baulig  <martin@ximian.com>
9115
9116         * class.c (mono_class_create_from_typespec): Only inflate if we
9117         either have `context->gclass' or `context->gmethod'.
9118
9119 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9120
9121         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
9122
9123         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
9124
9125         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
9126
9127         * reflection.c (mono_assembly_get_object): Remove the workaround put
9128         in for the release.
9129         
9130         * appdomain.c: Use the corlib_internal field from MonoAssembly.
9131
9132         * appdomain.c: Bump corlib version.
9133
9134         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
9135         be visible in other appdomains.
9136
9137 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
9138
9139         * threads.c: Interlocked inc and dec for longs were messed up,
9140         use a KISS based impl for this. Fixes 70234
9141
9142 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
9143
9144         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
9145
9146 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
9147
9148         * icall.c: fix to follow policy not to allow struct
9149         arguments in icalls.
9150
9151 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9152
9153         * process.c: make the patch that handles spaces in file paths work
9154         on mono/windows too.
9155
9156 2004-12-06  Martin Baulig  <martin@ximian.com>
9157
9158         * class.c (mono_class_create_generic): Call
9159         mono_class_setup_supertypes() if we're dynamic.
9160         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
9161
9162 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
9163
9164         * object-internals.h: Add new fields to MonoThread.
9165
9166         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9167
9168         * icall.c threads-types.h threads.c: Add new icalls.
9169
9170         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
9171
9172         * object-internals.h (MonoReflectionAssembly): Sync object layout with
9173         managed side.
9174
9175         * appdomain.c: Bump corlib version.
9176
9177         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
9178         internal assemblies. Fixes #69181.
9179
9180 2004-12-05  Martin Baulig  <martin@ximian.com>
9181
9182         * class.c (mono_class_inflate_generic_signature): Make this a
9183         no-op if `context' is NULL or we don't have any type parameters;
9184         also copy `sentinelpos'.        
9185
9186 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
9187
9188         * image.c: Add unbox_wrapper_cache.
9189
9190         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
9191
9192         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
9193         function generator.
9194         
9195         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
9196         Fixes #70173.
9197
9198         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
9199         
9200 2004-12-04  Martin Baulig  <martin@ximian.com>
9201
9202         * loader.c (mono_method_get_signature_full): New public function;
9203         like mono_method_get_signature(), but with an additional
9204         `MonoGenericContext *' argument.
9205
9206         * class.c (mono_class_inflate_generic_signature): Formerly known
9207         as inflate_generic_signature(); make this public.
9208
9209 2004-12-04  Martin Baulig  <martin@ximian.com>
9210
9211         * metadata.c
9212         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
9213         instead of a `MonoGenericContainer *'.  
9214         (mono_metadata_parse_array_full): Likewise.
9215         (mono_metadata_parse_signature_full): Likewise.
9216         (mono_metadata_parse_method_signature_full): Likewise.
9217         (mono_metadata_parse_generic_inst): Likewise.
9218         (mono_metadata_parse_generic_param): Likewise.
9219         (mono_metadata_parse_mh_full): Likewise.
9220         (mono_type_create_from_typespec_full): Likewise.
9221
9222 2004-12-03  Martin Baulig  <martin@ximian.com>
9223
9224         * class-internals.h (MonoGenericContainer): Replaced the
9225         `MonoGenericContext * pointer with a `MonoGenericContext'
9226         structure and made it the first element.
9227
9228 2004-12-03  Martin Baulig  <martin@ximian.com>
9229
9230         * class.c
9231         (inflate_generic_type): Set the `context->container' when creating
9232         a new MonoGenericContext.
9233         (mono_class_inflate_generic_method): Likewise.
9234         (mono_class_create_from_typespec): Just use `context->container'
9235         to get the container.
9236
9237         * loader.c (method_from_methodspec): Set `context->parent' from
9238         `context->container' - and if that's a method container, use its
9239         parent.  Also set the `context->container' when creating a new
9240         MonoGenericContext.
9241         (mono_get_method_from_token): Use just `context->container' to get
9242         the container.
9243
9244         * metadata.c (do_mono_metadata_parse_generic_class): Also set
9245         `gclass->context->container'.
9246
9247         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
9248         the `context->container' when creating a new MonoGenericContext.
9249
9250 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
9251
9252         * reflection.c (compare_genericparam): Sort params with identical
9253         owner by their number. Fixes gen-111 on sparc.
9254
9255 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9256
9257         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
9258         around the domain changes.
9259
9260         * appdomain.c (mono_domain_unload): Handle the case when the thread
9261         calling Unload is itself being aborted during unloading. Fixes #70022.
9262
9263         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
9264
9265         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
9266         checkpoint_func as an icall so it gets a wrapper.
9267         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
9268         in the cross-appdomain wrappers too.
9269
9270         * threads.c (mono_thread_has_appdomain_ref): Make this public.
9271
9272         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
9273
9274         * reflection.c: Fix some memory leaks.
9275         
9276 2004-12-02  Martin Baulig  <martin@ximian.com>
9277
9278         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
9279
9280         * metadata.c (generic_class_cache): New static hashtable.
9281         (mono_metadata_lookup_generic_class): New public method.
9282
9283 2004-12-02  Martin Baulig  <martin@ximian.com>
9284
9285         * class.c (mono_class_create_from_typedef): Call
9286         mono_class_setup_parent() and mono_class_create_mono_type() before
9287         parsing the interfaces.
9288
9289 2004-12-02  Martin Baulig  <martin@ximian.com>
9290
9291         * metadata.c (generic_inst_cache): New static hashtable.
9292         (mono_metadata_lookup_generic_inst): New public function.
9293         (mono_metadata_inflate_generic_inst): New public function.
9294         (mono_metadata_parse_generic_inst): New public function.
9295         (do_mono_metadata_parse_generic_class): Use the new
9296         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
9297         since this'll also use the cache.
9298
9299         * reflection.c (mono_reflection_bind_generic_method_parameters):
9300         Use mono_metadata_lookup_generic_inst() to use the new cache.
9301
9302         * class.c (inflate_mono_type): Use
9303         mono_metadata_inflate_generic_inst() to inflate a generic
9304         instance; this'll also use the new cache.
9305
9306         * loader.c (method_from_methodspec): Use
9307         mono_metadata_parse_generic_inst() and
9308         mono_metadata_inflate_generic_inst() rather than parsing it
9309         manually, so we can use the new cache.
9310
9311 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9312
9313         * threads.c (wait_for_tids): Do not incorrectly free threads when 
9314         the wait times out.
9315
9316 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
9317
9318         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
9319         iter->args based on whether parameters are passed in registers (i.e.
9320         MONO_ARCH_REGPARMS is defined)
9321
9322 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
9323
9324         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
9325         the exception message. Fixes #70070.
9326         (method_from_methodspec): Fix warnings.
9327
9328 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9329
9330         * process.c: (complete_path) return the path quoted
9331
9332 2004-12-01  Martin Baulig  <martin@ximian.com>
9333
9334         * class-internals.h (MonoGenericInst): New structure.
9335         (MonoGenericClass): Replaced `type_argc', `type_argv' and
9336         `is_open' with `MonoGenericInst *inst'.
9337         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
9338         `is_open' with `MonoGenericInst *inst'.
9339
9340 2004-11-30  Martin Baulig  <martin@ximian.com>
9341
9342         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
9343
9344         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
9345         to `generic_class_cache'.
9346
9347         * metadata.c
9348         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
9349         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
9350         (mono_generic_inst_is_valuetype): Renamed to
9351         mono_generic_class_is_valuetype().
9352
9353         * class-internals.h
9354         (MonoGenericInst): Renamed to MonoGenericClass.
9355         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
9356         (MonoClass): Renamed `generic_inst' to `generic_class'.
9357         (MonoGenericContext): Renamed `ginst' to `gclass'.
9358
9359         * object-internals.h
9360         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
9361
9362         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
9363         mono_reflection_generic_class_initialize().
9364
9365         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
9366         now known as "System.Reflection.MonoGenericClass".
9367         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
9368
9369 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
9370
9371         * class-internals.h: Added a flag field to MonoClass to cache the
9372         declarative security attributes actions associated with the class.
9373         * domain-internals.h: Added booleans to MonoJitInfo to cache the
9374         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
9375         applicable to the JITted method.
9376         * reflection.c|h: Added functions to extract (as flags) which security
9377         actions are available (declaratively) for a method, class or assembly.
9378         * metadata.c|h: Added functions to search the declarative security
9379         table in the metadata.
9380         
9381 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
9382
9383         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
9384         EXPORTEDTYPES are already in the class name cache, so there is no
9385         need to add extra code here to look at them. Just removes a bit of
9386         cruft.
9387
9388         (ves_icall_System_Environment_get_TickCount): No need for #if
9389         WINDOWS. We already have the code in io-layer.
9390
9391 2004-11-28  Martin Baulig  <martin@ximian.com>
9392
9393         * loader.c
9394         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
9395         Fixes gen-112.cs.
9396
9397 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
9398
9399         * assembly.c (do_mono_assembly_open): Instead of having a
9400         conditional WITH_BUNDLE, incorporate support for bundles here, by
9401         having a global `bundles' variable holding a pointer to the actual
9402         bundles. 
9403
9404         (mono_register_bundled_assemblies): New API call used by the
9405         bundle code. 
9406
9407         See mkbundle.1 for details.
9408         
9409 2004-11-27  Martin Baulig  <martin@ximian.com>
9410
9411         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
9412         the vtable for generic methods.
9413
9414 2004-11-26  Martin Baulig  <martin@ximian.com>
9415
9416         * metadata.c
9417         (mono_metadata_generic_method_hash): New public function.
9418         (mono_metadata_generic_method_equal): Likewise.
9419
9420         * class-internals.h
9421         (MonoGenericContainer): Added `GHashTable *method_hash'.
9422
9423         * reflection.c (ReflectionMethodBuilder): Added
9424         `MonoGenericContainer *generic_container'.
9425         (reflection_methodbuilder_to_mono_method): Don't create a new
9426         MonoGenericContainer each time we're called.
9427         (mono_reflection_bind_generic_method_parameters): Use
9428         `container->method_hash' to cache the results so we don't create a
9429         different method if we're called several times with the same
9430         arguments.
9431
9432         * loader.c (method_from_methodspec): Use the new
9433         `container->method_hash' here, too.
9434
9435 2004-11-26  Martin Baulig  <martin@ximian.com>
9436
9437         * class.c (inflate_generic_signature): Correctly compute
9438         `res->has_type_parameters'.
9439         (mono_class_vtable): Use the `has_type_parameters' flag to
9440         determine whether we're a generic method.
9441
9442         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
9443
9444 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
9445
9446         * object.c (mono_runtime_run_main): Fix a small memory leak.
9447
9448 2004-11-25  Martin Baulig  <martin@ximian.com>
9449
9450         * class.c (set_generic_param_owner): Fixed the loop.
9451
9452 2004-11-25  Martin Baulig  <martin@ximian.com>
9453
9454         * object.c (mono_class_vtable): Don't create any JIT wrappers for
9455         generic methods.
9456
9457 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
9458
9459         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
9460         names. Fixes #69787.
9461
9462 2004-11-24  Martin Baulig  <martin@ximian.com>
9463
9464         * class.c (mono_class_create_generic_2): If we don't have a
9465         `ginst->parent', inflate `gklass->parent' to get our parent.
9466
9467 2004-11-24  Martin Baulig  <martin@ximian.com>
9468
9469         * reflection.c (compare_genericparam): Correctly sort the
9470         GenericParam table; fixes #69779.
9471
9472 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
9473
9474         * reflection.c: When writing a PE file, don't create a huge
9475         buffer in memory. Just write the arrays we have to the file.
9476         This reduces memory usage.
9477
9478         * metadata-internals.h: MonoDynamicStream pefile is no longer used
9479         globally.
9480
9481 2004-11-17  Martin Baulig  <martin@ximian.com>
9482
9483         * class.c (mono_class_init): Don't setup `class->parent' for
9484         dynamic instances; moved this to mono_class_generic_2().
9485         (mono_class_create_generic): Also set `klass->inited' for dynamic
9486         generic instances.
9487         (mono_class_create_generic_2): Don't do anything for dynamic
9488         generic instances.  Set `klass->parent' here and also call
9489         mono_class_setup_parent() here. 
9490
9491         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
9492         `MonoType *parent' argument; set `ginst->parent' before calling
9493         mono_class_create_generic_2(), so we set the correct parent.
9494
9495 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
9496
9497         * reflection.c: allow getting attributes from ModuleBuilder
9498         (used by ikvm).
9499
9500 2004-11-17  Martin Baulig  <martin@ximian.com>
9501
9502         * class.c (mono_class_create_from_typedef): If a type parameter is
9503         inherited from an outer class, set its owner to that class.
9504
9505 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
9506
9507         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
9508           for (int*) written size. This fixes bug #69592.
9509
9510 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
9511
9512         * icall.c: Added IsAuthenticodePresnet internal call.
9513         * image.c|h: New function that check a MonoImage for an Authenticode
9514         signature in the certificate PE data directory.
9515         * security.c|h: New internal call to ask the runtime if an 
9516         Authenticode signature seems referenced in the PE header.
9517
9518 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
9519
9520         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
9521
9522         * reflection.c (mono_image_create_pefile): Free the assembly streams
9523         after writing out the assembly file.
9524
9525         * object.c (mono_runtime_run_main): Fix small memory leak.
9526
9527         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
9528         property access modifiers. Fixes #69389.
9529
9530 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
9531
9532         * domain.c, object.c, object-internals.h, domain-internals.h,
9533         object.h, marshal.c: keep dynamic code info per domain.
9534
9535 2004-11-15  Martin Baulig  <martin@ximian.com>
9536
9537         * class.c (mono_type_get_name_recurse): Put type arguments in
9538         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
9539         see bug #68387.
9540
9541 2004-11-15  Martin Baulig  <martin@ximian.com>
9542
9543         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
9544         (mono_class_setup_vtable): When computing `the_cname' for a
9545         generic instance, don't include the namespace since we'd otherwise
9546         add it twice.
9547
9548 2004-11-15  Martin Baulig  <martin@ximian.com>
9549
9550         * class.c (mono_class_create_generic): Changed return type to void.
9551         (mono_class_create_generic_2): New public function; setup
9552         `class->method', `class->field' and `class->interfaces' here
9553         instead of in mono_class_init().
9554
9555         * class.h (mono_class_create_generic): Moved to class-internals.h.
9556
9557 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
9558
9559         * reflection.c (mono_image_create_pefile): take a file HANDLE.
9560         rather than writing to memory, write to this file. Right now,
9561         we are just writting into a buffer, and copying that. However
9562         we can avoid the buffer later.
9563
9564         (mono_dynamic_stream_reset): new function
9565
9566         * icall.c, object-internals.h: update for the above.
9567
9568 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
9569
9570         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
9571         have been using gc'd memory. First it is slower, unlikely
9572         the comment in the source code said, secondly, it increases
9573         our footprint to do it in the gc.
9574
9575         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
9576         the method so that it does not have to copy to managed code.
9577
9578 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
9579
9580         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
9581
9582 2004-11-12  Martin Baulig  <martin@localhost>
9583
9584         * reflection.c (mono_image_create_token): Allow generic method
9585         definitions here, since they may appear in an `.override'; see
9586         gen-98/gen-99 for an example.
9587
9588 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
9589
9590         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
9591         #69365.
9592
9593         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
9594         descriptive.
9595
9596 2004-11-11  Martin Baulig  <martin@ximian.com>
9597
9598         * class.c (mono_class_setup_vtable): In an explicit interface
9599         implementation, the method name now includes the arity.
9600
9601 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
9602
9603         * object.c (mono_array_full_copy): Fix warning.
9604
9605 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
9606
9607         * appdomain.c: Removed look_for_method_by_name(). Use the new method
9608         mono_class_get_method_from_name() instead.
9609         
9610         * class-internals.h: Added two new types of wrappers. 
9611         Added MonoRemotingTarget enum. Added new trampoline function type, which
9612         takes an additional MonoRemotingTarget value as parameter, so it is
9613         possible to request a trampoline for a specific target.
9614         
9615         * class.c: Added new mono_class_get_method_from_name() method.
9616         
9617         * class.h: In MonoRemoteClass, we can have now to vtables, one for
9618         general remoting sinks and one specific for cross domain calls.
9619         
9620         * debug-helpers.c: Added new wrapper names.
9621         
9622         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
9623         of a remote class.
9624         
9625         * image.c: Porperly delete value objects form the remoting invoke hashtable.
9626         
9627         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
9628         with several other methods (mono_marshal_get_xappdomain_dispatch,
9629         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
9630         and others) can generate a fast remoting wrapper for cross domain calls.
9631         More information can be found in docs/remoting.
9632         Other changes: Removed mono_find_method_by_name, and used
9633         mono_class_get_method_from_name instead.
9634         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
9635         is stored in the remoting invoke hashtable.
9636         
9637         * marshal.h: published the new method for getting the xdomain wrapper,
9638         and also added a method for getting the adequate wrapper for a given
9639         method and target.
9640         
9641         * object-internals.h, object.c: Added a couple of methods for capying and
9642         cloning arrays.
9643         Modified mono_install_remoting_trampoline, which takes the new remoting
9644         trampoline that has a remoting target as parameter.
9645         mono_class_proxy_vtable now also takes a remoting target as parameter, and
9646         will return the most suitable vtable for the target.
9647         Added mono_remote_class_vtable, which returns the vtable of a remote class
9648         (which can be the normal remoting vtable or the xdomain vtable).
9649         
9650         * threads.c: the xdomain invoke and dispatch wrappers must also be
9651         protected against interruptions.
9652
9653 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9654
9655         * icall.c: use memmove in BlockCopyInternal when the source and
9656         destination arrays are the same.
9657
9658 2004-11-09  Martin Baulig  <martin@ximian.com>
9659
9660         * class-internals.h (MonoGenericContainer): Removed `method' and
9661         `signature', replaced them with `is_method' and `is_signature'
9662         flags.  Added `context'.
9663
9664         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
9665         instead of a `MonoGenericContainer *'.
9666
9667         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
9668         for dynamic type parameters.
9669         (mono_metadata_load_generic_params): Setup `container->context'.
9670
9671         * reflection.c (mono_reflection_setup_generic_class): Setup
9672         `tb->generic_container->context'.
9673         (do_mono_reflection_bind_generic_parameters): Use
9674         mono_class_inflate_generic_type() to correctly inflate types,
9675         rather than using our own hack just for MONO_TYPE_VAR.
9676
9677 2004-11-09  Martin Baulig  <martin@ximian.com>
9678
9679         * class.c (mono_class_inflate_generic_method): Small fix; don't
9680         crash here.
9681
9682         * icall.c
9683         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
9684         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
9685         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
9686         (ves_icall_Type_BindGenericParameters): Likewise.
9687         (ves_icall_Type_get_IsGenericInstance): Likewise.
9688         (ves_icall_Type_GetGenericParameterPosition): Likewise.
9689         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
9690         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
9691         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
9692
9693 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
9694
9695         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
9696         assembly versions and public key tokens. Fixes #69113.
9697
9698 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
9699
9700         * metadata.c: fix bug introduced with the type cache changes
9701         on 2004-11-06.
9702
9703 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
9704
9705         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
9706         the MonoClass pointer instead of the token in exception clauses.
9707         * reflection.c: updates for the above and make the code not depend
9708         on the structure of MonoExceptionClause.
9709
9710 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
9711
9712         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9713         Add support for dynamic assemblies. Fixes #69114.
9714
9715         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
9716
9717 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
9718
9719         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
9720         since most only those methods use it. the code member of
9721         MonoMethodPInvoke was dead, so that can be removed too. Also,
9722         remove inline_count (again, not used), and move slot so that it
9723         can share bits with some other flags. This saves 8 bytes in the
9724         structure and gives us about 50 kb back for mcs helloworld.cs
9725
9726         * *.[ch]: Do naming changes for the above.
9727
9728         * loader.c (mono_method_get_header): Lazily init the header
9729         on first access.
9730         (mono_get_method_from_token): don't init the header here
9731         (mono_free_method): the header may never be allocated
9732
9733         Overall, this saves 150 kb of unmanaged allocations
9734         for mcs helloworld.cs. That accounts for 10% of the unmanaged
9735         memory at runtime.
9736         
9737         * loader.c, loader.h (mono_method_get_header): new accessor.
9738
9739         * *.[ch]: use the above method. Prepares us to lazily load
9740         the header.
9741
9742         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
9743         three warnings, which are actual bugs (see 69206).
9744
9745         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
9746         unused. Saves a cool 4 bytes / method.
9747
9748 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
9749
9750         * metadata.c (builtin_types): Add types for System.Object here.
9751         (mono_metadata_parse_type_full): Cache MonoType*'s that are
9752         for a class or valuetype from klass->this_arg or klass->byval_arg.
9753
9754         On mcs for a hello world, this gets us down from 21836 MonoType's
9755         to 14560.
9756
9757         (mono_metadata_free_type): Account for the above change.
9758
9759 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
9760
9761         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
9762         exception instead of asserting if name is null.
9763         (ves_icall_System_AppDomain_GetData): Ditto.
9764
9765 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
9766
9767         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
9768         EnumBuilder.
9769
9770         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
9771         Return NULL when the domain does not have entry_assembly set.
9772
9773         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
9774         Add a 'resource_modules' argument.
9775         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
9776
9777         * reflection.c (mono_reflection_create_runtime_class): Move setting
9778         of wastypebuilder here, so mono_get_type_object () returns a MonoType
9779         for enums too.
9780
9781         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
9782         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
9783         Throw an ArgumentNullException if 'ptr' is null.
9784
9785         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
9786         assemblies here. Fixes #69020.
9787
9788 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
9789
9790         * reflection.c (build_compressed_metadata): Fix the previous patch for
9791         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
9792         the stack.
9793
9794 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
9795
9796         * assembly.c (mono_assembly_names_equal): Allow a match if one of
9797         the cultures is false. Fixes #69090.
9798
9799         * reflection.c (build_compressed_metadata): Fix invalid memory read 
9800         detected by valgrind.
9801         
9802         * reflection.c (mono_reflection_get_type): Avoid triggering a 
9803         TypeResolve multiple times for the same type. Fixes #65577.
9804
9805 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
9806
9807         * marshal.c: Avoid using ldftn to call managed functions. It is
9808         much slower than just a call.
9809
9810         * reflection.c (mono_module_get_object): free the basename we
9811         allocate here from glib.
9812         
9813         * reflection.c (ensure_runtime_vtable): make sure to free
9814         overrides.  Also, we were allocating an array of MonoMethod not an
9815         array of MonoMethod*.
9816
9817         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
9818
9819         * image.c (mono_image_close): free image->guid here.
9820
9821 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
9822
9823         * reflection.c: Fix some spec conformance issues with the PE file
9824         structures so mcs compiled apps run on the Net 2.0 beta.
9825
9826 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
9827
9828         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
9829         Implement this. Fixes #67264.
9830
9831         * debug-helpers.h debug-helpers.c marshal.c: Move 
9832         mono_find_method_by_name to debug-helpers.c.
9833
9834 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
9835
9836         * object.c (mono_release_type_locks): type_initialization_hash is
9837         a GHashTable.
9838
9839         * reflection.c object.c object-internals.h: Fix warnings.
9840
9841         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
9842         without accessors. Fixes #61561.
9843
9844         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
9845         application base from the root domain if not set. Fixes #65641.
9846         (mono_runtime_init): Fix warning.
9847
9848 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9849
9850         * appdomain.c: call mono_thread_pool_init.
9851         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
9852         of worker threads based on the number of CPUs and the environment
9853         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
9854         for non-windows (windows) systems.
9855
9856 2004-10-27  Chris Toshok  <toshok@ximian.com>
9857
9858         * mono-debug-debugger.c (write_class): don't call mono_class_init
9859         here, as even with the check for (!klass->init_pending), we get
9860         into a situation where we're hitting cycles in class
9861         initialization.  Fixes #68816.
9862
9863 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
9864
9865         * image.c: Avoid overwriting values in the loaded_images_hash when an
9866         assembly is loaded multiple times. Fixes #61152.
9867
9868         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
9869         so multiple satellite assemblies for the same name can be loaded.
9870         Fixes #68259.
9871
9872         * mono_domain_assembly_preload: Actually return the loaded assembly, 
9873         not NULL.
9874
9875         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
9876         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
9877
9878         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
9879         pending finalizers are not invoked after the appdomain has been 
9880         unloaded. Fixes #67862.
9881
9882 2004-10-22  Martin Baulig  <martin@ximian.com>
9883
9884         * mono-debug-debugger.c
9885         (mono_debugger_runtime_invoke): Don't box valuetypes.
9886
9887 2004-10-22  Chris Toshok  <toshok@ximian.com>
9888
9889         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
9890         don't hide private methods.
9891
9892 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
9893
9894         * icall.c: Allows the runtime to "share" (when known) the public key
9895         token of an assembly. This avoid the need to recalculate the token 
9896         (from the public key) in managed code.
9897
9898 2004-10-21  Chris Toshok  <toshok@ximian.com>
9899
9900         * debug-helpers.c (append_class_name): argh, revert last patch.
9901         
9902 2004-10-21  Chris Toshok  <toshok@ximian.com>
9903
9904         * debug-helpers.c (append_class_name): use '+' as the delimiter,
9905         not '/', so that it matches what the debugger uses to look up
9906         methods.
9907
9908 2004-10-21  Martin Baulig  <martin@ximian.com>
9909
9910         * mono-debug-debugger.c (mono_debugger_throw_exception): New
9911         public method; this is called each time an exception is thrown and
9912         allows the debugger to use exception catch points.
9913
9914 2004-10-21  Martin Baulig  <martin@ximian.com>
9915
9916         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
9917         the stack pointer and the exception object in some struct and pass
9918         that to the debugger.
9919
9920 2004-10-21  Chris Toshok  <toshok@ximian.com>
9921
9922         * mono-debug-debugger.c (do_write_class): add instance/static
9923         event support.  We don't expose "raise" or "other" yet.
9924         (event_is_static): new method.
9925
9926 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
9927
9928         * mono-debug-debugger.c
9929         (mono_debugger_handle_exception): Remove
9930         bogus return value for fussy compilers.
9931
9932 2004-10-20  Martin Baulig  <martin@ximian.com>
9933
9934         * mono-debug-debugger.c
9935         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
9936         (mono_debugger_handled_exception): Likewise.
9937
9938 2004-10-20  Martin Baulig  <martin@ximian.com>
9939
9940         * mono-debug-debugger.h (MonoDebuggerEvent): Added
9941         MONO_DEBUGGER_EVENT_EXCEPTION.
9942
9943         * mono-debug-debugger.c (mono_debugger_handle_exception): New
9944         public function to send the debugger a notification for an
9945         exception and inform it about a catch/finally clause.
9946
9947 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
9948
9949         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
9950         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
9951         fix 2.95 build. 
9952
9953         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
9954
9955 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
9956
9957         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
9958         marshalled as [In,Out]. Fixes #58325.
9959
9960 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
9961
9962         * reflection.c (mono_method_body_get_object): Implement some fields.
9963
9964 2004-10-12  Martin Baulig  <martin@ximian.com>
9965
9966         * reflection.c (mono_reflection_bind_generic_parameters): Small
9967         fix, correctly retrieve our parent from a generic instance.
9968
9969 2004-10-12  Martin Baulig  <martin@ximian.com>
9970
9971         * metadata.c (mono_metadata_generic_param_equal): We always have
9972         an owner.
9973
9974         * class.c
9975         (mono_class_from_generic_parameter): We need to have an owner.
9976         (my_mono_class_from_generic_parameter): Likewise.
9977
9978         * reflection.c (mono_reflection_setup_generic_class): Renamed to
9979         mono_reflection_create_generic_class() and added a new
9980         mono_reflection_setup_generic_class().  
9981         (mono_reflection_initialize_generic_param): If we're a nested
9982         generic type and inherited from the containing class, set our
9983         owner to the outer class.
9984
9985 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
9986
9987         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
9988
9989         * reflection.c (mono_method_body_get_object): New function to create
9990         a MethodBody object.
9991
9992         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
9993
9994 2004-10-11  Martin Baulig  <martin@ximian.com>
9995
9996         * metadata.c (_mono_metadata_type_equal): Renamed to
9997         do_mono_metadata_type_equal() and made static.
9998
9999 2004-10-11  Martin Baulig  <martin@ximian.com>
10000
10001         * appdomain.c: Bump corlib version number to 28.
10002
10003 2004-10-10  Martin Baulig  <martin@ximian.com>
10004
10005         * class-internals.h
10006         (MonoGenericInst): Added `MonoGenericContainer *container'.
10007         (MonoGenericMethod): Likewise.
10008         (MonoGenericContext): Likewise.
10009         (MonoGenericParam): Added `MonoGenericContainer *owner'.
10010
10011         * metadata.c
10012         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
10013         (do_mono_metadata_parse_generic_inst): Likewise.
10014         (mono_metadata_parse_type_full): New public method.  This is the actual
10015         mono_metadata_parse_type() implementation - with an additional
10016         `MonoGenericContainer *' argument.
10017         (mono_metadata_parse_array_full): Likewise.
10018         (mono_metadata_parse_signature_full): Likewise.
10019         (mono_metadata_parse_method_signature_full): Likewise.
10020         (mono_metadata_parse_mh_full): Likewise.
10021         (mono_type_create_from_typespec): Likewise.
10022         (mono_metadata_interfaces_from_typedef_full): New public method;
10023         this is similar to the other _full() methods, but we take a
10024         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
10025         (mono_metadata_parse_generic_param): Take an additional
10026         `MonoGenericContainer *' argument and lookup the MonoGenericParam
10027         from that container.
10028         (mono_metadata_generic_param_equal): New static method to compare
10029         two type parameters.
10030         (_mono_metadata_type_equal): New static method; takes an
10031         additional `gboolean signature_only' argument - if true, we don't
10032         compare the owners of generic parameters.
10033         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
10034         with a TRUE argument - do a signature-only comparision.
10035
10036         * loader.c: Use the new _full() methods and pass the
10037         MonoGenericContainer to them.
10038
10039         * object-internals.h (MonoReflectionTypeBuilder): Added
10040         `MonoGenericContainer *generic_container' field.
10041         (MonoReflectionMethodBuilder): Likewise.
10042
10043 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
10044
10045         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
10046         case initial images of dynamic assemblies.
10047
10048         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
10049
10050         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
10051
10052         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
10053         length of event->other array.
10054         (typebuilder_setup_events): Ditto.
10055
10056         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
10057         'assembly_by_name' and add an 'assemblies' list.
10058
10059         * assembly.h assembly.c: Add a new search hook for determining whenever
10060         an assembly is already loaded. Use this instead of searching in the
10061         loaded_assemblies list.
10062
10063         * domain.c appdomain.c: Implement the new search hook so loaded 
10064         assemblies are now scoped by appdomain. Fixes #67727.
10065
10066 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
10067
10068         * threads.c (mono_thread_attach): Initialize synch_lock field so
10069         mono_thread_detach works again.
10070
10071         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
10072         'lib' too. Fixes #63130.
10073
10074 2004-10-06  Jackson Harper  <jackson@ximian.com>
10075
10076         * culture-info-tables.h: regenerated.
10077
10078 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
10079
10080         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
10081         implemented by other interfaces in the result. Fixes #65764.
10082         
10083         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10084         Handle unloadable modules without crashing.
10085
10086         * image.c (load_modules): Revert the previous patch since modules must
10087         have a fixed index inside the array.
10088         
10089         * image.c (load_modules): Don't include native modules in the modules
10090         array.
10091
10092 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
10093
10094         * reflection.h: Add param_defaults field.
10095
10096         * reflection.c: Add support for parameter defaults in dynamic methods.
10097         Fixes #64595.
10098
10099         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
10100         an empty string when a type has no namespace. Fixes #64230.
10101
10102 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
10103
10104         * tabledefs.h: Added "internal" security actions to support non-CAS
10105         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
10106         Note: they do not seems to be used anymore in 2.0 (new metadata format)
10107
10108 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
10109
10110         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
10111         constructor of abstract class. Fixes #61689.
10112
10113 2004-10-04  Martin Baulig  <martin@ximian.com>
10114
10115         * class-internals.h (MonoGenericContainer): New type.
10116         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
10117         `MonoGenericContainer *generic_container'.
10118         (MonoClass): Replaced `gen_params' and `num_gen_params' with
10119         `MonoGenericContainer *generic_container'.
10120
10121         * metadata.c (mono_metadata_load_generic_params): Return a
10122         `MonoGenericContainer *' instead of a `MonoGenericParam *';
10123         removed the `num' argument.
10124
10125 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
10126
10127         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
10128         for dynamic images.
10129
10130         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
10131         machine fields.
10132
10133         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
10134
10135         * reflection.c: Save pe_kind and machine values into the generated
10136         image file.
10137
10138         * appdomain.c: Bump corlib version number.
10139
10140         * object-internals.h: Reorganize layout of LocalBuilder.
10141
10142         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
10143         New helper function.
10144
10145         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
10146         created MonoType for dynamic types. Fixes #66180.
10147
10148 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
10149
10150         * threadpool.c: the ares hashtable needs a critical section around it.
10151         this prevents some nasty segfaults
10152
10153 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
10154
10155         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
10156         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
10157         bug 67324).
10158         
10159 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10160
10161         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
10162         
10163 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
10164
10165         * image.c: Always canonicalize image file names, to avoid loading
10166         the same assembly twice when referenced using a relative path.
10167
10168 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10169
10170         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
10171
10172         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
10173
10174         * marshal.c: Fix warnings.
10175
10176 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
10177
10178         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
10179         attempting to marshal the delegate_trampoline as the method_addr.
10180         This patch has a static hashtable of marshalled delegates so that 
10181         we can map delegate_trampoline addresses back to delegates.  This
10182         allows a delegate passed to managed code to be passed back into native
10183         code.  Fixes #67039
10184
10185 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10186
10187         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
10188
10189         * reflection.c (method_encode_code): Align method headers properly.
10190         Fixes #66025.
10191
10192 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10193
10194         * marshal.c: In the runtime invoke wrapper, reset the abort
10195         exception if it is cached. This avoids the automatic rethrowal of 
10196         the exception after the catch of the wrapper. Also check for pending
10197         interruptions before calling the managed method. This is done using
10198         the new method emit_thread_force_interrupt_checkpoint, since the
10199         normal checkpoint method is ignored when running the invoke wrapper.
10200         * object.c: If the abort exception is rethrown, set the abort_exc
10201         field of the thread, so it will be rethrown aftere every catch.
10202         * threadpool.c: Only run an interruption checkpoint if what has been
10203         requested is a stop of the thread (aborts will be ignored).
10204         * threads.c: By default, a thread will now never be interrumped while
10205         running the runtime invoke wrapper (this ensures that runtime_invoke
10206         will always return to the caller if an exception pointer is provided).
10207         There is a new special method mono_thread_force_interruption_checkpoint()
10208         to force an interruption checkpoint even if running a protected
10209         wrapper, which is used by the same runtime invoke wrapper to do a check
10210         at a safe point.
10211
10212 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10213
10214         * object.c, object-internals.h: Implemented mono_release_type_locks,
10215         which releases the cctor locks held by a thread.
10216         * threads.c, threads.h: In thread_cleanup, release cctor locks held
10217         by a thread. Added mono_thread_exit() method to be used to safely stop
10218         a thread.
10219
10220 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10221
10222         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10223         Move null check before dereference.  Avoid indexing beyond the end
10224         of the 'modules' array.
10225
10226 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10227
10228         * metadata-internals.h (MonoImage): Add module_count field.
10229         * image.c (load_modules): Set image->module_count.
10230         (mono_image_load_file_for_image): Use image->module_count.
10231         * reflection.c (mono_image_load_module): Append to image->modules array 
10232         of dynamic assembly.
10233         (mono_module_get_object): Fix loop to actually increment index.
10234         Use image->module_count.
10235         * assembly.c (mono_assembly_load_references): Use image->module_count.
10236         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
10237         Likewise.
10238
10239 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10240
10241         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
10242         Avoid assert on generic types.
10243
10244 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
10245
10246         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
10247
10248         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
10249
10250         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
10251         function to convert a MarshalSpec structure to its managed counterpart.
10252
10253         * reflection.c: Fix warnings.
10254         
10255         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
10256         field.
10257
10258         * icall.c (mono_create_icall_signature): Fix build.
10259
10260 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
10261
10262         * icall.c: Add MakePointType icall.
10263
10264         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
10265         warnings.
10266
10267 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10268
10269         * threadpool.c: reuse allocated slots in the queue.
10270
10271 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
10272
10273         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
10274
10275         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
10276
10277         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
10278         previous change.
10279
10280         * tabledefs.h: Add constants for pinvoke attributes BestFit and
10281         ThrowOnUnmappableChar.
10282
10283         * icall.c (ves_icall_Type_GetPacking): New icall.
10284
10285 2004-09-24  Martin Baulig  <martin@ximian.com>
10286
10287         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
10288
10289 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10290
10291         * appdomain.c:
10292         (mono_domain_set): allow setting a domain that is being unloaded.
10293         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
10294         being unloaded.
10295
10296 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10297
10298         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
10299         the GetCustomAttributes icall.
10300
10301 2004-09-23  Martin Baulig  <martin@ximian.com>
10302
10303         * object-internals.h (MonoReflectionGenericParam): Replaced
10304         'has_ctor_constraint', `has_reference_type' and `has_value_type'
10305         with `guint32 attrs'.
10306
10307 2004-09-23  Martin Baulig  <martin@ximian.com>
10308
10309         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
10310
10311 2004-09-23  Martin Baulig  <martin@ximian.com>
10312
10313         * object-internals.h (GenericParameterAttributes): New enum.
10314
10315 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10316
10317         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
10318         
10319         * class.c (init_events): Fill out event->other field.
10320
10321         * class.c: Fix warnings.
10322
10323         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
10324
10325 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
10326
10327         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
10328         walk which doesn't supply the IL offset.
10329
10330 2004-09-22  Martin Baulig  <martin@ximian.com>
10331
10332         * reflection.c (mono_reflection_setup_internal_class): If we're
10333         System.ValueType, System.Object or System.Enum, set
10334         `klass->instance_size' and create the vtable.
10335         (mono_reflection_create_internal_class): If we're an enum type,
10336         get the base class from our current corlib.
10337
10338 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
10339
10340         * reflection.h (MonoResolveTokenError): New type.
10341
10342         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
10343         icall.
10344
10345         * icall.c: Add an 'error' argument to the ResolveToken icalls.
10346
10347 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
10348
10349         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
10350         Support also calling constructors, but only for already allocated objects.
10351
10352 2004-09-17  Geoff Norton <gnorton@customerdna.com>
10353
10354         * reflection.c (type_get_qualified_name): If the klass is null
10355         return the typename to avoid a NullRefEx.
10356         (encode_cattr_value): Get the qualified name of the boxed type,
10357         not the underlying enumtype.  Fixes #62984.
10358
10359 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
10360
10361         * marshal.c: Fix problems with previous checkin.
10362
10363 2004-09-21    <vargaz@freemail.hu>
10364
10365         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
10366         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
10367
10368         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
10369
10370 2004-09-21  Geoff Norton <gnorton@customerdna.com>
10371
10372         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
10373         should only return a type for pointers, arrays, and passbyref types.
10374         Fixes bug #63841.
10375
10376 2004-09-21  Martin Baulig  <martin@ximian.com>
10377
10378         * domain.c (mono_debugger_check_runtime_version): New public
10379         function.
10380
10381         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
10382
10383 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
10384
10385         * reflection.c: Added missing sort to the declarative security 
10386         attributes table. MS implementation stops seeing the attributes if the
10387         token number regress in the table (as shown by ildasm and permview).
10388
10389 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
10390
10391         * object-internals.h (MonoReflectionModule): Add 'token' field.
10392         
10393         * reflection.c (mono_reflection_get_token): Add support for Module
10394         and Assembly.
10395         (mono_module_get_object): Set 'token' field.
10396         (mono_module_file_get_object): Set 'token' field.
10397
10398         * icall.c: Add new Assembly and Module icalls.
10399
10400         * appdomain.c: Bump corlib version.
10401
10402 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
10403
10404         * loader.h loader.c class.h class.c: Add helper functions for obtaining
10405         tokens of metadata objects.
10406
10407         * reflection.h reflection.c (mono_reflection_get_token): New function
10408         to obtain the token of a metadata object.
10409
10410         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
10411
10412 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
10413
10414         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
10415         
10416         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
10417
10418 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
10419
10420         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
10421         * object-internals.h: Added 3 MonoArray* members to MonoReflection
10422         AssemblyBuilder to access the permissions set in the class lib.
10423         * reflection.c: Added security attributes encoding step in 
10424         mono_image_build_metadata.
10425         * tabledefs.h: Added new security actions defined in 2.0:
10426         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
10427
10428 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10429
10430         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
10431         macro parameter.
10432
10433 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10434  
10435         * locales.c: nullify the ICU_collator member of CompareInfo when it is
10436           finalized. There where random SIGSEVs at program termination, when
10437           an object being finalized was trying to do a string comparison and
10438           the current culture was already finalized.
10439  
10440 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10441
10442         * threads.c: call thread_cleanup before finishing the thread if we get
10443         there.
10444
10445 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
10446
10447         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
10448         assemblies from the parent. Fixes #65665.
10449
10450 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
10451
10452         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
10453         modifiers.
10454
10455 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
10456
10457         * reflection.h: add prototype for mono_get_dbnull_object
10458         * reflection.c: add prototypes for get_default_param_value_blobs 
10459         and mono_get_object_from_blob for fussier compilers
10460
10461 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
10462  
10463         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
10464         false deadlock checks in class initialization.
10465  
10466 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
10467
10468         * image.c (mono_image_addref): Fix comment.
10469
10470         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
10471         possible.
10472
10473 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
10474
10475         * reflection.c (mono_param_get_objects): Modified to return
10476         ParameterInfo.DefaultValue object.
10477
10478         (get_default_param_value_blobs):
10479         (mono_get_object_from_blob):
10480         (mono_get_dbnull_object): New helper routines. 
10481
10482         * object.c (mono_get_constant_value_from_blob): New helper routine
10483         carved out from get_default_field_value ()
10484
10485         * object-internals.h (mono_get_constant_value_from_blob): Added
10486         function declaration.
10487
10488 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
10489
10490         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
10491         referenced assemblies. Fixes #62135.
10492
10493         * exception.h exception.c (mono_get_exception_file_not_found2): New
10494         helper function.
10495
10496 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
10497
10498         * class.h class.c: Add mono_type_get_underlying_type ().
10499
10500 2004-09-09  Geoff Norton <gnorton@customerndna.com>
10501
10502         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
10503         Fix GetTypes() to support dynamically created assemblies.
10504
10505 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
10506
10507         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
10508         
10509         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
10510         previous patch.
10511
10512         * reflection.h reflection.c loader.c: Allow dynamic construction of
10513         pinvoke methods. Fixes #65571.
10514         
10515         * reflection.c (mono_reflection_get_type): Revert previous change since
10516         it causes regressions.
10517
10518 2004-09-08  Martin Baulig  <martin@ximian.com>
10519
10520         * class.c (class_compute_field_layout): Don't call
10521         mono_class_layout_fields() for open generic instances.
10522
10523 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
10524         * threads.c appdomain.c: fix typo in GC macro
10525
10526 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10527
10528         * threads.c: don't call mono_thread_detach() in start_wrapper(),
10529         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
10530
10531 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
10532
10533         * image.c (mono_image_close): Applied patch from 
10534         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
10535         assembly is loaded multiple times from data.
10536         
10537         * image.c (mono_image_open): Fix warning.
10538
10539 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10540
10541         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
10542         once. Fixes #58334.
10543         
10544         * reflection.c (mono_reflection_create_runtime_class): Initialize
10545         klass->nested_classes. Fixes #61224.
10546
10547 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
10548
10549         * threads.c: sched_yield() on exit, to allow threads to quit.
10550
10551 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10552
10553         * object.c (mono_unhandled_exception): Remove leftover debug code.
10554
10555 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
10556
10557         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
10558
10559 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10560
10561         * marshal.c (emit_marshal_array): Really null terminate string arrays.
10562         
10563         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
10564
10565 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10566
10567         * marshal.c (emit_marshal_array): Null terminate string arrays.
10568         
10569         * marshal.c (raise_auto_layout_exception): Fix warning.
10570
10571         * reflection.c (mono_param_get_objects): Initialize the default value
10572         with DBNull.Value, not null. Fixes #62123.
10573
10574 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
10575
10576         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
10577         throw an exception with a cute explanation.
10578
10579 2004-09-06  Dick Porter  <dick@ximian.com>
10580
10581         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
10582         Close the new process's thread handle, as we don't use it.  The
10583         handle stays around forever otherwise.
10584
10585 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10586
10587         * object.c (arith_overflow): Fix warning.
10588
10589         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
10590         calling conventions in method refs. Fixes #65352.
10591
10592         * reflection.c: Fix warnings.
10593
10594 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
10595
10596         * icall.c: Add a new icall for Array.Clear
10597
10598 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
10599
10600         * object.c: When allocating an array, we have to throw
10601         an overflow exception if any of the lengths are < 0.
10602
10603 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10604
10605         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
10606         properly. Also move implementation of string array marshalling to 
10607         managed code. Fixes #42316.
10608
10609 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10610
10611         * assembly.c: provide more information when loading an assembly fails.
10612
10613 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10614
10615         * filewatcher.c: don't expect the development fam package to be
10616         installed.
10617
10618 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
10619
10620         * marshal.c: Make a copy of the signature cookie since it will be
10621         freed by the caller.
10622         
10623         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
10624
10625         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
10626
10627         * metadata.c (mono_metadata_free_marshal_spec): New function to free
10628         marshal specs.
10629
10630         * marshal.c: More refactoring.
10631         
10632         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
10633         smaller functions.
10634
10635 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
10636
10637         * object.c: In mono_message_invoke, fill the output parameter array after
10638           calling the managed method (it was done before the call). This fixes
10639           bug #59299.
10640
10641 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
10642
10643         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
10644         as well.
10645
10646 2004-09-02  Martin Baulig  <martin@ximian.com>
10647
10648         * class.c (mono_class_instance_size): Don't allow generic type
10649         definitions or open generic instances.
10650         (mono_class_array_element_size): If we're a value type, call
10651         mono_class_instance_size() on the original class.
10652
10653         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
10654         handle generic instances.
10655
10656         * mono-debug-debugger.c (write_type): Handle generic instances
10657         like classes.
10658
10659 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
10660
10661         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
10662         the allocation request fails. Fixes #65089.
10663
10664         * object.c (mono_runtime_free_method): Do not call mono_free_method.
10665         
10666         * object.c (mono_runtime_free_method): New function to free a dynamic
10667         method.
10668
10669         * marshal.c (mono_delegate_free_ftnptr): New function to free the
10670         delegate trampoline.
10671
10672         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
10673         with hasthis as dynamic,
10674
10675         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
10676
10677         * domain.c (mono_jit_info_table_remove): New function to remove an
10678         entry from the jit info table.
10679
10680         * class-internals.h (MonoMethod): Add 'dynamic' field.
10681
10682         * loader.c: Fix warnings.
10683
10684 2004-09-01  Martin Baulig  <martin@ximian.com>
10685
10686         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
10687         instead of mono_debugger_lock() because the latter one is a no-op
10688         unless running in the debugger.
10689
10690 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
10691
10692         * class.c (class_compute_field_layout): Classes with auto-layout or
10693         reference fields are not blittable.
10694         
10695 2004-09-01  Dick Porter  <dick@ximian.com>
10696
10697         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
10698         mono_image_get_filename() to get the assembly location.
10699
10700         * icall.c:
10701         * metadata.h: Fix compile warnings
10702
10703 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
10704
10705         * class.c (class_compute_field_layout): System.Object is blittable.
10706
10707         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
10708         as in/out. Fixes #59909.
10709
10710 2004-09-01  Martin Baulig  <martin@ximian.com>
10711
10712         * metadata.h (MONO_TYPE_ISREFERENCE): Call
10713         mono_metadata_generic_inst_is_valuetype() if we're a generic
10714         instance to check whether our underlying type is a reference type.
10715
10716 2004-09-01  Martin Baulig  <martin@ximian.com>
10717
10718         * metadata.c (mono_type_size): If we're a generic instance, call
10719         mono_class_value_size() for value types.
10720
10721 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
10722
10723         * marshal.c: Implement more custom marshalling functionality. Fixes
10724         #64915.
10725
10726 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
10727
10728         * mono-debug.c, debug-mono-symfile.c: add some locking love.
10729
10730 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
10731
10732         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
10733
10734         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
10735
10736         * icall.c: Fix some warnings.
10737
10738         * threads.c (abort_appdomain_thread): Fix unref errors.
10739         (mono_thread_current): Fix THREAD_DEBUG define.
10740
10741 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
10742
10743         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
10744
10745         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
10746
10747 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
10748
10749         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
10750         string arrays.
10751
10752 2004-08-28  Martin Baulig  <martin@ximian.com>
10753
10754         * metadata.c
10755         (mono_metadata_generic_inst_is_valuetype): New public function.
10756
10757         * metadata.h (MONO_TYPE_ISSTRUCT): Call
10758         mono_metadata_generic_inst_is_valuetype() if we're a generic
10759         instance to check whether our underlying type is a valuetype.
10760
10761 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
10762
10763         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
10764         #63768.
10765
10766 2004-08-25  Martin Baulig  <martin@ximian.com>
10767
10768         * loader.c (mono_get_method_from_token): Abstract methods can also
10769         be generic and thus have type parameters.
10770
10771         * metadata-internals.h
10772         (MonoDynamicImage): Added `GPtrArray *gen_params'.
10773
10774         * reflection.c (mono_image_get_generic_param_info): Don't create a
10775         metadata row, just add an entry to the `gen_params' array.
10776         (build_compressed_metadata): Sort the `gen_params' array and then
10777         actually create the metadata.
10778
10779 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10780
10781         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
10782
10783 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
10784
10785         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
10786
10787 2004-08-24  Martin Baulig  <martin@ximian.com>
10788
10789         * class.cs (mono_class_is_subclass_of): Like an interface, a
10790         generic instance also derives from System.Object.
10791
10792 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
10793
10794         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
10795         custom modifiers to be in any order. Fixes #61990.
10796
10797 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
10798
10799         * object.c: Register mono_object_new_fast icall.
10800         
10801         * object.c (mono_class_get_allocation_ftn): Return to calling
10802         mono_object_new_fast, since it seems faster to compute the object 
10803         size in unmanaged code than passing it as a parameter.
10804
10805         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
10806
10807         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
10808         this function with Boehm as the oom handler, so we don't have to check
10809         the result of GC_malloc.
10810
10811         * object.c: Remove checks for oom.
10812
10813         * object.h object.c (mono_class_get_allocation_ftn): New function to
10814         return the icall which can be used to allocate an instance of a given
10815         class. 
10816
10817         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
10818
10819         * class-internals.h: Add 'enabled' field.
10820
10821 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
10822
10823         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
10824
10825 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
10826         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
10827         value 0x0010.
10828
10829 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
10830
10831         * appdomain.c: use the Tls function for appdomain too,
10832         at Zoltan's request. Actually return in mono_context_get
10833
10834         * appdomain.c, profiler.c, threads.c: use __thread
10835
10836 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
10837
10838         * appdomain.c threads.c: Call GC_CreateThread on windows.
10839
10840         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
10841         multiple libraries since this don't work on windows.
10842
10843 2004-08-18  Martin Baulig  <martin@ximian.com>
10844
10845         * class-internals.h
10846         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
10847         MonoMethodHeader.
10848
10849         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
10850         MonoMethodNormal since we also need it for abstract and interface
10851         methods.
10852
10853         * reflection.c
10854         (build_compressed_metadata): Sort the GenericParam table.
10855         (mono_image_create_token): Added `gboolean create_methodspec'
10856         argument; this is false when generating a MethodImpl token.
10857         (reflection_methodbuilder_to_mono_method): Abstract and interface
10858         methods may also have generic parameters.
10859
10860 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
10861
10862         * appdomain.c: thread local alloc
10863
10864 2004-08-17  Martin Baulig  <martin@ximian.com>
10865
10866         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
10867
10868         * icall.c
10869         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
10870         argument.
10871
10872         * class.c (mono_type_get_full_name): New public function.
10873         (mono_type_get_name): Don't include the type arguments.
10874
10875 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
10876
10877         * Makefile.am: Build static versions of libmetadata and libmonoruntime
10878         for inclusion into the mono executable.
10879
10880 2004-08-16  Martin Baulig  <martin@ximian.com>
10881
10882         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
10883         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
10884
10885 2004-08-14  Martin Baulig  <martin@ximian.com>
10886
10887         * class.c (dup_type): Also copy the `byref' field.
10888
10889 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
10890
10891         * reflection.c (create_dynamic_mono_image): Revert the last change 
10892         since it breaks bootstrap.
10893
10894 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
10895
10896         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
10897
10898         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
10899         not free them with g_free.
10900
10901 2004-08-11  Martin Baulig  <martin@ximian.com>
10902
10903         * reflection.c (mono_reflection_setup_internal_class): Also call
10904         mono_class_setup_mono_type() if we already have a `tb->type.type'.
10905
10906 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
10907
10908         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
10909         called during default (first) AppDomain creation. Keep track of
10910         Evidence when loading assemblies.
10911
10912 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10913
10914         * opcodes.c, opcodes.h: reduce runtime relocations.
10915
10916 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
10917
10918         * culture-info.h, locales.c: fixes and chages to sue the new
10919         optimized format of the locale data.
10920         * culture-info-tables.h: regenerated.
10921
10922 2004-08-06  Geoff Norton <gnorton@customerdna.com>
10923         
10924         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
10925
10926 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
10927
10928         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
10929         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
10930         * domain-internals.h: icall declaration.
10931         * icall.c: icall registration.
10932         * object-internals.h: New fields in MonoAssembly for CAS.
10933
10934 2004-08-05  Duncan Mak  <duncan@ximian.com>
10935
10936         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
10937         CEE_LDELEM_ANY.
10938
10939 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10940
10941         * reflection.c: fix to deal with object[] arrays in custom ctors
10942         (bug #62550).
10943
10944 2004-08-05  Martin Baulig  <martin@ximian.com>
10945
10946         * class.c (mono_class_array_element_size): Added support for
10947         generic instances and correctly handle "recursive" types.
10948
10949 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
10950
10951         * assembly.c: Fix warnings.
10952
10953 2004-08-04  Martin Baulig  <martin@ximian.com>
10954
10955         * class.c
10956         (mono_type_get_name_recurse): Added `gboolean include_arity'
10957         argument specifying whether or not we should include the generic
10958         arity in the type name.
10959         (_mono_type_get_name): New static function.
10960         (mono_class_setup_vtable): If we're a generic instance, don't
10961         include the generic arity in the names of explicit method
10962         implementations.        
10963
10964 2004-08-03  Martin Baulig  <martin@ximian.com>
10965
10966         * class.c (mono_type_get_name_recurse): Enclose the generic type
10967         arguments in `<', '>'.
10968
10969 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10970
10971         * gc.c: make GC warning messages use the trace API, they are just
10972         noise to most of the users.
10973
10974 2004-08-03  Martin Baulig  <martin@ximian.com>
10975
10976         * debug-mono-symfile.c (read_string): Correctly read the string.
10977
10978 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
10979
10980         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
10981         
10982         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
10983         icalls.
10984         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
10985
10986 2004-07-30  Martin Baulig  <martin@ximian.com>
10987
10988         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
10989         Reflect latest symbol writer changes.   
10990
10991 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10992
10993         * object.c: always create an object if null is passed
10994         to Invoke() where a valuetype is expected.
10995
10996 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
10997
10998         * marshal.c (mono_marshal_init): make managed
10999         signatures match native ones better for 64bits.
11000
11001 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11002
11003         * appdomain.c: hack to build correctly the private bin path on windows.
11004         Fixes bug #61991.
11005
11006 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
11007
11008         * assembly.c: Load mscorlib from the correct framework directory
11009           (mono/<version>/mscorlib.dll).
11010         * appdomain.h: Added prototypes for new functions.
11011         * internals.h: Added some prototypes.
11012         * domain.c: When initializing the runtime, get from the executable and
11013           the configuration files the runtime version that the app supports.
11014           Added support methods for reading app.exe.config. Added list of versions
11015           supported by the JIT. Added two new methods: mono_init_from_assembly,
11016           which initializes the runtime and determines the required version from
11017           the provided exe file, and mono_init_version, which initializes
11018           the runtime using the provided version.
11019         * icall.c: Get machine.config from version-specific directory.
11020         * reflection.c: When generating an image, embed the version number
11021           of the current runtime.
11022
11023 2004-07-28  Dick Porter  <dick@ximian.com>
11024
11025         * socket-io.c
11026         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
11027         returned sockaddr size before creating the remote address object.
11028         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
11029         61608.
11030
11031 2004-07-28  Dick Porter  <dick@ximian.com>
11032
11033         * locales.c (string_invariant_compare_char): Fix invariant char
11034         compares between upper and lower cases.  Fixes bug 61458.
11035
11036 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
11037         
11038         * marshal.c: actually cache stelem.ref wrappers.
11039         
11040 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
11041
11042         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
11043         sections and remove the mono_cli_rva_map () function.
11044
11045 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11046
11047         * debug-mono-symfile.c: fix one more endianess issue, from a patch
11048         by Geoff Norton (<gnorton@customerdna.com>).
11049
11050 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11051
11052         * class.c: fix class loads for pointer types (typeof(int) !=
11053         typeof(int*)).
11054
11055 2004-07-27  Martin Baulig  <martin@ximian.com>
11056
11057         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
11058         reading the debugging information from an external ".mdb" file.
11059
11060 2004-07-24  Martin Baulig  <martin@ximian.com>
11061
11062         * reflection.c (mono_image_get_type_info): Only write a class
11063         layout entry if we actually have a size or a packing size.
11064
11065 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11066
11067         * reflection.c (type_get_fully_qualified_name): 
11068         insert cast to get type checking of ?: with non-gcc compilers
11069
11070 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11071
11072         * rand.c: use g_getenv for both lookups of
11073         MONO_EGD_SOCKET
11074
11075 2004-07-17  Martin Baulig  <martin@ximian.com>
11076
11077         * reflection.c (mono_reflection_bind_generic_method_parameters):
11078         Set `gmethod->reflection_info'.
11079
11080 2004-07-17  Martin Baulig  <martin@ximian.com>
11081
11082         * class.c (mono_class_create_from_typedef): Insert the newly
11083         created class into the hash table before computing the interfaces
11084         since we could be called recursively.
11085
11086 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
11087
11088         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
11089         function to implement stelem.ref in managed code
11090         * class-internals.h, debug-helpers.c: a new wrapper type
11091         for the above.
11092
11093 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11094
11095         * gc.c: allow GC handles to work even when no GC is compiled in.
11096         Fix part of bug #61134 (GetAddrOfPinnedObject).
11097
11098 2004-07-13  Peter Williams  <peter@newton.cx>
11099  
11100         * process.c (complete_path): Make sure we don't attempt to execute
11101         directories.
11102  
11103 2004-07-12  Geoff Norton <gnorton@customerdna.com>
11104
11105         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
11106           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
11107           and will add/subtract the hour if needed
11108
11109 2004-07-12  Martin Baulig  <martin@ximian.com>
11110
11111         * reflection.c (mono_field_get_object): If we have
11112         `field->generic_info', take the attributes from
11113         `field->generic_info->generic_type'.    
11114
11115 2004-07-12  Martin Baulig  <martin@ximian.com>
11116
11117         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
11118         This function must be called before initializing the runtime.
11119         (mono_debug_init_1): New function; call this after initializing
11120         the runtime, but before loading the assembly.  It tells the
11121         debugger to load corlib and the builtin types.
11122
11123         * mono-debug-debugger.c: Did some larger changes in the debugging
11124         code; support recursive class declarations, make sure we actually
11125         add all classes.
11126
11127 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11128
11129         * debug-helpers.c: undo my previous patch and fixed the real issue in
11130         ../mini/exceptions-x86.c
11131
11132 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11133
11134         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
11135         when no HOME env. variable was set and a NullRef was thrown in a .cctor
11136         called from other .cctors.
11137
11138 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
11139
11140         * loader.c: Removed the mono_loader_wine_init hack now that we are
11141         doing a managed version of Windows.Forms.
11142
11143 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
11144
11145         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
11146         threadpool.c, threads.c: remove static data from rootset.
11147
11148 2004-07-09  Dick Porter  <dick@ximian.com>
11149
11150         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
11151         Don't do any more processing if the matched length was 0.  It was
11152         increasing the size of the string before.  Fixes bug 61167.
11153
11154 2004-07-09  Dick Porter  <dick@ximian.com>
11155
11156         * socket-io.h:
11157         * socket-io.c
11158         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11159         Add support for SO_PEERCRED if its available.
11160
11161 2004-07-09  Peter Bartok <pbartok@novell.com>
11162         * loader.c: winelib.exe.so error message is now only displayed if
11163         MONO_DEBUG is set. To help us avoid questions when people are trying
11164         out the new Managed.Windows.Forms.
11165
11166 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
11167
11168         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
11169         for isinst and castclass wrappers.
11170
11171         * class-internals.h icall.c: Move registration and lookup of JIT icalls
11172         to libmetadata from the JIT, so they could be used by the marshalling
11173         code and the interpreter.
11174
11175         * marshal.c: Register marshalling related JIT icalls here instead of
11176         in mini.c. Use CEE_MONO_ICALL instead of the family of 
11177         CEE_MONO_PROC<x> opcodes to call marshalling functions.
11178
11179         * metadata.h: Remove unneeded marshalling conversions.
11180
11181         * opcodes.c: Update for new opcodes.
11182         
11183 2004-07-08  Martin Baulig  <martin@ximian.com>
11184
11185         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
11186         (mono_debug_get_domain_data): Make this function static.
11187
11188 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11189
11190         * gc.c, object.h: add nice GC handle API for embedders.
11191
11192 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
11193
11194         * reflection.c: more changes for the new api
11195
11196         * object.c: When we reflect on a field w/ a constant value, it
11197         will not have a memory location, so we must access metadata. Also,
11198         allow easier reading of strings so that we can read them from
11199         the constant data.
11200
11201         * class.c (mono_class_layout_fields): no need for literal fields here.
11202
11203         * class-internals.h: api changes for const fields
11204
11205         * icall.c (ves_icall_get_enum_info): use new apis for const fields
11206
11207 2004-07-06  Martin Baulig  <martin@ximian.com>
11208
11209         * mono-debug.h: Increment version number to 44.
11210
11211         * mono-debug.c (mono_debug_add_wrapper): The second argument is
11212         now a gpointer, rewrote this whole method.
11213
11214         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
11215         function.  Add information about the wrapper in a new "misc table".
11216
11217         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
11218         for the new misc table.
11219
11220 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
11221
11222         * metadata-internals.h image.c: Add a cache for helper signatures.
11223
11224         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
11225
11226 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
11227
11228         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
11229         delegates from a delegate. Fixes #61033.
11230         
11231         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
11232         marshalling of stringbuilder arrays. Fixes #59900.
11233
11234 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
11235
11236         * icall.c: Add EnumBuilder:setup_enum_type icall.
11237
11238 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
11239
11240         * icall.c: Added a new icall for the property version of
11241         OffsetOfStringData.
11242
11243 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
11244
11245         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
11246         it has a constant size across platforms.
11247
11248         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
11249         stack trace.
11250
11251 2004-06-29  Martin Baulig  <martin@ximian.com>
11252
11253         * mono-debug.c (mono_debug_add_method): Protect the whole function
11254         in mono_debugger_lock(), not just parts of it.
11255
11256 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11257
11258         * reflection.c: make sure padding bytes in heaps are zeroed.
11259
11260 2004-06-24  David Waite  <mass@akuma.org>
11261
11262         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
11263         image.c, loader.c, locales.c, marshal.c, metadata.c,
11264         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
11265         string-icalls.c, threads.c: change to C90-style comments from C99 /
11266         C++ -style
11267
11268 2004-06-24  Dick Porter  <dick@ximian.com>
11269
11270         * threads.c
11271         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
11272         return createdNew.  Fixes bug 60412.
11273
11274         * threads-types.h: 
11275         * icall.c: Add createdNew parameter to CreateMutex icall
11276
11277 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11278
11279         * reflection.c, object-internals.h: save default value in params.
11280
11281 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11282
11283         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
11284         no need to build a new path combining that with the application base.
11285         Fixes bug #60442.
11286
11287 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
11288
11289         * reflection.c: fixed minor standard compliance issues.
11290
11291 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11292
11293         * reflection.c: fixed issue with encoding some custom attributes
11294         (arrays in properties and fields, bug #60411).
11295
11296 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11297
11298         * reflection.c: fix start address when copying the public key token.
11299
11300 2004-06-23  Martin Baulig  <martin@ximian.com>
11301
11302         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
11303         the `exc' object in a static object to put it into the GC's root set.
11304
11305 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
11306
11307         * reflection.c: make mono_reflection_setup_internal_class ()
11308         callable a second time to setup a new parent class.
11309
11310 2004-06-23  Dick Porter  <dick@ximian.com>
11311
11312         * threads.c: Check for WAIT_IO_COMPLETION return values.
11313
11314 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
11315
11316         * appdomain.c: Removed the g_free on the public key token. Now copy 
11317         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
11318         * assembly.c: Added public key token string value when loading 
11319         assemblies. Fix bug #60439.
11320         * icall.c: Added missing informations (like public key) in 
11321         GetReferencedAssemblies. Fix #60519.
11322         * image.h: Changed definition for public key token from const char*
11323         public_tok_value to guchar public_key_token [17];
11324         * reflection.c: Updated for changes to public key token.
11325
11326 2004-06-22  Lluis Sanchez Gual
11327
11328         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
11329         for the field in base classes.
11330
11331 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11332
11333         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
11334         mark headers as not supported, they are installed only for use by the
11335         debugger.
11336
11337 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
11338
11339         * *.c, *.h: avoid namespace pollution in public headers.
11340
11341 2004-06-21  Martin Baulig  <martin@ximian.com>
11342
11343         * exception.c (mono_get_exception_security): It's in
11344         "System.Security", not in "System".
11345
11346         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
11347         the exception classes.
11348
11349 2004-06-21  Martin Baulig  <martin@ximian.com>
11350
11351         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
11352         Protect the exception object from being finalized.
11353
11354 2004-06-21  Martin Baulig  <martin@ximian.com>
11355
11356         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
11357         public function.
11358
11359 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
11360
11361         * reflection.c: Load the assembly in mono_reflection_type_from_name,
11362         if it was not loaded before. Fix parts of #60439.
11363
11364 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
11365
11366         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
11367         code that was broken since Ben's change: wrappers are now
11368         dependent on the method signature only again.
11369
11370 2004-06-21  Martin Baulig  <martin@ximian.com>
11371
11372         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
11373         added interface support.
11374
11375 2004-06-21  Martin Baulig  <martin@ximian.com>
11376
11377         * class.c (mono_vtable_get_static_field_data): New public method.
11378
11379 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
11380
11381         * filewatcher.c : Windows build fix to be compliant with API changes.
11382
11383 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11384
11385         * class.h, class.c: more accessors.
11386         * metadata.h, metadata.c: prepare for hiding MonoType and
11387         MonoMethodSignature: people should use the accessors from now on
11388         outside of the tree.
11389
11390 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11391
11392         * *.c, *.h: more API cleanups.
11393
11394 2004-06-18  Jackson Harper  <jackson@ximian.com>
11395
11396         * assembly.c: Trace loading assemblies.
11397         * loader.c: Trace loading native libraries.
11398         * mono-config.c: Trace loading config files.
11399         
11400 2004-06-18  Dick Porter  <dick@ximian.com>
11401
11402         * locales.c: Tell ICU the lengths of strings, it can cope with
11403         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
11404
11405 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
11406
11407         * image.c: swapped name/filename;
11408
11409 2004-06-18  Martin Baulig  <martin@ximian.com>
11410
11411         * mono-debug-debugger.c (write_class): Write the parent class at
11412         the end of the header.
11413
11414 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11415
11416         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
11417
11418 2004-06-17  Raja R Harinath  <rharinath@novell.com>
11419
11420         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
11421         (bundle_obj): New conditional define.
11422         (BUILT_SOURCES): Remove.
11423         ($(bundle_srcs)): Make parallel-make safe.
11424         (libmonoruntime_la_LIBADD): Make unconditional.
11425         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
11426         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
11427
11428 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
11429
11430         * culture-info-tables.h: It was inconsistent with the latest
11431           supp info files.
11432
11433 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
11434
11435         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
11436         be loaded.
11437
11438         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
11439         with gcc 2.95.
11440
11441 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11442
11443         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
11444         cleaned up public header threads.h.
11445
11446 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11447
11448         * Makefile.am, *.c, *.h: more API cleanups.
11449
11450 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
11451
11452         * Makefile.am: removed monosn from compilation.
11453         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
11454         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
11455         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
11456         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
11457         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
11458         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
11459
11460 2004-06-15  Jackson Harper  <jackson@ximian.com>
11461
11462         * assembly.c: Make locales lower case when searching the GAC for
11463         assemblies. gacutil will always make locales lowercase when
11464         installing so this effectively makes them case insensitive.
11465         
11466 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
11467
11468         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
11469         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
11470           parameter which allows to choose whether the wait can be interrupted or 
11471           not. Also added the method mono_monitor_enter(), which locks the monitor
11472           using an infinite wait and without allowing interruption.
11473           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
11474           interrupted.
11475         * object.h: Added new fields in MonoThread. suspend_event holds the event
11476           used to susped/resume the thread. synch_lock is the lock object to use for
11477           modifying the thread state.
11478         * threads.c: Use the new synch_lock object for locking, instead of "this",
11479           which can generate deadlocks.
11480           Moved thread state change in Thread.Sleep and Thread.Join from managed
11481           to unmanaged code. This avoids a deadlock when the thread was suspended
11482           just after acquiring the thread lock.
11483           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
11484           Implemented Thread.Suspend using an event instead of ThreadSuspend,
11485           which is not fully implemented in the io-layer.
11486         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
11487
11488 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
11489
11490         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
11491         threads-types.h: more API cleanups.
11492
11493 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11494
11495         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
11496         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
11497         threadpool.c, threads.c: first pass at the exported API cleanup.
11498
11499 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
11500
11501         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
11502
11503 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11504
11505         * icall.c: added internalGetHome.
11506
11507 2004-06-14  Dick Porter  <dick@ximian.com>
11508
11509         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
11510         possible to return successfully when '.' or '..' were the only
11511         entries in a directory, but were skipped.  The MonoIOStat was not
11512         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
11513         Fixes bug 59574.
11514
11515 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
11516
11517         * reflection.c: make binaries run on .Net 1.1 by default.
11518
11519 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
11520
11521         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
11522
11523 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
11524
11525         * marshal.c: keep track of struct size with explicit layout
11526         (bug #59979).
11527
11528 2004-06-12  Martin Baulig  <martin@ximian.com>
11529
11530         * mono-debug-debugger.c: Comment out a debugging g_message().
11531
11532 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11533
11534         * reflection.c, reflection.h: do not free custom attrs that are cached.
11535         * icall.c: use braces to make code clearer.
11536
11537 2004-06-11  Martin Baulig  <martin@ximian.com>
11538
11539         * class.h (MonoInflatedField): New type.
11540         (MonoClassField): Replaced `MonoType *generic_type' with
11541         `MonoInflatedField *generic_info'.
11542
11543         * icall.c
11544         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
11545
11546 2004-06-11  Martin Baulig  <martin@ximian.com>
11547
11548         * reflection.c (mono_image_create_method_token): Correctly encode
11549         varargs methods.
11550
11551 2004-06-11  Martin Baulig  <martin@ximian.com>
11552
11553         * metadata.c (mono_metadata_parse_method_signature): When parsing
11554         a MethodDef which has VarArgs, also set sentinelpos if we don't
11555         have any parameters.
11556
11557 2004-06-11  Martin Baulig  <martin@ximian.com>
11558
11559         * verify.c (mono_method_verify): In CEE_CALL, use
11560         mono_method_get_signature() to get the method's signature, unless
11561         we're a PInvoke method.
11562
11563 2004-06-10  Jackson Harper  <jackson@ximian.com>
11564
11565         * assembly.c: Use <path>/lib/mono/gac for the extra paths
11566         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
11567         logical name as the supplied path is just a prefix to the gac not
11568         the direct path to it.
11569         
11570 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
11571
11572         * reflection.c: make the token for a created method match
11573         the token of the MethodBuilder it was created from
11574         (IKVM requires this behaviour now).
11575
11576 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
11577
11578         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
11579         reflection.c, socket-io.c: leak fixes.
11580
11581 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
11582
11583         * icall.c: handle sentinel pos in vararg methods in position different
11584         from 0.
11585
11586 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11587
11588         * culture-info-tables.h: freshly generated.
11589
11590 2004-06-09  Martin Baulig  <martin@ximian.com>
11591
11592         * loader.c (mono_get_method_constrained): Call `mono_class_init
11593         (constrained_class)'.   
11594
11595 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
11596
11597         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
11598         any methods. Fixes #59629.
11599
11600 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11601
11602         * culture-info-tables.h: reflecting locale-builder updates.
11603
11604 2004-06-08  Dick Porter  <dick@ximian.com>
11605
11606         * object.h:
11607         * locales.c: Fixed compile warnings, including a real bug in
11608         CompareInfo_internal_compare.
11609         
11610 2004-06-08  Dick Porter  <dick@ximian.com>
11611
11612         * locales.c
11613         (ves_icall_System_Globalization_CompareInfo_internal_index):
11614         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
11615         Double-check the resuls of usearches, because ICU currently
11616         ignores most of the collator settings here.  Fixes bug 59720.
11617         
11618 2004-06-08  Dick Porter  <dick@ximian.com>
11619
11620         * locales.c
11621         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
11622         Fix memory leak and segfault-causing typo.  No idea how this one
11623         lasted so long without being noticed.
11624
11625 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
11626
11627         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
11628         any methods. Fixes #59629.
11629
11630 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11631
11632         * assembly.c:
11633         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
11634         own the critical section before). Removed dead code (that's done
11635         in the preload hook).
11636
11637         (mono_assembly_load_with_partial_name): call the preload hook.
11638
11639 2004-06-08  Martin Baulig  <martin@ximian.com>
11640
11641         * metadata.c (mono_metadata_signature_alloc): Default
11642         `sentinelpos' to -1.
11643
11644         * reflection.c (mono_image_get_array_token): Likewise.
11645
11646 2004-06-08  Martin Baulig  <martin@ximian.com>
11647
11648         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
11649
11650         * metadata.c (mono_metadata_parse_method_signature): When parsing
11651         a MethodDef which has VarArgs, set sentinelpos.
11652
11653         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
11654         `gint16' since we're using -1 for non-varargs methods.
11655
11656         * reflection.c
11657         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
11658         (method_encode_signature): Added varargs support.
11659         (method_builder_encode_signature): Likewise.
11660         (mono_image_get_varargs_method_token): New static method.
11661         (mono_image_create_method_token): New public method; this is
11662         called via an icall instead of mono_image_create_token() when
11663         calling a varargs method.       
11664
11665 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
11666
11667         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
11668
11669 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11670
11671         * culture-info-tables.h : Reflecting the latest locale-builder that
11672           fixed empty array representation ({} to {0}).
11673
11674 2004-06-07  Jackson Harper  <jackson@ximian.com>
11675
11676         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
11677         looking up extra gac paths. This allows MONO_GAC_PATH to act
11678         exactly like a prefix.
11679         
11680 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
11681
11682         * reflection.c (mono_reflection_type_from_name): Make a copy of the
11683         type name before modifying it. Fixes #59405.
11684
11685 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11686
11687         * culture-info.h: added fields for "all datetime patterns".
11688         * locales.c: (  ves_icall_System_Globalization_CultureInfo
11689           _construct_datetime_format ()): fill xxx_patterns fields.
11690         * object.h: added fields for "all datetime patterns" to
11691           MonoDateTimeFormatInfo.
11692         * culture-info-tables.h: reflecting locale-builder updates.
11693
11694 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
11695
11696         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
11697         the event has no add and remove methods. Fixes #59629.
11698
11699 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
11700
11701         * object.c: Fixed possible integer overflow when allocating large
11702         strings.
11703
11704 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
11705
11706         * culture-info-tables.h: reflecting locale-builder updates.
11707
11708 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
11709
11710         * culture-info-tables.h: reflecting locale-builder updates.
11711
11712 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
11713
11714         * culture-info-tables.h: reflecting locale-builder updates.
11715
11716 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
11717
11718         * threads.c: Made Thread.Sleep abortable.
11719
11720 2004-06-02  Martin Baulig  <martin@ximian.com>
11721
11722         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
11723
11724         * debug-mono-symfile.h: Bumped symbol file version number to 37.
11725
11726 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
11727
11728         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
11729
11730 2004-05-30  Jackson Harper  <jackson@ximian.com>
11731
11732         * reflection.c: Do not hardcode assembly versions or public key
11733         tokens anymore. All of this except the corlib section was dead
11734         code anyways.
11735         
11736 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
11737
11738         * object.c (mono_runtime_invoke_array): Automatically create boxed
11739         objects for byref valuetypes if needed. Fixes #59300.
11740         
11741         * object.c (mono_method_return_message_restore): Handle 
11742         MONO_TYPE_OBJECT as well.
11743
11744 2004-05-28  Jackson Harper  <jackson@ximian.com>
11745
11746         * reflection.c: The modified type encoding was causing build
11747         problems. Reverted for now.
11748         
11749 2004-05-28  Jackson Harper  <jackson@ximian.com>
11750
11751         * reflection.c/h: Take an assembly ref so that we dont create
11752         fully qualified names when encoding types in the same assembly as
11753         the custom attribute being emitted.
11754         * appdomain.c: Increment version number.
11755         
11756 2004-05-26  Duncan Mak  <duncan@ximian.com>
11757
11758         * icall.c
11759         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
11760         Set the full version number (major, minor, build, revision).
11761
11762 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
11763
11764         * marshal.c (emit_struct_conv): increment src/dst after blit
11765         (mono_marshal_get_managed_wrapper,
11766         mono_marshal_get_native_wrapper): make sure we have marshalling
11767         info before marshalling params (info computation affects
11768         blittable)
11769
11770         * class.c (class_compute_field_layout): correctly deal with
11771         blittable
11772         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
11773         value types (as per what windows dows by default)
11774         (mono_class_setup_mono_type): System.ValueType is blittable
11775         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
11776         blittable
11777
11778         * marshal.c (mono_marshal_load_type_info): flag types  as
11779         non-blittable if the native layout doesn't match the managed
11780         layout
11781
11782 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11783
11784         * appdomain.c: don't add stuff in the private search path that is
11785         above the application base. If application base is not set, there's
11786         no private search path.
11787
11788 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
11789
11790         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
11791         byref struct arguments in native->managed marshalling.
11792
11793 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
11794
11795         * marshal.c (mono_marshal_get_runtime_invoke): correctly
11796         cache methods using signature (special case for methods
11797         that are value type or string class)
11798         
11799         * image.c (mono_image_close): clean up allocated GSList's
11800         in runtime_invoke_cache.
11801
11802 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11803
11804         * mono-config.c: set the correct path for mono_cfg_dir on windows when
11805         there's no MONO_CFG_DIR environment variable defined.
11806
11807 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11808
11809         * threads.c: windows version must be >= 0x0500 to include OpenThread.
11810
11811 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
11812
11813         * threadpool.c: Really wait for 500ms after the async call, even if the wait
11814           is interrumped.
11815         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
11816           before waiting for it, and call CloseHandle after the wait to unref it.
11817           This will make sure that handles are not disposed too early.
11818
11819 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11820
11821         * appdomain.c:
11822         * appdomain.h:
11823         * icall.c: removed
11824         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
11825         needed now.
11826
11827         * object.c: se the application_base only for the domain that runs
11828         Main. Fixes bug #59216,
11829
11830 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11831
11832         * appdomain.c:
11833         * object.c: only the domain in which Main is run have
11834         SetupInformation.ConfigurationFile set, so moved a few lines from
11835         appdomain.c to object.c.
11836
11837 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11838
11839         * appdomain.c: we tried to load [name].(dll|exe), but according
11840         to bug #57710, we must also try [culture]/[name].(dll|exe) and
11841         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
11842         There's a test case attached to bug #58922.
11843
11844 2004-05-27  Dick Porter  <dick@ximian.com>
11845
11846         * icall.c:
11847         * file-io.c: Implemented icalls for locking and unlocking regions
11848         in a file.
11849         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
11850         FALSE on error (fixes both compiler warning and real bug.)
11851
11852 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
11853
11854         * culture-info-tables.h: reflecting locale-builder updates.
11855
11856           (Added missing ChangeLog entry for 05/26)
11857
11858 2004-05-27  Jackson Harper  <jackson@ximian.com>
11859
11860         * locales.c: Fix some cut and paste errors.
11861         
11862 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11863
11864         * mono-config.c: set the correct path for config. directory on windows.
11865
11866 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11867
11868         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
11869           on win32.
11870
11871 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11872
11873         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
11874         from pinvoke functions.
11875         
11876         * marshal.c (mono_ftnptr_to_delegate): Implement this.
11877
11878 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11879
11880         * culture-info-tables.h: reflecting locale-builder updates.
11881
11882 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11883
11884         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
11885         #59086.
11886
11887 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
11888
11889         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
11890         * icall.c: Modified icalls for RNG.
11891         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
11892         Windows (CryptoAPI).
11893
11894 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11895
11896         * locales.c: Fix build.
11897
11898 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
11899
11900         * culture-info-tables.h: reflecting locale-builder updates.
11901
11902 2004-05-25  Jackson Harper  <jackson@ximian.com>
11903
11904         * locales.c: When creating the current culture use the $LANGs
11905         specific culture. So DateTimeFormat and NumberFormat entries are created.
11906         
11907 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11908
11909         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
11910         a char array as parameter.
11911
11912 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
11913
11914         * image.c: In mono_image_open(), always use an absolute path name to
11915           look for already loaded images.
11916
11917 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
11918
11919         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
11920         missing in the windows build (like older cygwin include files).
11921
11922 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
11923
11924         * icall.c: Fixed check for possible integer overflow in Buffer_
11925         BlockCopy icall. Replaced comments style // by /* */.
11926
11927 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
11928
11929         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
11930         
11931         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
11932         check after MONO_VTADDR. Fixes pinvoke2.exe.
11933
11934         * marshal.h marshal.c metadata.h: Add beginnings of support for
11935         ftnptr -> delegate marshalling.
11936
11937 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
11938
11939         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
11940         * threads.c: Fix warnings.
11941
11942 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
11943
11944         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
11945         * icall.c: Registered icalls for Suspend and Resume.
11946         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
11947           Thread.Abort.
11948         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
11949         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
11950         * process.c: Use WaitForSingleObjectEx.
11951         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
11952           checkpoints.
11953         * threads.c, threads.h: Make use of new Ex wait methods. Improved
11954           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
11955           for Suspend and Resume. Added new mono_thread_stop, used for stoping
11956           background threads. Added basic support for Abort in Windows.
11957           Start new threads using a managed delegate invoke wrapper. This wrapper
11958           has an interruption checkpoint that is needed since an interruption
11959           can be requested before the thread leaves the unmanaged code that starts 
11960           the thread.
11961         * marshal.c: Added interruption checkpoint after every native call, and
11962           also before managed calls for wrappers called from unmanaged code to
11963           go into managed code.
11964         * object.h: Added new field in MonoThread to keep track of interruption
11965           requests.
11966
11967 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
11968
11969         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
11970         calls.
11971
11972 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11973
11974         * appdomain.c:
11975         * assembly.c:
11976         * gc.c:
11977         * locales.c:
11978         * mono-config.c:
11979         * rand.c: getenv -> g_getenv (windows!)
11980
11981         * process.c: complete_path is also used on non-windows platforms.
11982
11983 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11984
11985         * icall.c: new signature for Process_Start.
11986
11987         * process.[ch]: new signature for Process_Start. If we're on windows
11988         and UseShellExecute is false, we have to search for the program by
11989         ourselves if we don't get a full path.
11990
11991 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
11992
11993         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
11994         marshalling and call CleanUpNativeData if needed. Fixes #58646.
11995
11996 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11997
11998         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
11999         Fixes bug #58373.
12000
12001 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12002
12003         * process.c: use double quotes to quote program name and arguments on
12004         windows. Fixes bug #58575.
12005
12006 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12007
12008         * file-io.c: don't return "." and ".." when using windows Find*File.
12009
12010 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
12011
12012         * marshal.c: Don't pass wrappers to message init because method 
12013         addressed used to lookup metadata. part of remoting[2|3] fix.
12014
12015 2004-05-15  Jackson Harper  <jackson@ximian.com>
12016
12017         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
12018         path is essentially the same as MONO_PATH except that it points to
12019         GACs instead of lib directories.
12020         * loader.h: The user gac is gone so we dont need function to
12021         enable/disable it.
12022         * mono-config.c: user gac option is now gone.
12023         
12024 2004-05-15  Jackson Harper  <jackson@ximian.com>
12025
12026         * culture-info.h: Make defines more consistent, add calendar data
12027         to the culture info table.
12028         * culture-info-tables.h: Add basic calendar data. Basically
12029         everyone gets default gregorian until all the data is
12030         updated.
12031         * locales.c: Use the new consistent defines. Set calendar data for
12032         culture info objects.
12033         * object.h: add a field for calendar data to CultureInfo
12034         
12035 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
12036
12037         * image.c: image->runtime_invoke_cache is keyed on signatures now.
12038         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
12039         a signature.
12040         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
12041         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
12042         an extra param that is the pointer of the method to invoke. The IL for
12043         the invoke method is no longer specific to the method, but to the
12044         signature of the method. Thus, we can share the same code for multiple
12045         methods. This reduces the number of methods that have to be compiled.
12046
12047 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
12048
12049         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
12050
12051         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12052
12053         * icall.c: Optimize Buffer.BlockCopy.
12054
12055 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12056
12057         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
12058         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
12059         quote). Changed them to "MMMM yyyy".
12060
12061 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
12062
12063         * rand.c
12064         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
12065
12066 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
12067
12068         * reflection.h: Updated after changes to managed structures.
12069
12070         * appdomain.c: Bump corlib version.
12071
12072 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12073
12074         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
12075         windows.
12076
12077 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12078
12079         * Makefile.am: link to ../os/libmonoos.la on windows.
12080
12081         * assembly.c:
12082                 -If MONO_DEBUG, warn about non-existing directories in
12083                 MONO_PATH.
12084                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
12085                 compile time variable.
12086                 -Removed init_default_path and call mono_set_rootdir from
12087                 libmonoos.a instead (windows only).
12088
12089         * assembly.h: declare mono_assembly_getrootdir().
12090
12091         * domain.c:
12092         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
12093
12094         * loader.c: s/getenv/g_getenv/
12095
12096 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
12097
12098         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
12099
12100         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
12101
12102         * metadata.h: Add new marshalling conversions.
12103
12104         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
12105         function.
12106
12107         * reflection.c (mono_reflection_get_type): Lookup the type in all
12108         modules of a multi-module assembly. Fixes #58291.
12109
12110 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
12111
12112         * threads.c: Before aborting a background, set the StopRequested
12113         state.  This avoids throwing the Abort exception.
12114         In mono_thread_manage, don't continue with the shutdown until all
12115         aborted threads have actually stopped.
12116
12117 2004-05-10  Jackson Harper  <jackson@ximian.com>
12118
12119         * locales.c: Remove the modifier from culture names.
12120         
12121 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12122
12123         * Makefile.am: monosn is not installed any more. It has been deprecated
12124         in favor of sn.
12125
12126 2004-05-07  Jackson Harper  <jackson@ximian.com>
12127
12128         * locales.c
12129         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
12130         Fix array construction, add bailout if the length is 0.
12131
12132 2004-05-07  Dick Porter  <dick@ximian.com>
12133
12134         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
12135         machine doesn't have a DNS entry.  Patch by Urs Muff
12136         (umuff@quark.com), fixes bug 57928.
12137
12138 2004-05-06  Jackson Harper  <jackson@ximian.com>
12139
12140         * reflection.c: Handle null PublicTokens properly. alloc mem for
12141         assembly names culture so we dont crash when freeing it.
12142         
12143 2004-05-06  Jackson Harper  <jackson@ximian.com>
12144
12145         * assembly.c: Check the usergac when loading with partial names.
12146         
12147 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12148
12149         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
12150         does nothing for now (not required for Linux/Windows) but the class
12151         library can call it (and a newer or modified runtime could need it).
12152         * icall.c: Registred icall.
12153
12154 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12155
12156         * loader.c: prints a message on module loading error we set MONO_DEBUG
12157         environment variable.
12158
12159 2004-05-05  Jackson Harper  <jackson@ximian.com>
12160
12161         * appdomain.c: Handle PublicKeyToken=null properly.
12162         
12163 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12164
12165         * environment.c|h: Added icall ves_icall_System_Environment_
12166         GetOSVersionString to get the current OS version as a string.
12167         * icall.c: Registred icall.
12168
12169 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
12170
12171         * object.c: in mono_object_get_virtual_method(), take into account that
12172         non-virtual methods don't have a slot in the vtable. Check needed when
12173         the object is a proxy.
12174
12175 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
12176
12177         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
12178         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
12179
12180         * object.c (mono_class_compute_gc_descriptor): Fix warning.
12181
12182         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
12183         passed when a valuetype is expected.
12184
12185         * object.c (mono_unhandled_exception): Only set the exit code if the
12186         exception happens in the main thread. Fixes thread5.exe.
12187
12188         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
12189         invalid names. Fixes #58047.
12190
12191 2004-05-03  Jackson Harper  <jackson@ximian.com>
12192
12193         * assembly.c: This line was committed accidently and is unneeded.
12194         
12195 2004-05-03  Jackson Harper  <jackson@ximian.com>
12196
12197         * icall.c: Add new icall for Assembly::LoadWithPartialName
12198         * assembly.c/.h: new function that probes the GAC to load partial
12199         assembly names by Paolo Molaro.
12200         
12201 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12202
12203         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
12204         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
12205         (type_get_fully_qualified_name): Added PublicKeyToken when building a
12206         full type name.
12207
12208 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12209
12210         * appdomain.c: fixed check for 'neutral' culture and removed warning.
12211         * reflection.c: fix bug when parsing a full type name and Version is not
12212         the last thing in the string.
12213
12214 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
12215
12216         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
12217         crashes when it is freed.
12218
12219 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12220
12221         * assembly.c: print the compat warning to stderr.
12222
12223 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
12224
12225         * assembly.c (mono_assembly_load_references): Add a compatibility
12226         hack to run old applications that might be still referencing the
12227         3300-based assemblies, only do this for System.xxx.
12228
12229 2004-05-01  Jackson Harper  <jackson@ximian.com>
12230
12231         * appdomain.c: If the culture is neutral we set it to "".
12232         
12233 2004-04-29  Jackson Harper  <jackson@ximian.com>
12234
12235         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
12236
12237 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
12238  
12239         * string-icalls.c: added low overhead function for copying chars
12240         * icall.c: added needed icall for the above function
12241  
12242 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12243
12244         * icall.c: fix return value of get_global_assembly_cache.  Implemented
12245         Environment.GetLogicalDrives.
12246
12247 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
12248
12249         * rand.c: try and talk to egd or prngd
12250         for random bytes if opening devices fail.
12251
12252 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
12253
12254         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
12255         alignment for the type using the native alignment of its members 
12256         instead of using klass->min_align.
12257
12258         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
12259
12260 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12261
12262         * file-io.c:
12263         * socket-io.c: added check for sys/aio.h.
12264
12265 2004-04-28  Dick Porter  <dick@ximian.com>
12266
12267         * threads.c: Don't abort a thread thats already aborting, when
12268         terminating everything.
12269
12270 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12271
12272         * icall.c: added 2 new async calls for Socket.
12273
12274         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
12275         IO on *nix systems.
12276
12277         * threadpool.c: removed unused variable.
12278
12279 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
12280
12281         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
12282
12283 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
12284
12285         * locales.c: put back string_invariant_tolower () and
12286         string_invariant_toupper ().
12287
12288 2004-04-26 David Waite <mass@akuma.org>
12289
12290         * file-io.h:
12291         * socket-io.h:
12292         * threads.h:
12293         * unicode.h: remove comma from end of enumeration declarations
12294
12295 2004-04-26 David Waite <mass@akuma.org>
12296
12297         * debug-mono-symfile.h:
12298         * decimal.c:
12299         * mono_debug.h:
12300         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
12301
12302
12303 2004-04-26  Jackson Harper  <jackson@ximian.com>
12304
12305         * appdomain.c: Increment version number.
12306         
12307 2004-04-26  Jackson Harper  <jackson@ximian.com>
12308
12309         * appdomain.c: Set assembly references public token value when
12310         PublicKeyToken is specified, not the hash_value. Free public token
12311         values when free assembly name data. Previously the public key
12312         token was hex decoded, however we are using hex encoded public key
12313         tokens, so this is not neccasary.
12314         * assembly.c: Lookup assemblies in the gac if their public token
12315         value is set. Add function to allow enabling user gac
12316         lookups. Specify whether or not the assembly was loaded from the
12317         GAC. Compare full assembly names when checking the cache for
12318         assemblies (Temporarily disabled see comment in code). Remove
12319         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
12320         specifies trace-loader they get extra info to stdout on the
12321         loading of assemblies.
12322         * image.h: Add a field for an assembly references public token
12323         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
12324         whether an assembly has been loaded from the GAC.
12325         * image.c: Remove a corlib -> mscorlib name mapping.
12326         * loader.h: Add function to enable/disable the user gac.
12327         * mono-config.c: Check if the usergac is enabled in the config
12328         file.
12329         * icall.c: New icall to determine whether or not an assembly has
12330         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
12331         * tabldefs.h: Add constant for assemblyref flag that specifies a
12332         full public key is used instead of a public token.
12333         * reflection.c: Remove mscorlib -> corlib mappings. Set
12334         PublicTokenValue instead of hash value. This value is a hex
12335         string so it does not need to be expanded.
12336
12337 2004-04-26  Martin Baulig  <martin@ximian.com>
12338
12339         * mono-debug-debugger.c (mono_debugger_initialize): Set
12340         `mono_debugger_initialized' before calling mono_debug_lock().
12341
12342 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
12343
12344         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
12345           InternalToUpper/InternalToLower.
12346         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
12347           removed invariant culture shortcut.  This is now done in managed code.
12348         * locales.c: (string_invariant_toupper/tolower) removed.
12349
12350 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12351
12352         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
12353         Added Poll internal call.
12354
12355         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
12356         call for Poll. Select was too heavy for polling a single socket.
12357
12358         * threadpool.[ch]: added mono_threadpool_cleanup.
12359         * threads.c: use it. Don't use Thread_Abort on windows.
12360
12361 2004-04-23  Martin Baulig  <martin@ximian.com>
12362
12363         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
12364
12365 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
12366
12367         * icall.c: Registred new icalls for key pair protection and added an
12368         icall for Environment.GetFolderPath on Windows.
12369         * security.c|h: Added new icalls for key pair protection.
12370
12371 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12372
12373         * socket-io.c: don't display the non-supported family warning for known
12374         families. Now this is not displayed on windows when checking support
12375         for IPv4/IPv6.
12376
12377 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12378
12379         * class.c: don't display the layout warning for static fields.
12380
12381 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
12382
12383         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
12384         * locales.c, locales.h: Added new icalls for culture-specific
12385         Char.ToLower and Char.ToUpper.
12386
12387 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12388
12389         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
12390         by David Waite.
12391
12392 2004-04-20  Martin Baulig  <martin@ximian.com>
12393
12394         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
12395         of the type name before passing it to mono_reflection_type_from_name().
12396
12397 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
12398
12399         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
12400         encodings here. Fixes #56965.
12401
12402 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
12403
12404         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12405         fix test on strstr result not that I can see anything that
12406         relies on the result.
12407
12408 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
12409
12410         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
12411         Fixes #57081.
12412
12413         * marshal.c (mono_marshal_get_string_encoding): New helper function.
12414
12415         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
12416         function to determine which marshalling to use for strings. Fixes
12417         #56965.
12418
12419         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
12420
12421         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
12422
12423 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
12424
12425         * icall.c: #include mono-config.h
12426
12427 2004-04-15  Jackson Harper  <jackson@ximian.com>
12428
12429         * culture-info-tables.h: Fix date formats for en-US culture.
12430         
12431 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
12432
12433         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
12434         ThreadPool.SetMinThreads.
12435         * threadpool.c: Implemented ThreadPool.GetMinThreads and
12436         ThreadPool.SetMinThreads.
12437
12438 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
12439
12440         * mono-config.c: also load the .config file in the directory
12441         where the assembly was found.
12442
12443 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
12444
12445         * assembly.c: load per-assembly config files.
12446         * icall.c: decrapified code to get the config dir and moved to
12447         mono-config.c.
12448         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
12449         per-assembly config files. When doing a dll map lookup give precedence
12450         to the per-assembly data.
12451
12452 2004-04-14  Martin Baulig  <martin@ximian.com>
12453
12454         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
12455         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
12456         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
12457
12458         * mono-debugger-debugger.c: While the debugger is locked, remember
12459         whether the symbol tables have changes and send one single
12460         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
12461
12462 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
12463
12464         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
12465
12466         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
12467         function.
12468
12469         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
12470         account when marshalling string arrays. Fixes #56965.
12471
12472 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
12473
12474         * icall.c: Add new icalls mapping for security.
12475         * security.c|h: Add internal calls for WindowsIdentity,
12476         WindowsImpersonationContext and WindowsPrincipal.
12477
12478 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
12479
12480         * class.c: Added comment to ensure the System.MonoDummy class
12481         is removed when no longer necessary
12482
12483 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
12484
12485         * appdomain.c: Pass arguments to the bootstraping exceptions to
12486         minimize JITed methods at boot
12487
12488         * metadata.c (mono_exception_from_name_two_strings): Allow for the
12489         second string to be null.
12490
12491         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12492         Change the protocol to minimize the JIT methods at startup.  Now
12493         it Returns the internal codepage, if the value of "int_code_page"
12494         is 1 at entry, and we can not compute a suitable code page
12495         number, returns the code page as a string.
12496
12497 2004-04-13  Jackson Harper  <jackson@ximian.com>
12498
12499         * culture-info-tables.h: Fix number of decimal digits for all
12500         english locales.
12501
12502 2004-04-13  Jackson Harper  <jackson@ximian.com>
12503
12504         * icall.c: Clairfy out of sync error message. It is not always
12505         your corlib that is out of sync.
12506
12507 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
12508
12509         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
12510         properties when only the set accessor is overriden. Fixes #55874.
12511
12512 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
12513
12514         * assembly.c (mono_assembly_load_references): Make this thread safe.
12515         Fixes #56327.
12516
12517 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
12518
12519         * monosn.c: Add missing initialization calls.
12520
12521 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
12522
12523         * locales.c:
12524         ves_icall_System_Globalization_CultureInfo_construct_number_format
12525         Fix g_assert so it compiles on fussier compilers re int/ptr
12526         mismatch
12527
12528 2004-04-08  Dick Porter  <dick@ximian.com>
12529
12530         * socket-io.h:
12531         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
12532         53992.  Also rearrange the code so that the internal calls return
12533         an error value and exceptions are thrown from managed code.
12534
12535         * icall.c: Add type info to the socket icalls.
12536
12537 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12538
12539         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
12540         owes me a beer.
12541
12542 2004-04-07  Martin Baulig  <martin@ximian.com>
12543
12544         * class.c (mono_class_from_generic_parameter): Don't default
12545         `klass->parent' to `mono_defaults.object_type'.
12546
12547 2004-04-07  Martin Baulig  <martin@ximian.com>
12548
12549         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12550         `param->pklass->reflection_info'.       
12551
12552 2004-04-07  Jackson Harper  <jackson@ximian.com>
12553
12554         * culture-info-tables.h: Fix date separator symbol.
12555         
12556 2004-04-07  Martin Baulig  <martin@ximian.com>
12557
12558         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
12559         from System.Type to System.MonoType.
12560
12561 2004-04-07  Martin Baulig  <martin@ximian.com>
12562
12563         * reflection.h
12564         (MonoReflectionGenericParam): Added `has_reference_type' and
12565         `has_value_type' fields.
12566
12567         * reflection.c (mono_image_get_generic_param_info): Encode the
12568         correct flags if we have the `class' or `struct' constraint.
12569
12570 2004-04-07  Martin Baulig  <martin@ximian.com>
12571
12572         * reflection.h
12573         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
12574
12575 2004-04-07  Jackson Harper  <jackson@ximian.com>
12576
12577         * appdomain.c: Revert extra patches, just wanted to bump the
12578         version number.
12579         
12580 2004-04-07  Jackson Harper  <jackson@ximian.com>
12581
12582         * Makefile.am: Add culture-info private headers.
12583         * icall.c: Add new icalls for contructing locales.
12584         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
12585         * locales.h: Declare new culture info construction methods.
12586         * object.h: Add new fields used to avoid the CultureMap to
12587         MonoCultureInfo.
12588         * culture-info.h: Definition of structs used in the culture info
12589         tables.
12590         * culture-info-tables.h: Autogenerated tables that contain culture
12591         info data. This file was generated with the locale-builder tool.
12592         * appdomain.c: Incement corlib version number.
12593         
12594 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
12595
12596         * appdomain.c: (mono_runtime_init) move mono_thread_init
12597         to before mono_object_new calls so critical sections
12598         are initialized before use.
12599
12600 2004-04-07  Martin Baulig  <martin@ximian.com>
12601
12602         * icall.c
12603         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
12604         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
12605         (ves_icall_MonoGenericParam_initialize): Removed.
12606         (monogenericparam_icalls): Removed.
12607         (generictypeparambuilder_icalls): Added new table for
12608         System.Reflection.Emit.GenericTypeParameterBuilder.
12609
12610         * reflection.c
12611         (mono_reflection_define_generic_parameter): Removed.
12612         (mono_reflection_initialize_generic_parameter): This is now called
12613         from GenericTypeParameterBuilder's .ctor.
12614
12615 2004-04-06  Martin Baulig  <martin@ximian.com>
12616
12617         * class.c (mono_class_init): Don't inflate nested classes in a
12618         generic instance.
12619         (mono_type_get_name_recurse): Include the generic arguments for
12620         generic instances and generic type declarations.
12621         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
12622         (_mono_class_get_instantiation_name): Removed.
12623         (mono_class_create_generic): Always use `gklass->name' as our name.
12624
12625         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
12626
12627         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
12628         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
12629         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
12630         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
12631         closed generic methods here.
12632
12633         * reflection.c
12634         (mono_reflection_generic_inst_get_nested_types): Removed.
12635         (inflate_mono_method): Copy the generic parameters from the
12636         MonoMethodHeader into out MonoGenericMethod.
12637
12638 2004-04-06  Martin Baulig  <martin@ximian.com>
12639
12640         * row-indexes.h
12641         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
12642
12643         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
12644
12645         * reflection.c (build_compressed_metadata): If we have any entries
12646         in the GenericParam, MethodSpec or GenericParamConstraint tables,
12647         set the header version to 1.1.
12648
12649 2004-04-06  Martin Baulig  <martin@ximian.com>
12650
12651         * class.c (mono_class_init): If we're a generic instance,
12652         initialize our nested classes, too.
12653         (_mono_class_get_instantiation_name): Deal with the new `!%d'
12654         suffix. 
12655
12656 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12657
12658         * process.c: quote the argument passed to the shell on windows.
12659
12660 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
12661
12662         * threads.c (mono_alloc_special_static_data): Allow this to be
12663         called during startup.
12664
12665 2004-04-02  Martin Baulig  <martin@ximian.com>
12666
12667         * icall.c
12668         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
12669
12670 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
12671
12672         * icall.c: Fix build.
12673
12674 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
12675
12676         * Makefile.am: Added security.c|h.
12677         * icall.c: Added icall for get_UserName;
12678         * security.c: New file for security related icalls. Added function
12679         get_UserName for System.Environment (fix #56144).
12680         * security.h: New. Header file for security.c
12681
12682 2004-04-02  Dick Porter  <dick@ximian.com>
12683
12684         * icall.c: Deleted the icalls that were obsoleted some time ago
12685         by the ICU string code, and which were mixed into the icall
12686         rearranging.  Fixes bug 55969.
12687
12688         * string-icalls.h: 
12689         * string-icalls.c: Deleted the code that those icalls reference.
12690
12691 2004-04-01  Martin Baulig  <martin@ximian.com>
12692
12693         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
12694
12695         * class.c (mono_class_from_generic_parameter): Don't set 
12696         TYPE_ATTRIBUTE_INTERFACE.
12697         (my_mono_class_from_generic_parameter): Likewise.
12698
12699 2004-04-01  Martin Baulig  <martin@ximian.com>
12700
12701         * loader.c (find_method): Added an optional `MonoClass *ic'
12702         argument to search in a specific interface.
12703         (mono_get_method_constrained): New public function.
12704
12705 2004-04-01  Martin Baulig  <martin@ximian.com>
12706
12707         * reflection.c (mono_image_get_generic_field_token): Use the
12708         `handleref' cache here.
12709
12710 2004-04-01  Martin Baulig  <martin@ximian.com>
12711
12712         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
12713
12714         * reflection.c (create_generic_typespec): Use the `typespec' hash
12715         here, not the `typeref' one.    
12716
12717 2004-04-01  Martin Baulig  <martin@ximian.com>
12718
12719         * class.c (mono_class_inflate_generic_type): Moved the
12720         functionality into a new static inflate_generic_type() which
12721         returns NULL if it didn't do anything.  Only increment the
12722         `mono_stats.inflated_type_count' if we actually inflated
12723         something.
12724         (mono_class_get_full): Check the classes type to see whether we
12725         need to inflate it; also inflate MONO_TYPE_(M)VAR.
12726
12727 2004-04-01  Jackson Harper  <jackson@ximian.com>
12728
12729         * reflection.c: Set culture for assembly references.
12730         
12731 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
12732
12733         * reflection.[ch], icall.[ch], Fix support for pinning variables.
12734
12735 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12736
12737         * assembly.c:
12738         (do_mono_assembly_open): the critical section also covers
12739         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
12740
12741 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12742
12743         * threads.c:
12744         (mono_manage_threads): abort the background threads when finishing.
12745         Fixes bug #47232.
12746
12747 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12748
12749         * gc.c: only close the done_event handle if there was no timeout.
12750         C-ified comments.
12751
12752 2004-03-30  Martin Baulig  <martin@ximian.com>
12753
12754         * icall.c (icall_entries): It's called "System.Activator", not
12755         "System.Activation".    
12756
12757 2004-03-30  Martin Baulig  <martin@ximian.com>
12758
12759         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
12760         (mono_class_create_from_typespec): Likewise.
12761
12762 2004-03-30  Martin Baulig  <martin@ximian.com>
12763
12764         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
12765         `has_ctor_constraint' and `initialized'.
12766
12767 2004-03-30  Martin Baulig  <martin@ximian.com>
12768
12769         * reflection.c (encode_new_constraint): New static function to add
12770         the constructor constraint attribute to a type parameter.
12771         (encode_constraints): Call encode_new_constraint() if necessary.
12772
12773         * reflection.h
12774         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
12775
12776         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
12777         
12778 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
12779
12780         * reflection.c, icall.c: add support for pinning variables. 
12781
12782 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
12783
12784         * marshal.c (mono_marshal_get_managed_wrapper):
12785         init bool local with zero rather than null.
12786
12787 2004-03-29  Martin Baulig  <martin@ximian.com>
12788
12789         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
12790         the "official" behavior here.
12791         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
12792
12793 2004-03-29  Martin Baulig  <martin@ximian.com>
12794
12795         * icall.c: Reflect latest API changes.
12796
12797 2004-03-29  Martin Baulig  <martin@ximian.com>
12798
12799         * loader.c (mono_get_method_from_token): Also call
12800         mono_metadata_load_generic_params () for abstract and interface
12801         methods; replace the type arguments in the method signature with
12802         the ones which are loaded from the metadata.
12803
12804 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
12805
12806         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
12807         of the lock is not the current thread. MS.NET don't do it, in spite of
12808         what the documentation says. See bug #56157.
12809
12810 2004-03-28  Martin Baulig  <martin@ximian.com>
12811
12812         * class.c (mono_class_init): Don't call init_properties() and
12813         init_events() for generic instances; set `prop->parent' when
12814         inflating properties.
12815
12816         * reflection.c (mono_generic_inst_get_object): Call
12817         `mono_class_init (ginst->klass)'.
12818         (mono_type_get_object): Only create a MonoGenericInst if your
12819         generic type is a TypeBuilder.
12820         (do_mono_reflection_bind_generic_parameters): Only set
12821         `ginst->is_dynamic' if our generic type is a TypeBuilder.
12822
12823 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
12824
12825         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
12826         Fixes #56091.
12827
12828 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12829
12830         * icall.c: added Kill_internal icall.
12831         * process.[ch]: added Kill_internal icall.
12832
12833 2004-03-25  Martin Baulig  <martin@ximian.com>
12834
12835         * class.h (MonoStats): Added `generic_instance_count',
12836         `inflated_method_count', `inflated_type_count' and
12837         `generics_metadata_size'.       
12838
12839 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12840
12841         * reflection.c: no warnings now.
12842
12843 2004-03-25  Martin Baulig  <martin@ximian.com>
12844
12845         * class.c (mono_class_get_full): New public function; does a
12846         mono_class_get(), but also takes a `MonoGenericContext *'.
12847
12848         * loader.c (mono_field_from_memberref): Renamed to
12849         `field_from_memberref', made static and added `MonoGenericContext *'
12850         argument.
12851         (mono_field_from_token): Added `MonoGenericInst *' argument.
12852         (method_from_memberef): Likewise.
12853         (mono_get_method_from_token): Likewise.
12854         (mono_get_method_full): New public function; does a
12855         mono_get_method(), but also takes a `MonoGenericContext *'.
12856
12857         * verify.c (mono_method_verify): Get the method's generic context
12858         and pass it to mono_field_from_token(), mono_get_method_full() and
12859         mono_class_get_full().
12860
12861 2004-03-25  Martin Baulig  <martin@ximian.com>
12862
12863         * class.c (mono_class_inflate_generic_type): Take a
12864         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
12865         `MonoGenericMethod *'.
12866
12867 2004-03-25  Martin Baulig  <martin@ximian.com>
12868
12869         * loader.h (MonoMethodInflated): Store the MonoGenericContext
12870         instead of the MonoGenericMethod here.
12871
12872 2004-03-25  Martin Baulig  <martin@ximian.com>
12873
12874         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
12875         each time we create a new MonoGenericInst, we also create a new
12876         context which points back to us.
12877
12878         * class.c (inflate_method): Use `ginst->context' instead of
12879         creating a new context.
12880
12881         * loader.c (method_from_memberref): Use
12882         `klass->generic_inst->context' instead of creating a new context.
12883
12884 2004-03-25  Martin Baulig  <martin@ximian.com>
12885
12886         * class.h (MonoGenericContext): New struct.
12887         (MonoGenericMethod): Removed `generic_inst'.
12888
12889         * class.c (mono_class_inflate_generic_method): Take a
12890         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
12891
12892 2004-03-25  Martin Baulig  <martin@ximian.com>
12893
12894         * loader.h (MonoMethodInflated): New typedef.
12895
12896         * metadata.h (MonoMethodSignature): Removed `gen_method', make
12897         `generic_param_count' consume just 30 bits, added `is_inflated'
12898         and `has_type_parameters' flags (one bit each).
12899
12900         * class.c (mono_class_inflate_generic_method): Create a
12901         MonoMethodInflated instead of a MonoMethodNormal and set
12902         `is_inflated' in the method signature.
12903
12904         * class.h (MonoGenericMethod): Removed `generic_method'.
12905
12906 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
12907
12908         * image.c: Make sure the name of a MonoImage is always an absolute path.
12909           This fixes bug #54415.
12910
12911 2004-03-24  Martin Baulig  <martin@ximian.com>
12912
12913         * class.c (mono_class_setup_vtable): If we're a generic instance,
12914         use our generic type's vtable size.
12915
12916 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
12917
12918         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
12919         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
12920         problems.
12921
12922 2004-03-23  Martin Baulig  <martin@ximian.com>
12923
12924         * class.h (MonoDynamicGenericInst): Added `int count_events' and
12925         `MonoEvent *events'.
12926
12927         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
12928         (typebuilder_icalls): Added "get_event_info"; calls
12929         mono_reflection_event_builder_get_event_info(). 
12930
12931         * reflection.c (mono_reflection_generic_inst_initialize): Added
12932         `MonoArray *events'.
12933         (mono_reflection_event_builder_get_event_info): New function.
12934
12935 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
12936
12937         * object.h: add mono_type_initialization_init
12938
12939         * object.c (mono_runtime_class_init): 
12940         implement class constructor synchronization rules
12941         to cope with threading issues.  
12942         add mono_type_initialization_init
12943
12944         * appdomain.c (mono_runtime_init): call 
12945         mono_type_initialization_init
12946
12947         * class.h: removing initializing field from MonoVTable
12948
12949 2004-03-23  Martin Baulig  <martin@ximian.com>
12950
12951         * class.c (my_mono_class_from_generic_parameter): Use
12952         `param->name' if it's not NULL. 
12953
12954 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
12955
12956         * class.c: do not insert non-virtual methods in the vtable.
12957         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
12958         that means the method is non-virtual. This never would have
12959         happened before.
12960
12961 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
12962
12963         * profiler.c: Added lock for accessing coverage_hash.
12964
12965 2004-03-22  Martin Baulig  <martin@ximian.com>
12966
12967         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
12968         `method->method->signature->generic_param_count != 0' to make it
12969         work for interface methods.
12970
12971 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12972
12973         * process.c: quote the string passed to the shell using g_shell_quote.
12974
12975 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12976
12977         * threads.c:
12978         (mono_threads_manage): don't remove the finalizer thread and self
12979         from the threads hash table so that mono_thread_manage can be called
12980         more than once.
12981
12982 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12983
12984         * process.c: quote the arguments when UseShellExecute is true. Fixes
12985         bug #55790.
12986
12987 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12988
12989         * threads.c: set mono_thread_detach as a cleanup routine for every
12990         thread. This way it's always executed upon thread termination, either
12991         aborted or finished normally. No more xsp hangs!
12992
12993 2004-03-17  Martin Baulig  <martin@ximian.com>
12994
12995         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
12996         `int count_nested' and a `MonoType **nested'.
12997
12998         * reflection.c (mono_reflection_bind_generic_parameters): Moved
12999         most of the functionality into a new static
13000         do_mono_reflection_bind_generic_parameters() and don't take a
13001         `MonoType *nested_in' argument any more.  Don't compute nested
13002         types here.
13003         (mono_reflection_generic_inst_get_nested_types): New public method
13004         to get nested types.
13005
13006         * class.c (mono_class_create_generic): Set `klass->nested_in' if
13007         we're a nested class.
13008
13009         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
13010         mono_reflection_generic_inst_get_nested_types() to compute the
13011         nested types.
13012
13013 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13014
13015         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
13016         descriptive error message under windows.
13017         
13018 2004-03-17  Martin Baulig  <martin@ximian.com>
13019
13020         * class.c (dup_type): Added `const MonoType *original' argument;
13021         copy the attrs from the original type.
13022
13023 2004-03-17  Martin Baulig  <martin@ximian.com>
13024
13025         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
13026         `m->generic_inst_cache' here.
13027
13028 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13029
13030         * exception.h exception.c: Add stack_overflow_exception.
13031
13032 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13033
13034         * threadpool.c:
13035         (overlapped_callback): call SetEvent *after* invoking the callback.
13036         No need to call CloseHandle.
13037
13038 2004-03-16  Martin Baulig  <martin@ximian.com>
13039
13040         * reflection.c (mono_image_get_fieldref_token): Take a
13041         `MonoReflectionField *' instead of a `MonoClassField *' and a
13042         `MonoClass *'; store the `MonoReflectionField *' in the hash.
13043
13044 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13045
13046         * appdomain.c: don't add the culture to the filename we're looking for
13047         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
13048
13049 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13050
13051         * locales.c: don't ignore symbols when doing case insensitive compares.
13052         Thanks Dick! Fixes bug #54046.
13053
13054         * threads.c: surround 'threads' usage with enter/leave in
13055         mono_thread_manage.
13056
13057 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
13058
13059         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
13060         implicitly marshalled as [Out]. Fixes #55450.
13061
13062         (mono_marshal_get_runtime_invoke): Zero out the result if there is
13063         an exception.
13064
13065 2004-03-16  Martin Baulig  <martin@ximian.com>
13066
13067         * class.c (mono_class_from_generic_parameter): Use the actual
13068         parameter name. 
13069
13070 2004-03-16  Martin Baulig  <martin@ximian.com>
13071
13072         * reflection.c (type_get_signature_size): New static function.
13073         Compues the size of the type in a method signature.
13074         (method_get_signature_size): New static function; calls
13075         type_get_signature_size() to compute the actual size of the
13076         method's signature.
13077         (method_encode_signature): Use method_get_signature_size() to get
13078         the signature's size rather than using `nparams * 10'.
13079
13080 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13081
13082         * file-io.h: define here WapiOverlapped on windows. I don't want the
13083         regular OVERLAPPED one.
13084
13085         * file-io.c:
13086         * threadpool.c: somehow, BindIoCompletionCallback is not found.
13087         Disabling AIO on windows.
13088
13089 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13090
13091         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
13092         bug #55385.
13093
13094 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13095
13096         * appdomain.c: upgraded corlib version.
13097
13098         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
13099         and BeginWrite. Allow opening files for asynchrnous operations.
13100
13101         * file-io.h: new struct that maps FileStreamAsyncResult.
13102         * icall.c: added new icalls.
13103         * process.[ch]: support setting child process environment variables
13104         and use the SHELL or COMSPEC when UseShellExecute is true.
13105
13106         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
13107         callback for async. IO is here and also BindHandle.
13108
13109         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
13110         from here.
13111
13112 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
13113
13114         * reflection.c (create_custom_attr): Allow len == 0.
13115
13116         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
13117         computation on big-endian machines.
13118
13119 2004-03-13  Martin Baulig  <martin@ximian.com>
13120
13121         * class.h (MonoGenericInst): Added `int count_ifaces'.
13122
13123         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
13124         `ginst->count_ifaces' instead `klass->interface_count' since we
13125         may get called before the vtable is created.
13126
13127         * loader.c (mono_method_get_param_names): If we're a generic
13128         instance, return and don't initialize the class.
13129
13130         * reflection.c (mono_reflection_setup_generic_class): Don't call
13131         ensure_runtime_vtable().
13132         (mono_reflection_bind_generic_parameters): Set
13133         `ginst->count_ifaces'.
13134
13135 2004-03-11  Jackson Harper <jackson@ximian.com>
13136
13137         * icall.c:
13138         * unicode.c:
13139         * unicode.h: Remove unused System.Char icalls.
13140         
13141 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
13142
13143         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
13144         code when we P/Invoke the first library in Windows.Forms, instead
13145         of when we first open the assembly.
13146
13147         * assembly.c: Drop the lookup from here.
13148
13149 2004-03-10  Martin Baulig  <martin@ximian.com>
13150
13151         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
13152         class for properties, fields and events.  Finally fixes #54945.
13153
13154 2004-03-10  Martin Baulig  <martin@ximian.com>
13155
13156         * metadata.c (mono_metadata_class_equal): New static function;
13157         checks whether two generic instances or two generic parameters are
13158         equal.
13159         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
13160         compare classes.        
13161
13162 2004-03-10  Martin Baulig  <martin@ximian.com>
13163
13164         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
13165
13166         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
13167         argument and write it into the `reflection_info' field.
13168
13169         * icall.c
13170         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
13171         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
13172
13173 2004-03-09  Jackson Harper  <jackson@ximian.com>
13174
13175         * char-conversions.h: use 8 bits for numeric data its all we need
13176         * icall.c: numeric data is only 8 bits now.
13177
13178 2004-03-09  Martin Baulig  <martin@ximian.com>
13179
13180         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
13181
13182         * class.c (init_properties, init_events): Initialize the new
13183         `parent' field.
13184
13185         * reflection.c (typebuilder_setup_properties): Likewise.
13186         (typebuilder_setup_events): Likewise.
13187
13188         * reflection.h (MonoEventInfo): Replaced `parent with
13189         `declaring_type' and `reflected_type'.
13190
13191         * icall.c (ves_icall_get_property_info): Distinguish between
13192         declaring and reflected type.
13193         (ves_icall_get_event_info): Likewise.
13194
13195 2004-03-09  Martin Baulig  <martin@ximian.com>
13196
13197         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
13198         (ves_icall_Type_GetField): Correctly set field->klass.
13199
13200 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
13201
13202         * loader.h: Fix warning.
13203
13204 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
13205
13206         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
13207         library routine if present.  Notice that it will still continue
13208         executing even if its missing, for those working on the Gtk#
13209         edition of Windows.Forms.
13210
13211         * assembly.c (do_mono_assembly_open): If loading the
13212         System.Windows.Forms call mono_loader_wini_init.
13213
13214 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
13215
13216         * class.h: Added MonoRemoteClass struct.
13217         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
13218         function for MonoStrings.
13219         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
13220         Added internal call for getting the proxy type.
13221         * marshal.c: Get the type of transparent proxies from its remote_class.
13222         Added methods that generate the IL for type checks and casts:
13223         mono_marshal_get_isinst, mono_marshal_get_castclass, 
13224         mono_marshal_get_proxy_cancast.
13225         * marshal.h: Declaration of the previous new methods.
13226         * object.c: Added new moethods for creating and updating MonoRemoteClass
13227         instances: mono_remote_class, mono_upgrade_remote_class, 
13228         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
13229         * verify.c: FIx transparent_proxy_fields layout.
13230         * appdomain.c: Bump corlib version.
13231
13232 2004-03-04  Jackson Harper  <jackson@ximian.com>
13233
13234         * icall.c: Add icall to access char conversion tables.
13235         * char-conversions.h: Character conversion tables.
13236         * Makefile.am: Add char-conversions.h private header file.
13237         
13238 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
13239
13240         * appdomain.c (unload_thread_main): Increase unloading timeout to
13241         10 sec as a temporary workaround for Nant problems.
13242
13243 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
13244
13245         * gc.c: Add checks for GC_enable and GC_disable.
13246
13247         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
13248         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
13249         (bug #54988).
13250         
13251 2004-02-27  Martin Baulig  <martin@ximian.com>
13252
13253         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13254         `MonoReflectionType *' instead of a `MonoType *'.
13255
13256 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
13257
13258         * gc.c (run_finalize): Avoid finalizing the object representing the
13259         finalizer thread.
13260         (finalizer_thread): Fix warning.
13261
13262 2004-02-25  Martin Baulig  <martin@ximian.com>
13263
13264         * class.c (_mono_class_get_instantiation_name): Added `int offset'
13265         argument for nested types.
13266         (mono_class_create_generic): Added support for nested generictypes.
13267
13268         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
13269         `GList *nested'.
13270
13271         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
13272
13273         * reflection.c (method_encode_signature): Increase the minimum
13274         value of `size' from 10 to 11.
13275         (mono_reflection_bind_generic_parameters): Take `int type_argc'
13276         and `MonoType **types' arguments instead of the `MonoArray
13277         *types'; added `MonoType *nested_in'.  Recursively instantiate
13278         nested classes. 
13279
13280 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
13281
13282         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
13283         stack_overflow_ex members which are used by exception handling.
13284
13285         * appdomain.c (mono_runtime_init): Initialize the new members.
13286
13287         * gc.c (mono_gc_enable): New helper function.
13288         * gc.c (mono_gc_disable): New helper function.
13289
13290 2004-02-23  Martin Baulig  <martin@ximian.com>
13291
13292         * icall.c: I must have been really stupid - make it actually work
13293         this time ;-)
13294
13295 2004-02-23  Martin Baulig  <martin@ximian.com>
13296
13297         * loader.c (method_from_memberref): Only inflate the method if
13298         it's in another klass.
13299
13300 2004-02-23  Martin Baulig  <martin@ximian.com>
13301
13302         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
13303         (mono_class_init): If we're a generic instance and an interface,
13304         compute `class->interface_id'; also create `class->interfaces'
13305         here and inflate them.
13306
13307         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
13308         `ginst->is_open'.
13309         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
13310
13311         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
13312
13313 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
13314
13315         * reflection.c (method_encode_code): Improved the error message
13316         generated by the exception.
13317
13318 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13319
13320         * icall.c: Martin did not do what he said in the ChangeLog for
13321         2004-02-18, but put back the changes for properties and events.
13322         Commenting those changes out again and adding comment to bug #54518.
13323         
13324         * process.c: removed warning.
13325
13326 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
13327
13328         * marshal.c (emit_struct_conv): Print an error message instead of
13329         asserting when a type does not have the StructLayout attribute.
13330
13331 2004-02-20  Martin Baulig  <martin@ximian.com>
13332
13333         * reflection.c (mono_type_get_object): Also use the cache for
13334         generic instances.
13335         (mono_reflection_bind_generic_parameters): Always compute
13336         `ginst->ifaces'.        
13337
13338 2004-02-20  Martin Baulig  <martin@ximian.com>
13339
13340         * class.h (MonoGenericMethod): Removed `klass'.
13341
13342         * class.c (mono_class_inflate_generic_method): Added `MonoClass
13343         *klass' argument.
13344
13345 2004-02-20  Martin Baulig  <martin@ximian.com>
13346
13347         * reflection.c (method_encode_methodspec): Actually use the
13348         uninflated signature for the memberref.
13349
13350 2004-02-20  Martin Baulig  <martin@ximian.com>
13351
13352         * class.h (MonoGenericMethod): Removed `declaring'.
13353
13354         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
13355         is NULL, compute it here.
13356
13357 2004-02-20  Martin Baulig  <martin@ximian.com>
13358
13359         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
13360
13361         * metadata.c (mono_metadata_generic_inst_hash): New method.
13362         (mono_metadata_generic_inst_equal): New method.
13363
13364         * reflection.c (mono_reflection_bind_generic_parameters): Use the
13365         `klass->image->generic_inst_cache' cache to avoid creating
13366         duplicate MonoGenericInst's.
13367
13368         * class.c (mono_class_inflate_generic_type): Use the cache.
13369
13370 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
13371
13372         * object.c: fixed gc descriptor calculation for embedded valuetypes.
13373
13374 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13375
13376         * icall.c: added Socket.WSAIoctl icall.
13377
13378         * socket-io.[ch]: implemented
13379         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
13380
13381 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
13382
13383         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
13384
13385 2004-02-18  Urs C Muff  <umuff@quark.com>
13386
13387         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
13388         this work on PPC and other big-endian architectures.
13389
13390         * debug-mono-symfile.h: Prepended the names of all the `guint32'
13391         fields with an underscore to make sure they're only accessed by
13392         the read32() macro.
13393
13394 2004-02-18  Martin Baulig  <martin@ximian.com>
13395
13396         * icall.c: Put the klass->refclass changes back for methods and
13397         fields, but not for properties and events.  We're currently not
13398         distinguishing between DeclaringType and ReflectedType for
13399         properties and events, that's what caused the regressions.
13400
13401 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13402
13403         * object.c:
13404         (mono_async_result_new): the handle can be NULL.
13405
13406         * threadpool.c: Use an event instead of a semaphore, don't initialize
13407         it until needed. This saves quite a few semaphores from being created
13408         when using the threadpool.
13409
13410 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
13411
13412         * object.c (mono_string_is_interned_lookup): Fix interning of long
13413         strings. Fixes #54473.
13414
13415         * domain.c (ldstr_equal): Optimize if the two strings are equal.
13416
13417         * icall.c: Revert the klass->refclass changes since they introduce
13418         regressions (bug #54518).
13419
13420 2004-02-18  Martin Baulig  <martin@ximian.com>
13421
13422         * class.c (mono_class_init): If we're a generic instance and don't
13423         come from a TypeBuilder, inflate our members here.
13424         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
13425         (mono_class_create_generic): New public method.
13426         (mono_class_initialize_generic): Removed.
13427         (get_instantiation_name): Renamed to
13428         _mono_class_get_instantiation_name() and made it public.
13429
13430 2004-02-18  Martin Baulig  <martin@ximian.com>
13431
13432         * class.c (mono_class_inflate_generic_type): Clear the new
13433         instance's `nginst->klass' when inflating a generic instance.
13434         (mono_class_is_subclass_of): Added (basic) support for generic
13435         instances.
13436
13437 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
13438
13439         * appdomain.h, domain.c: use a MonoCodeManager instead of a
13440         MonoMempool to hold compiled native code.
13441
13442 2004-02-17  Martin Baulig  <martin@ximian.com>
13443
13444         * class.h (MonoDynamicGenericInst): Added `count_properties' and
13445         `properties'.
13446
13447         * reflection.c (mono_reflection_generic_inst_initialize): Added
13448         `MonoArray *properties' argument.
13449
13450         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
13451
13452 2004-02-17  Martin Baulig  <martin@ximian.com>
13453
13454         * icall.c (ves_icall_Type_GetFields): Renamed to
13455         ves_icall_Type_GetFields_internal() and added a
13456         `MonoReflectionType *rtype' argument; pass it to
13457         mono_field_get_object() to set the field's "reflected" type.
13458         (ves_icall_Type_GetConstructors): Likewise.
13459         (ves_icall_Type_GetEvents): Likewise.
13460         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
13461         argument; pass it to mono_method_get_object() to set the method's
13462         "reflected" type.       
13463
13464 2004-02-17  Martin Baulig  <martin@ximian.com>
13465
13466         * class.h (MonoDynamicGenericInst): New type.
13467         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
13468
13469         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
13470         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
13471         (ves_icall_MonoGenericInst_GetFields): New interncall.
13472
13473         * class.c (mono_class_from_generic): Don't call
13474         mono_class_initialize_generic() if this is a dynamic instance;
13475         ie. it's being created from a TypeBuilder.
13476         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
13477         `class->byval_arg.type'.
13478
13479         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
13480         to `inflate_method' and made static.
13481         (mono_reflection_inflate_field): Removed.
13482         (mono_reflection_generic_inst_initialize): New public method.
13483
13484         * reflection.h (MonoReflectionGenericInst): Removed `methods',
13485         `ctors' and `fields'; added `initialized'.
13486
13487 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
13488
13489         * debug-helpers.c (mono_method_full_name): Fix output for empty
13490         namespaces.
13491
13492 2004-02-12  Martin Baulig  <martin@ximian.com>
13493
13494         * class.h (MonoClassField): Added `MonoType *generic_type'.
13495
13496         * reflection.c (mono_image_get_fieldref_token): Added support for
13497         instantiated generic types.
13498         (field_encode_inflated_field): Removed.
13499         (mono_image_get_inflated_field_token): Removed.
13500         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
13501
13502         * reflection.h (MonoReflectionInflatedField): Removed.
13503
13504 2004-02-12  Martin Baulig  <martin@ximian.com>
13505
13506         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
13507         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
13508
13509         * reflection.c (mono_image_get_methodspec_token): Take a
13510         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
13511         (mono_image_create_token): Check whether we have a
13512         `method->signature->gen_method' and call
13513         mono_image_get_methodspec_token() if appropriate.
13514         (inflated_method_get_object): Removed.
13515         (mono_reflection_bind_generic_method_parameters): Return a
13516         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
13517         (mono_reflection_inflate_method_or_ctor): Likewise.
13518
13519         * reflection.h (MonoReflectionInflatedMethod): Removed.
13520
13521 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
13522
13523         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
13524         for custom valuetype marshalling.
13525
13526         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
13527
13528 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13529
13530         * icall.c: fixed WSAGetLastError_internal name.
13531
13532 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
13533
13534         * threads.c (mono_thread_attach): Allow this to be called multiple
13535         times for a thread.
13536         
13537         * threads.c (build_wait_tids): Do not wait for ourselves.
13538
13539         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
13540         appdomain list is empty.
13541
13542         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
13543         memory returned by mono_string_builder_to_utf16, since it points into
13544         managed memory. Thanks to Bernie Solomon for noticing this.
13545
13546         * icall.c: Add AppDomainSetup icalls.
13547
13548         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
13549
13550         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
13551         types.
13552
13553         * reflection.c (reflection_methodbuilder_to_mono_method): Save
13554         custom attributes to the method_aux struct. Also fix array indexes etc.
13555
13556         * loader.c (mono_method_get_param_names): Make dynamic case work again.
13557         
13558 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
13559
13560         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
13561         (both static and runtime) and reduce startup time.
13562
13563 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
13564
13565         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
13566         AsAny marshalling conversion instead of crashing.
13567
13568         * marshal.c: Fix warnings.
13569
13570 2004-02-09  Martin Baulig  <martin@ximian.com>
13571
13572         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
13573
13574         * reflection.h (MonoReflectionInflatedMethod): Removed the
13575         `declaring' field, it's now in the unmanaged MonoGenericMethod.
13576
13577         * reflection.c (method_encode_methodspec): Removed the `method'
13578         argument; we get it from `gmethod->declaring'.
13579         (inflated_method_get_object): Removed the `declaring' argument.
13580
13581 2004-02-09  Martin Baulig  <martin@ximian.com>
13582
13583         * class.h (MonoGenericMethod): New type.
13584         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
13585         `generic_method'.
13586
13587         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
13588         a `MonoGenericMethod *gen_method' one.
13589
13590         * class.c (mono_class_inflate_generic_type): Take an additional
13591         `MonoGenericMethod * argument.  This is only non-NULL if we're
13592         inflating types for a generic method.   
13593         (mono_class_inflate_generic_signature): Renamed to
13594         inflate_generic_signature() and made static; take a
13595         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
13596         (inflate_generic_header): Take a `MonoGenericMethod *' argument
13597         instead of a `MonoGenericInst *' one.
13598         (mono_class_inflate_generic_method): Likewise.
13599
13600         * reflection.c (encode_generic_method_sig): Take a
13601         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
13602         (method_encode_methodspec): Likewise.
13603         (inflated_method_get_object): Likewise. 
13604
13605         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
13606         field with a `MonoGenericMethod *gmethod' one.  
13607
13608 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
13609
13610         * class.h (mono_class_has_parent): add parens to expansion
13611         so you can ! this.
13612
13613 2004-02-08  Martin Baulig  <martin@ximian.com>
13614
13615         * image.h (MonoImage): Removed `generics_cache'.
13616
13617         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
13618         instead of a `MonoType *' argument; removed the `inflate_methods'
13619         argument.  Don't inflate methods here.
13620
13621         * loader.c (find_method): If it's a generic instance, call
13622         mono_class_init() on the `sclass->generic_inst->generic_type'.
13623
13624         * metadata.c (mono_type_size): Make this work on uninitialized
13625         generic instances; call it on the `ginst->generic_type's class.
13626
13627         * reflection.c (mono_reflection_bind_generic_parameters): Call
13628         mono_class_from_generic() to create the `ginst->klass'.
13629
13630 2004-02-08  Martin Baulig  <martin@ximian.com>
13631
13632         * class.h (MonoClass): Changed type of `generic_inst' from
13633         `MonoType *' to `MonoGenericInst *'.
13634
13635 2004-02-08  Martin Baulig  <martin@ximian.com>
13636
13637         * icall.c (ves_icall_Type_BindGenericParameters): Just call
13638         mono_type_get_object(), this is now creating a `MonoGenericInst'
13639         for MONO_TYPE_GENERICINST.
13640         (ves_icall_MonoGenericInst_GetParentType): Likewise.
13641         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
13642
13643         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
13644         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
13645         (inflated_method_get_object): Added `MonoClass *refclass' argument.
13646         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
13647         and reflected type.
13648
13649         * reflection.h (MonoReflectionInflatedMethod): Removed
13650         `declaring_type' and `reflected_type'.
13651
13652 2004-02-08  Martin Baulig  <martin@ximian.com>
13653
13654         * class.h (MonoGenericInst): Added `MonoType *parent' and
13655         `MonoType **ifaces'.
13656
13657         * reflection.h (MonoReflectionGenericInst): Removed `klass',
13658         `parent' and `interfaces'.
13659
13660         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13661         `MonoType *' argument and return a `MonoType *'.
13662
13663         * icall.c
13664         (ves_icall_MonoGenericInst_GetParentType): New interncall.
13665         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
13666
13667 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
13668
13669         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
13670         valuetype marshalling.
13671
13672 2004-02-06  Martin Baulig  <martin@ximian.com>
13673
13674         * class.c
13675         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
13676         (my_mono_class_from_generic_parameter): Likewise.
13677
13678 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
13679
13680         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
13681         contents of the symbol files lazily.
13682
13683         * object.h (MonoThread): Add 'name' and 'name_len' fields.
13684
13685         * threads.h threads.c icall.c: New icalls for getting and setting the
13686         threads name.
13687
13688 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
13689
13690         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
13691         Raise an exception when the domain is not found.
13692
13693 2004-02-03  Martin Baulig  <martin@ximian.com>
13694
13695         * reflection.c (mono_image_get_methodspec_token): Use the
13696         uninflated signature; fixes gen-33.
13697
13698 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
13699
13700         * gc.c threads.c: Make the finalizer thread a normal managed thread so
13701         the finalizer code can use thread functionality.
13702
13703         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
13704         the finalizer thread.
13705
13706         * threads.c: Make some functions more robust.
13707
13708         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
13709
13710         * metadata.h: Add new marshalling conventions.
13711
13712         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
13713         stringbuilder marshalling. Fixes #53700.
13714
13715         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
13716
13717         * reflection.c (mono_image_get_type_info): Save declarative security
13718         info.
13719
13720         * reflection.c (mono_image_get_field_info): Handle uninitialized 
13721         unmanaged fields as well.
13722
13723         * appdomain.c: Bump corlib version.
13724
13725 2004-02-01  Martin Baulig  <martin@ximian.com>
13726
13727         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
13728         method type arguments.  
13729
13730 2004-01-30  Duncan Mak  <duncan@ximian.com>
13731
13732         * marshal.h: Add prototype for
13733         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
13734         and
13735         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
13736         fix the build.
13737
13738 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
13739
13740         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
13741         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
13742
13743 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
13744
13745         * marshal.c (mono_marshal_get_native_wrapper): Add support for
13746         custom marshalling of valuetypes.
13747
13748         * marshal.c: Fix some warnings.
13749
13750 2004-01-29  Martin Baulig  <martin@ximian.com>
13751
13752         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
13753         for generic method parameters.
13754
13755         * reflection.c (method_encode_methodspec): Write the uninflated
13756         signature into the methodspec table.
13757         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
13758         is always the uninflated method.
13759         (reflection_methodbuilder_to_mono_method): Copy the generic
13760         parameters from the MethodBuilder into `header->gen_params'.
13761
13762 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
13763
13764         * class.c (mono_class_from_generic_parameter): Fix warning.
13765
13766 2004-01-27  Martin Baulig  <martin@ximian.com>
13767
13768         * class.c (mono_class_from_generic_parameter): Don't create
13769         `klass->methods' here.  
13770
13771 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
13772
13773         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
13774         extension since it does not work with libraries named lib<FOO>.dll.so.
13775
13776 2004-01-25  Martin Baulig  <martin@ximian.com>
13777
13778         * class.c (mono_class_inflate_generic_type): Added support for
13779         MONO_TYPE_GENERICINST.
13780
13781         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
13782         inflate methods on open constructed types.      
13783
13784 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13785
13786         * object.c: fire ProcessExit event in the root AppDomain after running
13787         Main. Fixes bug #53299.
13788
13789 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
13790
13791         * socket-io.c: include the new socket-wrappers.h header.
13792         Use the wrappers instead of the unix socket functions to make the code
13793         more clear.
13794
13795 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
13796
13797         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
13798
13799         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13800         Fixes #22532.
13801
13802 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
13803
13804         * reflection.c (mono_image_create_pefile): Handle the case when the
13805         entry point is not a MethodBuilder.
13806
13807         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13808         field to ReflectionMethod since it is not allways a builder.
13809
13810         * reflection.c (type_get_fully_qualified_name): New helper function to
13811         return the fully qualified name of a type.
13812
13813         * reflection.c (encode_marshal_blob): Always emit the fully qualified
13814         type name for custom marshallers.
13815
13816         * reflection.c (mono_marshal_spec_from_builder): Ditto.
13817
13818         * class.c (mono_class_setup_vtable): If a parent class already 
13819         implements an interface, use the implementing methods from that class.
13820         Fixes #53148.
13821
13822 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13823
13824         * threadpool.c: just return instead of ExitThread to allow for thread
13825         clean up earlier.
13826
13827 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
13828
13829         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
13830         when closing resource modules.
13831
13832         * reflection.c (mono_image_create_pefile): Handle the case when the
13833         entry point is not a MethodBuilder.
13834
13835         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13836         field to ReflectionMethod since it is not allways a builder.
13837
13838 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
13839
13840         * marshal.c (mono_marshal_get_managed_wrapper): 
13841         mono_marshal_alloc takes native int so CONV_I
13842         the arg for 64bits.
13843
13844 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
13845
13846         * reflection.c (fixup_cattrs): New function to fixup the methoddef
13847         tokens in the cattr table. Fixes #53108.
13848
13849 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13850
13851         * loader.c: don't trim ".dll" before looking up in the config file.
13852         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
13853
13854 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
13855
13856         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
13857         Return the module which contains the resource as well.
13858         (ves_icall_System_Reflection_Module_Close): New icall.
13859
13860         * appdomain.c: Bump corlib version number.
13861
13862         * image.c (mono_image_addref): New public function.
13863
13864         * assembly.c: Call mono_image_addref.
13865
13866         * reflection.c (mono_module_get_object): Increase reference count of 
13867         the image.
13868
13869         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13870         Fixes #22532.
13871
13872         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
13873         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
13874         proper exceptions on DllImport problems.
13875
13876 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
13877
13878         * class.c, metadata.c: eliminate CSIZE macro.
13879
13880 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
13881
13882         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
13883         * object.h: Added async_callback field in MonoAsyncResult.
13884         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
13885         * verify.c: Added async_callback in MonoAsyncResult layout.
13886
13887 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
13888
13889         * reflection.c (mono_reflection_get_custom_attrs): Add support
13890         for Modules.
13891
13892 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13893
13894         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
13895         marshalling.
13896         (mono_marshal_method_from_wrapper): Add null pointer check.
13897
13898 2004-01-16  Martin Baulig  <martin@ximian.com>
13899
13900         * debug-mono-symfile.h: Set version number to 36 and reflect
13901         latest symbol writer changes.
13902
13903 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13904
13905         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
13906         multi-dimensional arrays.
13907         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
13908         (mono_class_from_mono_type): Use bounded_array_class_get.
13909         
13910         * class.c (mono_bounded_array_class_get): New function which takes
13911         a 'bounded' bool argument to distinguish vectors from one dimensional
13912         arrays.
13913
13914         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
13915         bounded_array_class_get if the array has bounds.
13916
13917         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13918         Search modules loaded using AssemblyBuilder:AddModule as well.
13919
13920 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13921
13922         * appdomain.c: increased corlib version.
13923         * filewatcher.c: removed g_print.
13924         * icall.c:
13925         (get_property_info): only allocate what is actually requested.
13926         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
13927
13928 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13929
13930         * Makefile.am: added filewatcher.[ch]
13931         * filewatcher.[ch]: FileSystemWatcher runtime support.
13932         * icall.c: added new FSW icalls.
13933
13934 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
13935
13936         * string-icalls.c: fix stringbuilder regression as suggested by
13937         Iain McCoy <iain@mccoy.id.au>.
13938
13939 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
13940
13941         * process.c (process_read_stringtable_block): Recognize '007f' as
13942         a language neutral stringtable block.
13943
13944 2004-01-12  Patrik Torstensson
13945
13946         * object.h (MonoStringBuilder) : Changed layout to support our
13947         new stringbuilder class.
13948         * marshal.c: Change marshalling to support the new layout of 
13949         string builder.
13950         * appdomain.c: increased version number because new layout of
13951         string builder.
13952
13953 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
13954
13955         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
13956         assembly name as an string instead of an AssemblyName, since it is
13957         easier to extract info from it.
13958
13959         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
13960         the culture subdirectories too. Fixes #52231.
13961
13962 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13963
13964         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
13965         It takes 2 new parameters with an optional name for the method to look
13966         for and case ignoring info.
13967
13968         * threadpool.c: removed unused variable.
13969
13970 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13971
13972         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
13973         It takes 2 new parameters with an optional name for the property to look
13974         for and case ignoring info.
13975         Fixes bug #52753.
13976
13977 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
13978
13979         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
13980         Fix #52451.
13981
13982 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13983
13984         * appdomain.c:
13985         * assembly.c: escape the uri before passing it to g_filename_from_uri.
13986         Fixes bug #52630.
13987
13988 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
13989
13990         * reflection.c: Add support for more than one unmanaged resource.
13991
13992         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
13993         in field->def_value, as done in all other cases.
13994
13995         * reflection.c (mono_reflection_get_custom_attrs): Add support for
13996         TypeBuilders.
13997
13998         * reflection.c (mono_reflection_create_runtime_class): Remove 
13999         errorneous assignment to klass->element_class, since it is already
14000         done in mono_reflection_setup_internal_class.
14001
14002 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14003
14004         * gc.c: added missing LeaveCriticalSection.
14005         * icall.c: indented a couple of lines.
14006         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
14007         if we call EndInvoke inside a callback. Fixes bug #52601.
14008
14009 2004-01-07  Martin Baulig  <martin@ximian.com>
14010
14011         * mono-debug-debugger.h
14012         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
14013
14014 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
14015
14016         * appdomain.c: Use messages in NotImplementedException.
14017
14018         * exception.c (mono_get_exception_not_implemented): Now this takes
14019         a message argument.
14020
14021         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
14022         exception instead of g_asserting an aborting when something is not
14023         implemented.
14024
14025         Add some inline docs.
14026
14027 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
14028
14029         * reflection.h: Update after changes to object layout.
14030
14031         * reflection.c: Implement saving of unmanaged aka win32 resources.
14032
14033         * appdomain.c: Bump version number.
14034
14035         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
14036         Handle missing domains gracefully.
14037
14038 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
14039
14040         * file-io.c : On Windows, there are much more invalid_path_chars.
14041
14042 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
14043
14044         * class.h, object.c: prepare for GetType () speedup.
14045
14046 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
14047
14048         * profiler.c: workaround for --profile null reference exception on
14049           cygwin. Patch by Patrik Torstensson.
14050
14051 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
14052
14053         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
14054         make work for unaligned access.
14055
14056 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
14057
14058         * class.c: small cleanup (class->fields [i] -> field).
14059         * image.c: check address of metadata is valid.
14060
14061 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
14062
14063         * assembly.h assembly.c (mono_assembly_loaded): New public function to
14064         search the list of loaded assemblies.
14065
14066         * reflection.c (mono_reflection_type_from_name): Use 
14067         mono_assembly_loaded instead of mono_image_loaded.
14068
14069         * reflection.c: Fix warnings.
14070
14071 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
14072
14073         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
14074         is dynamic. This is needed since an assembly can contain both dynamic and
14075         non-dynamic images.
14076
14077         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
14078         assembly->dynamic.
14079
14080         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
14081
14082         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
14083         to store modules loaded using AddModule.
14084
14085         * reflection.c (mono_image_fill_file_table): Generalize this so it works
14086         on Modules.
14087
14088         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
14089
14090         * reflection.c (mono_image_fill_export_table_from_module): New function to
14091         fill out the EXPORTEDTYPES table from a module.
14092
14093         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
14094         into a separate function. Also handle loaded non-dynamic modules.
14095
14096         * reflection.c (mono_image_basic_init): Fix memory allocation.
14097
14098         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14099
14100         * assembly.c (mono_assembly_load_references): Make this public.
14101
14102 2003-12-19  Martin Baulig  <martin@ximian.com>
14103
14104         * class.c (mono_class_initialize_generic): Made this static, take
14105         a `MonoGenericInst *' instead of a `MonoClass *'.
14106         (mono_class_from_generic): Call mono_class_initialize_generic()
14107         unless we're already initialized or being called from
14108         do_mono_metadata_parse_generic_inst().
14109
14110         * class.h (MonoGenericInst): Added `initialized' and
14111         `init_pending' flags.
14112
14113         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
14114         `mono_class_init (gklass)' or mono_class_initialize_generic()
14115         here; set `generic_inst->init_pending' while parsing the
14116         `type_argv'.
14117
14118 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
14119
14120         * locales.c: include string.h for memxxx prototypes
14121
14122 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
14123
14124         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
14125         constructor when accessing literal fields.
14126
14127 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
14128
14129         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14130
14131         * reflection.c (assembly_add_resource_manifest): New function to fill
14132         the MANIFESTRESOURCE table.
14133
14134         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
14135
14136         * reflection.h: Update to changes in class layout.
14137
14138         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
14139         Reenable call to mono_runtime_is_shutting_down ().
14140
14141         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
14142         determine if the runtime is shutting down.
14143
14144 2003-12-16  Jackson Harper <jackson@ximian.com>
14145
14146         * icall.c: comment out call to mono_runtime_is_shutting_down to
14147         fix build.
14148         
14149 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
14150
14151         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
14152         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
14153
14154 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
14155
14156         * reflection.c: move definition of swap_with_size
14157         to before its first call
14158
14159 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
14160
14161         * appdomain.c (mono_runtime_is_shutting_down): New public function.
14162
14163         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
14164         icall.
14165
14166         * object.c: Fix warnings.
14167
14168         * icall.c (ves_icall_Type_Get...): Only consider inherited static
14169         members if FlattenHierarchy is set.
14170
14171         * reflection.c (mono_image_add_decl_security): New function to emit
14172         declarative security.
14173
14174         * reflection.h reflection.c: Add support for declarative security.
14175
14176         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14177         
14178 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
14179
14180         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14181         
14182         * appdomain.c verify.c: Moved corlib version checking into its own
14183         function in appdomain.c since it needs to create vtables etc.
14184
14185 2003-12-13  Patrik Torstensson <p@rxc.se>
14186
14187         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
14188         instead of unwrapped server.
14189
14190 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
14191
14192         * verify.c (check_corlib): Fix field index.
14193
14194 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
14195
14196         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
14197         GetGacPath icall.
14198
14199 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
14200
14201         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
14202         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
14203         cope with sizeof(size_t) != sizeof(guint32).
14204
14205 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14206
14207         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
14208         in case of failure.
14209
14210 2003-12-10  Mark Crichton <crichton@gimp.org>
14211
14212         * icall.c: removed the GetNonZeroBytes.  We now handle this case
14213         in managed code.
14214
14215         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
14216
14217 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
14218
14219         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
14220         marked as deleted.
14221
14222 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
14223
14224         * verify.c (check_corlib): Handle the case when the version field is 
14225         initialized by a static constructor.
14226
14227 2003-12-08  Patrik Torstensson  <p@rxc.se>
14228
14229     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
14230
14231 2003-12-08  Martin Baulig  <martin@ximian.com>
14232
14233         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
14234         a MonoReflectionGenericParameter, also take the parameter index
14235         and name as arguments.
14236         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
14237         (ves_icall_MonoGenericParam_initialize): New interncall.
14238         (ves_icall_Type_make_byref_type): New interncall.
14239
14240         * reflection.h (MonoReflectionGenericParam): Derive from
14241         MonoReflectionType, not just from MonoObject.  Added `refobj' and
14242         `index' fields.
14243
14244         * reflection.c (mono_reflection_define_generic_parameter): Create
14245         and return a new MonoReflectionGenericParam; don't initialize the
14246         constraints here.
14247         (mono_reflection_initialize_generic_parameter): New public method;
14248         initializes the constraints and creates the `param->pklass'.
14249
14250 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
14251
14252         * reflection.h reflection.c: Use the new fields 'num_types', 
14253         'num_fields' and 'num_methods' to track the number of types etc.
14254
14255         * verify.c (check_corlib): Check corlib version number.
14256
14257 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
14258
14259         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
14260         function works on all methods.
14261
14262 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
14263
14264         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
14265         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
14266         the custom_type_info flag of the transparent proxy.
14267         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
14268         objects that supports IRemotingTypeInfo.
14269         * object.h: Added custom_type_info field in transparent proxy.
14270
14271 2003-12-06  Martin Baulig  <martin@ximian.com>
14272
14273         * class.c (mono_class_create_from_generic): Removed.
14274         (mono_class_from_generic): Check `ginst->klass' before doing
14275         anything else.  This is important to fully support "recursive"
14276         generic types.
14277
14278         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
14279         empty `generic_inst->klass' before doing anything else.
14280
14281 2003-12-06  Dick Porter  <dick@ximian.com>
14282
14283         * verify.c: 
14284         * object.h:
14285         * icall.c:
14286         * locales.c: Use C structs to access class fields.  Don't do a
14287         conversion between MonoString and UChar because both are
14288         platform-endian UTF-16.  Compare now takes startindex and count
14289         parameters.  Add a char overload for IndexOf.  Speed up the
14290         invariant string IndexOf.
14291
14292 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
14293
14294         * Makefile.am (monosn_LDADD): Fix parallel build.
14295
14296 2003-12-04  Martin Baulig  <martin@ximian.com>
14297
14298         * icall.c
14299         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14300         (ves_icall_Type_make_array_type): New interncall.       
14301
14302 2003-12-04  Martin Baulig  <martin@ximian.com>
14303
14304         * locales.c: also change it in the !HAVE_ICU case.
14305
14306 2003-12-04  Dick Porter  <dick@ximian.com>
14307
14308         * icall.c:
14309         * locales.c: construct_compareinfo is now in CompareInfo, not
14310         CultureInfo.
14311
14312 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
14313
14314         * image.c (mono_image_load_file_for_image): Cache loaded images in the
14315         image->files array.
14316
14317         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
14318         table as well.
14319
14320         * assembly.c (mono_assembly_load_references): Only load references
14321         once.
14322
14323         * class.c (mono_class_from_name): Avoid linear search of the 
14324         EXPORTEDTYPE table.
14325
14326         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
14327
14328 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
14329
14330         * image.h (MonoImage): Add 'field_cache' field.
14331
14332         * loader.c (mono_field_from_token): Cache field lookups.
14333         
14334         * reflection.c (mono_module_get_object): Fix name property.
14335
14336         * icall.c (ves_icall_get_enum_info): Update after changes to 
14337         mono_metadata_get_constant_index ().
14338
14339         * icall.c: Get rid of get_type_info icall, use a separate icall for
14340         each type property to avoid needless memory allocations. Fixes #51514.
14341
14342         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
14343         to avoid needless binary searches.
14344
14345         * class.c (class_compute_field_layout): Move the initialization of
14346         field->def_value to mono_class_vtable ().
14347
14348         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
14349         non-corlib types.
14350
14351         * object.c (mono_object_allocate): Make it inline.
14352
14353         * object.c (mono_object_allocate_spec): Make it inline.
14354         
14355 2003-12-02  Dick Porter  <dick@ximian.com>
14356
14357         * locales.c (create_NumberFormat): NumberFormatInfo construction.
14358         Patch by Mohammad DAMT (mdamt@cdl2000.com).
14359
14360 2003-12-01  Dick Porter  <dick@ximian.com>
14361
14362         * threads.c: Fix signature and call in CreateMutex and
14363         CreateEvent.
14364
14365 2003-12-01  Dick Porter  <dick@ximian.com>
14366
14367         * icall.c: 
14368         * locales.c: Implement string compares and searching
14369
14370         * object.h: Add extra Thread field
14371
14372 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
14373
14374         * reflection.c (fixup_method): Add support for MonoCMethod.
14375
14376 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
14377
14378         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
14379
14380         * reflection.c (assembly_name_to_aname): Allow extra characters in
14381         assembly names. Fixes #51468.
14382
14383 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
14384
14385         * exception.c (mono_exception_from_name_domain): New helper function.
14386
14387         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
14388         exception object in the correct domain.
14389
14390         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
14391         formatting + make a copy a the input data.
14392
14393         * loader.c (mono_get_method_from_token): Methods which contain
14394         native code do not have entries in the ImplMap.
14395
14396         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
14397         Thanks to Gonzalo for spotting this.
14398         
14399         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
14400         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
14401
14402         * assembly.h (mono_assembly_load_from): Split the second part of 
14403         assembly loading into a new public function.
14404
14405         * exception.h (mono_get_exception_bad_image_format): New function.
14406
14407 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
14408
14409         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14410         Enumerate all modules inside a dynamic assembly. Fixes #51293.
14411         
14412         * icall.c: Add new icall for creating dynamic methods.
14413
14414         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
14415
14416         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
14417
14418         * reflection.c (mono_reflection_create_dynamic_method): New icall to
14419         create a dynamic method.
14420
14421         * reflection.c (resolve_object): New helper function.
14422
14423         * reflection.c: Generalize ReflectionMethodBuilder and the functions
14424         which manipulate it so they can also work on dynamic methods.
14425
14426         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
14427         creating the MonoReflectionMethodAux structure if it is not needed.
14428         
14429         * reflection.h verify.c: Update after changes to object layout.
14430
14431         * reflection.c (method_builder_encode_signature): Fix compilation on
14432         gcc 2.95.x.
14433
14434 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
14435
14436         * appdomain.h: Added support for context static fields. Added static_data
14437           field to MonoAppContext and renamed thread_static_fields to a more
14438           generic special_static_fields in MonoAppDomain, since it can now contain
14439           context static fields.
14440         * domain.c: Updated hashtable name.
14441         * object.c: Replaced field_is_thread_static() for a more generic
14442           field_is_special_static() which also checks for context static attribute.
14443           In mono_class_vtable(), added support for static context fields.
14444         * threads.c: Changed methods that manage thread static fields to more
14445           generic methods so they can be reused both for thread and context static
14446           data.
14447         * threads.h: Declared some new methods.
14448
14449 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
14450
14451         * reflection.h: Update after changes to the managed types.
14452
14453         * reflection.c (encode_custom_modifiers): New helper function.
14454
14455         * reflection.c (method_encode_signature): Emit custom modifiers.
14456
14457         * reflection.c (field_encode_signature): Emit custom modifiers.
14458
14459 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
14460
14461         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
14462
14463         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
14464         implementation.
14465
14466         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
14467         icall.
14468
14469         * object.c (mono_field_get_value_object): New function.
14470
14471         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
14472         specific.
14473
14474 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
14475
14476         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
14477         return a preallocated out-of-memory exception instance.
14478
14479         * object.c (out_of_memory): Use the new function.
14480
14481         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
14482         flag is before the custom modifiers. Fixes #49802.
14483
14484 2003-11-16  Martin Baulig  <martin@ximian.com>
14485
14486         * class.c (mono_class_is_open_constructed_type): Implemented the
14487         MONO_TYPE_GENERICINST case.
14488
14489 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
14490
14491         * assembly.c (mono_assembly_fill_assembly_name): New function to
14492         fill out the MonoAssemblyName structure.
14493         (mono_assembly_open): Use the new function.
14494
14495         * icall.c (fill_reflection_assembly_name): New helper function.
14496
14497         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
14498         new function.
14499
14500         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
14501
14502 2003-11-15  Martin Baulig  <martin@ximian.com>
14503
14504         * class.c (mono_class_is_open_constructed_type): New public
14505         function; checks whether a type is an open constructed type,
14506         ie. whether it still contains type parameters.
14507         (mono_class_inflate_generic_type): If we're a type parameter and
14508         the inflated type is also a MONO_TYPE_(M)VAR, return the original
14509         type.
14510
14511         * class.h (MonoGenericInst): Added `guint32 is_open'.
14512
14513         * loader.c (method_from_methodspec): Check whether we're an open
14514         or closed constructed type and set `ginst->is_open'.
14515
14516         * reflection.c (mono_reflection_bind_generic_parameters): Check
14517         whether we're an open or closed constructed type and set
14518         `ginst->is_open'.
14519         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
14520         from open constructed types.
14521
14522 2003-11-15  Martin Baulig  <martin@ximian.com>
14523
14524         * reflection.c (mono_reflection_bind_generic_parameters): If we're
14525         a generic instance (instead of a generic type declaration) with
14526         unbound generic parameters, bind them to our actual types.
14527
14528 2003-11-14  Martin Baulig  <martin@ximian.com>
14529
14530         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
14531
14532         * reflection.c (mono_reflection_bind_generic_parameters): If we're
14533         an interface type, populate `res->interfaces' with instantiated
14534         versions of all the interfaces we inherit.
14535
14536 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
14537
14538         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
14539         when MONO_PATH is set but doesn't contain the install dir.
14540
14541 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14542
14543         * icall.c:
14544         (ves_icall_Type_GetInterfaces): don't return an interface twice when
14545         it's also implemented in base classes. Fixes bug #50927.
14546
14547 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
14548
14549         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
14550         if this method is called from a finalizer. Fixes #50913.
14551
14552 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
14553
14554         * threads.c: Implement VolatileRead/VolatileWrite
14555
14556         * icall.c: Add new icalls for VolatileRead/VolatileWrite
14557
14558 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14559
14560         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
14561         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
14562         2.95.3.
14563
14564         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
14565         from Peter Ross (pro@missioncriticalit.com).
14566         
14567 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
14568
14569         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
14570
14571 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14572
14573         * assembly.c (mono_assembly_load_references): Disable check because it
14574         triggers on older corlibs which lots of people have.
14575
14576 2003-11-12  Jackson Harper  <jackson@ximian.com>
14577
14578         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
14579         load corlib.dll if mscorlib.dll is not found.
14580         * assembly.h: Remove corlib name define.
14581         * class.c:
14582         * domain.c:
14583         * image.c: Change corlib name to mscorlib.
14584         
14585 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14586
14587         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
14588
14589 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
14590
14591         * appdomain.h: Added loader_optimization here to sync with the C#
14592         code, and add disallow_binding_redirects field.
14593
14594 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
14595
14596         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
14597
14598         * reflection.c (mono_image_build_metadata): Fix crash on modules
14599         with no types.
14600
14601         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
14602
14603         * icall.c (ves_icall_get_method_info): Return callingConvention as
14604         well.
14605
14606         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
14607         namespaces from the EXPORTEDTYPE table as well.
14608
14609         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
14610         from all modules inside the assembly.
14611         
14612 2003-11-11  Martin Baulig  <martin@ximian.com>
14613
14614         * reflection.c (mono_reflection_bind_generic_parameters): Make
14615         this work for interfaces.
14616
14617 2003-11-11  Martin Baulig  <martin@ximian.com>
14618
14619         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
14620
14621 2003-11-11  Martin Baulig  <martin@ximian.com>
14622
14623         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
14624         "MonoInflatedMethod" and "MonoInflatedCtor".
14625
14626 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
14627
14628         * reflection.c (resolution_scope_from_image): Use the assembly table
14629         from the manifest module, since other modules don't have it.
14630
14631         * debug-helpers.c (mono_type_full_name): New helper function.
14632
14633         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
14634
14635         * image.c (mono_image_load_file_for_image): New public function which
14636         is a replacement for the load_file_for_image in class.c.
14637
14638         * assembly.c (mono_assembly_load_module): A wrapper for the function
14639         above which does assembly association and reference loading too.
14640
14641         * class.c (mono_class_from_name): Call mono_assembly_load_module.
14642
14643 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14644
14645         * appdomain.c: not all of the attributes for the full assembly name
14646         are required and the order doesn't matter. Fixes bug #50787.
14647
14648 2003-11-10  Dick Porter  <dick@ximian.com>
14649
14650         * locales.c: Use platform-endian UTF16
14651
14652 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
14653
14654         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
14655         
14656 2003-11-10  Martin Baulig  <martin@ximian.com>
14657
14658         * metadata.c
14659         (mono_metadata_load_generic_params): Make this actually work.
14660
14661         * reflection.c (mono_reflection_bind_generic_parameters): If our
14662         parent is a generic instance, pass all the `types' to it, no
14663         matter whether it has the same number of type parameters or not.
14664
14665 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
14666
14667         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
14668
14669         * assembly.c (mono_assembly_load_references): Move the image<->assembly
14670         assignment code to this function so it gets called recursively for all
14671         modules.
14672
14673         * image.c (load_modules): Remove the assembly assignment since it is
14674         now done by mono_assembly_load_references.
14675         
14676         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14677         Add 'module' argument.
14678         (mono_module_get_types): New helper function.
14679         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
14680
14681 2003-11-08  Martin Baulig  <martin@ximian.com>
14682
14683         * class.c (mono_class_inflate_generic_method): Interface method
14684         don't have a header.
14685
14686         * reflection.c (mono_image_get_methodspec_token): Take an
14687         additional `MonoGenericInst *' argument instead of reading it from
14688         the header; this is necessary to support interfaces.
14689         (mono_image_create_token): Pass the `MonoGenericInst *' from the
14690         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
14691         (inflated_method_get_object): Take an additional `MonoGenericInst *'
14692         argument.
14693
14694         * reflection.h (MonoReflectionInflatedMethod): Added
14695         `MonoGenericInst *ginst'.
14696
14697 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
14698
14699         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
14700
14701 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
14702
14703         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
14704
14705 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
14706
14707         * reflection.c 
14708         (reflection_methodbuilder_from_method_builder):
14709         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
14710         initialize a ReflectionMethodBuilder structure.
14711         (mono_image_get_methodbuilder_token):
14712         (mono_image_get_ctorbuilder_token): New functions to emit memberref
14713         tokens which point to types in another module inside the same assembly.
14714
14715         * reflection.c: Use the new helper functions.
14716         
14717         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
14718
14719         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
14720         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
14721
14722         * reflection.c (resolution_scope_from_image): Emit a moduleref if
14723         neccesary.
14724
14725         * reflection.c (mono_image_build_metadata): Emit metadata only for the
14726         current module. Emit the manifest only for the main module.
14727
14728         * reflection.c (mono_image_create_token): Add assertion when a 
14729         memberref needs to be created.
14730
14731         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
14732
14733         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
14734         larger buffer for the custom attribute blob. Fixes #50637.
14735         
14736 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14737
14738         * threadpool.c: notify listener on async processing handles after
14739         invoking the async callback. Thanks to Zoltan.
14740
14741 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14742
14743         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
14744         avoid code duplication.
14745
14746         * reflection.h (MonoDynamicImage): New type which is currently unused,
14747         but will be used through the ref.emit code in place of 
14748         MonoDynamicAssembly.
14749
14750         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
14751         object layout.
14752
14753         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
14754         a MonoDynamicImage instead of just a MonoImage.
14755         
14756         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
14757         icalls to ModuleBuilder but keep their semantics, so they will work
14758         with moduleb->assemblyb. This will change later.
14759         
14760 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14761
14762         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
14763         object layout.
14764
14765         * reflection.c (mono_image_build_metadata): Avoid creation of a default
14766         main module, since it is now done by the managed code.
14767
14768 2003-11-03  Martin Baulig  <martin@ximian.com>
14769
14770         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
14771         `ginst->klass' here.
14772         (method_encode_methodspec): Don't use the `ginst->generic_method's
14773         klass if it's a generic instance, use `ginst->klass' in this case.
14774
14775 2003-11-03  Martin Baulig  <martin@ximian.com>
14776
14777         * reflection.c (mono_image_get_generic_method_param_info):
14778         Removed, use mono_image_get_generic_param_info() instead.
14779         (mono_image_get_type_info): Write the GenericParam table before
14780         the Method table.  This is neccessary because in the GenericParam
14781         table, type parameters of the class (ie. '!0' etc.) must come
14782         before the ones from its generic methods (ie. '!!0' etc).
14783
14784 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14785
14786         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
14787
14788 2003-11-02  Martin Baulig  <martin@ximian.com>
14789
14790         * reflection.c (create_generic_typespec): Take a
14791         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
14792         the generic parameters from it.
14793
14794 2003-11-02  Martin Baulig  <martin@ximian.com>
14795
14796         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
14797         instead of a `MonoClassField *' since we just need the type.
14798         (create_generic_typespec): New static function.  Creates a
14799         TypeSpec token for a generic type declaration.
14800         (mono_image_get_generic_field_token): New static function.
14801         (mono_image_create_token): If we're a FieldBuilder in a generic
14802         type declaration, call mono_image_get_generic_field_token() to get
14803         the token.
14804
14805 2003-11-02  Martin Baulig  <martin@ximian.com>
14806
14807         * reflection.h
14808         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
14809         `MonoReflectionGenericInst *declaring_type' and
14810         `MonoReflectionGenericInst *reflected_type' fields.
14811
14812         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
14813         `MonoReflectionGenericInst *declaring_type' and a
14814         `MonoReflectionGenericInst *reflected_type' argument instead of a
14815         single `MonoReflectionGenericInst *type' one.  Set
14816         `res->declaring_type' and `res->reflected_type' from them.
14817         (mono_reflection_inflate_field): Likewise.      
14818
14819 2003-11-02  Martin Baulig  <martin@ximian.com>
14820
14821         * class.c (mono_class_setup_vtable): Don't store generic methods
14822         in the vtable.  
14823
14824 2003-11-02  Martin Baulig  <martin@ximian.com>
14825
14826         * reflection.h (MonoReflectionGenericInst): Added
14827         `MonoReflectionType *declaring_type'.
14828
14829         * reflection.c (mono_reflection_bind_generic_parameters): Use
14830         `if (tb->parent)' instead of `klass->parent'.
14831
14832 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
14833
14834         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
14835         with an empty ASSEMBLY table.
14836
14837         * reflection.c (mono_image_build_metadata): Avoid using the same loop
14838         variable in the inner and outer loops.
14839
14840 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
14841
14842         * metadata.h (mono_metadata_make_token): Put parentheses around macro
14843         argument.
14844
14845         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
14846         
14847         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
14848         icalls. Instead, do everything in managed code. This is needed since
14849         it is hard to restore the original domain etc. in unmanaged code in the
14850         presence of undeniable exceptions.
14851
14852         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
14853         New icalls to push and pop appdomain refs.
14854
14855 2003-10-31  Martin Baulig  <martin@ximian.com>
14856
14857         * class.c (inflate_generic_type): Renamed to
14858         mono_class_inflate_generic_type() and made it public.
14859
14860         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
14861         New interncall.
14862
14863         * loader.c (mono_field_from_memberref): Also set the retklass for
14864         typespecs.
14865
14866         * fielder.c (mono_image_get_inflated_field_token): New static
14867         method; creates a metadata token for an inflated field.
14868         (mono_image_create_token, fixup_method): Added support for
14869         "MonoInflatedField".
14870         (fieldbuilder_to_mono_class_field): New static function.
14871         (mono_reflection_inflate_field): New public function.
14872
14873         * reflection.h
14874         (MonoReflectionGenericInst): Added `MonoArray *fields'.
14875         (MonoReflectionInflatedField): New typedef.     
14876
14877 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
14878
14879         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
14880         for Solaris and other platforms without s6_addr16
14881
14882 2003-10-30  Martin Baulig  <martin@ximian.com>
14883
14884         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
14885         argument instead of two.
14886         (mono_class_inflate_generic_signature): Likewise.
14887         (inflate_generic_header): Likewise.
14888         (mono_class_inflate_generic_method): Likewise.  In addition, if
14889         `ginst->klass' is set, it becomes the new `method->klass'.
14890
14891         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
14892         field.
14893
14894         * reflection.c (encode_generic_method_sig): Write a 0xa as the
14895         first byte. [FIXME]
14896         (method_encode_methodspec): If we have generic parameters, create
14897         a MethodSpec instead of a MethodRef.
14898         (fixup_method): Added support for "MonoInflatedMethod" and
14899         "MonoInflatedCtor".
14900         (mono_image_create_token): Added support for "MonoInflatedMethod"
14901         and "MonoInflatedCtor".
14902         (inflated_method_get_object): New static function; returns a
14903         managed "System.Reflection.MonoInflatedMethod" object.
14904         (mono_reflection_bind_generic_method_parameters): Return a
14905         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
14906         (mono_reflection_inflate_method_or_ctor): Likewise.
14907         (mono_image_get_generic_method_param_info): Initialize unused
14908         fields to zero.
14909         (mono_image_get_generic_param_info): Likewise.
14910
14911         * reflection.h (MonoReflectionInflatedMethod): New public
14912         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
14913         "S.R.MonoInflatedCtor" classes.
14914
14915         * loader.c (method_from_memberref): If we're a TypeSpec and it
14916         resolves to a generic instance, inflate the method.
14917
14918 2003-10-28  Dick Porter  <dick@ximian.com>
14919
14920         * object.c (mono_runtime_run_main): Convert command-line arguments
14921         into utf8, falling back to the user's locale encoding to do so.
14922
14923 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
14924
14925         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
14926         at this time.
14927
14928         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
14929
14930         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
14931         up icalls at method definition time. Partially fixes #33569.
14932
14933 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
14934
14935         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
14936         marshalling of arrays. Fixes #50116.
14937
14938         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
14939
14940         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
14941         points to a vtable in the dying appdomain.
14942
14943         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
14944         listeners into unmanaged code inside the lock.
14945
14946         * object.c (mono_class_vtable): Turn off typed allocation in non-root
14947         domains and add some comments.
14948
14949 2003-10-25  Martin Baulig  <martin@ximian.com>
14950
14951         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
14952
14953         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
14954
14955         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
14956         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
14957         currently parsing.  Create the generic class and store it in
14958         `generic_inst->klass' before parsing the type arguments.  This is
14959         required to support "recursive" definitions; see mcs/tests/gen-23.cs
14960         for an example.
14961         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
14962         to support recursive typespec entries.
14963
14964         * class.c (mono_class_setup_parent): If our parent is a generic
14965         instance, we may get called before it has its name set.
14966         (mono_class_from_generic): Splitted into
14967         mono_class_create_from_generic() and mono_class_initialize_generic().
14968
14969 2003-10-25  Martin Baulig  <martin@ximian.com>
14970
14971         * icall.c (ves_icall_Type_BindGenericParameters): Return a
14972         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
14973         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
14974         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
14975
14976         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
14977         (create_typespec): Likewise.
14978         (mono_reflection_bind_generic_parameters): Return a
14979         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
14980         (mono_reflection_inflate_method_or_ctor): New public function.
14981
14982         * reflection.h (MonoReflectionGenericInst): New typedef.        
14983
14984 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
14985
14986         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
14987         inside the domain lock. Fixes #49993.
14988         
14989         * object.c (mono_class_vtable): When typed allocation is used, 
14990         allocate vtables in the GC heap instead of in the mempool, since the
14991         vtables contain GC descriptors which are used by the collector even
14992         after the domain owning the mempool is unloaded.
14993
14994         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
14995
14996         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
14997         reflect what it does. Also invalidate mempools instead of freeing
14998         them if a define is set.
14999
15000         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
15001         of the appdomain.
15002         
15003         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
15004         hold the finalizable objects in this domain.
15005
15006         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
15007         appdomain.
15008
15009         * appdomain.c (mono_domain_set): New function to set the current
15010         appdomain, but only if it is not being unloaded.
15011
15012         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
15013         appdomain which is being unloaded.
15014         
15015         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
15016         unloading of the root appdomain.
15017
15018         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
15019         icall to execute a method in another appdomain. Intended as a 
15020         replacement for InternalSetDomain, which can confuse the code 
15021         generation in the JIT.
15022
15023         * appdomain.c (mono_domain_is_unloading): New function to determine
15024         whenever an appdomain is unloading.
15025
15026         * appdomain.c (mono_domain_unload): New function to correctly unload
15027         an appdomain.
15028
15029         * assembly.c (mono_assembly_load_references): Check that an assembly
15030         does not references itself.
15031
15032         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
15033         domain manually, it asks the finalizer thread to do it, then waits for
15034         the result. Also added a timeout.
15035
15036         * icall.c: Register the new icalls.
15037
15038         * threads.h threads.c: Export the mono_gc_stop_world and 
15039         mono_gc_start_world functions.
15040         
15041         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
15042         function to fill out the mempool with 0x2a.
15043
15044 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
15045
15046         * reflection.h (MonoReflectionMethodAux): New structure to store
15047         information which is rarely used, thus is not in the MonoMethod
15048         structure.
15049
15050         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
15051         store the aux info.
15052
15053         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
15054         and marshalling info into the aux structure.
15055
15056         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
15057         from the aux structure.
15058
15059         * loader.c (mono_method_get_param_names): Retrieve the param names from
15060         the aux structure.
15061         
15062 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
15063
15064         * exception.h exception.c: Add AppDomainUnloadedException && fix 
15065         warning.
15066
15067 2003-10-21  Dick Porter  <dick@ximian.com>
15068
15069         * socket-io.c
15070         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
15071         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
15072
15073 2003-10-21  Martin Baulig  <martin@ximian.com>
15074
15075         * reflection.c (mono_reflection_bind_generic_parameters):
15076         `klass->parent' is NULL for interfaces.
15077
15078 2003-10-21  Martin Baulig  <martin@ximian.com>
15079
15080         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15081
15082 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
15083
15084         * exception.c (mono_exception_from_name_msg): New helper function for
15085         creating exceptions and initializing their message field.
15086
15087         * exception.c: Simplify functions using the new helper.
15088
15089         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
15090         New function.
15091
15092         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
15093         mono_raise_exception, since otherwise gcc doesn't generate the function
15094         epilog for raise_exception, confusing the stack unwinding in the JIT.
15095         Fixes #45043.
15096
15097         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
15098         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
15099         Fixes #49499.
15100
15101 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15102
15103         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
15104         utf8.
15105
15106 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
15107
15108         * icall.c: Removed GetUninitializedObject method because
15109           AllocateUninitializedClassInstance does the same.
15110
15111 2003-10-18  Martin Baulig  <martin@ximian.com>
15112
15113         * class.c (inflate_generic_signature): Renamed to
15114         mono_class_inflate_generic_signature() and made it public.
15115         (my_mono_class_from_generic_parameter): New static function; if we
15116         don't already have the generic parameter's MonoClass, create a
15117         very simple one which is just used internally in the runtime and
15118         not passed back to managed code.
15119
15120         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
15121
15122         * metadata.h (MonoMethodSignature): Moved the
15123         `MonoGenericParam *gen_params' to the MonoMethodHeader.
15124         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
15125
15126         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
15127         ves_icall_MonoMethod_GetGenericArguments(); this is now an
15128         interncall on the MonoMethod class, not on MethodInfo.
15129         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
15130         calling mono_reflection_bind_generic_method_parameters() directly.
15131
15132         * loader.c (mono_method_get_signature): If this is a MethodSpec;
15133         return the already computed `method->signature'.
15134         (method_from_methodspec): New static function to load a method
15135         from a MethodSpec entry.
15136         (mono_get_method_from_token): Call the new method_from_methodspec()
15137         for MethodSpec tokens.  
15138         (mono_get_method_from_token): If we're a generic method, load the
15139         type parameters.
15140
15141         * reflection.c (mono_image_get_memberref_token): Allow
15142         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
15143         table.
15144         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
15145         (mono_image_create_token): First check whether it's a generic
15146         method (so we'd need to create a MethodSpec), then do the other
15147         two alternatives.
15148         (mono_reflection_bind_generic_method_parameters): Return a
15149         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
15150         called directly from the interncall.
15151
15152 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
15153
15154         * reflection.c (load_public_key): Move loading of the public key
15155         into managed code.
15156
15157         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
15158
15159         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
15160         fields.
15161
15162         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
15163         culture, hash_alg and public_key. Fixes #49555.
15164
15165 2003-10-17  Martin Baulig  <martin@ximian.com>
15166
15167         * class.h (MonoGenericInst): Moved this declaration here and added
15168         `MonoMethod *generic_method'.
15169
15170         * icall.c
15171         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
15172         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
15173
15174         * metadata.c (mono_metadata_type_equal): Two types of
15175         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
15176         index; ie. don't compare the address of the `MonoGenericParam'
15177         structure.
15178         (mono_metadata_load_generic_params): Removed the `MonoMethod
15179         *method' argument.
15180
15181         * metadata.h (MonoGenericInst): Moved declaration to class.h.
15182         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
15183
15184         * reflection.c (method_encode_signature): Encode the number of
15185         generic parameters.
15186         (encode_generic_method_sig): New static function.
15187         (method_encode_methodspec): New static function; creates an entry
15188         in the MethodSpec table for a generic method.
15189         (mono_image_get_methodspec_token): New static function.
15190         (mono_image_create_token): Call mono_image_get_methodspec_token()
15191         for generic methods.
15192         (mono_reflection_bind_generic_method_parameters): New public
15193         function.  Instantiates a generic method.
15194
15195 2003-10-16  Martin Baulig  <martin@ximian.com>
15196
15197         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
15198         *gen_params' here from MonoMethodHeader.
15199
15200         * metadata.c (mono_metadata_parse_method_signature): If we have
15201         generic parameters, initialize `method->gen_params' and then set
15202         the correct `type->data.generic_param' in all the parameters.
15203
15204 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
15205
15206         * threads.c (mono_threads_get_default_stacksize): New function to 
15207         return the default stacksize.
15208
15209         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
15210         termination of the finalizer thread, since the previous method had
15211         race conditions. Fixes #49628.
15212
15213         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
15214         as for the other managed threads.
15215
15216 2003-10-16  Martin Baulig  <martin@ximian.com>
15217
15218         * class.c (inflate_generic_signature): Copy `generic_param_count'
15219         and `gen_params'.
15220
15221         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
15222         New interncall.
15223
15224         * metadata.c (mono_metadata_parse_method_signature): Actually set
15225         the `method->generic_param_count' here.
15226         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
15227
15228 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
15229
15230         * object.h: Add a new field to TypedRef to simplify the implementation
15231         of the REFANY opcodes in the JIT.
15232
15233         * icall.c: Make use of the new field.
15234
15235         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
15236         dynamically.
15237
15238 2003-10-15  Martin Baulig  <martin@ximian.com>
15239
15240         * class.c (mono_class_from_gen_param): Renamed to
15241         mono_class_from_generic_parameter() and moved most of the
15242         functionality from mono_reflection_define_generic_parameter()
15243         here; ie. we create a "real" class here.
15244         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
15245         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
15246         previously been called.
15247
15248         * class.h (MonoGenericParam): Moved the declaration of this struct
15249         here from metadata.h and added `MonoMethod *method'.
15250
15251         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
15252         interncall.
15253
15254         * loader.c (mono_get_method_from_token): If we have any generic
15255         parameters, call mono_metadata_load_generic_params() to read them
15256         from the MONO_TABLE_GENERICPAR.
15257
15258         * metadata.c (mono_metadata_load_generic_params): Added
15259         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
15260
15261         * metadata.h (MonoMethodSignature): Replaced
15262         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
15263         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
15264
15265         * reflection.c (mono_reflection_define_generic_parameter): Moved
15266         most of the functionality into the new
15267         mono_class_from_generic_parameter(); set the `method' field if
15268         we're a method parameter.       
15269
15270 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
15271
15272         * marshal.c (emit_struct_conv): if native size is 0
15273         emit no code.
15274
15275 2003-10-14  Martin Baulig  <martin@ximian.com>
15276
15277         * icall.c: The generics API has changed in the spec since it was
15278         added to System.Type; these modifications make it match the spec
15279         again.
15280         (ves_icall_Type_GetGenericParameters): Renamed to
15281         `ves_icall_Type_GetGenericArguments'.
15282         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
15283         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
15284         `ves_icall_MonoType_get_HasGenericArguments'.
15285         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
15286         `ves_icall_MonoType_get_IsGenericParameter'.
15287         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
15288         this is no interncall anymore.
15289         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
15290         `ves_icall_TypeBuilder_get_IsGenericParameter'.
15291
15292 2003-10-14  Martin Baulig  <martin@ximian.com>
15293
15294         * reflection.c (mono_reflection_bind_generic_parameters): Also
15295         inflate generic methods if we're reading the class from IL.
15296
15297 2003-10-13  Martin Baulig  <martin@ximian.com>
15298
15299         * reflection.c (mono_reflection_define_generic_parameter): This
15300         method isn't called directly from the icall anymore; take a
15301         `MonoReflectionAssemblyBuilder *' so we can use this for type and
15302         method generic parameters.
15303         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
15304         (method_builder_encode_signature): Encode generic parameters.
15305         (mono_image_get_method_info): Write generic params to the
15306         MONO_TABLE_GENERICPARAM table.
15307
15308         * reflection.h (MonoReflectionMethodBuilder): Added
15309         `MonoArray *generic_params'.
15310
15311         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
15312
15313         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
15314         wrapper for mono_reflection_define_generic_parameter().
15315         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
15316
15317 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
15318
15319         * marshal.h: Add missing function to fix build.
15320
15321         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
15322         the SetLastError pinvoke attribute.
15323
15324         * marshal.c (mono_marshal_set_last_error): New helper function called
15325         by the generated code.
15326         
15327         * marshal.c (mono_mb_emit_branch): New helper function.
15328
15329         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
15330
15331         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15332         classes as parameters and return values of delegates. Fixes #29256. 
15333
15334 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
15335
15336         * locales.c: use gint32 in non HAVE_ICU case
15337
15338 2003-10-11  Martin Baulig  <martin@ximian.com>
15339
15340         * mono-debug.c (mono_debug_add_method): Added a workaround for
15341         bug #48591.
15342
15343 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
15344
15345         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
15346         delegates passed to native code must use the STDCALL calling 
15347         convention. Fixes #35987.
15348
15349 2003-10-10  Martin Baulig  <martin@ximian.com>
15350
15351         * class.c (inflate_generic_type): If we're inflating for a generic
15352         type instance (and not for a generic method), return
15353         MONO_TYPE_MVAR unchanged.
15354
15355 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15356
15357         * string-icalls.c: Join ignores null strings in the source array.
15358         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
15359         * threads.c: GetAvailableTheads is slightly more accurate.
15360
15361 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
15362
15363         * threads.h threads.c : add mono_threads_set_default_stacksize
15364         and pass default to CreateThread calls.
15365
15366 2003-10-09  Dick Porter  <dick@ximian.com>
15367
15368         * icall.c:
15369         * locales.h:
15370         * locales.c: Internal calls for constructing CultureInfo and
15371         related objects from libicu (if its available.)
15372
15373 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
15374
15375         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
15376
15377 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15378
15379         * threadpool.c: added an argument to async_invoke_thread that is the
15380         item to process, pass the MonoAsyncResult to the thread start function
15381         when creating a new thread. This way we don't need to acquire any lock
15382         when we're creating a new thread. Readded a semaphore for faster
15383         response times (instead of that Sleep i added).
15384
15385 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
15386
15387         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
15388         get daylight change dates better on Windows, fix handling
15389         of platforms without tm_gmtoff.
15390
15391 2003-10-06  Martin Baulig  <martin@ximian.com>
15392
15393         * class.c (inflate_generic_method): Renamed to
15394         mono_class_inflate_generic_method() and made public.
15395         (mono_class_init): Don't inflate the generic methods here.
15396         (mono_class_from_generic): Added `gboolean inflate_methods'
15397         argument.  Inflate the methods here.
15398
15399         * loader.c (mono_method_get_param_names): Ignore instances of
15400         generic types for the moment.
15401
15402         * reflection.c (fixup_method): Added support for inflated methods.
15403         (mono_image_create_token): Use mono_image_get_methodref_token()
15404         for inflated methods.
15405         (mono_custom_attrs_from_param): Ignore instances of generic types
15406         for the moment.
15407         (mono_reflection_bind_generic_parameters): New public function.
15408         Moved all the functionality from
15409         ves_icall_Type_BindGenericParameters() here and added support for
15410         dynamic types.
15411         (mono_reflection_define_generic_parameter): Initialize
15412         `klass->methods' here.
15413
15414         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
15415         functionality into mono_reflection_define_generic_parameter().
15416         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
15417         TypeBuilder, return that TypeBuilder.
15418
15419 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15420
15421         * appdomain.c: removed mono_delegate_semaphore.
15422
15423         * threadpool.c:
15424         (mono_thread_pool_add): moved hash table creation inside and the thread 
15425         creation outside of the critical region.
15426         (mono_thread_pool_finish): removed obsolete code.
15427         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
15428         continue or exit the thread depending on the queue.
15429
15430 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
15431
15432         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
15433         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
15434         handle more bool marshalling options
15435
15436 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
15437
15438         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
15439         arrays of structs. Also add a more descriptive error message when
15440         a structure member is marshalled as LPArray.
15441
15442 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
15443
15444         * marshal.c (mono_marshal_get_native_wrapper): Add support for
15445         marshalling arrays of complex types. Fixes #29098. Also remove an
15446         usused and incomplete function.
15447
15448 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
15449
15450         * gc.c: report heap_size - free_bytes as total memory allocated
15451         (bug#49362).
15452
15453 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
15454
15455         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
15456         fix timezone handling problems on Windows.
15457         
15458         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
15459         asserts when the year is outside the range handled by ms the functions.
15460
15461         * class.c (setup_interface_offsets): If the class is an interface,
15462         fill out its interface_offsets slot.
15463
15464 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15465
15466         * threadpool.c: mark threadpool threads as background.
15467
15468 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
15469
15470         * decimal.c - define DECINLINE to nothing if not using GCC
15471
15472 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
15473
15474         * assembly.c: More refcount fixes.
15475
15476 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15477
15478         * string-icalls.c: if we're not trimming, return the same string.
15479         When not splitting, don't create a new string.
15480
15481 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15482
15483         * image.c:
15484         (mono_image_open): increment the ref_count inside the critical section.
15485
15486 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
15487
15488         * image.c (mono_image_open): Fix reference counting bug.
15489
15490 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
15491
15492         * marshal.c (mono_marshal_type_size) struct alignment changed for 
15493         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
15494         64bits. Avoid leak in mono_marshal_get_native_wrapper when
15495         mono_lookup_pinvoke_call throws.        
15496
15497 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
15498
15499         * reflection.c (mono_reflection_parse_type): Fix #49114.
15500
15501         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
15502         temporary workaround for cygwin header problem.
15503
15504         * object.c (mono_object_isinst): Synchronize this with the code
15505         generated by the JIT for casts.
15506
15507 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
15508
15509         * reflection.c (encode_type): Fix #38332.
15510
15511 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
15512
15513         * marshal.c (mono_marshal_method_from_wrapper): New function to return
15514         the original method from the wrapper method.
15515
15516 2003-09-25  Martin Baulig  <martin@ximian.com>
15517
15518         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
15519         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
15520         (ves_icall_Type_get_IsGenericInstance): New interncall.
15521
15522 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
15523
15524         * object.c: fix cast warning in big endian code.
15525
15526 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
15527
15528         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
15529         
15530 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15531
15532         * assembly.c: don't call check_env from mono_assembly_load. It's
15533         already done once in mono_assemblies_init and may cause headaches when
15534         multiple threads are loading assemblies.
15535
15536 2003-09-19  Martin Baulig  <martin@ximian.com>
15537
15538         * reflection.c (mono_reflection_define_generic_parameter): Don't
15539         allocate `klass->methods', set `klass->flags' to
15540         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
15541
15542 2003-09-18  Martin Baulig  <martin@ximian.com>
15543
15544         * class.c (mono_class_init): Don't create `class->methods' if it's
15545         already initialized.
15546
15547         * metadata.c (mono_metadata_load_generic_params): Make this
15548         actually work.
15549
15550         * reflection.c (mono_reflection_define_generic_parameter): Set
15551         parent class and interfaces from the constraints.
15552
15553         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
15554         to keep this struct in sync with the declaration in TypeBuilder.cs.
15555
15556 2003-09-17  Martin Baulig  <martin@ximian.com>
15557
15558         * metadata.h (MonoType): Replaced the data's `int type_param'
15559         field with `MonoGenericParam *generic_param'.
15560         (MonoGenericParam): Added `MonoClass *klass'.
15561
15562         * class.c (mono_class_from_gen_param): Removed the
15563         `MonoImage *image' and `int type_num' arguments.
15564
15565         * metadata.c (mono_metadata_parse_generic_param): New static
15566         method; creates a MonoGenericParam which just contains the index.
15567         (do_mono_metadata_parse_type): Call
15568         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
15569         MONO_TYPE_MVAR.
15570
15571         * reflection.c (mono_image_typedef_or_ref): Generic type
15572         parameters may be in the same assembly, but never use a typedef
15573         for them.
15574         (mono_reflection_define_generic_parameter): We're now creating a
15575         "real" class for the type parameter; it's now safe to call
15576         mono_class_from_mono_type() on the class'es type, it'll do the
15577         right thing.
15578
15579 2003-09-16  Martin Baulig  <martin@ximian.com>
15580
15581         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
15582         `symfile->range_entry_size' and `symfile->class_entry_size' here;
15583         the `symfile' data structure must be fully initialized before it
15584         gets added to the table.
15585
15586 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
15587
15588         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
15589
15590         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
15591         class init trampolines.
15592
15593 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
15594
15595         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
15596         to the built-in profiler to turn off time and allocation profiling
15597         respectively.
15598
15599 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
15600
15601         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
15602         g_direct_equal.
15603
15604         * debug-helpers.c (mono_method_full_name): Print the wrapper type
15605         in human readable form.
15606
15607 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
15608
15609         * reflection.c icall.c: Fixed warnings.
15610
15611         * image.c (load_class_names): Use a temporary hash table to hold the
15612         namespaces in order to avoid doing many string comparisons.
15613
15614         * image.h: Fix typo.
15615
15616         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
15617         Pass NULL instead of g_direct_equal to the GHashTable constructor 
15618         since the NULL case is short-circuited inside g_hash_table_lookup, 
15619         leading to better performance.  
15620
15621         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
15622         obtain the first custom attribute for a given index. Depends on the
15623         CustomAttribute table being sorted by the parent field.
15624
15625         * reflection.c (mono_custom_attrs_from_index): Use the new function 
15626         for better performance.
15627
15628 2003-09-07  Martin Baulig  <martin@ximian.com>
15629
15630         * class.c (mono_class_init): If we're a generic instance, inflate
15631         all our methods instead of loading them from the image.
15632         (mono_class_from_generic): Set `class->methods = gklass->methods'.
15633
15634 2003-09-07  Martin Baulig  <martin@ximian.com>
15635
15636         * mono-debug-debugger.c: Added support for constructors.
15637
15638 2003-09-06  Martin Baulig  <martin@ximian.com>
15639
15640         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
15641         New interncall.
15642
15643         * reflection.c (mono_reflection_setup_generic_class): Call
15644         ensure_runtime_vtable() to create the vtable.
15645
15646 2003-09-05  Martin Baulig  <martin@ximian.com>
15647
15648         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
15649         MONO_TYPE_MVAR.
15650
15651 2003-09-04  Martin Baulig  <martin@ximian.com>
15652
15653         * reflection.c (mono_reflection_define_generic_parameter): Generic
15654         parameters start with zero.
15655
15656 2003-09-04  Martin Baulig  <martin@ximian.com>
15657
15658         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15659
15660         * reflection.h (MonoReflectionGenericParam): New typedef.
15661         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
15662         the generic parameters from the managed TypeBuilder.
15663
15664         * reflection.c (mono_reflection_define_generic_parameter): New function.
15665         (mono_reflection_create_runtime_class): Encode generic parameters.
15666         (mono_reflection_setup_generic_class): New function; this is
15667         called after adding adding all generic params to the TypeBuilder.
15668         (encode_type): Added MONO_TYPE_VAR.
15669
15670 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
15671
15672         * class.h class.c (mono_class_needs_cctor_run): Moved this method
15673         here from the JIT.
15674
15675         * assembly.h assembly.c: Moved the AOT loading code into an assembly
15676         load hook.
15677
15678 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
15679
15680         * reflection.h reflection.c class.h class.c: Delete duplicate 
15681         definition of mono_type_get_name () from reflection.c and export the
15682         one in class.c.
15683
15684         * class.c: Class loading fixes from Bernie Solomon 
15685         (bernard@ugsolutions.com).
15686
15687         * reflection.c: Endianness fixes from Bernie Solomon 
15688         (bernard@ugsolutions.com).
15689         
15690 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
15691
15692         * assembly.h assembly.c: Define a file format version for AOT
15693         libraries.
15694         
15695         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
15696
15697         * appdomain.h (MonoJitInfo): New field to determine whenever the
15698         code is domain neutral.
15699         
15700 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
15701
15702         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
15703
15704 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
15705
15706         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
15707         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
15708         Avoid caching the result since strings must be domain specific. Fixes
15709         #48050.
15710
15711 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
15712
15713         * marshal.c (mono_marshal_init): Make this callable multiple times
15714         since it is hard to find a correct place to call it.
15715
15716         * object.c (mono_runtime_class_init): Execute static constructors in
15717         the correct appdomain.
15718
15719         * image.c (build_guid_table): Handle the case when multiple images have
15720         the same GUID.
15721
15722 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15723
15724         * icall.c: added a couple of icalls for System.Web.
15725
15726 2003-08-28  Martin Baulig  <martin@ximian.com>
15727
15728         * icall.c (ves_icall_Type_BindGenericParameters): Use
15729         `klass->generic_inst' instead of `&klass->byval_arg' in the
15730         mono_type_get_object() call.  The returned type must be
15731         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
15732
15733 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
15734
15735         * NOTES: New file.
15736
15737         * object.c (mono_class_proxy_vtable): Make it thread safe.
15738
15739         * pedump.c: Fix warning.
15740
15741         * object.c appdomain.h: Get rid of metadata_section. 
15742         It is no longer needed and it was causing deadlocks with domain->lock.
15743
15744         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
15745
15746 2003-08-26  Martin Baulig  <martin@ximian.com>
15747
15748         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
15749
15750 2003-08-26  Martin Baulig  <martin@ximian.com>
15751
15752         * pedump.c (main): Call mono_metadata_init(),
15753         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
15754         and mono_loader_init().
15755
15756 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
15757
15758         * loader.h: Add missing include to fix build.
15759
15760         * image.h: mono_image_load_references is no more.
15761
15762         * assembly.c: Reworked assembly loading to make it really thread safe.
15763         After these changes, the assembly returned by mono_assembly_open is
15764         fully initialized, i.e. all its references assemblies are loaded.
15765
15766         * assembly.c (mono_image_load_references): Renamed to 
15767         mono_assembly_load_references, and made private, since clients no
15768         longer need to call it.
15769
15770         * class.c: Removed calls to mono_assembly_load_references, since it was
15771         a source of deadlocks.
15772
15773         * loader.h loader.c class.h class.c: Protect data structures using a 
15774         new lock, the loader lock.
15775
15776         * class.c (mono_class_setup_vtable): Create temporary hash tables and
15777         GPtrArrays only when needed.
15778
15779         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
15780         into empty structures by mcs. Fixes pinvoke7.cs.
15781         
15782         * domain.c (mono_init): Call a new initialization function.
15783
15784         * appdomain.c (mono_runtime_init): Call the new initializer function
15785         of the marshal module.
15786
15787         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
15788         inserted into empty structures by mcs. Fixes pinvoke7.cs.
15789
15790         * marshal.h marshal.c: Added locks around the wrapper caches to make
15791         this module thread safe.
15792
15793         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
15794         this argument. Fixes pinvoke1.exe.
15795
15796 2003-08-25  Lluis Sanchez <lluis@ximian.com>
15797
15798         * object.h: Added call_type field to MonoMethodMessage and the corresponding
15799         enumeration of values. Removed fields to store remote call output values in
15800         MonoAsyncResult. Not needed any more.
15801         * object.c: Initialize call_type and async_result fields in mono_message_init.
15802         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
15803         dispatching the message.
15804         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
15805         async call to finish. To do it use a message with EndInvoke call type.
15806
15807 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
15808
15809         * loader.h loader.c (mono_method_hash_marhal_info): New function which
15810         determines whenever a method has marshalling info.
15811
15812 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15813
15814         * assembly.c: fix the build on windows.
15815
15816 2003-08-22 Lluis Sanchez <lluis@ximian.com>
15817
15818         * object.cs: Fixed bug #47785.
15819
15820 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
15821
15822         * string-icalls.c (StringReplace): If their are no occurances of
15823         the old string found return a reference to the supplied
15824         string. This saves some memory and matches MS behavoir.
15825         
15826 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15827
15828         * socket-io.c: fixed compilation for systems that define AF_INET6
15829         and don't define SOL_IP/SOL_IPV6.
15830
15831 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
15832
15833         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
15834         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
15835
15836         * rawbuffer.c rawbuffer.h: Make this module thread safe.
15837
15838         * domain.c: Make this module thread safe.
15839
15840         * domain.c (mono_init): Call new initialization function.
15841
15842         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
15843         reference types too. Fixes #38812.
15844
15845         * image.c (mono_image_init): Fixed warnings.
15846
15847         * class.c (mono_class_from_typeref): Handle assembly load failure
15848         correctly.
15849
15850         * appdomain.c (add_assemblies_to_domain): Handle the case when
15851         the references of an assembly are not yet loaded.
15852
15853         * metadata.c image.c assembly.c: Moved initialization of global
15854         variables to a separate function called at startup since lazy 
15855         initialization of these variables is not thread safe.
15856         
15857         * image.c assembly.c: Made this module thread safe by adding locks in 
15858         the appropriate places.
15859
15860         * domain.c (mono_init): Call the new initialization functions of the
15861         three modules.
15862
15863 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
15864
15865         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
15866           make a direct call. It is proxy's work to make the call asynchronous.
15867           mono_delegate_end_invoke(): If the targe is a proxy, just collect
15868           the return values.
15869         * object.cs: mono_method_call_message_new(): read AsyncResult and
15870           state object from parameters list, if this info is requested.
15871         * object.h: Added fields to store remote call output values in
15872           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
15873
15874 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15875
15876         * object.h: add needed fields to MonoThread.
15877         * threads.c, threads.h: allow registering a function to cleanup data
15878         allocated per thread by the JIT.
15879
15880 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15881
15882         * loader.h: portability fix by Bernie Solomon
15883         * <bernard@ugsolutions.com>.
15884
15885 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
15886
15887         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
15888         return a MonoArray. This simplifies the code and also ensures that
15889         the cache allways contains an object reference as a value.
15890
15891         * icall.c (ves_icall_get_parameter_info): Simplified using the new
15892         function.
15893
15894 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15895
15896         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
15897         fixes a problem with byte ordering when getting the address family for
15898         a socket.
15899
15900 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
15901
15902         * .cvsignore: Added monosn.
15903
15904         * reflection.h reflection.c loader.c: Added support for parameter
15905         marshalling to dynamically created types. Fixes #47295.
15906
15907 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
15908
15909         * rand.c: remove useless warnings.
15910
15911 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15912
15913         * class.c: implemented ldtoken for methods and fieldrefs.
15914
15915 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15916
15917         * threadpool.c: when mono_async_invoke was called, no one took care of
15918         monitoring the queue. So if the method invoked took some time and we
15919         got new async invoke requests after 500 ms (the thread created waited
15920         that long in WaitForSingleObject), the new async invoke was not called
15921         until the previous one finished.
15922
15923         This is fixed now. Thanks to Totte for helping with it.
15924
15925 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15926
15927         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
15928
15929 2003-08-11  Martin Baulig  <martin@ximian.com>
15930
15931         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
15932
15933 2003-08-06  Martin Baulig  <martin@ximian.com>
15934
15935         * mono-debug-debugger.c: Added support for static fields,
15936         properties and methods.
15937
15938 2003-08-06  Martin Baulig  <martin@ximian.com>
15939
15940         * mono-debug-debugger.c: Don't store the MonoString's vtable to
15941         make this work for applications with multiple application domains.
15942
15943 2003-08-04  Martin Baulig  <martin@ximian.com>
15944
15945         * mono-debug-debugger.c: Completely reworked the type support; the
15946         most important thing is that we're now just using one single
15947         `MonoType' instance per type.
15948
15949 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
15950
15951         * mono-endian.h, mono-endian.c, icall.c: Added icall
15952         ves_icall_System_Double_AssertEndianity to assert double word endianity
15953         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
15954
15955 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15956
15957         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
15958         support, icalls and fixes.
15959
15960 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
15961
15962         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
15963         classes that are a punctuation character in .NET is not the same a
15964         g_unichar_ispunct.
15965
15966 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15967
15968         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
15969
15970 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
15971
15972         * icall.c: Add new MemCopy internalcall.
15973         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
15974         Simplified code; It is not necessary to handle all the cases here,
15975         as the C# code takes care of it.  Only handle the case of the name
15976         resource embedded into the assembly.
15977
15978         Changed signature to return the data pointer and the size of the
15979         data. 
15980
15981 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
15982
15983         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
15984         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
15985
15986 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15987
15988         * socket-io.c: ignore EINTR error in select.
15989
15990 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15991
15992         * class.h, class.c: removed unused subclasses field in MonoClass.
15993
15994 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15995
15996         * icall.c: improve fix of get_base_definition(). If the parent class
15997           doesn't have the mehod, look at the parent of the parent.
15998         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
15999           to check if a parameter is an in or out parameter
16000           (PARAM_ATTRIBUTE_IN is not set by default).
16001           mono_method_return_message_restore(): Use mono_class_value_size to
16002           get the size of a value type. mono_type_stack_size (parameterType)
16003           does not return the correct value if parameterType is byRef.
16004           mono_load_remote_field(), mono_load_remote_field_new(),
16005           mono_store_remote_field(), mono_store_remote_field_new():
16006           raise exception if the remote call returns an exception.
16007
16008 2003-07-28  Martin Baulig  <martin@ximian.com>
16009
16010         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
16011         method.  This is a wrapper around mono_runtime_invoke() which
16012         boxes the instance object if neccessary.
16013
16014 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16015
16016         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
16017         metadata.h, row-indexes.h, verify.c: first cut of generics support.
16018
16019 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16020
16021         * icall.c: disable mcs bug workaround.
16022
16023 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
16024
16025         * object.c (mono_runtime_class_init): Take the metadata_section
16026         mutex before obtaining the domain mutex.
16027
16028         * appdomain.h: Added definition of metadata_section mutex here. 
16029
16030         * object.c: define metadata_mutex here.
16031
16032 2003-07-24  Ravi Pratap  <ravi@ximian.com>
16033
16034         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
16035         fixed.
16036
16037 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
16038
16039         * reflection.c: Fix bug #46669
16040
16041 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16042
16043         * exception.c:
16044         * exception.h:
16045         * icall.c:
16046         * object.h: fill in the type name for TypeLoadException.
16047
16048 2003-07-23  Ravi Pratap  <ravi@ximian.com>
16049
16050         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
16051         relationship between TypeBuilders while compiling corlib) and bug
16052         45993 (Array types returned from the runtime while compiling
16053         corlib were from the loaded corlib).
16054
16055 2003-07-22  Martin Baulig  <martin@ximian.com>
16056
16057         * mono-debug-debugger.c: Reworked the type support a bit more;
16058         distinguish between types and classes.
16059
16060 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
16061
16062         * icall.c: add IsArrayImpl icall.
16063
16064 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
16065
16066         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
16067         initializing real_size only once. Also fix bug #46602.
16068
16069 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
16070
16071         * object.c: Renamed mono_metadata_section to metadata_section.
16072
16073 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
16074
16075         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
16076           empty array if the type is an array. Fixed.
16077           ves_icall_MonoMethod_get_base_definition: if the base method
16078           is abstract, get the MethodInfo from the list of methods of
16079           the class.
16080         * reflection.c: ParameterInfo.PositionImpl should be zero-based
16081           and it was 1-based. Fixed in mono_param_get_objects.
16082
16083 2003-07-20  Martin Baulig  <martin@ximian.com>
16084
16085         * mono-debug.h: Set version number to 31.
16086         (mono_debug_init): Added `MonoDomain *' argument.
16087
16088         * mono-debug-debugger.c: Reworked the type support; explicitly
16089         tell the debugger about builtin types; pass the `klass' address to
16090         the debugger.
16091
16092 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
16093
16094         * image.c: Allow new metadata tables to be loaded without a
16095         warning. Also update the warning message to give the new constant value.
16096                 
16097 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
16098
16099         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
16100         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
16101         array type representation changes.
16102
16103 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16104
16105         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
16106         on Environment.Exit () call.
16107
16108 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16109
16110         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
16111         requires a matching corlib.
16112
16113 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16114
16115         * Changelog: My editor decided to add a CR to each line. Sorry about that.
16116           Committed again without the CRs.
16117         
16118 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16119
16120         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
16121           getting it from the "this" socket instance. Did not work
16122           if the socket is a subclass of Socket.
16123           Also fixed bug #35371.
16124
16125 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16126
16127         * metadata.c: fixed size for TypedByRef.
16128         * loader.c: when searching for a method, consider the vararg amrker.
16129         * unicode.c, decimal.c: constify some arrays.
16130
16131 2003-07-15  Dick Porter  <dick@ximian.com>
16132
16133         * socket-io.c: Fixed compilation for gcc < 3.2.
16134
16135         Fixed compilation for machines that don't have AF_INET6 (thanks to
16136         Bernie Solomon <bernard@ugsolutions.com> for that part.)
16137
16138         Fixed compile warnings.
16139         
16140         Fixed formatting and line endings.
16141
16142 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
16143
16144         * socket-io.h:
16145         * socket-io.c: Added IPv6 support.
16146
16147 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
16148
16149         * class.c (mono_class_is_assignable_from): New function to implement
16150         the is_assignable_from logic. Used by mono_object_isinst, 
16151         Type::IsAssignableFrom () and the interpreter.
16152
16153         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
16154         Object, even interfaces.
16155         
16156         * object.c (mono_object_isinst): Implement in terms of 
16157         is_assignable_from.
16158
16159         * icall.c (ves_icall_type_is_assignable_from): New icall.
16160
16161 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
16162
16163         * domain.c (foreach_domain): fix compiler warning.
16164
16165 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
16166
16167         * image.c (load_metadata_ptrs): use g_strndup because strndup is
16168         not available on all plattforms
16169
16170 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
16171
16172         * image.h image.c: Store the metadata version string in MonoImage.
16173         * icall.c: New icall to retrieve the image version.
16174         * reflection.c (create_dynamic_image): Fill in the image version field
16175         * reflection.c (build_compressed_metadata): Use the image version
16176         from the image structure.
16177
16178 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16179
16180         * appdomain.c: modified comment.
16181         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
16182         That will be its last iteration when mono_gc_cleanup is called from
16183         mono_runtime_cleanup and before the domain is unloaded.
16184
16185         Fixes bug #45962.
16186
16187 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
16188
16189         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
16190         attributes.
16191
16192 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16193
16194         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
16195         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
16196         Bernie Solomon <bernard@ugsolutions.com>.
16197
16198 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16199
16200         * object.c, object.h: provide mono_object_new_fast() for faster
16201         allocation in some special cases.
16202
16203 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
16204
16205         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
16206         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
16207
16208 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
16209
16210         * threadpool.c: fix leaks.
16211
16212 2003-07-01  Dick Porter  <dick@ximian.com>
16213
16214         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
16215         using MonoGHashTables.  Fixes threadpool bug posted to list.
16216
16217 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
16218
16219         * image.h, image.c: added support to load an assembly from a byte array.
16220         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
16221         assembly bundle support.
16222
16223 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
16224
16225         * threadpool.c (mono_thread_pool_add): keep a reference to the
16226         AsyncResult to prevent GC
16227
16228 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16229
16230         * class.c: leak fix.
16231
16232 2003-06-25  Dick Porter  <dick@ximian.com>
16233
16234         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
16235         for the async object, the WaitHandle object will close the handle.
16236         Fixes bug 45321.
16237
16238 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16239
16240         * class.c: in mono_array_class_get (), lookup from the hash with the
16241         same type we insert: this works around a bug in
16242         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
16243         lluis. The real fix will have to wait for after the release.
16244
16245 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16246
16247         * icall.c: fix memory leak when getting type members.
16248
16249 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16250
16251         * reflection.c: added more pubtoken special cases.
16252
16253 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
16254
16255         * class.c: handle field offset correctly when class size
16256         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
16257
16258 2003-06-20  Martin Baulig  <martin@ximian.com>
16259
16260         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
16261         *image' field.
16262
16263 2003-06-20  Martin Baulig  <martin@ximian.com>
16264
16265         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
16266
16267 2003-06-20  Martin Baulig  <martin@ximian.com>
16268
16269         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
16270         just distinguish between variables in registers and variables at
16271         an offset relative to a register.
16272
16273 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16274
16275         * icall.c: #ifdef out latest changes until mcs is fixed.
16276
16277 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16278
16279         * icall.c: return members in metadata order.
16280
16281 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16282
16283         * icall.c: avoid infinite loop in GetTimeZoneData.
16284
16285 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
16286
16287         * icall.c: added Marshal.Prelink/All icalls.
16288
16289 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16290
16291         * object.c, object.h: fix warnings and do some overflow checking
16292         when creating arrays.
16293
16294 2003-06-17  Dick Porter  <dick@ximian.com>
16295
16296         * file-io.h:
16297         * file-io.c: File attributes need to be tweaked slightly when
16298         passed from the managed to the w32 world.
16299
16300 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16301         * profiler.h profiler-private.h profiler.c: Rework last patch
16302         based on suggestion by Paolo.
16303         
16304 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16305
16306         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
16307         instruction level coverage data collection.
16308         * profiler.h profiler.c (: Added new callback function which can be
16309         used by the profiler to limit which functions should have coverage
16310         instrumentation.
16311         * profiler.c (mono_profiler_load): Call g_module_build_path to
16312         generate the file name of the profiler library.
16313
16314 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16315
16316         * profiler.c, profiler.h, profiler-private.h: added basic block 
16317         coverage profiling API.
16318
16319 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
16320
16321         * reflection.c (mono_reflection_create_runtime_class): Add support
16322         for events in dynamically generated code.
16323
16324         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
16325         not allocated.
16326
16327 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16328
16329         * icall.c: when getting timezone info, return reasonable values if we
16330         can't get the actual data.
16331
16332 2003-06-14  Dick Porter  <dick@ximian.com>
16333
16334         * threads.c (start_wrapper): Remove the reference to the thread
16335         object in the TLS data, so the thread object can be finalized.
16336         This won't be reached if the thread threw an uncaught exception,
16337         so those thread handles will stay referenced :-( (This is due to
16338         missing support for scanning thread-specific data in the Boehm GC
16339         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
16340
16341 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
16342
16343         * reflection.c: ensure streams and tables are first allocated with
16344         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
16345
16346 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16347
16348         * icall.c: fixed GetElementType for byrefs (bug# 44792).
16349
16350 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
16351
16352         * reflection.c (mono_reflection_create_runtime_class): Add support for
16353         properties to dynamically created classes.
16354         * reflection.c: Fix a few places where non-MonoObjects were inserted
16355         into the tokens hashtable.
16356
16357 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16358
16359         * object.c: some support to handle out of memory exceptions.
16360
16361 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
16362
16363         * marshal.c (mono_marshal_get_native_wrapper): support reference
16364         return types
16365
16366 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16367
16368         * object.h, object.c: more portability stuff from Bernie Solomon.
16369         Unexport mono_object_allocate(). Added mono_object_unbox ().
16370         Set exitcode when an unhandled exception is thrown.
16371
16372 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
16373
16374         * marshal.c (mono_marshal_get_native_wrapper): use custom
16375         marshaler for return types.
16376
16377 2003-06-10  Dick Porter  <dick@ximian.com>
16378
16379         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
16380         ip_mreq is available
16381
16382 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
16383
16384         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
16385         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
16386         by Bernie Solomon <bernard@ugsolutions.com>.
16387
16388 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
16389
16390         * gc.c (mono_gc_init): Avoid error message on shutdown when
16391         GC_DONT_GC=1 is used.
16392
16393         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
16394         New icall to return the GUID of a module.
16395
16396 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16397
16398         * class.c: ensure instance size always includes the parent's size
16399         even whem class size is set explicitly (fixes bug#44294).
16400
16401 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
16402
16403         * profiler.h, profiler.c: made the simple profiler thread-safe,
16404         get more accurate timing info. Allow the loading of an
16405         externally-developed profiler module.
16406
16407 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
16408
16409         * marshal.c (mono_marshal_get_native_wrapper): improved
16410         class/byref arguments.
16411         (mono_marshal_get_native_wrapper): better string marshaling support.
16412
16413 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
16414
16415         * class.c: ensure .pack and .size are handled correctly and
16416         simplified layout of static fields.
16417
16418 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
16419
16420         * appdomain.c
16421         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
16422
16423         * loader.c (mono_lookup_pinvoke_call): look for modules in the
16424         current directory (fix bug 44008)
16425
16426 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
16427
16428         * marshal.c (mono_marshal_get_native_wrapper): started support for
16429         custom marshalers.
16430         (mono_delegate_to_ftnptr): consider marshalling specifications
16431
16432 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
16433
16434         * reflection.c, reflection.h: emit custom marshal info.
16435
16436 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16437
16438         * object.c: free the GError.
16439         * icall.c: added CloseEvent_internal.
16440         * threads.[ch]:
16441         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
16442         call.
16443
16444 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
16445
16446         * loader.c (mono_method_get_signature): Add support for dynamic
16447         assemblies.
16448
16449 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
16450
16451         * reflection.c: fixed bug #43905.
16452
16453 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16454
16455         * class.c, domain.c, icall.c, metadata.h, object.h: support for
16456         handling TypedReference and ArgIterator.
16457         * loader.c, loader.h: added function to get signature at call site.
16458
16459 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16460
16461         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
16462         data readonly. Buglets and warning fixes. Some MethodSpec support.
16463
16464 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16465
16466         * class.h, class.c, object.c: remove relative numbering support.
16467
16468 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
16469
16470         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
16471         free the string, until we get a chance to fix Gtk#
16472
16473 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16474
16475         * marshal.c: revert last patch.
16476
16477 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
16478
16479         * icall.c: updates for new mono_class_vtable() not calling
16480         the type constructor anymore.
16481
16482 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16483
16484         * object.h, object.c: separate vtable creation from type
16485         initialization. Make running the .cctor thread safe.
16486
16487 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
16488
16489         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
16490
16491 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
16492
16493         * loader.c (mono_get_method): consider calling convention
16494
16495 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
16496
16497         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
16498         to return the invisible global type for a module.
16499
16500         * reflection.c (mono_image_build_metadata): Emit global fields too.
16501
16502 2003-05-20  Peter Williams  <peterw@ximian.com>
16503
16504         * loader.c (mono_lookup_internal_call): Add a few newlines.
16505
16506 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
16507
16508         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
16509         literal strings.
16510
16511         * appdomain.c (set_domain_search_path): Recalculate search path when
16512         AppDomainSetup.PrivateBinPath changes.
16513
16514         * object.c (mono_class_compute_gc_descriptor): It turns out some
16515         parts of the class libs (like System.Thread) holds pointers to
16516         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
16517         to treat native int a pointer type here.
16518         
16519 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
16520
16521         * appdomain.h, domain.c: add hashtable for jump target resolution.
16522
16523 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
16524
16525         * reflection.h reflection.c icall.c: Added new icalls 
16526         GetManifestResourceInfoInternal, GetModulesInternal and support
16527         infrastructure.
16528
16529 2003-05-16  Dick Porter  <dick@ximian.com>
16530
16531         * icall.c:
16532         * file-io.h:
16533         * file-io.c: Implement System.IO.MonoIO::GetTempPath
16534
16535 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
16536
16537         * object.c: mono_store_remote_field: little fix to previous patch.
16538
16539 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16540
16541         * class.c: add constructors to array classes.
16542         * icall.c: special case array construction for InternalInvoke (),
16543
16544 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
16545
16546         * class.h class.c reflection.c object.c: Added support for field
16547         defaults in dynamically generated classes.
16548
16549 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
16550
16551         * reflection.c: properly encode charset for ddlimport.
16552
16553 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
16554
16555         * threads.c: allow compiling without GC.
16556
16557 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
16558
16559         * appdomain.h, object.c, object.h, threads.c, threads.h: added
16560         handling of thread static data.
16561
16562 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16563
16564         * reflection.h, reflection.c: added mono_custom_attrs_free ().
16565
16566 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
16567
16568         * class.c (mono_array_class_get): always set the serializable flags
16569         (mono_array_class_get): always set the SEALED attribute for array types
16570
16571 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
16572
16573         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
16574         attributes (fix for bug 42021).
16575
16576 2003-05-12  Dick Porter  <dick@ximian.com>
16577
16578         * gc.c: Don't run finalizers when the finalizer thread is
16579         finishing up, because the default domain has already been
16580         destroyed.
16581
16582 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
16583
16584         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
16585         value is null, we should throw an exception.   This is slightly
16586         different than the other conventions used for the constructor.
16587
16588 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16589
16590         * socket-io.c: fixed windows build.
16591
16592 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16593
16594         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
16595
16596 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
16597
16598         * object.c (mono_string_new_wrapper): Compatibility fix for MS
16599         compilers.
16600
16601 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
16602
16603         * class.c (mono_class_layout_fields): Add experimental GC aware
16604         auto layout facility. Requires class library changes to work correctly.
16605
16606         (mono_class_setup_vtable): Avoid overriding explicit interface
16607         method implementations. Fixes iface3.exe test.
16608
16609         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
16610         object reference.
16611         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
16612         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
16613
16614         * metadata.h: Add new type classification macro which determines
16615         whenever the type holds an object reference.
16616
16617 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
16618
16619         * marshal.c (mono_marshal_get_native_wrapper): cleanups
16620
16621 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
16622
16623         * gc.c (finalizer_thread): Work around a GC bug.
16624
16625 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
16626
16627         * marshal.c (emit_struct_conv): allow unions
16628
16629         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
16630
16631 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
16632
16633         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
16634
16635 2003-05-06  Martin Baulig  <martin@ximian.com>
16636
16637         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
16638
16639 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16640
16641         * socket-io.c:
16642         (Select_internal): allow NULLs, don't create arrays if not needed.
16643         Coupled with Socket.cs changes.
16644
16645         * threadpool.c:
16646         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
16647         register a finalizer for it that will close the semaphore handle. This
16648         fixes the leak and make Lupus' test run with > 4080 loops.
16649
16650 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
16651
16652         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
16653         Jerome Laban (bug #42287)
16654
16655 2003-05-02  Martin Baulig  <martin@ximian.com>
16656
16657         * debug-mono-symfile.h
16658         (MonoSymbolFile): Moved declaration into mono-debug.h.
16659         (MonoDebugMethodJitInfo): Likewise.
16660         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
16661         argument.
16662         (_mono_debug_address_from_il_offset): Take a
16663         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
16664
16665         * mono-debug.h
16666         (MonoDebugDomainData): New struct.
16667         (mono_debug_get_domain_data): New function.
16668         (mono_debug_add_method): Take an additional `MonoDomain *'
16669         argument.
16670         (mono_debug_source_location_from_address): Likewise.
16671         (mono_debug_il_offset_from_address): Likewise.
16672         (mono_debug_address_from_il_offset): Likewise.
16673
16674 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
16675
16676         * reflection.c: one more check for null type in custom attrs.
16677
16678 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16679
16680         * reflection.c: avoid warning (comparison is always false due to limited
16681         range of data type).
16682
16683 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16684
16685         * icall.c: throw an exception in Type.GetField if the argument 'name'
16686         is NULL.
16687
16688 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
16689
16690         * reflection.c: fixed handling of enums in named arguments to custom
16691         attributes (bug #42123).
16692
16693 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
16694
16695         * reflection.c: use the right array element type and handle
16696         a null for a Type argument, too.
16697
16698 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
16699
16700         * reflection.c: handle arrays as arguments to custom attributes.
16701
16702 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
16703
16704         * reflection.c: handle a string value in a custom attr
16705         ctor that takes an object.
16706
16707 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
16708
16709         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
16710         (fix bug #42063)
16711
16712 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
16713
16714         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
16715
16716 2003-04-27  Martin Baulig  <martin@ximian.com>
16717
16718         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
16719         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
16720         MONO_DEBUGGER_EVENT_BREAKPOINT.
16721         (mono_breakpoint_trampoline_code): Removed.
16722         (mono_debugger_event_handler): The last argument is now a
16723         `guint32'.
16724         (mono_debugger_insert_breakpoint_full): Removed the
16725         `use_trampoline' argument.
16726         (mono_debugger_method_has_breakpoint): Likewise.
16727         (mono_debugger_trampoline_breakpoint_callback): Renamed to
16728         mono_debugger_breakpoint_callback(); take the method and
16729         breakpoint number as arguments.
16730
16731 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
16732
16733         * metadata.c: fix off by one when loading parameters attributes.
16734
16735 2003-04-24  Martin Baulig  <martin@ximian.com>
16736
16737         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
16738
16739 2003-04-24  Martin Baulig  <martin@ximian.com>
16740
16741         * mono-debug-debugger.c: Moved all code which interacts with the
16742         Mono Debugger here.
16743
16744         * debug-mono-symfile.c: This code now just deals with the symbol
16745         file itself, the debugger code is now in mono-debug-debugger.c.
16746
16747 2003-04-23  Martin Baulig  <martin@ximian.com>
16748
16749         * mono-debug.c (mono_debug_source_location_from_il_offset):
16750         New method; like mono_debug_source_location_from_address(), but
16751         takes an IL offset instead of a machine address.
16752
16753 2003-04-23  Martin Baulig  <martin@ximian.com>
16754
16755         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
16756         `line' field; this is now computed by the debugger.
16757
16758 2003-04-23  Martin Baulig  <martin@ximian.com>
16759
16760         * mono-debug.[ch]: New files.  This is the new debugging interface.
16761
16762         * mono-debug-debugger.[ch]: New files.  Moved all code which
16763         interacts with the Mono Debugger here.
16764
16765 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
16766
16767         * domain.c (mono_init): initialize mono_defaults.monitor_class
16768
16769 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
16770
16771         * reflection.c (method_encode_code): Add a spicy exception to help
16772         future compiler authors.
16773
16774 2003-04-21  Martin Baulig  <martin@ximian.com>
16775
16776         * icall.c
16777         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16778         Make this work with relative pathnames; g_filename_to_uri() needs
16779         an absolute filename.
16780
16781 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
16782
16783         * icall.c: Track name changes in Object and ValueType.
16784
16785 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
16786
16787         * metadata.c (mono_type_stack_size): size should be a multiple of
16788         sizeof (gpointer)
16789
16790 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16791
16792         * gc.c:
16793         (internal_domain_finalize): moved into mono_domain_finalize. No need
16794         to create another thread because the finalizers will be run in the
16795         finalizer thread.
16796         
16797         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
16798         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
16799         to be run (MS does this too).
16800
16801 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
16802
16803         * object.c (mono_class_compute_gc_descriptor): Update comment.
16804
16805         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
16806
16807         * image.h: Add synchronized wrapper cache.
16808
16809         * image.c (do_mono_image_open): Initialize cache.
16810
16811         * reflection.c (create_dynamic_mono_image): Initialize cache.
16812
16813 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16814
16815         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
16816         ves_icall_System_Buffer_ByteLengthInternal.
16817
16818 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16819
16820         * reflection.c: setup klass->nested_in earlier. Allow
16821         a dash in the assembly name.
16822
16823 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
16824
16825         * metadata.c (mono_type_to_unmanaged): dont access
16826         type->data.klass for MONO_TYPE_OBJECT
16827         (mono_type_to_unmanaged): consider System.Delegate class
16828
16829 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
16830
16831         * class.c: just setup supertypes in the proper place instead of
16832         initializing the full element class for arrays.
16833
16834 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16835
16836         * class.c: ensure the element class of arrays is initialized.
16837         Setup the supertype info for array classes, too.
16838
16839 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
16840
16841         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
16842
16843 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16844
16845         * Makefile.am: re-added -m option when running cygpath. This way,
16846         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
16847         separator.
16848         * mono-config.c: same codepath for locating mono config file for WIN32
16849         and the rest.
16850         * assembly.c: if mono_assembly_setrootdir is called, don't override
16851         the value set.
16852
16853 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16854
16855         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
16856         MONO_ASSEMBLIES variable.
16857
16858 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
16859
16860         * icall.c: added Assembly::GetNamespaces() icall.
16861
16862 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16863
16864         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
16865
16866 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
16867
16868         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
16869         * object.c: fixed bug in the construction of vtable for proxies
16870
16871 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
16872
16873         * object.c (mono_array_new): Mark mono_array_new as an icall.
16874
16875 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16876
16877         * class.c: fixed test for public method when overriding interfaces.
16878         Closes bug #40970.
16879
16880 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16881
16882         * appdomain.h, domain.c: added mono_domain_foreach() to
16883         be able to access the currently loaded appdomains.
16884         * object.c: make string interning work across sppdomains.
16885         Mark some functions for use as icalls.
16886
16887 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
16888
16889         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
16890
16891         * reflection.h reflection.c: Allocate long living data using 
16892         GC_MALLOC_ATOMIC so the collector does not need to scan it.
16893
16894         * reflection.c: Double the allocation size in streams instead of
16895         increasing it, to prevent unneccesary copying on large assemblies.
16896         
16897         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
16898         creation if the assembly does not have the Run flag set.
16899
16900 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
16901
16902         * class.h: avoid the C++ keywords in header files (Jerome Laban
16903         spotted and fixed this).
16904
16905 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16906
16907         * object.c:
16908         (mono_unhandled_exception): fill in the arguments for the
16909         UnhandledException event. Only trigger that event for the default
16910         domain (as MS does).
16911
16912 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
16913
16914         * object.c: Improve typed allocation stuff based on suggestions from
16915         Paolo. Also turn it on if the GC library supports it.
16916
16917 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16918
16919         * object.c object.h class.h: Added experimental typed allocation
16920         facility using the interfaces in gc_gcj.h.
16921
16922         * os/gc_wrapper.h: Added new include files.
16923         
16924 2003-04-03  Martin Baulig  <martin@ximian.com>
16925
16926         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
16927         which is not yet enabled by default.
16928
16929         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
16930         functions.
16931         (mono_gc_lock, mono_gc_unlock): New static functions.
16932
16933         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
16934         functions; stop/start the world for the garbage collector.  This
16935         is using the windows API; we need to complete the SuspendThread()/
16936         ResumeThread() implementation in the io-layer to make this work on Unix.
16937         (mono_gc_push_all_stacks): New public function; tells the garbage
16938         collector about the stack pointers from all managed threads.
16939
16940 2003-04-03  Martin Baulig  <martin@ximian.com>
16941
16942         * object.h (MonoThread): Added `gpointer stack_ptr'.
16943
16944         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
16945
16946 2003-04-03  Martin Baulig  <martin@ximian.com>
16947
16948         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
16949
16950 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16951
16952         * reflection.c (typebuilder_setup_fields): Initialize field.first and
16953         field.last.
16954
16955 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
16956
16957         * loader.c (mono_lookup_internal_call): Report the corlib that is
16958         out of sync.
16959
16960 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
16961
16962         * icall.c (ves_icall_type_GetTypeCode): fixed check for
16963         System.DBNull (it's class not valuetype).
16964
16965 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16966
16967         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
16968         if the array method was already assigned a token (fixes bug#40646).
16969
16970 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
16971
16972         * reflection.c (mono_reflection_get_type): Attempt type resolve even
16973         if no assembly is given.
16974
16975 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
16976
16977         * metadata.h: Added the new tables.
16978
16979         * row-indexes.h: Added definitions for new tables.
16980
16981         * metadata.c: Add schemas for new tables, and add support for
16982         computing the sizes of them.
16983
16984         * class.c: Update for handling the new type cases.
16985
16986 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
16987
16988         * metadata.h (MONO_TYPE_IS_VOID): new macro
16989
16990 2003-03-31  Martin Baulig  <martin@ximian.com>
16991
16992         * threads.h (MonoThreadCallbacks): Added `thread_created'.
16993
16994         * threads.c (mono_thread_new_init): Call `thread_created' in the
16995         mono_thread_callbacks.
16996
16997 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
16998
16999         * loader.h: added marshalbyrefobject_class to mono_defaults
17000         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
17001         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
17002           generation of output parameters.
17003           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
17004         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
17005           contextbound and the target object belongs to the context of the caller.
17006         * object.h: added context and unwrapped_server variables in MonoRealProxy.
17007         * object.c: Implemented support for interfaces and abstract classes
17008           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
17009           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
17010
17011 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
17012
17013         * class.h class.c (mono_class_is_subclass_of): New function.
17014         
17015         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
17016         routines for most common case (calls from ArrayList::ToArray).
17017
17018         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
17019         routine so programs which call Environment::Exit() can be profiled.
17020
17021         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
17022         Added MONO_ARCH_SAVE_REGS.
17023
17024         * icall.c (ves_icall_type_is_subtype_of): Use new function.
17025
17026 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
17027
17028         * blob.h: Add a couple of new MonoType types definitions.
17029
17030         * tabledefs.h: Add a couple of new call convs.
17031
17032 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
17033
17034         * reflection.h (MonoReflectionDynamicAssembly): track changes in
17035         the layout of the class.
17036
17037         * reflection.c (alloc_table): double the size on overflow to avoid
17038         unnecessary copying.
17039
17040         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
17041         avoid filling out metadata tables and blobs. Also set mb->ilgen to
17042         null so it can be garbage collected.
17043         
17044 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
17045
17046         * reflection.c (mono_reflection_get_type): Return the resolved type
17047         only if it is in the assembly we searched.
17048
17049         * reflection.c (ensure_runtime_vtable): Initialize method slots.
17050
17051         * class.c (mono_class_setup_vtable): Set the slot of the overriding
17052         method.
17053
17054 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17055
17056         * appdomain.c:
17057         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
17058         the right one is 'file:///blah', but MS allows it.
17059         * assembly.c:
17060         (mono_assembly_open): allow 'file://blah'
17061
17062         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
17063
17064 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
17065
17066         * socket-io.c: fixes bug #40310.
17067
17068 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
17069
17070         * reflection.c (mono_reflection_parse_type): handle deeply nested
17071         types correctly.
17072
17073         * reflection.c (mono_image_create_token): Use unique token values
17074         since they will be put into a hash table.
17075
17076         * class.c (mono_class_setup_vtable): If a method occurs in more than
17077         one place in the vtable, and it gets overriden, then change the
17078         other occurances too.
17079
17080         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
17081         object as return type.
17082
17083 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17084
17085         * icall.c: Deleted "ToString" implementation for double and float
17086         because they are full implemented in managed code.
17087
17088 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17089
17090         * reflection.c, reflection.h: implemented and exported functions
17091         to retrieve info about custom attributes.
17092
17093 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17094
17095         * appdomain.c: moved Uri handling to assembly.c
17096         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
17097         work when using a file Uri in *nix and windows.
17098
17099         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
17100         GetReferencedAssemblies.
17101
17102 2003-03-18  Dick Porter  <dick@ximian.com>
17103
17104         * icall.c: Rename a couple of internal calls
17105
17106         * threads.c: Set the thread state to Stopped when a thread exits.
17107         Fixes bug 39377.
17108
17109 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
17110
17111         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
17112         New icall.
17113
17114         * object.c (mono_class_vtable): fix warning.
17115
17116 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
17117
17118         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
17119
17120         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
17121         memory.
17122         (method_encode_clauses): Create exception info structures in the right
17123         order.
17124         (mono_reflection_setup_internal_class): Initialize supertypes field.
17125
17126         * class.c object.c: Handle interfaces which implement other interfaces 
17127         correctly.
17128
17129         * class.h class.c: Move the supertypes array initialization code into 
17130         a separate function so it can be used for dynamic types too. Also call
17131         it earlier, in mono_class_init(), since it can be used before the
17132         type is initialized.
17133
17134 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17135
17136         * Makefile.am:
17137         * assembly.c:
17138         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
17139
17140         * appdomain.c:
17141         * appdomain.h:
17142         * marshal.c:
17143         * object.c: remove warnings.
17144
17145 2003-03-13  Martin Baulig  <martin@ximian.com>
17146
17147         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
17148         (MonoDebugLexicalBlockEntry): New types.
17149
17150         * debug-mono-symfile.c
17151         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
17152
17153 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17154
17155         * process.c: ret can be any non-zero value accroding to MS doc.
17156
17157 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
17158
17159         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
17160         fixing a warning for a miss-used prototype, would have cause
17161         random memory corruption.
17162
17163 2003-03-07  Martin Baulig  <martin@ximian.com>
17164
17165         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
17166         getting really annoying ....
17167
17168 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
17169
17170         * reflection.c (fixup_method): added support for array methods.
17171
17172 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
17173
17174         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
17175         (pointed out by Michael Adams).
17176
17177 2003-03-04  Dick Porter  <dick@ximian.com>
17178
17179         * icall.c: Temporarily reverted the Double and Single ToString()
17180         change, because it broke nunit.
17181
17182 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
17183
17184         * object.h, threads.h: make include files compatible with C++
17185         (patch by Jerome Laban <jlaban@wanadoo.fr>).
17186
17187 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17188
17189         * icall.c: Erased ToString helper functions for Double and Single.
17190         Now, that implementations ar all in managed code (Double and Single
17191         Formatters).
17192
17193 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
17194
17195         * appdomain.c: Added method for initializing the default context of
17196         a domain. Added internal call for getting the default context.
17197         * appdomain.h: Added context variable in MonoDomain struct.
17198         * domain.c: mono_domain_set also sets the default context of the domain
17199         * icall.c: Mapped internal method InternalGetDefaultContext.
17200         * object.c: mono_object_get_virtual_method returns always a remoting
17201         wrapper if the object is a transparent proxy.
17202         mono_runtime_invoke_array: when creating an object by calling the
17203         constructor, if the created object is a proxy, then the constructor should
17204         be called using the a remoting wrapper.
17205
17206 2003-03-03  Dick Porter  <dick@ximian.com>
17207
17208         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
17209         variable so it compiles on solaris.  Problem spotted by
17210         Christopher Taylor <ct@cs.clemson.edu>
17211
17212 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17213
17214         * appdomain.c:
17215         (get_info_from_assembly_name): don't leak value.
17216
17217         * icall.c:
17218         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
17219         result.
17220
17221 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
17222
17223         * assembly.c: export mono_image_load_references ().
17224         * class.c: handle function pointers. mono_class_from_name() now
17225         supports nested type names directly.
17226
17227 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
17228
17229         * reflection.h reflection.c: Encode already created dynamic methods 
17230         and fields correctly as a DEF instead of a REF.
17231
17232         * reflection.c: Get rid of the force_ref argument to 
17233         mono_image_typedef_or_ref since it was wrong in the first place.
17234
17235         * string-icalls.c: add error checking to string constructors according
17236         to the MSDN docs.
17237
17238         * reflection.c: Emit types in the order their TypeBuilders were 
17239         created. Previously, a new table index was assigned to each type before
17240         the tables were emitted. This was wrong because the signature blob
17241         might already refer to a type by its original table index.
17242
17243 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
17244
17245         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
17246         change.
17247         
17248 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17249
17250         * Makefile.am: make assemblies dir have \ instead of / on windows.
17251
17252 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
17253
17254         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
17255         iterate over the NESTEDCLASS table using a linear search since the
17256         table is not guaranteed to be sorted by the secondary key.
17257
17258         * class.c (mono_class_create_from_typedef): fixed up call to
17259         mono_metadata_nesting_typedef.
17260         
17261 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
17262
17263         * marshal.c (mono_string_to_byvalstr): clear the memory as
17264         suggested by Jerome Laban <jlaban@wanadoo.fr>
17265
17266 2003-02-26  Dick Porter  <dick@ximian.com>
17267
17268         * process.c: Cope with padding in .rsrc blocks
17269
17270 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17271
17272         * metadata.h: reverted the filter_len change, it breaks reflection
17273         
17274 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17275
17276         * metadata.h: added a new field to store the filter_len
17277         
17278
17279 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
17280
17281         * reflection.c: handle custom attributes for types and members
17282         created with Reflection.Emit (bug#38422).
17283
17284 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
17285
17286         * reflection.c: define RTSpecialName automatically for constructors for
17287         compatibility with MS.NET.
17288
17289         * reflection.c (mono_reflection_create_runtime_class): initialize
17290         nested_in field of dynamically created classes.
17291
17292 2003-02-22  Martin Baulig  <martin@ximian.com>
17293
17294         * debug-mono-symfile.h: Incremented version number.
17295
17296 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17297
17298         * object.h icall.c process.c: fix warnings.
17299
17300 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17301
17302         * appdomain.h appdomain.c:
17303         (mono_domain_try_type_resolve): split the 
17304         name_or_tb argument into a name and a tb argument.
17305         (mono_domain_has_type_resolve): new function to check whenever the
17306         application has registered a TypeResolve event handler.
17307         
17308         * icall.c reflection.h reflection.c: move the type resolve logic into
17309         mono_reflection_get_type () so it will be invoked when 
17310         Assembly::GetType () is called.
17311
17312         * reflection.c:
17313         (mono_reflection_get_type): renamed to get_type_internal.
17314         (mono_reflection_get_type): fixed type name generation so it works 
17315         for nested types too.
17316         (mono_reflection_get_type): call has_type_resolve () to avoid the 
17317         costly type name generation if there is no resolve event handler.
17318
17319 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17320
17321         * class.c, image.c: load exported types from file references.
17322
17323 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
17324
17325         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
17326           used to cache the managed methods used to create proxies and make 
17327           remote invocation of methods.
17328         * class.h: Added in MonoVTable a flag to indicate that a class needs 
17329           to be remotely created.
17330         * object.c: Modified the method mono_class_vtable(). It now initializes 
17331           the remote flag of the vtable. Modified mono_object_new_specific(), 
17332           so now it checks the remote flag.
17333         * icall.c: Added a couple of internal methods, one for enabling instance 
17334           creation interception for a type, and one for creating objects bypassing
17335           the remote check.
17336
17337 2003-02-18  Martin Baulig  <martin@ximian.com>
17338
17339         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
17340         New interncall to get a method's metadata token.
17341
17342         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
17343         New interncall for the debugger.
17344
17345 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
17346
17347         * class.c (mono_class_setup_vtable): allocate supertype array
17348
17349 2003-02-18  Martin Baulig  <martin@ximian.com>
17350
17351         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
17352
17353 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17354
17355         * reflection.c:
17356         (assembly_name_to_aname): jump over unknown properties (i've found
17357         something like: 'type, assembly, version=xxx, custom=null, public...',
17358         so now will ignore custom=null and still get the rest of the values).
17359
17360 2003-02-17  Dick Porter  <dick@ximian.com>
17361
17362         * threads.c: Have Thread.Start() wait for a semaphore to signal
17363         that the thread has set up all its local data.  This fixes bug
17364         34323, where Abort() raced the new thread's TLS data.
17365
17366         Also removes the handle_store() call from start_wrapper, because
17367         threads are now always created suspended and there is no longer a
17368         race between the parent and child threads to store the info.
17369
17370 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
17371
17372         * image.c: explain the #- heap issue in a message, hopefully
17373         avoiding FAQs on mono-list.
17374
17375 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17376
17377         * icall.c:
17378         (GetEntryAssembly): if the domain has not invoked
17379         AppDomain.ExecuteAssembly yet, return the assembly of the default
17380         AppDomain.
17381
17382 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
17383
17384         * class.c (mono_ldtoken): make it work in dynamic assemblies.
17385
17386 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
17387
17388         * metadata.c, reflection.c: simple speedup to type hash
17389         and equals code.
17390
17391 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
17392
17393         * image.c, image.h, class.c, assembly.c: move module loading
17394         to MonoImage. When loading metadata, consider alignemnet from
17395         the start of metadata, not from the metadata address in memory.
17396
17397 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
17398
17399         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
17400         AssemblyBuilder objects. Factored out custom attribute creation into
17401         a separate function.
17402         (create_custom_attr): new function to create custom attributes.
17403
17404 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
17405
17406         * Makefile.am: Got tired of typing the full pathname to pedump.
17407         Until there is another option, am installing this.
17408
17409 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
17410
17411         * class.c (class_compute_field_layout): always set field->parent 
17412         (mono_ldtoken): use mono_defaults.fieldhandle_class;
17413
17414 2003-02-11  Dick Porter  <dick@ximian.com>
17415
17416         * threads-types.h:
17417         * monitor.c: Rewrote Monitor, making lock much faster and
17418         Pulse/Wait work as specified.  Also uses much fewer handles, and only
17419         creates them as needed.
17420
17421         * exception.c: Added SynchronizationLockException
17422
17423         * threads.c: Deleted old Monitor implementation.  The new one is
17424         in a new file.
17425
17426 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
17427
17428         * class.c: handled TypedReference type code. Set the correct size for
17429         class data. Setup interface_offsets for interface classes, too.
17430
17431 2003-02-09  Martin Baulig  <martin@ximian.com>
17432
17433         * debug-mono-symfile.h: Reflect latest symbol writer changes.
17434
17435 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
17436
17437         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
17438         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
17439         * object.c: fixed mono_object_get_virtual_method () for interfaces.
17440         * verify.c: check for code that runs after the end of the method.
17441
17442 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17443
17444         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
17445         "System.Math::Round2".
17446         * sysmath.h: Added Floor, Round and Round2 definitions.
17447         * sysmath.c: Modified certain functions that were not 100% compliant
17448         with MS.NET (math precision) and added the implementation of Floor,
17449         Round and Round2.
17450
17451 2003-02-07  Martin Baulig  <martin@ximian.com>
17452
17453         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
17454
17455 2003-02-07  Martin Baulig  <martin@ximian.com>
17456
17457         * debug-mono-symfile.c: Reflected latest symwriter changes.
17458         (mono_debug_create_mono_symbol_file): Removed.
17459         (mono_debug_open_mono_symbol_file): Take an argument which
17460         specifies whether to create a dynamic symbol file.
17461
17462 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
17463
17464         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
17465
17466 2003-02-05  Martin Baulig  <martin@ximian.com>
17467
17468         * reflection.c (mono_image_build_metadata): Make this public,
17469         protect it against being called multiple times, don't create
17470         resources and don't build the compressed metadata here.
17471         (mono_image_create_pefile): Do this here.
17472
17473         * icall.c
17474         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
17475
17476 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17477
17478         * socket-io.c: fixed bug #36322.
17479
17480 2003-02-06  Piers Haken <piersh@friskit.com>
17481
17482         * appdomain.[ch]:
17483         * class.h:
17484         * debug-mono-symfile.c:
17485         * icall.c:
17486         * loader.c:
17487         * mono-config.c:
17488         * monosn.c:
17489         * reflection.c:
17490         * socket-io.c: warning cleanups
17491
17492 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
17493
17494         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
17495         function. works like remoting invoke, but does a check for the Proxy first.
17496
17497 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
17498
17499         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
17500
17501 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
17502
17503         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
17504         array of pointers.
17505         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
17506         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
17507
17508         * object.c (mono_store_remote_field_new): used by the new jit
17509         instead of mono_store_remote_field
17510         (mono_load_remote_field_new): used by the new jit
17511         instead of mono_load_remote_field
17512
17513 2003-02-05  Patrik Torstensson
17514
17515         * appdomain.c: changed unload to take the domain id instead
17516         of domain
17517         
17518         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
17519
17520
17521 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17522
17523         * appdomain.c: don't look for assemblies in ApplicationBase if
17524         PrivateBinPathProbe is set.
17525
17526 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17527
17528         * object.c: make the first argument in main_args contain the absolute
17529         path to the assembly. Fixes bug #37511.
17530
17531 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17532
17533         * icall.c: get correct UTC offset for countries not using daylight
17534         time saving. Fixes bug #30030.
17535
17536 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17537
17538         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
17539         and 1 are the family).
17540
17541 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
17542
17543         * icall.c (ves_icall_InternalExecute): removed wrong assertion
17544
17545         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
17546
17547 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
17548
17549         * reflection.c: added support for SignatureHelper tokens, which is
17550         needed by the Calli opcode.
17551
17552         * reflection.h: track changes to SignatureHelper class.
17553
17554         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
17555
17556 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17557
17558         * appdomain.c: fixed loading assemblies from PrivateBinPath.
17559
17560 2003-02-03  Patrik Torstensson
17561         * appdomain.[c|h], domain.c : 
17562          - Added support for getting a domain via domain id
17563          - Support for setting and getting domain from System.AppDomain 
17564            (used in cross appdomain channel)
17565          - Added support for get/set for a MonoAppContext on a thread 
17566            (Context class in System.Runtime.Remoting.Contexts),
17567          - Removed hack in Get/SetData and ExecuteAssembly.
17568         
17569         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
17570         the managed world to get control when a proxy is created.
17571
17572         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
17573         
17574 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
17575
17576         * icall.c
17577         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17578         Populate the codebase field as well.
17579
17580 2003-02-02  Martin Baulig  <martin@ximian.com>
17581
17582         * debug-mono-symfile.c
17583         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
17584         (mono_debug_symfile_add_method): Allow interncalls.
17585
17586 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17587
17588         * icall.c: throw parse exception if strtod fails or the string is empty.
17589
17590 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
17591
17592         * marshal.c: handle object type separately from defined
17593         class types.
17594
17595 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
17596
17597         * marshal.c: handle NATIVE_LPSTR for strings when it's
17598         explicitly specified.
17599
17600 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
17601
17602         * reflection.c, reflection.h, icall.c: setup the reflection
17603         handle cache for ModuleBuilders and AssemblyBuilders.
17604
17605 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
17606
17607         * reflection.c (reflection_methodbuilder_to_mono_method): set
17608         pinvoke flag
17609
17610 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17611
17612         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
17613
17614 2003-01-29  Dick Porter  <dick@ximian.com>
17615
17616         * threads.c: No need for the fake_thread kludge now that Thread
17617         doesn't run a class constructor
17618         
17619 2003-01-29  Dick Porter  <dick@ximian.com>
17620
17621         * threads.c: Use g_direct_hash instead of the rather bogus
17622         g_int_hash
17623
17624 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
17625
17626         * marshal.c (mono_marshal_get_native_wrapper): add check for null
17627         (fix pinvoke12.exe)
17628         (mono_marshal_get_struct_to_ptr): generate valid IL code
17629         (mono_marshal_get_ptr_to_struct): generate valid IL code
17630         (*): correctly set sig->pinvoke, we need to memdup the signature
17631         to do that
17632
17633 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17634
17635         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
17636         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
17637
17638 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
17639
17640         * profiler.c: provide more callers information.
17641
17642 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
17643
17644         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
17645
17646         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
17647
17648         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
17649
17650 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17651
17652         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
17653         exception instead of going into an infinite loop on dates which it 
17654         can't yet handle.
17655
17656         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
17657         out-of-range exception if needed.
17658
17659         * class.c (mono_class_setup_vtable): allow a virtual method to provide
17660         an implementation for an interface method and to override an inherited
17661         method at the same time. 
17662         Imagine a scenario when a virtual method is used to override a
17663         virtual abstract method in a parent class, and this same method 
17664         provides an implementation for an method inherited from an interface. 
17665         In this case, the interface resolution code will set im->slot, which 
17666         means that the virtual method override pass will skip this method 
17667         which means a pointer to the abstract method inherited from the parent
17668         will remain in the vtable of this non-abstract class.
17669
17670         * class.c: (mono_class_setup_vtable): continue search for a real 
17671         method if only an abstract method is found.     
17672
17673 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
17674
17675         * reflection.c: add size to encoding for ByValStr and ByValArray
17676         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
17677
17678 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17679
17680         * class.c (mono_class_setup_vtable): pass the override info as an
17681         argument.
17682
17683         * class.c (mono_class_setup_vtable): set the slot of overriding methods
17684         correctly.
17685         
17686         * reflection.c (ensure_runtime_vtable); add support for method 
17687         overrides.
17688         
17689 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17690
17691         * reflection.c (resolution_scope_from_image): Hack to work to work with
17692         dynamic assemblies.
17693
17694         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
17695         added a 'force_ref' argument to force this function to allways return 
17696         a TypeRef. This is needed by mono_image_get_memberref_token ().
17697         
17698 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17699
17700         * reflection.c (mono_image_get_type_info): interfaces really don't have
17701         a parent.
17702
17703         * reflection.c (mono_image_basic_init): fill out missing fields of
17704         image structure.
17705
17706         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
17707         dynamic assemblies. This is required so dynamic assemblies show up in
17708         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
17709         Type::GetType() etc. This is consistent with MS behaviour.
17710
17711         * image.c image.h reflection.c: add newly created classes to the name 
17712         cache so mono_class_get () will find them.      
17713
17714 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17715
17716         First part of changes to get IKVM.NET running under mono.
17717         
17718         * appdomain.h, appdomain.c: added new function 
17719         mono_domain_try_type_resolve() which will emit TypeResolve events. 
17720         This function will call AppDomain::DoTypeResolve to do the actual work.
17721
17722         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
17723         moved existing code dealing with dynamic tokens to a new function 
17724         called mono_reflection_lookup_dynamic_token (). This function will 
17725         raise TypeResolve events when appropriate. Since reflection.c is not 
17726         part of libmetadata, a new hook function called 
17727         mono_lookup_dynamic_token() is added to class.c which will call this.
17728
17729         * assembly.h assembly.c: make the invoke_load_hook function public,
17730         so it can be called for dynamic assemblies.
17731
17732         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
17733
17734         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
17735         type isn't found.
17736
17737         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
17738         MonoGHashTable, since it contains pointers to objects which the GC 
17739         needs to track.
17740
17741         * assembly.c (search_loaded): remove unused variable.
17742         
17743 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
17744
17745         * object.c: fixed issue exposed by gcc-generated IL programs
17746         that use RVA data for pointers.
17747
17748 2003-01-25  Martin Baulig  <martin@ximian.com>
17749
17750         * threads.c (start_wrapper): Moved the initialization of
17751         `start_func' above the mono_new_thread_init() call to which we
17752         pass it as argument.
17753
17754 2003-01-24  Martin Baulig  <martin@ximian.com>
17755
17756         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
17757         the MonoThread pointer.
17758
17759 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
17760
17761         * icall.c: Rename `PowImpl' to Pow.
17762
17763 2003-01-23  Dick Porter  <dick@ximian.com>
17764
17765         * threads.c (start_wrapper): Create a Thread object if needed, so
17766         the Main() thread can do the class initialisation in a subthread
17767         that has been set up to allow managed code execution.
17768
17769         Pass the thread ID instead of the MonoThread pointer to the thread
17770         start and attach callbacks.  This change is required, because the
17771         jit thread start callback must be called _before_ the Thread
17772         object can be created.
17773         
17774         (mono_thread_init): Removed much object creation code that is no
17775         longer needed.  No managed code is called from here now.
17776
17777         * object.c (mono_runtime_exec_managed_code): Create a subthread
17778         for Main, and call back to the runtime to use it.
17779         Set the exit code when Main exits.
17780
17781         * gc.c: Make sure domain finalisation happens in a subthread.
17782         Re-enable threaded GC, fixing bug 31333 (again).
17783
17784         * environment.c: System.Environment internall calls (so far just
17785         ExitCode is here, the others are still in icall.c)
17786
17787         * appdomain.c (mono_runtime_cleanup): All threads running managed
17788         code should have finished before mono_runtime_cleanup() is
17789         reached, so no need to clean up threads.
17790
17791 2003-01-22  Martin Baulig  <martin@ximian.com>
17792
17793         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
17794         `gpointer func' arguments.      
17795         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
17796         but added `MonoThread *thread' argument.
17797         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
17798
17799         * threads.c (mono_new_thread_init): Added `gpointer func' argument
17800         and pass it to the mono_thread_start_cb callback.
17801         (mono_install_thread_callbacks): New public function to install a
17802         set of callbacks which are set by the debugger.
17803         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
17804
17805 2003-01-22  Martin Baulig  <martin@ximian.com>
17806
17807         * Makefile.am: Install debug-mono-symfile.h.
17808
17809 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
17810
17811         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
17812
17813 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
17814
17815         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
17816         * class.c (mono_ptr_class_get): correctly set access levels of pointers
17817         (mono_array_class_get): correctly set access levels of arrays
17818
17819 2003-01-20      Patrik Torstensson
17820         * image.h (MonoAssemblyName): changed major, minor, build, revision
17821         from signed to unsigned.
17822
17823 2003-01-20  sean kasun <skasun@azstarnet.com>
17824
17825         * reflection.c (load_cattr_value): Now this handles
17826         MONO_TYPE_SZARRAY.  Fixes bug #35629
17827
17828 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
17829
17830         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
17831         integer value
17832
17833 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17834
17835         * decimal.c: fixed bug #26056.
17836
17837 2003-01-17  Martin Baulig  <martin@ximian.com>
17838
17839         * gc.c: Raise an ExecutionEngineException instead of using g_error().
17840
17841 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17842
17843         * exception.[ch]:
17844         (mono_get_exception_type_initialization): new function.
17845
17846         * object.c: throw a TypeInitializationException when an exception is
17847         thrown invoking the class constructor.
17848
17849 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17850
17851         * reflection.c: fixed attribute reading.
17852
17853 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17854
17855         * icall.c:
17856         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
17857         provided, look for the type in the calling assembly and then in
17858         mscorlib; if the assembly name is provided, only try that one.
17859
17860 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
17861
17862         * object.c: register the vtable before there is a chance it's
17863         queried again recursively.
17864
17865 2003-01-13  Duncan Mak  <duncan@ximian.com>
17866
17867         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
17868         gc-internal.h. 
17869         
17870 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
17871
17872         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
17873
17874 2003-01-11  Martin Baulig  <martin@ximian.com>
17875
17876         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
17877         this to 20 for the release.
17878
17879 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
17880
17881         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
17882
17883         * loader.c (mono_method_get_marshal_info): bug fix
17884
17885         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
17886         structures with explicit layout
17887
17888 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17889
17890         * profiler.c: made the output more readable (and sorted). 
17891         Added caller information for the allocation profiler.
17892
17893 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
17894
17895         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
17896
17897 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17898
17899         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
17900         to get value types.
17901         
17902 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
17903
17904         * object.c, profiler.h, profiler.c, profiler-private.h:
17905         Added object allocation profiler.
17906
17907 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
17908
17909         * reflection.h, reflection.c: handle global methods.
17910         Compress blob entries.
17911
17912 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
17913
17914         * marshal.c: fix compilation.
17915
17916 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
17917
17918         * loader.c (mono_method_get_marshal_info): impl.
17919
17920         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
17921
17922 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17923
17924         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
17925         for reference types.
17926
17927 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
17928
17929         * loader.c: fixed off by one error in loaded parameter names.
17930
17931 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
17932
17933         * marshal.c (mono_marshal_get_icall_wrapper): like
17934         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
17935         instead of a MonoMethod.
17936
17937 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17938
17939         * decimal.c: fixed bug #36537.
17940
17941 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
17942
17943         * marshal.c: throw a missing method exception if a
17944         P/Invoke method is not found.
17945
17946 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17947
17948         * icall.c: allow a null this for constructors.
17949
17950 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
17951
17952         * icall.c: raise the proper exceptions if the arguments to the
17953         internal Invoke are incorrect.
17954
17955 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
17956
17957         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
17958
17959 2003-01-03  Martin Baulig  <martin@ximian.com>
17960
17961         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17962
17963 2002-12-31  Martin Baulig  <martin@ximian.com>
17964
17965         * debug-mono-symfile.c: Completely rewrote the type section.
17966         Instead of using individual malloc()ed fields, we use one big
17967         continuous memory area and offsets into this area.
17968         See the comments in the source code for details.
17969
17970 2002-12-30  Martin Baulig  <martin@ximian.com>
17971
17972         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
17973
17974 2002-12-30  Martin Baulig  <martin@ximian.com>
17975
17976         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
17977         line number table in this data blob instead of using an external
17978         pointer.
17979
17980 2002-12-28  Martin Baulig  <martin@ximian.com>
17981
17982         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17983
17984 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
17985
17986         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
17987         as a boxed return type.
17988
17989 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
17990
17991         * appdomain.c
17992         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
17993         g_build_filename to properly get separators on the filename created.
17994
17995         * object.h: Small change, introduce MonoMarshalByRefObject to
17996         track the layout of that structure in the C# universe as we make
17997         changes there.
17998
17999 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
18000
18001         * object.c: removed assert to allow static fields on interfaces.
18002         * loader.c: a TypeSpec may be used for any type, not just arrays.
18003
18004 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18005
18006         * class.c, class.h: added mono_class_array_element_size ().
18007         Ignore static methods in interfaces.
18008
18009 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18010
18011         * threads.c: fixed the build under cygwin.
18012
18013 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
18014
18015         * reflection.c: handle nullref constants. Allocate keys for
18016         reflection handles with the GC.
18017
18018 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18019
18020         * threads.c, threads.h: added mono_thread_get_abort_signal()
18021         to get a suitable signal for thread abort.
18022
18023 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18024
18025         * metadata.c: fix handling of ExportedType table.
18026
18027 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18028
18029         * icall.c: added WriteWindowsDebugString internal call.
18030
18031 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18032
18033         * reflection.h: added fields to match C# implementation.
18034
18035 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18036
18037         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
18038
18039 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
18040
18041         * gc.h, gc-internal.h: Rename header for GC internal calls to
18042         gc-internal.h from gc.h as to not clash with Boehm GC having its
18043         header installed as <gc.h> in outside include paths.
18044         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
18045         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
18046
18047 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18048
18049         * icall.c: assign minor, build and revision in FillName.
18050
18051 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
18052
18053         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
18054         Added support for running code generated by Reflection.Emit.
18055
18056 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18057
18058         * appdomain.c: check for NULL argument in LoadFrom.
18059
18060 2002-12-10  Dick Porter  <dick@ximian.com>
18061
18062         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
18063
18064 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18065
18066         * appdomain.c: fix buglet when building exe file name.  Handle full
18067         assembly name (needed after latest changes to AssemblyName).
18068         * image.c:
18069         (mono_image_close): free some hashtables.
18070
18071 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
18072
18073         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
18074         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
18075         on some systems (redhat 7.3) 
18076
18077 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
18078
18079         * threads.c: delete the critical section of a sync block,
18080         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
18081
18082 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
18083
18084         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
18085
18086 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18087
18088         * appdomain.[ch]: handle the assembly preload event to try loading the
18089         assemblies using the paths we have in the current domain.
18090
18091         * assembly.[ch]: created an assembly preload hook that is called to try
18092         loading the assembly by other means that the ones provided here.
18093
18094         * domain.c: initialize the domain search path.
18095
18096         From now on, assemblies (TODO: except corlib and System) are loaded
18097         according to these rules when using mono_assembly_load ():
18098
18099                 1. It tries to load the assembly from the ApplicationBase
18100                 of the current domain appending .dll and .exe (TODO: have to
18101                 try loading from name/name.dll and name/name.exe).
18102
18103                 2. It tries the search path specified in PrivateBinPath for the
18104                 current domain (if any).
18105
18106                 3. Previous behavior.
18107
18108 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
18109
18110         * icall.c: implemented GetInterfaceMap() related icall.
18111         * domain.c, loader.h: load MethodInfo in mono_defaults.
18112
18113 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
18114
18115         * gc.c: disable the finalizer thread for now, untill all the issues
18116         with it are resolved.
18117
18118 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18119
18120         * string-icalls.c: handle embedded nulls in string ctor when the
18121         length is specified.
18122
18123 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
18124
18125         * class.c: look for explicit interface implementation in parent
18126         classes, too.
18127
18128 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
18129
18130         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
18131
18132 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
18133
18134         * gc.c: protect handles with a critical section.
18135
18136 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18137
18138         * icall.c:
18139         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
18140         parameters. If no assembly specified, try getting the type from all
18141         the assemblies in the current domain, else, load the assembly and get
18142         the type from it.
18143
18144 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18145
18146         * marshal.c: applied patch from Aleksey Demakov that fixes
18147         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
18148
18149 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18150
18151         * icall.c: fixed get_location.
18152
18153 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
18154
18155         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
18156         declarations to make it work with older gcc. 
18157
18158         * loader.c (mono_get_method): set signature->pinvoke for native calls
18159
18160 2002-11-20  Dick Porter  <dick@ximian.com>
18161
18162         * threads.c (mono_thread_init): Set the main thread's handle
18163
18164 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
18165
18166         * gc.c: allow compilation without GC support. Changed to match the
18167         mono coding style.
18168
18169 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
18170
18171         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
18172
18173 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
18174
18175         * reflection.c: set a public key token on the core assemblies.
18176
18177 2002-11-18  Dick Porter  <dick@ximian.com>
18178
18179         * threads.c: Split out some thread initialisation so that other
18180         files can set the start callback function.
18181
18182         * gc.c: Run finalisers in a separate thread, to avoid stack
18183         overflow.  Fixes bug 31333.
18184
18185         * appdomain.c: Set up GC finalisation thread.
18186
18187         * reflection.c: 
18188         * object.c: 
18189         * domain.c: Use gc.h macros for GC_malloc
18190         
18191 2002-11-15  Dick Porter  <dick@ximian.com>
18192
18193         * threadpool.c: 
18194         * threads.c:
18195         * appdomain.c: Removed mono_runtime_init_with_attach(),
18196         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
18197         merging the extra parameter with the existing function.  Removed
18198         unneeded code in mono_thread_attach().
18199
18200 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
18201
18202         * image.c (mono_image_loaded_by_guid): a method to get loaded
18203         images by guid. 
18204         (load_metadata_ptrs): we store the guid as string.
18205
18206 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
18207
18208         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
18209
18210         * metadata.c (mono_guid_to_string): imported method form Zoltan
18211         Varga (slightly modified)
18212
18213         * assembly.c (mono_assembly_open): load precompiled code
18214
18215         * loader.h (MonoMethod): we store the method token for use in the
18216         aot compiler. 
18217
18218 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18219
18220         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
18221         the hook function called when an assembly is loaded.
18222         
18223         * domain.c: Modified file.
18224         (mono_domain_assembly_load): removed hash table insertion of assemblies.
18225
18226         Fixes bug #33196.
18227
18228 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
18229
18230         * reflection.c: Map PEFileKind to the value expected by the WinNT
18231         image loader. 
18232
18233 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18234
18235         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
18236         Read until the buffer is filled completely.
18237
18238 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18239
18240         * icall.c: implemented MonoType.InternalGetEvent ().
18241
18242 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18243
18244         * appdomain.c: implemented InitAppDomainSetup. Delayed
18245         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
18246         the entry_assembly.
18247
18248         * assembly.c: base_dir is now an absolute path ending with
18249         G_DIR_SEPARATOR.
18250
18251         * icall.c: modified get_location according to the above changes.
18252
18253         * object.c: init AppDomain.SetupInformation for the default domain after
18254         we have the entry assembly.
18255
18256         * domain.c: when unloading a domain, setup = NULL.
18257
18258 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
18259
18260         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
18261
18262 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
18263
18264         * object.h, object.c: introduced mono_object_get_virtual_method ()
18265         to lookup the method invoked on an object when a callvirt is done on
18266         a method.
18267         * icall.c: make MethodInfo::Invoke() always do a virtual call.
18268
18269 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18270
18271         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
18272         current domain when loaded an assembly and failed to load it.
18273
18274         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
18275
18276 2002-10-31  Dick Porter  <dick@ximian.com>
18277
18278         * icall.c: 
18279         * file-io.h: 
18280         * file-io.c: Return the error status in a parameter, as the
18281         GetLastError() value has long since been blown away if we try and
18282         look it up in a subsequent internal call invocation.  Delete the
18283         GetLastError() internal call, because it's useless.
18284
18285 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
18286
18287         * class.[ch]: added cast_class to fix bug 29517
18288
18289 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
18290
18291         * marshal.c: create valid IL code in the filter clause:
18292         the new JIT is less forgiving:-)
18293
18294 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18295
18296         * icall.c: removed get_property internal call.
18297
18298 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
18299
18300         * appdomain.h domain.c: Added an ID to appdomains.
18301         
18302         * threads.c threads.h icall.c: Implement icall
18303         Thread:GetDomainID(), and remove unused icall 
18304         CurrentThreadDomain_internal.
18305
18306 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18307
18308         * icall.c: Don't recurse through the base types in GetConstructor.
18309         Fixes bug #32063. 
18310
18311 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18312
18313         * mempool.h, mempool.c: added mono_mempool_empty() and
18314         mono_mempool_stats().
18315
18316 2002-10-23  Dick Porter  <dick@ximian.com>
18317
18318         * file-io.c: 
18319         * file-io.h: 
18320         * icall.c: Added MonoIO.GetFileType internal call
18321
18322 2002-10-17  Dick Porter  <dick@ximian.com>
18323
18324         * appdomain.c (mono_runtime_cleanup): Don't signal the async
18325         delegate semaphore before waiting for all threads to finish,
18326         because new threads can also call async delegates.  Fixes bug
18327         32004.
18328
18329         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
18330         of 3 seconds, in case another async job is queued.  (This part is
18331         needed because the bug fix reintroduced the 3s exit lag.)  This
18332         makes the mono_runtime_shutdown flag superfluous.
18333
18334 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18335
18336         * reflection.c: include ehader size in method section headers.
18337         Really check for suplicated modules entries.
18338
18339 2002-10-17  Martin Baulig  <martin@gnome.org>
18340
18341         * debug-mono-symfile.c: Added back support for locals.
18342
18343 2002-10-14  Martin Baulig  <martin@gnome.org>
18344
18345         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
18346         MONO_TYPE_VOID.
18347
18348 2002-10-14  Martin Baulig  <martin@gnome.org>
18349
18350         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
18351         mono_class_get() instead of looking in the class cache. 
18352
18353 2002-10-13  Martin Baulig  <martin@gnome.org>
18354
18355         * debug-mono-symfile.c: Set version number to 28, include the
18356         signature in method names.
18357
18358 2002-10-13  Martin Baulig  <martin@gnome.org>
18359
18360         * debug-mono-symfile.h: Set version number to 27.
18361
18362 2002-10-11  Martin Baulig  <martin@gnome.org>
18363
18364         * gc.c: Don't register/unregister NULL pointers as disappearing links.
18365
18366 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18367
18368         * metadata.c, metadata.h: added helper function to allocate signatures.
18369
18370 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18371
18372         * icall.c: added internal call to get the location of machine.config.
18373
18374 2002-10-08  Martin Baulig  <martin@gnome.org>
18375
18376         * debug-mono-symfile.c: Ignore classes with a pending init for the
18377         moment.
18378
18379 2002-10-03  Dick Porter  <dick@ximian.com>
18380
18381         * threads.c: Freebsd pthread_t is a pointer
18382
18383 2002-10-03  Dick Porter  <dick@ximian.com>
18384
18385         * socket-io.c: Implemented GetHostName_internal
18386
18387 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18388
18389         * mono-config.c:
18390         (mono_config_parse_file): don't leak the text.
18391
18392 2002-10-02  Martin Baulig  <martin@gnome.org>
18393
18394         * debug-mono-symfile.c: Added support for methods.
18395
18396 2002-10-01  Martin Baulig  <martin@gnome.org>
18397
18398         * debug-mono-symfile.c: Don't emit methods and line numbers for
18399         the dynamic symbol file, just write the type table.  We can easily
18400         have an external helper program which creates a symbol file for an
18401         IL file.        
18402
18403 2002-10-01  Dick Porter  <dick@ximian.com>
18404
18405         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
18406         Only add the handle to the cleanup array when we're about to
18407         launch the thread.  Bug 31425 deadlocked when the test was run on
18408         mono under w32.
18409
18410 2002-10-01  Martin Baulig  <martin@gnome.org>
18411
18412         * debug-mono-symfile.c: Added support for properties.
18413
18414 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18415
18416         * reflection.c: unaligned store fix from Mark Crichton
18417         <crichton@gimp.org>.
18418
18419 2002-09-27  Martin Baulig  <martin@gnome.org>
18420
18421         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
18422         New interncall.
18423
18424 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18425
18426         * assembly.h, assembly.c: use a sane API to hook into the assembly
18427         loading process instead of a useless special-purpouse hack
18428         (ngen needs a hook, too, for example).
18429
18430 2002-09-27  Dick Porter  <dick@ximian.com>
18431
18432         * threads.c (mono_thread_init): Call GetCurrentProcess() so
18433         io-layer can set up some process handle info.  Not needed on w32,
18434         but doesn't hurt either.
18435
18436         * process.c: Pass the program name in the second parameter to
18437         CreateProcess, so the path is searched.  Include the working
18438         directory. Implemented process name, process enumeration, and some
18439         process detail internal calls.
18440         
18441         * icall.c: Added internal calls for process lookup, and some
18442         process details
18443
18444 2002-09-26  Martin Baulig  <martin@gnome.org>
18445
18446         * assembly.c (mono_install_open_assembly_hook): New global
18447         function to install a function to be invoked each time a new
18448         assembly is loaded.
18449         (mono_assembly_open): Run this callback function if set.
18450
18451         * debug-mono-symfile.c: Put back line numbers for the dynamic
18452         symbol file and also record the .il file as source file.  This
18453         allows us to install the temporary symbol file as `file.dbg' just
18454         like a compiler-generated one.
18455
18456 2002-09-26  Nick Zigarovich <nick@chemlab.org>
18457
18458         * Corrected typo in gc.c (BOHEM vs BOEHM).
18459
18460 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18461
18462         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
18463         GetProperties. Also avoid calling g_slist_length in GetProperties and
18464         GetMethods.
18465
18466 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18467
18468         * reflection.c: avoid unaligned stores (bug spotted by
18469         Mark Crichton  <crichton@gimp.org>).
18470
18471 2002-09-25  Martin Baulig  <martin@gnome.org>
18472
18473         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
18474         instead of guint64 for addresses and added prologue/epilogue info.
18475
18476 2002-09-25  Martin Baulig  <martin@gnome.org>
18477
18478         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
18479         store line number info.  For the dynamic symbol file, we only need
18480         to provide the JIT generated dynamic line number info for the dynamic
18481         symbol file.
18482
18483 2002-09-25  Martin Baulig  <martin@gnome.org>
18484
18485         * debug-mono-symfile.h: Incremented version number.
18486
18487 2002-09-24  Martin Baulig  <martin@gnome.org>
18488
18489         * class.c (mono_debugger_class_init_func): New global function
18490         pointer variable.
18491         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
18492         call it.
18493
18494         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
18495         function.  This is called via the mono_debugger_class_init_func
18496         hook to add all types to the dynamic type table.
18497         (ves_icall_MonoDebugger_GetType): New interncall to get a class
18498         from its metadata token.
18499
18500         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
18501         New interncall for the debugger.
18502
18503 2002-09-24  Nick Drochak <ndrochak@gol.com>
18504
18505         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
18506         before using it in case it is null.
18507         
18508 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18509
18510         * metadata.c: allow custom modifiers in local var signatures
18511         (bug spotted by Zoltan Varga).
18512
18513 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18514
18515         * class.c: deal with the <Module> class that may have a NULL vtable.
18516         Eliminate warnings.
18517
18518 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18519
18520         * image.c, image.h: more strong name helpers.
18521         * monosn.c: more work: convert pem keys to cryptoapi format.
18522
18523 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18524
18525         * string-icalls.c: speedup IndexOf.
18526
18527 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18528
18529         * icall.c: updates from Zoltan.2.Varga@nokia.com.
18530
18531 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18532
18533         * icall.c: cleanup: use mono_object_domain ().
18534
18535 2002-09-23  Martin Baulig  <martin@gnome.org>
18536
18537         * debug-mono-symfile.c: Improved type support.
18538
18539 2002-09-22  Martin Baulig  <martin@gnome.org>
18540
18541         * debug-mono-symfile.c: Added support for reference types and strings.
18542
18543 2002-09-22  Martin Baulig  <martin@gnome.org>
18544
18545         * debug-mono-symfile.c: Started to work on the type table.
18546
18547 2002-09-21  Martin Baulig  <martin@gnome.org>
18548
18549         * debug-mono-symfile.c: Largely reworked the symbol table format.
18550         The symbol table is now incrementally updated each time a new
18551         method is added.  We're now also using our own magic and version
18552         so that you don't need to recompile all your classes if the
18553         dynamic table changes.
18554         (mono_debug_update_mono_symbol_file): Removed.
18555         (mono_debug_symfile_add_method): New function to add a method.
18556
18557 2002-09-21  Martin Baulig  <martin@gnome.org>
18558
18559         * icall.c
18560         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
18561         New interncall.
18562
18563         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
18564         New interncall to get a method from its metadata token.
18565
18566 2002-09-21  Martin Baulig  <martin@gnome.org>
18567
18568         * debug-mono-symfile.c: Create type table.
18569
18570 2002-09-20  Martin Baulig  <martin@gnome.org>
18571
18572         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
18573
18574 2002-09-20  Martin Baulig  <martin@gnome.org>
18575
18576         * debug-mono-symfile.c: Provide information about params and locals.
18577
18578 2002-09-20  Martin Baulig  <martin@gnome.org>
18579
18580         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
18581         New interncall.
18582
18583         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
18584         interncall to get a method from its metadata token.
18585
18586 2002-09-20  Martin Baulig  <martin@gnome.org>
18587
18588         * debug-mono-symfile.c: Added a few checks for method->header
18589         being non-NULL.  This should never happen, but for the moment
18590         let's use a g_warning() rather than a g_assert().
18591
18592 2002-09-19  Mark Crichton  <crichton@gimp.org>
18593
18594         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
18595         even if support for it isn't present.  Added an #ifdef to fix this.
18596
18597         * socket-io.c: Added checks back for Solaris support.
18598
18599 2002-09-19  Martin Baulig  <martin@gnome.org>
18600
18601         * debug-mono-symfile.c (read_string, write_string): Reflect latest
18602         changes in the symbol file format.
18603
18604 2002-09-18  Martin Baulig  <martin@gnome.org>
18605
18606         * debug-mono-symfile.c: Set version number to 21.
18607
18608 2002-09-18  Dick Porter  <dick@ximian.com>
18609
18610         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
18611         on netbsd.  Fixes bug 30051.
18612
18613 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18614
18615         * reflection.c:
18616         (set_version_from_string): little fix.
18617
18618 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18619
18620         * monosn.c, Makefile.am: added strong name utility.
18621         * reflection.h, reflection.c: implemented delayed signing,
18622         locale, version and hash id assembly attributes.
18623
18624 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18625
18626         * loader.c, metadata.c: load param attributes in signatures.
18627
18628 2002-09-16  Martin Baulig  <martin@gnome.org>
18629
18630         * debug-mono-symfile.c: Added string table with all method names.
18631
18632 2002-09-14  Martin Baulig  <martin@gnome.org>
18633
18634         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
18635         fast method lookup.
18636
18637 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18638
18639         * reflection.c: record the public key token of referenced assemblies.
18640
18641 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18642
18643         * image.c, image.h: added functions to get the strong name and the
18644         public key of an assembly.
18645         * pedump.c: use them.
18646
18647 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
18648
18649         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
18650
18651 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
18652
18653         * marshal.c (mono_marshal_get_managed_wrapper): Added
18654         MONO_TYPE_BOOLEAN 
18655
18656 2002-09-11  Martin Baulig  <martin@gnome.org>
18657
18658         * gc.c: Call GC_unregister_disappearing_link() on all links when
18659         finalizing them, this is necessary to aviod a crash in boehm's
18660         finalize handler.
18661
18662 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18663
18664         * gc.c: handle GetTarget for finalized objects spotted and fixed by
18665         nick@chemlab.org.
18666
18667 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
18668
18669         * icall.c: implemented MonoType::Module.
18670         * reflection.c, reflection.h: mono_module_get_object () from
18671         Tomi Pakarinen <tomi.pakarinen@welho.com>.
18672
18673 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18674
18675         * icall.c: ignore overridden methods in GetMethods ().
18676         Fix for FieldInfo::SetValue().
18677         * object.c: handle float/double in runtime invoke.
18678
18679 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18680
18681         * object.c: allow a constructor to be called again on an object.
18682
18683 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18684
18685         * class.h, class.c: move field layout code to it's own function and
18686         export it. Get an interface id earlier. Move fields in MonoClass
18687         so they are more cache friendly and align the bitfields.
18688         * loader.c: temporary handle get_param_names() for a runtime method.
18689         * reflection.c, reflection.h: more code to handle runtime creation of
18690         types.
18691
18692 2002-09-09  Martin Baulig  <martin@gnome.org>
18693
18694         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
18695         signature with the pinvoke field being set for the actual call.
18696
18697 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18698
18699         * icall.c: removed some unused icalls. Start of map of glib charsets
18700         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
18701
18702 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18703
18704         * debug-helpers.c: break infinite loop (found and fixed by
18705         Holger Arnold <harnold@gmx.de>).
18706
18707 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18708
18709         * icall.c: target may be null in create_delegate.
18710
18711 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18712
18713         * marshal.c: handle a boolean return type.
18714
18715 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18716
18717         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
18718
18719 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18720
18721         * gc.c: fix weakreferences.
18722
18723 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
18724
18725         * icall.c: added icall to get default codepage.
18726
18727 2002-09-03  Dick Porter  <dick@ximian.com>
18728
18729         * threads.h: 
18730         * threads.c: Use MonoThread instead of MonoObject where
18731         apropriate.
18732
18733         Store running thread objects in a hash table, so that we have all
18734         the info to hand when waiting for them to finish
18735         (means we don't need OpenThread() any more, so mingw builds should
18736         be fully functional again.)
18737
18738         * verify.c:
18739         * object.h: Added thread ID to MonoThread
18740
18741 2002-09-03  Martin Baulig  <martin@gnome.org>
18742
18743         * icall.c (System.Reflection.Assembly::get_location): New interncall.
18744
18745 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18746
18747         * icall.c: fixed leak in get_temp_path. Thanks lupus.
18748
18749 2002-09-03  Martin Baulig  <martin@gnome.org>
18750
18751         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
18752         argument to store the end address of the disassembled instruction.
18753
18754         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
18755         here from debug-symfile.h.
18756         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
18757         JIT into this struct.
18758         (MonoSymbolFile): Added `char *image_file' field.
18759         (MonoDebugGetMethodFunc): Removed.
18760         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
18761         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
18762         (mono_debug_find_method): New method.
18763
18764         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
18765         create a full symbol file.
18766         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
18767         and static symbol files.
18768         (mono_debug_find_method): The symbol file keeps an internal method hash,
18769         call this to get a MonoDebugMethodInfo from a MonoMethod.
18770
18771         * debug-symfile.[ch]: Removed.
18772
18773 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
18774
18775         * image.c (do_mono_image_open): Remove linker version check.
18776
18777 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
18778
18779         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
18780         wrappers for instance methods.
18781         
18782 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18783
18784         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
18785
18786 2002-08-28  Dick Porter  <dick@ximian.com>
18787
18788         * Makefile.am: Export HOST_CC for w32 builds
18789
18790 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18791
18792         * file-io.c process.c: MonoString are null terminated, no
18793         need for mono_string_to_utf16() anymore.
18794
18795 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18796
18797         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
18798
18799 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
18800
18801         * icall.c, reflection.h: speedup System.MonoType.
18802
18803 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18804
18805         * reflection.c: allow null as the value of a string argument in
18806         custom attributes constructors.
18807
18808 2002-08-27  Martin Baulig  <martin@gnome.org>
18809
18810         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
18811         `trampoline_address' field.
18812
18813 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
18814
18815         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
18816         check (fixes bug #29486) 
18817
18818 2002-08-27  Martin Baulig  <martin@gnome.org>
18819
18820         * debug-mono-symfile.c: Changed the file format in a way that allows us
18821         open it read-only and to use a specially malloced area for all the
18822         dynamic data.  We can now also generate a symbol file on-the-fly if we're
18823         debugging IL code and there is no MCS generated symbol file for it.
18824
18825 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18826
18827         * object.c: added a define for a good string and array
18828         creation speedup (not enabled by default because we need to deal with
18829         the synch stuff).
18830
18831 2002-08-26  Martin Baulig  <martin@gnome.org>
18832
18833         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
18834         function to create a dynamic symbol file.  This is used by the
18835         debugger to create a symbol file for IL code on-the-fly.
18836
18837 2002-08-26  Martin Baulig  <martin@gnome.org>
18838
18839         * loader.c (mono_lookup_pinvoke_call): Include the error message
18840         from g_module_error() in the error message.
18841
18842 2002-08-24  Martin Baulig  <martin@gnome.org>
18843
18844         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
18845         function to update the symbol file.  The symbol file is mmap()ed
18846         writable, but private.  This allows us to install the symbol file
18847         together with the assembly.
18848
18849 2002-08-24  Martin Baulig  <martin@gnome.org>
18850
18851         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
18852         but they can read the new symbol file format which mcs is now creating.
18853
18854         * debug-symfile.c (mono_debug_find_source_location): Moved to
18855         debug-mono-symfile.c; this is now operating on the new symbol file.
18856
18857 2002-08-23  Martin Baulig  <martin@gnome.org>
18858
18859         * debug-helpers.c (mono_method_desc_from_method): New function to get
18860         a MonoMethodDesc from a MonoMethod.
18861
18862 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18863
18864         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
18865         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
18866
18867 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18868
18869         * string-icalls.[ch]: make helper methods static.
18870
18871 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18872
18873         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
18874         types to it and to SetValueInternal.
18875
18876         * object.c: Moved handle_enum label to its proper place. This was the
18877         f... bug! ;-)
18878
18879         This time i compiled mcs and gtk-sharp and they both work.
18880
18881 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18882
18883         * icall.c: reverted partially my previous patch until 
18884         object.c:set_value handles enums correcly.
18885
18886 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18887
18888         * icall.c:
18889         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
18890         (ves_icall_System_Environment_get_MachineName): removed warning when
18891         compiling under cygwin.
18892
18893 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18894
18895         * object.c: fixed field_get_value() for reference types.
18896
18897 2002-08-22  Dick Porter  <dick@ximian.com>
18898
18899         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
18900         Don't free a buffer while it's still needed.  Patch from Jonathan
18901         Liger <Jonathan.liger@wanadoo.fr>
18902
18903 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
18904
18905         * icall.c (ves_icall_System_Environment_get_Platform): Add new
18906         internal call.
18907
18908 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
18909
18910         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
18911         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
18912
18913         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
18914         we call unmanaged code which throws exceptions.
18915
18916 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18917
18918         * appdomain.h: added per-domain entry_assembly.
18919         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
18920         arguments.
18921         * icall.c: Assembly::GetEntryAssembly icall.
18922         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
18923         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
18924
18925 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18926
18927         * appdomain.h, gc.c: added mono_domain_finalize ().
18928
18929 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18930
18931         * object.c:
18932         (mono_print_unhandled_exception): changed g_warning by g_printerr
18933         because g_log has a 1024 characters limit (yeah, i got a big stack
18934         trace). Don't print exception name, that should be in ToString 
18935         returned string.
18936
18937 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18938
18939         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
18940         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
18941
18942 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18943
18944         * object.c:
18945         (mono_print_unhandled_exception): after previous commit, i realized
18946         that MS calls ToString on the exception. I changed this function to
18947         do that. This way we get stack_trace for free.
18948
18949 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18950
18951         * object.c:
18952         (mono_print_unhandled_exception): invoke Message property instead of
18953         getting 'message' field from Exception. Don't allocate memory for
18954         'trace' and 'message' if not needed.
18955
18956 2002-08-18  Dick Porter  <dick@ximian.com>
18957
18958         * unicode.c: Fix asserts to match Encoder.cs checks
18959
18960 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18961
18962         * marshal.c: fix unaligned store issue and a few wrong
18963         opcode argument types.
18964
18965 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18966
18967         * icall.c: added GetUninitializedObjectInternal internal call.
18968
18969 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
18970
18971         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
18972         to the right domain.
18973
18974 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
18975
18976         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
18977
18978         * class.c (class_compute_field_layout): set blittable to false for Strings
18979
18980         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
18981
18982 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18983
18984         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
18985         first chunk of code to create types at runtime. Code to
18986         handle ReflectedType/DeclaringType. Make reflection handles
18987         domain specific.
18988
18989 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18990
18991         * class.c: set correct name in arrays.
18992
18993 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
18994
18995         * appdomain.c (mono_domain_transfer_object): make it work with
18996         valuetypes. bug fixes.
18997
18998 2002-08-12  Dick Porter  <dick@ximian.com>
18999
19000         * object.h: Rename some parameters to avoid c++ keywords (Patch
19001         from Joseph Wenninger <kde@jowenn.at>)
19002
19003 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
19004
19005         * icall.c: added icall to implement Assembly.GetFile*.
19006
19007 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19008
19009         * reflection.h, reflection.c: code to embed managed resources.
19010
19011 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19012
19013         * class.c: move all the type size stuff into
19014         class_compute_field_layout().
19015
19016 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19017
19018         * class.c: ensure enums have always the correct instance size.
19019         * unicode.c: remove wrong assert.
19020
19021 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19022
19023         * assembly.c: fix mem corruption issue.
19024         * image.h, image.c: added mono_image_get_resource () to access
19025         managed resources.
19026         * icall.c: implemented Assembly.EntryPoint property and some
19027         Managed Resources related internalcalls.
19028
19029
19030 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19031
19032         * image.c, image.h: impemented mono_image_get_entry_point ().
19033         * appdomain.c: use mono_image_get_entry_point.
19034
19035 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19036
19037         * reflection.c: support the object type argument when loading
19038         custom attributes.
19039
19040 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
19041
19042         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
19043         String as return type.
19044
19045 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
19046
19047         * reflection.c: fix encoding of named args for custom attrs to match
19048         the ms implementation. Read them back when instantiating custom
19049         attributes.
19050
19051 2002-08-02  Radek Doulik  <rodo@ximian.com>
19052
19053         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
19054         by Dietmar as quick fix
19055         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
19056         16 as stack size, used on more places as quick fix before Dietmar
19057         will fix it properly
19058
19059 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19060
19061         * object.h, object.c: added accessors for fields and properties.
19062
19063 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19064
19065         * class.c, class.h: made mono_class_get_field_from_name ()
19066         loop on parent types.
19067         Added mono_class_get_property_from_name ().
19068
19069 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19070
19071         * class.c, class.h: move the code to setup the type vtable in its own
19072         function so that it can be reused also for types created at runtime.
19073         Eliminate the "class" identifier from the header file.
19074         * reflection.c: setup the vtable for enums so that we can create
19075         objects for use in SetConstant ().
19076
19077 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
19078
19079         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
19080         instead of the delegate itself as this pointer (bug #28383)
19081
19082 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
19083
19084         * marshal.c (mono_marshal_get_managed_wrapper): added return type
19085         conversions.
19086
19087 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19088
19089         * loader.c: don't set the pinvoke bit on icalls.
19090
19091 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
19092
19093         * debug-helpers.c (mono_method_full_name): only print a number to
19094         indicate wrapper type (so that the output is more readable in traces).
19095
19096 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
19097
19098         * class.c (mono_class_init): include method override patch from Paolo
19099
19100 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
19101
19102         * icall.c: fixed GetTypeCode().
19103
19104 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
19105
19106         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
19107         use real delegate invoke function to make it work with multicast
19108         delegates (fix bug# 28291).
19109
19110 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19111
19112         * object.c: load constant strings.
19113
19114 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19115
19116         * reflection.c: no magic numbers.
19117         * tabledefs.h: security action enum.
19118
19119 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19120
19121         * assembly.c: fix possible memory corruption.
19122
19123 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19124
19125         * reflection.h, reflection.c: added support for linking resources.
19126         * verify.c: check we have an updated corlib.
19127
19128 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
19129
19130         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
19131         string arrays.
19132         (mono_marshal_string_array): null terminate unmanaged string arrays.
19133         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
19134
19135 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19136
19137         * icall.c: Type.GetType () can now return also types from the
19138         calling assembly.
19139
19140 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19141
19142         * loader.h, loader.c: stack walking support.
19143         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
19144         GetCallingAssembly.
19145
19146 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
19147
19148         * marshal.c: added optimisations for blittable types 
19149
19150         * class.c (mono_array_class_get): do not set blittable attribute on arrays
19151         (mono_class_setup_mono_type): set blittable attribute for single
19152         and double.
19153
19154         * marshal.c (mono_string_utf8_to_builder): impl.
19155         (mono_string_builder_to_utf8): impl.
19156         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
19157
19158 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
19159
19160         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
19161         (mono_marshal_get_managed_wrapper): impl. byref types
19162
19163 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19164
19165         * icall.c:
19166         (search_method): don't display debug message. 
19167
19168 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19169
19170         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
19171
19172 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19173
19174         * appdomain.c: set the missing filename when throwing exception.
19175
19176 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19177
19178         * metadata.c (mono_type_size): code cleanup
19179         (mono_type_stack_size): removed some test code
19180
19181 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
19182
19183         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
19184         mono_get_exception_file_not_found now.
19185
19186         * exception.c (mono_exception_from_name_two_strings): New version
19187         that will call a constructor with two string arguments. 
19188         (mono_get_exception_file_not_found): New helper routine, used to
19189         report file-not-found errors.
19190
19191 2002-07-20  Dick Porter  <dick@ximian.com>
19192
19193         * process.h:
19194         * process.c: Pass file handles to CreateProcess
19195         
19196         * icall.c:
19197         * file-io.h:
19198         * file-io.c: Implemented CreatePipe
19199
19200 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19201
19202         * metadata.c (mono_get_param_info): set alignment for value types
19203
19204 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19205
19206         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
19207         Constify mono_domain_assembly_open().
19208         * loader.c: handle null namespace in icalls.
19209
19210 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19211
19212         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
19213         (emit_str_to_ptr_conv): marshal object as structs
19214
19215         * metadata.c (mono_type_to_unmanaged): marshal object as structs
19216
19217         * marshal.c (mono_marshal_get_runtime_invoke): support value types
19218
19219 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
19220
19221         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
19222         (mono_marshal_get_native_wrapper): we an now return value types
19223
19224 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19225
19226         * verify.c: more checks implemented.
19227
19228 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
19229
19230         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
19231         (fix bug #27695)
19232         (mono_marshal_get_native_wrapper): allow byref arguments
19233         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
19234         impl. PtrToStringXXX methods
19235         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
19236         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
19237         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
19238         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
19239         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
19240
19241 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19242
19243         * reflection.c: fix buglet in parsing an assembly name.
19244
19245 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19246
19247         * marshal.c (emit_ptr_to_str_conv): first impl.
19248
19249 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19250
19251         * object.c, class.h: cache the vtable in the class as suggested by
19252         vargaz@freemail.hu (Zoltan Varga).
19253
19254 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19255
19256         * class.h, loader.c: added mono_field_from_token().
19257         * verify.c: first cut of type checking code.
19258
19259 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19260
19261         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
19262
19263 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
19264
19265         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
19266         (fix bug #27782)
19267         (mono_marshal_get_remoting_invoke): impl.
19268         (mono_delegate_begin_invoke): impl.
19269         (mono_mb_emit_save_args): impl.
19270         (mono_delegate_end_invoke): impl.
19271         (mono_marshal_get_delegate_begin_invoke):
19272         (mono_marshal_get_delegate_end_invoke):
19273         (mono_marshal_get_delegate_invoke): generate a special name for
19274         those methods (including the signature) and associate them whith
19275         the delegate class. 
19276
19277 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
19278
19279         * reflection.[ch]: 
19280         (mono_reflection_type_from_name): now it has a MonoImage parameter
19281         which is used as the default image to search the type in. If the image
19282         is NULL or getting the type from it fails, it defaults to corlib.
19283
19284         * icall.c: changed 1 call to mono_reflection_type_from_name to match
19285         new parameter.
19286
19287 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19288
19289         * reflection.c: update the parameter table index.
19290
19291 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19292
19293         * domain.c: don't include the mark byte in the string hash.
19294
19295 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19296
19297         * icall.cs: icall for Type.GetTypeCode ().
19298         * verify: a couple of fixes and disabled local initialization checks.
19299
19300 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
19301
19302         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
19303
19304         * debug-helpers.c (mono_method_full_name): print the type of the
19305         runtime wrapper
19306
19307         * metadata.c (mono_signature_hash): a hash function for signatures
19308         (mono_signature_hash): better hash algorithm
19309
19310         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
19311
19312         * debug-helpers.c (mono_method_full_name): this can now generate
19313         method names with signatures
19314
19315         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
19316         method dont have this pointers.
19317
19318 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19319
19320         * reflection.c: fixup typebuilder tokens.
19321         * image.c: fix buglet.
19322         * marshal.h: remove whitespace.
19323         * metadata.h, metadata.c: reinstate code that was removed.
19324         * verify.c: handle catch directives and fix another couple of bugs.
19325
19326 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
19327
19328         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
19329         (mono_marshal_get_native_wrapper): make it comp. with the old code
19330         (mono_marshal_get_native_wrapper): support boolean
19331         (mono_marshal_get_managed_wrapper): support more types
19332
19333 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
19334
19335         * class.c (class_compute_field_layout): compute class->blittable attribute.
19336
19337 2002-07-09  Dick Porter  <dick@ximian.com>
19338
19339         * threads.c: Make the thread cleaning up cope with threads that
19340         call ExitThread()
19341
19342 2002-07-08  Radek Doulik  <rodo@ximian.com>
19343
19344         * reflection.c (method_encode_code): use non-translated values to
19345         compute finally_start, this fixes exception handling on ppc, yay!
19346
19347         * decimal.h (struct signscale): fix endianess
19348
19349 2002-07-07  Radek Doulik  <rodo@ximian.com>
19350
19351         * reflection.c: swap box_val and not val
19352
19353 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19354
19355         * reflection.c, reflection.h: handle full assembly info in type name.
19356         Handle Type arguments when loading custom attributes.
19357         * icall.c: updated to use new mono_reflection_type_from_name () method.
19358
19359 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19360
19361         * loader.c:
19362         (method_from_memberref): also print assembly name when method not found.
19363
19364 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19365
19366         * icall.c:
19367         (ves_icall_TypeGetProperties): fixed bug #27473. 
19368
19369 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19370
19371         * reflection.c: display image name and token when cannot find the
19372         .ctor for an attribute.
19373
19374 2002-07-05  Martin Baulig  <martin@gnome.org>
19375
19376         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19377
19378 2002-07-04  Dick Porter  <dick@ximian.com>
19379
19380         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
19381         compile on mingw.  This will cause mingw builds to not wait for
19382         subthreads to terminate after the main thread does.  I've lodged a
19383         bug with the mingw developers for them to wrap OpenThread().
19384
19385 2002-07-03  Dick Porter  <dick@ximian.com>
19386
19387         * threads.c: Store thread IDs instead of handles, because
19388         GetCurrentThread() returns a pseudohandle and therefore stores
19389         useless values.  mono_thread_cleanup() continues checking the
19390         array of threads until it is empty, to cope with subthreads
19391         spawning new threads after the main thread has finished.
19392
19393         * profiler.h:
19394         * profiler.c:
19395         * profiler-private.h: Pass the thread ID to thread profiler
19396         functions, instead of a handle
19397
19398 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19399
19400         * verify.c: fixes to make it more usable.
19401         * pedump.c: added --verify code to verify IL code in an assembly.
19402
19403 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19404
19405         * reflection.c: turn errors into warnings to allow compiling corlib.
19406
19407 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19408
19409         * reflection.c: add special cases to compile corlib.
19410
19411 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19412
19413         * reflection.c: handle properties with only a set method.
19414
19415 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19416
19417         * opcodes.h: add enum with opcodes in opval order.
19418
19419 2002-07-01  Dick Porter  <dick@ximian.com>
19420         
19421         * object.h:
19422         * object.c (mono_runtime_run_main): Removed unneeded argument
19423
19424 2002-06-28  Martin Baulig  <martin@gnome.org>
19425
19426         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19427
19428 2002-06-27  Dick Porter  <dick@ximian.com>
19429
19430         * threads.c: Store the handle in both the parent thread and in the
19431         subthread, to minimise the time between starting a new thread and
19432         storing its ID.
19433
19434 2002-06-26  Dick Porter  <dick@ximian.com>
19435
19436         * appdomain.c (mono_runtime_cleanup): Close the socket library
19437         after all the threads have finished, not before
19438
19439 2002-06-26  Martin Baulig  <martin@gnome.org>
19440
19441         * debug-symfile.c (mono_debug_find_source_location): Added
19442         `guint32 *line_number' argument.  If it's not NULL, store the line number
19443         there and return the file name without the line number.
19444
19445 2002-06-25  Dick Porter  <dick@ximian.com>
19446
19447         * icall.c:
19448         * process.h:
19449         * process.c: Process forking and other support functions
19450
19451 2002-06-25  Dick Porter  <dick@ximian.com>
19452
19453         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
19454         things dont happen when the image is closed.
19455         (mono_image_lookup_resource): Walk the resource section looking
19456         for a particular entry
19457
19458         * cil-coff.h: PE resource section decoding
19459
19460 2002-06-25  Dick Porter  <dick@ximian.com>
19461         
19462         * assembly.h:
19463         * assembly.c: 
19464         (mono_assembly_foreach): Accessor functions to walk the list of
19465         loaded assemblies
19466         (mono_assembly_set_main):
19467         (mono_assembly_get_main): Process methods need to know which
19468         assembly is the "main" one
19469
19470         * object.c (mono_runtime_run_main): Record the main assembly
19471
19472         * debug-helpers.c: Fix typo
19473
19474 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
19475
19476         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
19477         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
19478
19479 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19480
19481         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
19482
19483 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
19484
19485         * image.c (do_mono_image_open): Initialize reference count,
19486         otherwise we leak the MonoImage.
19487
19488 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19489
19490         * reflection.c: small tweak to handle self-hosting.
19491
19492 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19493
19494         * reflection.c: fix type name parse code.
19495
19496 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19497
19498         * reflection.c: break out of the loop.
19499         * image.c: special case corlib.
19500
19501 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19502
19503         * reflection.c: add all the custom attrs at the end to ensure the
19504         ctors have been properly initialized when the attributes are defined
19505         in the current assembly.
19506
19507 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19508
19509         * reflection.c: handle correctly multiple-nested types.
19510
19511 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
19512
19513         * row-indexes.h: fix typos.
19514         * reflection.c: adjust for typos and fix method_def_or_ref
19515         encoding in MethodImpl table.
19516
19517 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19518
19519         * reflection.c: fix entry point patching (thanks Serge!).
19520
19521 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
19522
19523         * verify.c: add check for System.Exception
19524
19525 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19526
19527         * image.c, class.c: minifix for code just c&p'ed.
19528         * reflection.c: warning fix.
19529         * object.h, loader.h, domain.c: load also StringBuilder.
19530
19531 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19532
19533         * marshal.h, marshal.c: some support code to handle complex marshaling.
19534
19535 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19536
19537         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
19538         Better signatures with vtable error dump.
19539
19540 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
19541
19542         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
19543
19544 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
19545
19546         * icall.c (ves_icall_Type_GetField): impl.
19547
19548 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19549
19550         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
19551         to retrieve a marshal description blob for a field or param.
19552
19553 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19554
19555         * reflection.h, reflection.c: change order of nested type emission
19556         to avoid table corruption. The NestedTypes table is sorted.
19557         * icall.c: change order of GetConstructor results to workaround mcs bug.
19558
19559 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19560
19561         * reflection.h, reflection.c: handle field and param marshal
19562         information.
19563
19564 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19565
19566         * icall.c, marshal.c marshal.h: more Marshal class implementation.
19567
19568 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19569
19570         * reflection.c: fix call convention.
19571
19572 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19573
19574         * reflection.h, reflection.c: mono_image_get_memberref_token()
19575         takes a type instead of a class, now. Added
19576         mono_image_get_array_token() to create tokens for the special
19577         multi-dim array methods.
19578
19579 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19580
19581         * assembly.c: handle modules (no assembly table). Split
19582         loading references in its own function.
19583         * class.c: handle moduleref resolution scope.
19584         * image.c, image.h: cache module name in image.
19585
19586 2002-06-07  Martin Baulig  <martin@gnome.org>
19587
19588         * reflection.c (mono_image_get_type_info): Only add a class layout entry
19589         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
19590
19591 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19592
19593         * icall.c: more signature fixes that used uint instead of int.
19594
19595 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19596
19597         * reflection.c: fixed signature of field refs.
19598
19599 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19600
19601         * class.c, reflection.c: handle typerefs of nested types
19602         (both on read and when writing files).
19603
19604 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
19605
19606         * icall.c: fix method signatures that tried to workaround the previous
19607         typo, d'oh!
19608
19609 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19610
19611         * debug-helpers.c: fix typo.
19612
19613 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19614
19615         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
19616         rewrote the PE/COFF writing code (our programs are understood by the
19617         ms runtime, now).
19618
19619 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19620
19621         * gc.c, gc.h, icall.c: weakreference support.
19622
19623 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19624
19625         * Makefile.am, mono-config.c: use $(sysconfdir).
19626
19627 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19628
19629         * icall.c: changed default precision of Double.ToString() to 15.
19630         Fixed memory leak. Unified with Single.ToString.
19631
19632 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
19633
19634         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
19635
19636 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19637
19638         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
19639         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
19640         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
19641         and myself.
19642
19643 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19644
19645         * debug-symfile.c, sysmath.c: yet more compilation fixes.
19646
19647 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19648
19649         * reflection.c, socket-io.c: more compilation fixes.
19650
19651 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19652
19653         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
19654         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
19655         unicode.c: warning and compiler compatibility fixes.
19656
19657 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19658
19659         * class.h, metadata.c: fixed warnings/compilation errors.
19660
19661 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19662
19663         * Makefile.am, mono-config.c, mono-config.h: configuration file
19664         support routines.
19665         * loader.c, loader.h: make Dll mapping configurable at runtime in the
19666         config file. Export methods to insert and lookup mappings.
19667
19668 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19669
19670         * reflection.c: handle types and boxed objects in custom attr
19671         constructors.
19672
19673 2002-05-30  Martin Baulig  <martin@gnome.org>
19674
19675         * debug-symfile.c
19676         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
19677
19678 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
19679
19680         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
19681         to lookup the implmap row for a P/Invoke method.
19682         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
19683         P/Invoke method from the runtime on an as needed basis.
19684
19685 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
19686
19687         * metadata.c (mono_metadata_parse_signature): impl.
19688
19689 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19690
19691         * class.c: handle .pack directive.
19692
19693 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19694
19695         * object.c: initialize static fields with RVA data.
19696
19697 2002-05-25  Martin Baulig  <martin@gnome.org>
19698
19699         * debug-symfile.c
19700         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
19701
19702 2002-05-24  Martin Baulig  <martin@gnome.org>
19703
19704         * debug-symfile.c
19705         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
19706         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
19707         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
19708
19709 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19710
19711         * object.c: special case string ctros in invoke.
19712         * gc.c: silly whitespace changes.
19713
19714 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
19715
19716         * threadpool.[ch]: impl. a threadpool that can
19717         be used by mint and mono.
19718
19719 2002-05-22  Martin Baulig  <martin@gnome.org>
19720
19721         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
19722         The first argument is now a `MonoReflectionModuleBuilder *', the return
19723         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
19724         `methods' field to get the method builder.  The `token' argument is the
19725         unfixed token.
19726
19727         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
19728         invalid characters instead of g_assert_not_reached()ing.  This seems
19729         to be the behaviour of mscorlib.
19730
19731 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
19732
19733         * object.c (mono_runtime_invoke_array): applied patch from Rachel
19734         Hestilow to fix bug #25104
19735
19736 2002-05-21  Martin Baulig  <martin@gnome.org>
19737
19738         * debug-symfile.c (mono_debug_find_source_location): New function.
19739         Looks up an IL offset in the line number table and returns the source
19740         location as a string.
19741
19742 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19743
19744         * icall.c:
19745         (mono_double_ToStringImpl): changed %f by %g until we have something
19746         better.
19747
19748 2002-05-21  Nick Drochak  <ndrochak@gol.com>
19749
19750         * icall.c : Use different name for Math.Pow's icall.  Needed to check
19751         parameters first in C#.
19752
19753 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19754
19755         * icall.c, reflection.h: added icall to get info about an event.
19756
19757 2002-05-20  Radek Doulik  <rodo@ximian.com>
19758
19759         * object.c (mono_value_box): don't use memcpy for boxing on BIG
19760         endian
19761         (mono_value_box): don't use memcpy for small sizes on
19762         architectures with unaligned access
19763
19764 2002-05-20  Martin Baulig  <martin@gnome.org>
19765
19766         * reflection.c (mono_reflection_setup_internal_class): Don't crash
19767         if `tb->parent == NULL'.
19768         (mono_reflection_create_internal_class): New function.  This is
19769         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
19770         for enum types.
19771
19772         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
19773         New interncall.
19774
19775 2002-05-19  Martin Baulig  <martin@gnome.org>
19776
19777         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
19778         argument to get the length, don't default to the array length.
19779
19780 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
19781
19782         * assembly.c (mono_assembly_setrootdir): New function used to
19783         override the MONO_ASSEMBLIES directory.
19784
19785 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19786
19787         * icall.c: ValueType_GetHashCode() initialize local var.
19788
19789 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19790
19791         * reflection.c: sort custom attributes table.
19792
19793 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19794
19795         * reflection.c: support named args in custom attributes (write support).
19796
19797 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19798
19799         * reflection.c: fix finally position calculation.
19800
19801 2002-05-15  Radek Doulik  <rodo@ximian.com>
19802
19803         * reflection.c: fixed endianess at many places
19804
19805         * icall.c (ves_icall_InitializeArray): comment out debug msg
19806
19807 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
19808
19809         * object.c (mono_unhandled_exception): new function to handle
19810         unhandled exceptions.
19811         (mono_unhandled_exception): call the UnhandledException event.
19812         (mono_runtime_delegate_invoke): impl.
19813
19814 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
19815
19816         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
19817         returns the RVA, not the direct pointer to the data. Handle the case
19818         when the class size is fixed.
19819
19820 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19821
19822         * reflection.c: fix some endianess issues.
19823
19824 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
19825
19826         * object.c (mono_runtime_invoke): is now able to catch exceptions.
19827
19828         * threads.c (mono_thread_init): added a callback which is invoked
19829         at thread start.
19830
19831 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19832         
19833         * icall.c: make GetHashCode return non-negative values.
19834
19835 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19836
19837         * object.c, icall.c, gc.c: revert to address-based hashcode.
19838
19839 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
19840
19841         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
19842
19843 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19844
19845         * icall.c, class.c: special case <Module>.
19846
19847 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
19848
19849         * icall.c: fix bug in GetNow().
19850
19851 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
19852
19853         * object.c (mono_runtime_class_init): make sure that we call all
19854         static class constructors.
19855
19856 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19857
19858         * reflection.c: sort methodsemantics table.
19859
19860 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19861
19862         * reflection.h, reflection.c: honour init locals setting.
19863
19864 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
19865
19866         * icall.c: copied Double ToStringImpl for Single ToStringImpl
19867
19868 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19869
19870         * reflection.c: support ContructorBuilders in attribute blob creation.
19871
19872 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19873
19874         * reflection.c: some changes to build a binary that can be run
19875         directly in windows.
19876
19877 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19878
19879         * loader.c: print a big message when an icall can't be found.
19880
19881 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19882
19883         * string-icalls.c: fix bug 24248.
19884
19885 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19886
19887         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
19888         icall.c, reflection.h: separate assembly loading by pathname and by
19889         assembly name. Use the MONO_PATH env var to search for assemblies.
19890
19891 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19892
19893         * assembly.c, image.h: add some support for assemblies
19894         with multiple modules.
19895         * class.c, class.h: export mono_class_from_typeref().
19896         * loader.c: remove duplicated code and use mono_class_from_typeref(),
19897         instead.
19898
19899 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19900
19901         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
19902         documentation says (the ECMA one is correct).
19903
19904 2002-05-02  Dick Porter  <dick@ximian.com>
19905
19906         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
19907         Don't name the synchronisation mutex.
19908
19909 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
19910
19911         * rand.c
19912         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
19913         Make the prototypes match.
19914         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
19915         Same.
19916
19917         * icall.c
19918         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
19919         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
19920         all systems have tm.tm_zone, so use strftime() with %Z to print
19921         the timezone abreviation into a temp string.
19922
19923         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
19924         rather than mono_array_addr() on a MonoString on Big Endian
19925         machines.
19926
19927 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
19928
19929         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
19930         fix bug 24041
19931
19932 2002-04-30  Dick Porter  <dick@ximian.com>
19933
19934         * socket-io.c: Cope with SOCKET being an integer rather than a
19935         pointer now.
19936
19937         * threads.c: Added Thread_free_internal, to deal with thread
19938         handle cleanup.  Moved calls to handle_store() and handle_remove()
19939         to start_wrapper(), so each can only be called once.  Allocate
19940         synchronisation blocks with GC_malloc(), and use GC finalisation
19941         to close the handles.
19942
19943         * icall.c: added System.Threading.Thread::Thread_free_internal
19944
19945 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19946
19947         * icall.c: support Environment.Exit, CommandLineArgs().
19948
19949 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19950
19951         * object.c, object.h: added mono_runtime_run_main () and
19952         mono_runtime_get_main_args () for use in System.Environment.
19953
19954 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19955
19956         * gc.c: fix thinko, enable actual finalization since the jit is now
19957         fixed.
19958
19959 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19960
19961         * gc.c, object.c: take into account that an object may be offset wrt the address
19962         returned by GC_malloc().
19963
19964 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
19965
19966         * image.c: handle files without entries in the assembly table (modules).
19967
19968 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
19969
19970         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
19971         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
19972         allowed to be null when it's System.Object class setup.
19973
19974 2002-04-27  Martin Baulig  <martin@gnome.org>
19975
19976         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
19977         if `tb->parent == NULL' rather than crashing.
19978
19979 2002-04-28  Nick Drochak  <ndrochak@gol.com>
19980
19981         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
19982         calling acos() where asin() should have been called.
19983
19984 2002-04-26  Martin Baulig  <martin@gnome.org>
19985
19986         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
19987         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
19988         there's a subdirectory called `System', but we don't want to read that
19989         subdirectory as an assembly.
19990
19991 2002-04-25  Martin Baulig  <martin@gnome.org>
19992
19993         * debug-symfile.c: Reflect latest MonoString changes.
19994
19995 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19996
19997         * rand.c, rand.h: instance method icalls need to have an explicit
19998         this pointer as first argument in the C implementation.
19999
20000 2002-04-25  Nick Drochak <ndrochak@gol.com>
20001
20002         * icall.c: Fix typo in map for GetNonZeroBytes
20003
20004 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20005
20006         * string-icalls.c : String does now passes unit tests without any 
20007         errors, the following changes has been made:
20008         
20009         Implemented replace methods.
20010         Renaming of methods to (try) follow the standard.
20011         Fixed compare ordinal
20012         Made all memory allocated directly to function instead of via icall function.
20013         Small performance fix in is_in_array function
20014                         
20015  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
20016
20017         c (mono_string_Internal_ctor_charp_int_int):
20018         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
20019         sindex < 0, throw ArgumentOutOfRangeException instead of
20020         ArgumentNullException.
20021
20022         Added new check for length == 0, however
20023         I need to make it return String.Empty from the C code.
20024         
20025         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
20026         that calculate the length for us here.
20027         
20028         (mono_string_Internal_ctor_sbytep_int_int): Replaced
20029         mono_string_new_utf16 with mono_string_new, since value is utf8.
20030
20031 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20032
20033         * object.c: register the object for finalization if needed.
20034         Allocate one more char in the string for the terminating 0 char.
20035
20036 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20037
20038         * class.c, class.h, image.c: check if a type implemenst a destructor.
20039         Use the proper key for array class lookups.
20040         * icall.c: register the icalls in the System.GC class.
20041         * gc.c, gc.h: GC-related functions and icalls.
20042
20043 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20044
20045         * icall.c:
20046         * socket-io.c:
20047         * unicode.c: free some strings gotten from mono_string_to_utf8 and
20048         changed a couple of free () by g_free ().
20049
20050         * decimal.c: one-liner in the comments for decimal2string ().
20051
20052 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20053
20054         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
20055
20056 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20057
20058         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
20059         * object.c (mono_runtime_invoke_array) : handle null in params
20060
20061 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20062
20063         * string-icalls.c: fixed bug in split (one off bug)
20064
20065 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20066
20067         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
20068         * icalls.c: added String::Equals as internal method
20069
20070 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20071
20072         * threads.c: fixed bug in the double interlocked functions
20073
20074 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
20075
20076         * threads.c: implemented all of the new interlocked icalls.
20077         * string-icalls.c: fix a bug in insert.
20078         * icalls.c: added the icalls for interlocked, removed old string functions.
20079         
20080 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20081
20082         * loader.c: fix off-by-one error when reading argument names.
20083
20084 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20085
20086         * profiler.c: win32 counter implementation (untested).
20087         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
20088         (the latter needs testing and more complete impl. from win32 folks).
20089
20090 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
20091
20092         * object.c: mono_array_new_full workaround mono_array_class_get
20093         problem.
20094
20095 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20096
20097         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
20098         * object.h (mono_string_chars): Changed casting type.
20099
20100 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20101
20102         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
20103                            method signatures to use gunichar2 instead of gint16.
20104
20105 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
20106
20107         * object.h, object.c: domain-specific versions of mono_object_new and
20108         mono_array_new.
20109
20110 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
20111
20112         * object.c: changed String layout
20113
20114         * string-icalls.c (mono_string_Internal_ctor_chara): added
20115         internal string constructors.
20116
20117 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
20118
20119         * threads.c: pass 'this' to the thread start routine.
20120
20121 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20122
20123         * string-icalls.c: fix IndexOf and LastIndexOf. Now
20124         InternalCompareStr don't call twice mono_string_cmp_char for the last
20125         character. Improved performance in mono_string_cmp_char.
20126
20127 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20128
20129         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
20130         code into its own library: libmonoruntime.
20131
20132 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
20133
20134         * object.h, object.c: changed array format so that szarrays do not
20135         require a bounds structure.
20136         * icall.c, appdomain.c: support for new szarray format.
20137
20138 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20139
20140         * metadata.c: compare also the retuns type when comparing signatures:
20141         we didn't do this as an optimization since really overloaded methods
20142         must differ also in the arguments, but this doesn't work with
20143         low-level IL code (or when using explicit conversion operators: see
20144         bug#23498 for an example).
20145
20146 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20147
20148         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
20149
20150 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
20151
20152         * icall.c: make MonoType::GetElementType its own icall.
20153
20154 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20155
20156         * icall.c: remove MonoMethod_get_Name().
20157         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
20158         object.
20159
20160 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20161
20162         * string-icalls.c: optimized a few methods.
20163
20164 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20165
20166         * icall.c: added all new string internal calls
20167         * string-icalls.c: added, new string internal call implementation.
20168         * object.c: added mono_string_new_size for allocating a string a size
20169
20170 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
20171
20172         * object.c (mono_object_isinst): use the same code as in the
20173         optimized x86 version.
20174
20175 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20176
20177         * profiler.c: TSC-based timer code (faster and more accurate).
20178         Not hooked up in configure, yet (set USE_X86TSC to 1).
20179
20180 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
20181
20182         * profiler.c, profiler.h: track time spent compiling methods.
20183         * threads.c: track thread creation/destruction.
20184
20185 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
20186
20187         * profiler.c, profiler.h, profiler-private.h: profiling interface
20188         and sample implementation. Moved here so that it can be used also by
20189         the jit.
20190
20191 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
20192
20193         * reflection.c, reflection.h: keep types and other handles separate in
20194         the hash tables for referred tokens. Add guid for modules.
20195
20196 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20197
20198         * assembly.c: fix bugs found with valgrind.
20199         * metadata.h, metadata.c: added mono_metadata_guid_heap().
20200
20201 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
20202
20203         * threads: added icall support for getting current domain for
20204                    the thread.
20205  
20206 2002-04-13  Martin Baulig  <martin@gnome.org>
20207
20208         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
20209         (MonoDebugVarInfo): Added `index' field for register based addresses.
20210         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
20211         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
20212         `MonoDebugVarInfo *params' and `guint32 this_offset' with
20213         `MonoDebugVarInfo *this_var'.
20214
20215         * debug-symfile.c (relocate_variable): New static function to write
20216         a location description for a local variable or method parameter.
20217
20218 2002-04-12  Martin Baulig  <martin@gnome.org>
20219
20220         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
20221         stack offset and begin/end scope address of a local variable.
20222         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
20223         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
20224         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
20225
20226         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
20227         Added new relocation types for start/end scope of a local variable.
20228
20229 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20230
20231         * object.h: add mono_object_domain() macro.
20232         * reflection.c: handle typespecs.
20233         * icall.c: MonoMethod::get_Name() implementation.
20234
20235 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20236
20237         * icall.c: String::GetHashCode() icall implementation.
20238
20239 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20240
20241         * icall.c: String::IndexOfAny icall.
20242         * object.c, object.h: make array->max_length more useful.
20243         Intrduced mono_object_class() and mono_string_length() macros.
20244
20245 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20246
20247         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
20248         instead of g_unichar_isdigit.
20249
20250 2002-04-11  Nick Drochak  <ndrochak@gol.com>
20251
20252         * icall.c: Implement a simple Double.ToString().
20253
20254 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20255
20256         * appdomain.h: only io-layer.h is supposed to be included.
20257         * icall.c: explicitly import environ. Fix warning.
20258
20259 2002-04-10  Nick Drochak  <ndrochak@gol.com>
20260
20261         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
20262                 return true even if it's not Daylight Savings time.
20263                 Only return false for the case where the function isn't
20264                 implemented for a plaform (read Windows).
20265
20266 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20267
20268         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
20269         data with a mutex.
20270
20271 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
20272
20273         * mempool.c (mono_mempool_alloc): only use g_malloc when
20274         absolutely necessary.
20275
20276 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20277
20278         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
20279
20280         * class.c (mono_class_vtable): use domain mempool to allocate vtable
20281         (mono_class_proxy_vtable): use domain mempool
20282
20283 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20284
20285         * appdomain.h, appdomain.c: split initialization that requires the
20286         execution engine support into mono_runtime_init().
20287
20288 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20289
20290         * class.c (mono_class_init): don't include vtable inside MonoClass
20291         to save some memory, gather some statistics.
20292         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
20293
20294 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20295
20296         * icall.c: internalcall implementation for ValueType.Equals().
20297
20298 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
20299
20300         * object.c (mono_message_init): moved 
20301         (mono_runtime_exec_main): new arch. independent impl.
20302         (mono_runtime_invoke_array): new method - like
20303         mono_runtime_invoke, but you can pass an array of objects.
20304         (mono_remoting_invoke): new arch. independent impl.
20305         (mono_message_invoke): new arch. independent impl.
20306         (mono_runtime_class_init): new arch. independent impl.
20307         (mono_runtime_object_init): new arch. independent impl.
20308
20309 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20310
20311         * metadata.c, object.c, reflection.c: documented the exported
20312         functions.
20313
20314 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
20315
20316         * icall.c: simpler code to pass the assembly builder data to corlib.
20317         Implement GetNestedTypes() internalcall.
20318
20319 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20320
20321         * class.c: warn if a type can't be loaded.
20322
20323 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
20324
20325         * image.h: typedef MonoImageOpenStatus
20326         * types.h: removed unused file
20327         
20328 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
20329
20330         * icall.c: Enum_ToObject accepts enum value arguments.
20331
20332 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20333
20334         * class.c: move initialization of properties, events and nested
20335         classes, so that they happen for interfaces, too.
20336
20337 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20338
20339         * icall.c: cleanup some ugly casts in Array_SetValue*.
20340
20341 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20342
20343         * icall.c: the values array fro enums is of the correct type, now.
20344         Implement (correctly) getFullName instead of assQualifiedName for
20345         MonoType.
20346         * reflection.h, reflection.c: added mono_type_get_name ().
20347
20348 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20349
20350         * assembly.c, image.h: for each MonoImage, record from wich assembly
20351         it was loaded.
20352         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
20353         Make Type.Assembly work.
20354
20355 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
20356
20357         * debug-symfile.h: use char* instead of gpointer to avoid
20358         unnecessary casts.
20359
20360         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
20361
20362         * icall.c (ves_icall_InternalExecute): impl. FielSetter
20363         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
20364
20365 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
20366
20367         * icall.c (mono_message_init): impl. (code cleanup)
20368         (ves_icall_InternalExecute): impl. FieldGetter
20369
20370         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
20371         defined we call all (non-static)methods through the vtable. 
20372
20373 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
20374
20375         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
20376         finalizer even though the memory is still referenced (and the chunk of
20377         memory is not freed).
20378
20379 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
20380
20381         * assembly.c: fix brokeness.
20382
20383 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
20384
20385         * class.c: kill some warnings. Check explicit interface method
20386         implementation also without considering the namespace.
20387         Load also literal strings in static class data.
20388
20389 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
20390
20391         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
20392         (default_assembly_name_resolver): Make the resolver take the
20393         "base" directory where the assembly was originally defined, so we
20394         can load DLLs that are in the same directory as the assembly that
20395         is being referenced.
20396
20397 2002-03-28  Dick Porter  <dick@ximian.com>
20398
20399         * file-io.h: 
20400         * file-io.c:
20401         * socket-io.c: 
20402         * unicode.h: 
20403         * unicode.c: Warning cleanups
20404
20405 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
20406
20407         * object.h, reflection.h: use the correct type instead of MonoObject.
20408
20409 2002-03-28  Martin Baulig  <martin@gnome.org>
20410
20411         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
20412         (mono_debug_update_symbol_file): Initialize classes if necessary.
20413
20414 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
20415
20416         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
20417         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
20418
20419 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
20420
20421         * assembly.h: fix function prototype.
20422         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
20423         * mono-endian.h: use const cast.
20424
20425 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20426
20427         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
20428
20429 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20430
20431         * loader.c: don't assert when a typeref can't be loaded, give
20432         a chance to the runtime to trow an exception instead.
20433         * loader.h: fix warning.
20434
20435 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20436
20437         * class.c (mono_class_proxy_vtable): added proxy support
20438
20439 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
20440
20441         * icall.c: removed last of PAL calls, added System.Environment
20442         * file-io.h, file-io.c: MonoIO implementation
20443         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
20444
20445 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20446
20447         * appdomain.c: do not use the byte marker in ldstr table lookup.
20448         * debug-helpers.c: allow two ':' to separate class and method name.
20449         * object.c: allocate arrays bounds with the GC, too.
20450         * verify: add a few more checks.
20451
20452 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
20453
20454         * reflection.c: output also literal strings. Allocate parameter data
20455         with GC_malloc() (thanks, Martin, for catching this!).
20456
20457 2002-03-26  Martin Baulig  <martin@gnome.org>
20458
20459         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
20460         include the `this' offset in the `param_offsets'.
20461
20462 2002-03-25  Martin Baulig  <martin@gnome.org>
20463
20464         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
20465         mono_debug_get_class() function to get the classes. Added new
20466         relocation types for arrays and strings.
20467         (mono_debug_get_class): New static function to search in all
20468         referenced assemblies for a metadata token.
20469
20470         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
20471
20472 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
20473
20474         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
20475         hold gc-allocated objects. Make the string heap a stream like the
20476         others. Removed duplicated code when writing stream info.
20477         Added asserts to catch possible buffer overflows. Set the sorted map
20478         for tables that need sorting. Added some documentation.
20479
20480 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
20481
20482         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
20483         for interned strings and vtables.
20484
20485 2002-03-24  Martin Baulig  <martin@gnome.org>
20486
20487         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
20488         it in the array since it was created with g_slist_prepend().
20489
20490 2002-03-24  Martin Baulig  <martin@gnome.org>
20491
20492         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
20493         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
20494         (mono_debug_method_from_token): Renamed to
20495         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
20496         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
20497
20498         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
20499         relocation types.
20500
20501         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
20502
20503 2002-03-24  Martin Baulig  <martin@gnome.org>
20504
20505         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
20506         (mono_debug_method_from_token): New func.
20507
20508         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
20509         New interncall, calls mono_debug_local_type_from_signature().
20510         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
20511         calls mono_debug_method_from_token().
20512
20513 2002-03-23  Martin Baulig  <martin@gnome.org>
20514
20515         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
20516         specifies the number of bytes to be converted, not the array size.
20517         Return the number of chars, not the number of bytes.
20518         (ves_icall_iconv_get_chars): The `byteCount' argument
20519         specifies the number of bytes to be converted, not the array size.
20520
20521 2002-03-23  Martin Baulig  <martin@gnome.org>
20522
20523         * reflection.h (MonoReflectionSigHelper): New type.
20524
20525         * reflection.c (mono_reflection_sighelper_get_signature_local),
20526         (mono_reflection_sighelper_get_signature_local): New functions.
20527
20528         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
20529         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
20530         interncalls.
20531
20532 2002-03-23  Martin Baulig  <martin@gnome.org>
20533
20534         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
20535         is_writeable is set.
20536         (mono_raw_buffer_update): New function to write the modified map
20537         back to disk.
20538
20539         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
20540
20541         * debug-symfile.c (mono_debug_update_symbol_file): Call
20542         mono_raw_buffer_update() when done writing.
20543
20544 2002-03-23  Martin Baulig  <martin@gnome.org>
20545
20546         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
20547
20548         * debug-symfile.c: Added support for arguments and local variables.
20549
20550 2002-03-23  Dick Porter  <dick@ximian.com>
20551
20552         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
20553         protected by ifdefs, hence breaking the w32 build.
20554
20555 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20556
20557         * object.c: implement is_interned() the right way.
20558
20559 2002-03-21  Martin Baulig  <martin@gnome.org>
20560
20561         * debug-symfile.[ch]: New files to handle debugging information
20562         files. There's also support to dynamically update these symbol
20563         files to include machine dependent information.
20564
20565 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
20566
20567         * threads.c (mono_thread_create): new function to create thread
20568         from C
20569
20570 2002-03-20  Martin Baulig  <martin@gnome.org>
20571
20572         * icall.c (ves_icall_InternalInvoke): Create a new object if the
20573         method is a constructor.
20574         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
20575         points to ves_icall_InternalInvoke().
20576
20577 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
20578
20579         * file-io.c: Flush shouldn't throw exceptions.
20580
20581 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
20582
20583         * file-io.c: FileStream flush support; FileSetLength now
20584         restores file pointer.
20585
20586 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
20587
20588         * class.c: set image for pointer classes.
20589
20590 2002/03/19  Nick Drochak <ndrochak@gol.com>
20591
20592         * sysmath.c: Forgot one.
20593
20594 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
20595
20596         * sysmath.c: Avoid redefining existing names.
20597
20598 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
20599
20600         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
20601         handled by runtime as icall rather than dllimport from libm.so
20602         * file-io.c, file-io.h: fixed handle argument type.
20603
20604 2002-03-18  Dick Porter  <dick@ximian.com>
20605
20606         * reflection.c (mono_image_get_type_info): rename interface to
20607         iface, because of "#define interface struct" on windows.
20608
20609 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
20610
20611         * class.c, class.h: rename and export mono_ptr_class_get().
20612         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
20613         * reflection.c, reflection.h, icall.c: better/saner type name
20614         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
20615         method signatures.
20616
20617 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
20618
20619         * class.c (mono_class_init): removed hardcoded GHC_SLOT
20620
20621         * icall.c (ves_icall_InternalInvoke): impl.
20622
20623 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20624
20625         * reflection.c: output the interface map table, too.
20626
20627 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
20628
20629         * class.c (class_compute_field_layout): separate computation of 
20630         static field layout
20631
20632 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
20633
20634         * icall.c: added System.Buffer support.
20635         * file-io.c: moved file icalls from PAL to FileStream.
20636
20637 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
20638
20639         * icall.c (ves_icall_System_Object_GetHashCode): impl.
20640
20641 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
20642
20643         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
20644
20645 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20646
20647         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
20648
20649 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
20650
20651         * debug-helpers.{c,h}: moved here from monograph some useful functions
20652         to locate a method by name/signature in a class or image. Included
20653         also a small and flexible IL disassembler.
20654
20655 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20656
20657         * reflection.c: fixup tokens in methods with small header size, too.
20658
20659 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
20660
20661         * object.c (mono_string_to_utf8): remove assert(!error), instead
20662         print a warning. 
20663
20664 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
20665
20666         * icall.c: update to the new mono_Array_class_get interface.
20667
20668 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
20669
20670         * appdomain.c, object.c: Boehm-GC enable.
20671         * icall.c: make get_data_chunk() support split data requests.
20672         Ensure a class is initialized in more cases. Return only the first
20673         property found in GetProperties() or the compiler gets confused. 
20674         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
20675         * reflection.h, reflection.c: add fixup mechanism for field and method
20676         tokens. Initialize assembly->typeref in a single place. Output
20677         properties after events. Support custom attributes for events, too.
20678         Typo fix for paramter custom attrs.
20679
20680 2002-03-07  Martin Baulig  <martin@gnome.org>
20681
20682         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
20683
20684 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
20685
20686         * class.c (mono_array_class_get): fix. for multi. dim. arrays
20687
20688 2002-03-06  Martin Baulig  <martin@gnome.org>
20689
20690         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
20691         non-zero lower bounds. See testcases #F10-#F13.
20692
20693 2002-03-05  Martin Baulig  <martin@gnome.org>
20694
20695         * exception.c (mono_get_exception_argument_out_of_range): New exception.
20696
20697         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
20698         ves_icall_System_Array_GetValue(), only calculate the absolute array position
20699         here.
20700         (ves_icall_System_Array_SetValue): Likewise.
20701         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
20702         as argument and does the actual work. This function is used when copying a
20703         multi-dimensional array.
20704         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
20705         now do all the widening conversions of value types.
20706         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
20707
20708 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20709
20710         * class.c: remove some magic numbers and use the smbolic names,
20711         instead. Added init_events() to load event info at class init time.
20712         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
20713         and mono_metadata_methods_from_event().
20714         * reflection.h, reflection.c: added support for writing out the evnets
20715         related information.
20716
20717 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
20718
20719         * reflection.h, icall.c: use a different method (GetInterfaces)
20720         to gather interface info and add isbyref, isprimitive and
20721         ispointer to the ves_icall_get_type_info() return value.
20722
20723 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
20724
20725         * class.h: stared adding support for events.
20726         * icall.c: split find_members implementation. Added debug icall to get
20727         the address of an object.
20728         * reflection.c: handle TypeBuilders in mono_type_get_object().
20729
20730 2002-03-01  Martin Baulig  <martin@gnome.org>
20731
20732         * icall.c (ves_icall_System_Array_GetLength): This must throw an
20733         ArgumentOutOfRangeException(), not an ArgumentException().
20734         (ves_icall_System_Array_GetLowerBound): Likewise.
20735         (ves_icall_System_Array_GetValue): Improved argument checking.
20736         (ves_icall_System_Array_SetValue): Improved argument checking.
20737
20738 2002-03-01  Martin Baulig  <martin@gnome.org>
20739
20740         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
20741         called with invalid arguments rather than just dying with g_assert().
20742         (ves_icall_System_Array_SetValue): Likewise.
20743         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
20744         raise a NotImplementedException instead.
20745         (ves_icall_System_Array_GetLength): Added argument checking.
20746         (ves_icall_System_Array_GetLowerBound): Added argument checking.
20747
20748 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
20749
20750         * object.h (mono_assert): new macros mono_assert and
20751         mono_assert_not_reached
20752
20753 2002-02-28  Martin Baulig  <martin@gnome.org>
20754
20755         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
20756         and "System::String::IsInterned" to "System::String::_IsInterned".
20757
20758 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
20759
20760         * icall.c: remove hacks for typebuilder. Added icall to create a
20761         modified type from a tybebuilder.
20762         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
20763         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
20764         to create a backing MonoClass for a TypeBuilder.
20765
20766 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20767
20768         * class.c, class.h: more refactoring of class init.
20769         Export mono_class_setup_mono_type() and mono_class_setup_parent().
20770
20771 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
20772
20773         * marshal.c, marshal.h: start of marshaling interface.
20774
20775 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
20776
20777         * icall.c: fix order in assembly qualified name icall.
20778
20779 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
20780
20781         * class.c: do not free str, since we store it in the hash table.
20782         * reflection.h: add label field to MonoILExceptionInfo.
20783         * reflection.c: handle references to more than one assembly. Handle
20784         case when there isn't a module created in the assembly.
20785
20786 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20787
20788         * class.c: Fix typo. Start refactoring of class init code.
20789
20790 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20791
20792         * appdomain.c: exit with 1 on error.
20793         * class.c: we already have the name in MonoClassField.
20794         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
20795         MonoStreamHeader instead of an offset of image->raw_metadata.
20796
20797 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
20798
20799         * appdomain.c (mono_init): Be even more descriptive about the error.
20800
20801 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
20802
20803         * appdomain.c: give the user an informative message when corlib can't
20804         be loaded.
20805
20806 2002-02-26  Martin Baulig  <martin@gnome.org>
20807
20808         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
20809         New icall to get the time zone data.
20810
20811 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20812
20813         * reflection.c: set virtual and raw size of section correctly.
20814         * threads.c: transfer domain information to newly created threads.
20815
20816 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20817
20818         * class.c: when instancing a class in a domain, load the default
20819         vaules for static fields from the constant table. Fix System.Enum to
20820         not be an enum.
20821         * icall.c: implement Object::GetType() internalcall. Implemented
20822         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
20823         Fixed checking of binding flags in find_members().
20824         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
20825         * reflection.c: handle enumerations when writing to the constant
20826         table. Use a different object cache for types.
20827
20828
20829 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
20830
20831         * object.c (mono_object_isinst): fix for arrays
20832
20833         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
20834
20835 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20836
20837         * object.c: don't use mprotect ()  and fix intern pool hash table
20838         lookup for big endian systems.
20839
20840 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20841
20842         * icall.c: change type_is_subtype_of () signature.
20843
20844 2002-02-21  Mark Crichton  <crichton@gimp.org>
20845
20846         * rand.c, rand.h: Added random number generator for
20847         System.Security.Cryptography classes.
20848
20849         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
20850
20851         * icall.c: Added System.Security.Cryptography calls.
20852
20853 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
20854
20855         * class.c, icall.c, metadata.c: better support for pointer types.
20856         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
20857         * reflection.c: Add support for getting custom attrs for properties
20858         and simplify some code.
20859
20860 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20861
20862         * icall.c: change getToken () and add custom attribute GetBlob()helper
20863         method.
20864         * reflection.h: add custom attrs array to the reflection builder structures.
20865         * reflection.c: encode and emit custom attributes for all the relevant
20866         reflection objects. Cache fieldref and methodref tokens. Change
20867         mono_image_create_token() interface to take a MonoDynamicAssembly.
20868         More complete custom attributes decoder. Load custom attributes for
20869         Assembly, Field, Method and Constructor objects, too. Make the
20870         returned array an Attribute[] one, not object[]. Added
20871         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
20872         custom attribute constructor.
20873
20874 2002-02-20  Dick Porter  <dick@ximian.com>
20875
20876         * icall.c:
20877         * rawbuffer.c:
20878         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
20879         problem code out for now).
20880
20881 2002-02-19  Radek Doulik  <rodo@ximian.com>
20882
20883         * object.c (mono_ldstr): use hash table to avoid multiple swapping
20884
20885 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
20886
20887         * icall.c: register the GetCustomAttributes method.
20888         * object.c, object.h: add mono_string_new_len ().
20889         * reflection.h, reflection.c: added mono_runtime_invoke(),
20890         mono_install_runtime_invoke(). Added
20891         mono_reflection_get_custom_attrs () to load custom attributes and
20892         create the attribute objects.
20893
20894 2002-02-19  Dick Porter  <dick@ximian.com>
20895         * threads-dummy-types.c:
20896         * threads-dummy-types.h:
20897         * threads-dummy.c:
20898         * threads-dummy.h:
20899         * threads-pthread-types.c:
20900         * threads-pthread-types.h:
20901         * threads-pthread.c:
20902         * threads-pthread.h:  Deleted obsolete files
20903
20904 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
20905
20906         * class.c (mono_class_vtable): runtime init the class when we
20907         allocate static class data.
20908
20909         * icall.c (ves_icall_System_Array_SetValue): check for null values.
20910
20911         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
20912         and String - but we will need generic marshalling support in the
20913         future. 
20914         (mono_init): set the domain name in a ms compatible way
20915
20916         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
20917         String[].
20918
20919 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
20920
20921         * object.c (mono_array_clone): use alloca() instead of g_malloc  
20922         for sizes
20923
20924         * appdomain.c (mono_domain_unload): impl.
20925
20926 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20927
20928         * appdomain.c, object.c: fix intern pool implementation.
20929         * class.c: fix alignment code.
20930
20931 2002-02-16  Radek Doulik  <rodo@ximian.com>
20932
20933         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
20934         and s2 > s1, just copy lower bytes to be compatible with little
20935         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
20936         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
20937
20938         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
20939         force big_endian to be 1 for big endian machines 
20940         (ves_icall_iconv_new_decoder): ditto
20941
20942 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
20943
20944         * socket-io.c (convert_sockopt_level_and_name): If the system
20945         doesn't define SOL_IP or SOL_TCP, get them by hand using
20946         getprotobyname() and caching the values (because this could be a
20947         slow operation).
20948         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
20949         Use the appropriate struct when the system does support it. Ie,
20950         not all systems have struct ip_mreqn so use struct ip_mreq when
20951         appropriate.
20952
20953 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
20954
20955         * reflection.c: handle finally clauses.
20956
20957 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
20958
20959         * socket-io.c: use g_snprintf() instead of snprintf.
20960
20961 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20962
20963         * reflection.c (mono_param_get_objects): Cast second argument to
20964         mono_method_get_param_names to a const char** to silence the
20965         compiler warning.
20966
20967         * appdomain.c (mono_domain_assembly_open): Put parens around the
20968         truth statement in the for-loop.
20969
20970         * unicode.c (iconv_convert): Got rid of a compiler warning about
20971         int i being unused when the system has a new iconv.
20972         (iconv_get_length): Same.
20973
20974         * image.c (load_class_names): Cast the second argument to
20975         g_hash_table_insert() to char* to hush compiler warnings about the
20976         arg being a const.
20977         (mono_image_open): Same here.
20978
20979         * socket-io.c: Don't conditionally include sys/filio.h or
20980         sys/sockio.h here anymore since we now get them from
20981         io-layer/io-layer.h
20982         (inet_pton): If the system doesn't support inet_aton, implement
20983         using inet_addr and also #define INADDR_NONE if it isn't defined
20984         by the system.
20985
20986 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
20987
20988         * metadata.c, metadata.h: added function to get packing and size info
20989         of a typedef.
20990         * reflection.h, reflection.c: handle field RVA data. Save info about
20991         the table layout if needed. Assign typedef indexes to all the types
20992         before dumping the info about them to avoid forward reference problems.
20993
20994 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
20995
20996         * socket-io.c (convert_sockopt_level_and_name): ifdef
20997         SO_ACCEPTCONN because it is not defined on my system (old debian)
20998
20999 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21000
21001         * opcode.c: use stddef.h to get NULL.
21002
21003 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21004
21005         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
21006         for FIONBIO, FIONREAD and SIOCATMARK.
21007         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
21008         define INADDR_NONE and besides, inet_addr() is deprecated and
21009         should not be used. Use inet_pton() instead - it also has the
21010         added bonus that it can easily handle IPv6 addresses as well.
21011         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
21012
21013 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21014
21015         * decimal.c: remove _MSC_VER conditional.
21016
21017 2002-02-13  Dick Porter  <dick@ximian.com>
21018
21019         * socket-io.c: 
21020         * icall.c: Internal calls for Blocking, Select, Shutdown,
21021         GetSocketOption and SetSocketOption
21022
21023 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21024
21025         * assembly.cs: better resolver: use it instead of some kludgy
21026         code.
21027
21028 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
21029
21030         * reflection.c: the best way to speed-up the compiler is to avoid
21031         infinite loops.
21032
21033 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
21034
21035         * class.c (mono_class_vtable): changed the object layout
21036         (obj->vtable->class). 
21037         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
21038
21039 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21040
21041         * assembly.c: look for assemblies in the assembly dir, too.
21042
21043 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21044
21045         * class.c: fix thinko in mono_class_from_type().
21046
21047 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21048
21049         * exception.h, exception.c: added TypeLoadException.
21050         * object.h, object.c: added mono_array_clone ().
21051         * icall.c: handle throwOnError in AssemblyGetType().
21052         Added Array.Clone().
21053         * opcode.h, opcode.c: use a single value for the opcode val.
21054         Compile fix for non-gcc compilers.
21055
21056 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
21057
21058         * opcodes.c, opcodes.h: export interesting info about opcodes.
21059
21060 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
21061
21062         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
21063         icalls. 
21064
21065         * class.c (class_compute_field_layout): set element_class for enums
21066         (mono_class_create_from_typedef): set element_class for normal classes
21067
21068         * icall.c (ves_icall_System_Enum_get_value): impl.
21069
21070         * class.c (mono_class_create_from_typedef): do not set valuetype
21071         flag for System.ValueType and System.Enum
21072
21073 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
21074
21075         * unicode.c (iconv_convert): fix big endian problem.
21076
21077 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21078
21079         * class.c: add asserts if we are ever going to scribble over memory.
21080         * socket-io.c: not all systems have AF_IRDA defined.
21081
21082 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
21083
21084         * class.c (class_compute_field_layout): do not consider static
21085         fields to compute alignment
21086
21087 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
21088
21089         * appdomain.c (mono_appdomain_get): impl.
21090         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
21091
21092 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21093
21094         * icall.c: ignore "file://" prefix when loading an assembly.
21095
21096 2002-01-23  Dick Porter  <dick@ximian.com>
21097
21098         * socket-io.c:
21099         * icall.c:
21100         * Makefile.am: Added socket support
21101
21102 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21103
21104         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
21105         code back.  This should return the assemblies that are loaded by
21106         the runtime on behalf of an application domain. 
21107
21108         The current implementation is still broken, it just returns every
21109         assembly loaded, but until we get real applications domain this
21110         will do.
21111
21112 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
21113
21114         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
21115         AppDomain object.
21116
21117 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21118
21119         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
21120         the mono_class_from_name lookup.
21121         (ves_icall_get_parameter_info): ditto.
21122         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
21123         method.
21124         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
21125
21126 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
21127
21128         * class.c: load also nested classes on class init.
21129         System.ValueType instance methods gets passed boxed
21130         values, unless methods in derived classed that get a pointer to the
21131         data.
21132         * icall.c: use better name parsing code in GetType().
21133         * image.c, image.h: add mono_image_loaded ().
21134         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
21135         * reflection.c, reflection.h: added mono_reflection_parse_type().
21136
21137 2002-01-22  Veronica De Santis <veron78@interfree.it>
21138
21139         * icall.c : Added mapping of internal calls for Manual and Auto reset events
21140         * threads.c : Added the implementation of internal calls for events
21141         * threads.h : Added prototypes of internal calls for events
21142         
21143 2002-01-21  Radek Doulik  <rodo@ximian.com>
21144
21145         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
21146
21147 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
21148
21149         * class.c (mono_class_init): set min_align to 1 (instead of 0)
21150         (mono_class_value_size): use min_align
21151
21152 2002-01-20  Dick Porter  <dick@ximian.com>
21153
21154         * threads.h:
21155         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
21156         so it compiles on w32.
21157
21158 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
21159
21160         * metadata.c (mono_type_stack_size): impl.
21161
21162         * class.c (mono_class_get_field): impl. memberref token
21163
21164 2002-01-16 Veronica De Santis <veron78@@interfree.it>
21165
21166         * icall.h : Added the internal calls mapping for CreateMutex_internal
21167                     and ReleaseMutex_internal.
21168         * threads.h : Added the prototype of mutexes internal calls.
21169         * threads.c : Added the implementations of mutexes internal calls.
21170
21171 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21172
21173         * metaparse.h: removed unused file.
21174         * reflection.c, reflection.h: added stream_data_align () function 
21175         to align data in streams and keep stream aligned. Add support for
21176         exception support in method headers.
21177
21178 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
21179
21180         * unicode.c: make iconv_convert () return the number of bytess written
21181         in the output buffer.
21182
21183 2002-01-15  Dick Porter  <dick@ximian.com>
21184         * threads.c: Make the runtime's idea of infinite timeouts coincide
21185         with the class library's
21186
21187         Fix a particularly egregious bug in mono_thread_cleanup(). That
21188         code was so utterly bogus it must have been written on a Monday.
21189
21190 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21191
21192         * reflection.h: add subtypes field to TypeBuilder.
21193         * reflection.c: encode constants for literal fields.
21194         Handle subtypes. Fix user string token (and add a zero byte)
21195         at the end.
21196         
21197 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
21198
21199         * class.c (mono_class_init): bug fix: assign slot numbers for
21200         abstract methods.
21201
21202 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21203
21204         * reflection.c: don't try to output a code RVA for abstract methods.
21205         Small fixes for method header format. Output parameter info to the
21206         ParamDef table. Save method overriding info to MethodImpl table.
21207         Fix property support. Allow typedef.extends to be a type in the
21208         building assembly.
21209         * verify.c: fix off-by-one error.
21210
21211 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
21212
21213         * class.c: fix mono_class_from_mono_type () for szarray types.
21214         Remove unused cache check in mono_class_from_type_spec().
21215         * icall.c: *type_from_name () functions handle simple arrays and byref.
21216         * reflection.c: handle byref and szarray types. Handle methods without
21217         body (gets P/Invoke compilation working). Handle types and fields in
21218         get_token ().
21219         * reflection.h: add rank to MonoTypeInfo.
21220
21221 2002-01-10  Dick Porter  <dick@ximian.com>
21222
21223         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
21224         internal calls
21225
21226 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21227
21228         * icall.c: initialize class in type_from_handle ().
21229         Loop also in parent classes for get_method ().
21230         * reflection.c: properly encode class and valuetype types.
21231         Start on encoding TypeBuilder types. Handle fieldrefs.
21232         Use correct length when registering a user string.
21233         Handle ConstructorBuilder and MonoMethod in get_token ().
21234         Make mono_type_get_object () aware of cached types.
21235         * object.c: back out change to mono_string_new ().
21236
21237 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
21238         * object.c: mono_string_new should return a NULL when the string 
21239         passed in is NULL -- not try to deference it.
21240         
21241 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21242
21243         * icall.c: hack to make IsSubType work for TypeBuilders.
21244         * reflection.c: emit constructors before methods.
21245         Retrieve param names in mono_param_get_objects().
21246
21247 2002/01/05  Nick Drochak  <ndrochak@gol.com>
21248
21249         * Makefile.am: fix list of headers and sources so automake 1.5
21250         doesn't complain. Removed \# at end of list.
21251
21252 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21253
21254         * reflection.c: get token for a method ref. Set return type of
21255         constructor to void.
21256         * loader.c: debug message.
21257         * class.c: typo fix.
21258
21259 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
21260
21261         * icall.c: fix array init with rank > 1. FindMembers
21262         loops in parent class as well.
21263         * image.c: do not insert nested types in name cache.
21264         * reflection.c: warning fix.
21265         * reflection.h: add override method (for interface impl).
21266
21267 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
21268
21269         * metadata.c: fix customattr decoding.
21270
21271 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
21272
21273         * rawbuffer.cs: Added native Win32 implementation, avoids using
21274         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
21275
21276 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
21277
21278         * class.c: make the low-level routines handle the cache.
21279
21280 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
21281
21282         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
21283
21284 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
21285
21286         * class.c: fix mono_array_element_size() for objects.
21287         * class.h, class.c: add properties to MonoClass and load them
21288         at init time.
21289         * icall.c: check with isinst() when assigning a value to an array
21290         instead of requiring the classes to match exactly.
21291         Implemented icall for System.Type::GetType().
21292         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
21293         enums. Handle bindingflags when looking for methods and fields.
21294         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
21295         and mono_metadata_methods_from_property().
21296         * reflection.h, reflection.c: added structures for propreties,
21297         parameters and enums. Implemented mono_property_get_object() and
21298         mono_param_get_objects().
21299
21300 2001-12-18  Dick Porter  <dick@ximian.com>
21301
21302         * file-io.c: Use mono_string_to_utf16() instead of
21303         mono_string_chars()
21304
21305         * object.c: Added mono_string_to_utf16(), which copies the non
21306         NULL-terminated MonoString into a new double-null-terminated
21307         buffer.
21308
21309 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
21310
21311         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
21312
21313 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
21314
21315         * file-io.c: raise exceptions if handle is invalid.
21316
21317 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
21318
21319         * assembly.c: yet another check for mscorlib.
21320         * class.c, class.h: load nesting info for classes.
21321         * icall.c: many new functions to support the Reflection classes.
21322         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
21323         * reflection.h, reflection.c: mono_image_create_token(),
21324         mono_assembly_get_object(), mono_type_get_object(),
21325         mono_method_get_object(), mono_field_get_object(): methods to return
21326         objects that parallel the C representation of assemblies, types,
21327         methods, fields.
21328
21329 2001-12-11  Dick Porter  <dick@ximian.com>
21330
21331         * icall.c:
21332         * file-io.c: Internal calls for file IO.
21333
21334 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
21335
21336         * tabledefs.h: missing FileAttributes.
21337         * verify.h, verify.c: use is_valid_string () to simplify and check for
21338         valid strings more correctly. Fix warnings and speeling.
21339         Check more tables: Filed, File, ModuleRef, StandAloneSig.
21340         Check code: branches, maxstack, method calls.
21341
21342 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
21343
21344         * object.c (mono_object_allocate): removed static, so that the jit
21345         can allocate value types.
21346
21347         * icall.c (ves_icall_System_DateTime_GetNow): impl.
21348
21349 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21350
21351         * class.c: init enum types right away and register the
21352         token->MonoClass map in mono_class_create_from_typedef ().
21353         * verify.h, verify.c: first cut of the verifier.
21354         * pedump.c: add --verify switch to verify metadata tables.
21355         * tabledefs.h: add some missing enums.
21356
21357 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
21358
21359         * class.c (mono_install_runtime_class_init): impl.
21360         (mono_class_init): renamed mono_class_metadata_init to
21361         mono_class_init, also removed the metadata_inited flag
21362
21363         * object.c (mono_object_isinst): use faster algorithm
21364
21365 2001-11-30  Radek Doulik  <rodo@ximian.com>
21366
21367         * mono-endian.h: reverted last change
21368         added function prototypes
21369
21370         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
21371         add mono-endian.c back
21372
21373         * mono-endian.c: returned back, as Paolo pointed out, it's needed
21374         for unaligned access, I've mistaked it with endianess. I am
21375         sorry.
21376         (mono_read16): fix reverted endianess
21377         (mono_read64): ditto
21378         (mono_read32): ditto
21379
21380 2001-11-30  Dick Porter  <dick@ximian.com>
21381
21382         * exception.c: Implement mono_exception_from_name()
21383
21384 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21385
21386         * metadata.h, metadata.c: remove params_size and locals_size and their
21387         calculation from the metadata code: they are only usefult to the
21388         interp.
21389
21390 2001-11-29  Radek Doulik  <rodo@ximian.com>
21391
21392         * object.c (mono_ldstr): swap bytes here, it's probably not the
21393         best place, but works for me now, I'll redo it once I know mono
21394         better, also note that I add PROT_WRITE and don't reset back, also
21395         note that it's only affects big endians, so x86 should be OK
21396
21397         * mono-endian.h (read16): use just glib macros for both endians
21398
21399         * mono-endian.c: removed as glib macros are used in in
21400         mono-endian.h so we don't need to care about endianess for read
21401         macros as glib does that for us already
21402
21403 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
21404
21405         * class.h, class.h: take minimum alignment into consideration so
21406         that the fields of a class remain aligned also when in an array.
21407
21408 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21409
21410         * loader.h, loader.c: add mono_method_get_param_names().
21411         * class.c: 0-init class fields.
21412
21413 2001-11-26  Dick Porter  <dick@ximian.com>
21414
21415         * icall.c:
21416         * threads-types.h:
21417         * threads.c: New file that handles System.Threading on all platforms
21418
21419         * object.c: 
21420         * object.h: Remove the synchronisation struct from MonoObject,
21421         replace it with a pointer that gets initialised on demand
21422
21423         * Makefile.am: Replace all the system-specific threading code with
21424         a single file that uses the new wrapper library
21425
21426 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
21427
21428         * class.c, class.h: add mono_install_trampoline() so that the runtime
21429         can register a function to create a trampoline: removes the ugly
21430         requirement that a runtime needed to export arch_create_jit_trampoline.
21431         * object.h, object.c: added mono_install_handler() so that the runtime
21432         can install an handler for exceptions generated in C code (with
21433         mono_raise_exception()). Added C struct for System.Delegate.
21434         * pedump.c: removed arch_create_jit_trampoline.
21435         * reflection.c: some cleanups to allow registering user strings and
21436         later getting a token for methodrefs and fieldrefs before the assembly
21437         is built.
21438         * row-indexes.h: updates and fixes from the new ECMA specs.
21439
21440 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
21441
21442         * class.h, class.c: add enum_basetype field to MonoClass.
21443         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
21444         to get index in the constant table reated to a field, param or
21445         property.
21446         * reflection.h, reflection.c: handle constructors. Set public-key and
21447         version number of the built assembly to 0.
21448         * row-indexes.h: update from new ECMA spec.
21449
21450 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
21451
21452         * class.h, class.c: add a max_interface_id to MonoClass.
21453         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
21454         since it's used to do that. Added mono_type_type_from_obj().
21455         Make GetType() return NULL instead of segfaulting if the type was not
21456         found. Handle simple arrays in assQualifiedName.
21457         * object.h: add a struct to represent an Exception.
21458         * reflection.c: output call convention in method signature.
21459         Add code to support P/Invoke methods and fixed offsets for fields.
21460
21461 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
21462
21463         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
21464         the value.
21465         * icall.c: use mono_array_addr instead of array->vector: fixes the
21466         reflection image writing.
21467         * reflection.c: init call convention byte to 0 in method signature.
21468         Encode the property signature. Don't output property-related methods
21469         twice. Really process the properties for a type (don't cast a field to
21470         a property, my mom always told me that).
21471         Fix 64 bit issues in pointer alignment in a different and more
21472         readable way.
21473
21474 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
21475
21476         * loader.h: Removed type class from MonoDefaults, added monotype
21477
21478         * loader.c: Loaded MonoType, removed loading of Type
21479
21480         * icall.c (my_mono_new_object): Now returns a System.MonoType,
21481         and fills in System.Type._impl with a RuntimeTypeHandle rather
21482         than the actual MonoClass *
21483
21484         (ves_icall_type_from_handle): change from type_class to
21485         monotype_class
21486
21487         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
21488         implemented
21489
21490         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
21491         implemented
21492
21493         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
21494
21495         (ves_icall_System_Reflection_Assembly_GetType): implemented
21496
21497         (ves_icall_System_MonoType_assQualifiedName): implemented
21498
21499         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
21500
21501 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
21502
21503         * assembly.c (mono_assembly_open): Implement a cache for the
21504         assemblies. 
21505
21506         (mono_assembly_close): only destroy the assembly when the last
21507         reference is gone.
21508         
21509 2001-11-09  Dick Porter  <dick@ximian.com>
21510
21511         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
21512
21513 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
21514
21515         * class.c (mono_class_metadata_init): bug fix: compute the right slot
21516
21517 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21518
21519         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
21520         from Martin Weindel.
21521         * object.h: add mono_string_chars ().
21522
21523 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
21524
21525         * reflection.c (build_compressed_metadata): Eliminates warnings
21526         and uses 64-bit clean code.
21527
21528         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
21529         (mono_type_equal): Change signature to eliminate warnings.
21530
21531 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21532
21533         * icall.c, loader.c: remove the internalcall array constructors.
21534         Changes to match the new MonoArray structure.
21535         * object.h, object.c: an array object doesn't allocate an extra
21536         vector. Add mono_array_new_full () to create jagged arrays easily.
21537
21538 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
21539
21540         * metadata.h, metadata.c: add mono_metadata_field_info () to
21541         retreive all the info about a field from vairous tables.
21542         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
21543         * class.h, class.c: augment MonoClassField with more info.
21544         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
21545         policy and load a field's RVA if needed.
21546
21547 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
21548
21549         * class.c (mono_class_metadata_init): create a trampoline for all
21550         virtual functions instead of actually compiling them.
21551
21552 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
21553
21554         * class.h, class.c: include name in MonoClassField.
21555         * class.c: fix fundamental type of System.Object and System.String.
21556         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
21557         tokens in ldtoken.
21558         * icall.c: remove internalcalls for the Reflection stuff that is now
21559         done in C# code.
21560         * loader.c: mono_field_from_memberref () implementation.
21561         * mono-endian.c: thinko (s/struct/union/g).
21562         * object.c, object.h: make the mono_string_* prototypes actually use
21563         MonoString instead of MonoObject.
21564         * reflection.c, reflection.h: updates for changes in the reflection
21565         code in corlib: we use C structures that map to the actual C# classes.
21566         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
21567         fat method header if needed and use the info from the ILGenerator for
21568         methods. Handle fields in types. Misc fixes.
21569
21570 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
21571
21572         * class.c (mono_class_metadata_init): bug fix: always allocate
21573         space for static class data
21574
21575 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
21576
21577         * class.c (mono_compute_relative_numbering): use relative
21578         numbering to support fast runtime type checks.
21579
21580 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
21581
21582         * class.c (mono_class_create_from_typeref): added debugging output
21583         to print class name when MonoDummy is returned instead of real class
21584
21585 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
21586
21587         * class.c (mono_class_metadata_init): interface offset table now
21588         contains pointers into the vtable - this is more efficient for the jit
21589
21590 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
21591
21592         * class.c (mono_class_metadata_init): use a temporary vtable (the
21593         old algorithm only worked for the interpreter, but not for the jit)
21594
21595 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
21596
21597         * loader.c (method_from_memberref): use mono_class_get to get the
21598         class of an array instead of using System.Array directly.
21599         (mono_get_method): also add MEMBERREF methods to the method cache
21600         which usefull for arrays.
21601
21602 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
21603
21604         * pedump.c (arch_compile_method): added to compute vtable entry
21605
21606         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
21607         number of interfaces.
21608         
21609         * class.h: merged MonoArrayClass into MonoClass
21610
21611         * class.c (mono_class_create_from_typedef): compute the vtable size and
21612         allocate space to include the vtable inside MonoClass
21613         (mono_class_metadata_init): initialize the vtable
21614
21615 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
21616
21617         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
21618         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
21619         * image.c: endian fixes by Laurent Rioux.
21620         * object.h, object.c: rename MonoStringObject to MonoString and
21621         MonoArrayObject to MonoArray. Change some function names to conform to
21622         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
21623         guint16* as first argument, so don't use char*.
21624         Provide macros to do the interesting things on arrays in a portable way.
21625         * threads-pthread.c: updates for the API changes and #include <sched.h>
21626         (required for sched_yield()).
21627         * icall.c: updates for the API changes above.
21628         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
21629         platforms that need them.
21630
21631 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21632
21633         * class.c: set the correct type for all the fundamental
21634         type when loading the class.
21635
21636 2001-10-05  Dick Porter  <dick@ximian.com>
21637
21638         * threads-pthread.c (pthread_mutex_timedlock): Simple
21639         compatibility version for C libraries that lack this call.
21640
21641 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21642
21643         * class.c: MonoTypes stored in MonoClass are stored as
21644         fundamental MonoTypes when the class represents a
21645         fundamental type (System.Int32, ...).
21646         The TypeHandle return by ldtoken is a MonoType*.
21647         * icall.c: ves_icall_get_data_chunk () write out all the
21648         PE/COFF stuff. Implement ves_icall_define_method (),
21649         ves_icall_set_method_body (), ves_icall_type_from_handle ().
21650         * image.c: properly skip unknown streams.
21651         * loader.h, loader.c: add type_class to mono_defaults.
21652         * metadata.c, metadata.h: export compute_size () as
21653         mono_metadata_compute_size () with a better interface.
21654         Typo and C&P fixes.
21655         * pedump.c: don't try to print the entry point RVA if there is no entry point.
21656         * reflection.c, reflection.h: many cleanups, fixes, output method
21657         signatures and headers, typedef and typeref info, compress the metadata
21658         tables, output all the heap streams, cli header etc.
21659         * row-indexes.h: typo fixes.
21660
21661 2001-10-04  Dick Porter  <dick@ximian.com>
21662
21663         * object.h: Add a synchronisation mutex struct to MonoObject
21664
21665         * object.c (mono_new_object): Initialise the object
21666         synchronisation mutexes
21667
21668         * icall.c: System.Threading.Monitor internal calls
21669         
21670         * threads-pthread.h:
21671         * threads-pthread.c: System.Threading.Monitor internal calls
21672
21673         * threads-types.h: New file, includes the system-specific thread
21674         structures
21675         
21676         * threads-pthread-types.h:
21677         * threads-pthread-types.c: New files, handle pthread-specific
21678         synchronisation types
21679
21680         * threads-dummy-types.h: 
21681         * threads-dummy-types.c: New files of dummy support for
21682         thread-specific types
21683
21684         * metadata.c:
21685         * image.c:
21686         * pedump.c: include mono-endian.h not endian.h
21687         
21688         * Makefile.am: More threads files.
21689         Name mono-endian.h not endian.h
21690
21691 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
21692
21693         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
21694         stuff and implement a few more bits.
21695         * icall.c: a field needs to be dereferenced twice. Do not use the same
21696         name for two variables in the same scope.
21697         * image.c, image.h: cleanups.
21698
21699 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
21700
21701         * class.c (mono_class_metadata_init): bug fix: compute the right size
21702
21703 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
21704
21705         * icall.c: implemented some of the Reflection internalcalls.
21706         * image.c, image.h: start writing out the PE/COFF image.
21707         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
21708         that does the reverse than decode_blob_size ().
21709         * object.c: use mono_metadata_encode_value (). Move here
21710         temporary implementation of mono_string_to_utf8 ().
21711         * rawbuffer.c: make malloc_map static.
21712
21713 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21714
21715         * metadata.c: fix type comparison for arrays.
21716         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
21717         Added a couple of new classes to monodefaults.
21718         * icall.c: added a couple of Reflection-related internalcalls.
21719         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
21720         Added a byval_arg MonoType to MonoClass.
21721
21722 2001-09-28  Dick Porter  <dick@ximian.com>
21723
21724         * icall.c:
21725         * threads-pthread.h: 
21726         * threads-pthread.c: Implemented internal calls for
21727         LocalDataStoreSlot operations.  Applied mutexes around all shared
21728         data.  Reworked the thread creation and Start() operations to
21729         avoid a race condition.
21730         
21731         * threads-dummy.h:
21732         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
21733
21734 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
21735
21736         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
21737
21738 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
21739
21740         * class.c, loader.c: warn and return NULL instead of erroring out.
21741         * icall.c: added System.AppDomain::getCurDomain().
21742         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
21743
21744 2001-09-25  Dick Porter  <dick@ximian.com>
21745
21746         * threads-pthread.h:
21747         * threads-pthread.c: Implemented timed thread joining and added
21748         System.Threading.Thread::Join_internal internal call
21749
21750         * icall.c: Added System.Threading.Thread::Join_internal internal call
21751
21752         * threads-dummy.h:
21753         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
21754
21755 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
21756
21757         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
21758         mono_string_intern () to implement the semantics of the ldstr opcode
21759         and the interning of System.Strings.
21760         * icall.c: provide hooks to make String::IsIntern and String::Intern
21761         internalcalls.
21762
21763 2001-09-23  Dick Porter  <dick@ximian.com>
21764
21765         * threads-dummy.c: 
21766         * threads-dummy.h: New files of dummy threading routines
21767
21768         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
21769         support code based on system specifics
21770
21771         Rename PTHREAD_LIBS to THREAD_LIBS
21772         
21773 2001-09-23  Dick Porter  <dick@ximian.com>
21774
21775         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
21776         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
21777         internal calls.
21778         (mono_thread_init): Set up a Thread object instance to return when
21779         the main thread calls Thread.CurrentThread
21780         (mono_thread_cleanup): Wait for all subthreads to exit
21781
21782         * icall.c: New internal calls for System.Threading.Thread::Sleep
21783         (including Schedule) and CurrentThread
21784
21785         * threads.h: New file, to insulate thread-specific stuff from the
21786         rest of the code
21787
21788 2001-09-21  Dick Porter  <dick@ximian.com>
21789
21790         * threads-pthread.h: 
21791         * threads-pthread.c: New file, for handling pthreads-style
21792         threading support.  Start() now starts a new thread and executes
21793         the ThreadStart delegate instance.
21794
21795         * icall.c: Added the internalcall for
21796         System.Threading.Thread::Start_internal
21797
21798         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
21799
21800 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
21801
21802         * loader.c: work around the different signatures for delegates
21803         constructors csc generates in compiled code vs the ones compiled in mscorlib.
21804
21805 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21806
21807         * class.h, class.c: add mono_class_get_field_from_name ().
21808         * *: Fix C comments and other ANSI C issues.
21809
21810 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
21811
21812         * endian.h, assembly.c: fix some endianness issues.
21813
21814 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
21815
21816         * loader.h, load.c: add delegate_class to mono_defaults.
21817         Handle runtime provided methods in mono_get_method ().
21818
21819 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
21820
21821         * loader.c (mono_get_method): use pinvoke for internal call
21822
21823         * icall.c: use pinvoke for internal call
21824
21825         * loader.c (method_from_memberref): set the method name
21826
21827 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
21828
21829         * metadata.c: help the compiler generate better code for
21830         mono_class_from_mono_type ().
21831
21832 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
21833
21834         * class.c (mono_class_metadata_init): delayed computing of the
21835         class size to mono_class_metadata_init ()
21836
21837 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
21838
21839         * class.c, class.h: add an interfaces member to MonoClass.
21840         * image.c, image.h: add assembly_name field to MonoImage
21841         from the assembly table.
21842         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
21843
21844 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21845
21846         * class.c: Handle Array in mono_class_from_mono_type ().
21847         * metadata.c, pedump.c: some endian fixes.
21848
21849 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21850
21851         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
21852         * metadata.c: fix small problem introduced with the latest commit.
21853
21854 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
21855
21856         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
21857         We don't need a MonoMetadata pointer anymore to compare signatures in
21858         mono_metadata_signature_equal (), update callers.
21859         Reduced memory usage an number of allocations for MonoMethodHeader and
21860         MonoMethodSignature.
21861
21862 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
21863
21864         * metadata.c: added compare for szarray.
21865
21866 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
21867
21868         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
21869         and add a couple more types to it and mono_defaults. Give an hint on
21870         classes that need implementing in our corlib and are referenced
21871         in mscorlib.
21872
21873 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
21874
21875         * class.h, class.c: keep track if a class is also an Enum.
21876         * loader.c: Implement a couple more types for use in libffi
21877         marshalling. Gives better diagnostics when failing to dlopen
21878         a library. Set method->klass for P/Invoke methods, too.
21879
21880 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
21881
21882         * class.c, class.h: add a MonoType this_arg to MonoClass that
21883         represents a pointer to an object of the class' type that
21884         can be used by the interpreter and later the type cache.
21885         Add best guess alignment info for valuetype objects.
21886
21887 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
21888
21889         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
21890         into MonoType: one less level of indirection and allocation and
21891         simplifies quite a bit of code. Added cache for MonoTypes that are
21892         used frequently, so that we don't need to allocate them all the time.
21893
21894 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
21895
21896         * class.c (mono_class_create_from_typedef): System.Enum is also a
21897         value type, although it does not derive from System.ValueType
21898         (maybe a bug in the ms compiler?)
21899
21900         * metadata.c (mono_type_size): return the right size for value types
21901
21902         * loader.c (mono_get_method): only initialize method header if not abstract
21903
21904         * class.c (mono_class_from_mono_type): use mono_default values. 
21905
21906 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
21907
21908         * *: use MonoClass pointers instead of <type_tokens>
21909         
21910         * class.h: new flag: metadata_inited.
21911
21912         * class.c (mono_class_metadata_init): impl.
21913         (mono_class_instance_size): impl.
21914         (mono_class_data_size): impl.
21915
21916 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21917
21918         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
21919         MonoClass now has the name and name_space fields. 
21920         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
21921         mono_get_method () takes and optional MonoClass as argument.
21922         Removed mono_typedef_from_name() and added mono_class_token_from_name()
21923         instead that takes advantage of a map from class names to typedef
21924         tokens in MonoImage.
21925
21926 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
21927
21928         * metadata.c: zero is not a valid alignment boundary.
21929         Merge MONO_TYPE_VOID in default decoding code.
21930
21931 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
21932
21933         * image.h: merged MonoMetadata into MonoImage
21934
21935         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
21936         identify the type of elements.
21937
21938 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
21939
21940         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
21941         * cil-coff.h: split MonoMSDOSHeader and add size info.
21942         * image.c: add some consistency checks.
21943         * metadata.c: fix row size computation: one programmer
21944         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
21945         add explanation for the locator routine.
21946         Fix decoding of size in method header.
21947         
21948 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
21949
21950         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
21951         (g_concat_dir_and_file): Bring g_concat_dir_and_file
21952         function from gnome-libs.  This uses the right path separator
21953         based on the OS, and also works around a bug in some systems where
21954         a double slash is not allowed. 
21955         (default_assembly_name_resolver): Use g_concat_dir_and_file
21956         (mono_assembly_open): ditto.
21957
21958 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
21959
21960         * metadata.c (mono_metadata_signature_equal): impl.
21961
21962         * *: void is now a realy MonoType (instead of using NULL)
21963         
21964         * metadata.c (do_mono_metadata_parse_type): use
21965         mono_metadata_parse_type to parse void value.
21966
21967 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
21968
21969         * metadata.c, metadata.h: in the signature and method header store
21970         only the space required for holding the loca vars and incoming arguments.
21971
21972 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
21973
21974         * metadata.c (do_mono_metadata_parse_type): treat void like any
21975         other type (instead of assigning NULL);
21976
21977 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
21978
21979         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
21980
21981 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
21982
21983         * image.c (do_mono_image_open): added a cache for arrays.
21984
21985 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21986
21987         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
21988         decode a single column from a row in a metadata table and changes
21989         to take advantage of it in the typedef locator (gives a nice speed up).
21990         Store offset info for function params.
21991
21992 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
21993
21994         * image.h (MONO_IMAGE_IS_CORLIB): removed 
21995
21996 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
21997
21998         * assembly.c: how could mono_assembly_close () had ever worked?
21999         * metadata.c, metadata.h: provide offset info for local vars.
22000         Implement mono_type_size () to take care of alignment as well
22001         as size (it was mono_field_type_size in cli/class.c before).
22002
22003 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
22004
22005         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
22006
22007         * assembly.h (CORLIB_NAME): set to corlib.dll
22008
22009         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
22010
22011 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22012
22013         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
22014         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
22015         tokentype.h: massive namespace cleanup.
22016
22017 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22018
22019         * metadata.h, metadata.c: decode exception clauses when parsing method header.
22020
22021 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
22022
22023         * metadata.c (mono_metadata_free_type): added check for type !=
22024         NULL (void) before calling mono_metadata_free_type()
22025
22026 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
22027
22028         * metadata.h, row_indexes.h: added header with enumerations to use
22029         to index in the columns from tables in metadata and to decode coded
22030         tokens: we should start using this instead of embedding magic numbers
22031         all over the code.
22032
22033 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
22034
22035         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
22036         Move metadata_t info from cli_image_info_t to MonoImage, where
22037         it's easily accessible. Changed all the uses accordingly.
22038         Added the method and class caches to MonoImage.
22039         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
22040         and mono_metadata_decode_value () signature to be more consistent
22041         with the other parse functions (and simplify code). Taken advantage
22042         of zero-length array allocation with GCC. Removed reduntant (and
22043         wrong) MonoFieldType struct and use MonoParam instead. Changed
22044         mono_metadata_parse_field_type () to use common code for parsing.
22045         Added mono_metadata_typedef_from_field () and
22046         mono_metadata_typedef_from_method () to lookup a typedef index from a
22047         field or method token.
22048         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
22049
22050 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
22051
22052         * metadata.c (mono_metadata_parse_field_type): Implement. 
22053         (do_mono_metadata_parse_type): Split engine from
22054         mono_metadata_parse_type, so that we can create smaller structures
22055         for things that just have one pointer to the MonoType (look at
22056         the MonoFieldType)
22057
22058 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
22059
22060         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
22061         as Jan Gray found out, it is incorrect. 
22062
22063 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
22064
22065         * assembly.c: Implement asssembly loading.  This loads an image
22066         and loads all the referenced assemblies.  Come to think of it, we
22067         could always do lazy loading of the assemblies. 
22068
22069         * image.c (mono_image_open): Keep loaded images in a hashtable.
22070
22071         * image.h (MonoImage): Add reference count.
22072
22073 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
22074
22075         * assembly.c (mono_assembly_open): Keep track of the file name in
22076         case the assembly has no ASSEMBLY table.
22077
22078         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
22079         from get.c here.
22080
22081 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
22082
22083         * metadata.c, metadata.h: decode local vars in method header
22084         parse function. Change callers accordingly.
22085
22086 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
22087
22088         * metadata.h, cil-coff.h: protect against multiple inclusion.
22089         Added some new structures to hold information decoded from metadata:
22090         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
22091         and relevant decoding/free functions.
22092         * metadata.c: implement decoding functions. Add warning for out of bounds
22093         index in mono_metadata_locate(). Implement mono_get_method () to retreive
22094         all the info about a method signature and invocation. Remove check on
22095         uninitialized local var in parse_mh() and fix memory leak.
22096
22097 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
22098
22099         * metadata.h: More macros.
22100
22101         * tokentype.h: New file.
22102
22103 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
22104
22105         * assembly.c: added a consistency check and initialize
22106         some structures with g_new0().
22107         * metadata.c: fixed a couple more bugs in table size computation
22108         and add other checks for out-of bound access to metadata.
22109
22110 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
22111
22112         * metatada.c: fix bugs computing table sizes. Spew a
22113         warning when index in string heap is out of bounds.
22114
22115 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
22116
22117         * metadata.h: Add a couple of macros to manipulate tokens. 
22118
22119 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22120
22121         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
22122         cli_section_tables).
22123
22124 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
22125
22126         * metadata.c (mono_metadata_user_string): New function, provides
22127         access to the UserString heap. 
22128
22129 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
22130
22131         * metadata.c: Add inline documentation.
22132
22133 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
22134
22135         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
22136         files. 
22137
22138 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
22139
22140         * typeattr.h: New file, TypeAttribute flags. 
22141
22142 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
22143
22144         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
22145         mono_assembly_ensure_section): Section loading code.
22146         (load_section_tables): Load the sections.
22147
22148         * mono/metadata/metadata.c (mono_metadata_locate_token,
22149         mono_metadata_locate): Functions to locate the information
22150         definition given a token or a table and an index.
22151         (mono_metadata_compute_table_bases): New.
22152         (compute_size): New function to compute the sizes of the various
22153         tables.
22154
22155         * mono/metadata/metadata.h: Finish listing the different index
22156         types. 
22157
22158         * mono/metadata/pedump.c: Improve to dump new information.
22159
22160 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
22161
22162         * mono/metadata/metadata.c: Entered all the tables matching
22163         Beta2. 
22164
22165         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
22166
22167
22168