0c0f84b61abc071b347d9c023406d913519bf7ba
[mono.git] / mono / metadata / ChangeLog
1 2007-08-02  Dick Porter  <dick@ximian.com>
2
3         * socket-io.c
4         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
5         SO_REUSEADDR setting into io-layer/sockets.c.
6
7 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
8
9         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
10         from Object when called on a generic parameter. Fixes #82211.
11
12 2007-08-01  Dick Porter  <dick@ximian.com>
13
14         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15         Fixes bug 79250 yet again.
16
17 2007-07-30  Martin Baulig  <martin@ximian.com>
18
19         Merged the `debugger-dublin' branch.
20
21         * mono-debug.h
22         (MonoDebugDataTable): New typedef.
23         (MonoDebugMethodAddressList): New typedef.
24         (MonoDebugWrapperData): Removed.
25         (MonoDebugSymbolTable): Removed `current_data_table',
26         `current_data_table_size', `current_data_table_offset'.
27         (MonoDebugDataItemType): Moved into mono-debug.c.
28         (MonoDebugMethodJitInfo): Remove `address'.
29         (mono_debug_data_table): New global variable.
30         (mono_debug_lookup_method_addresses): New public function.
31         (mono_debug_find_method): Take a `MonoMethod *', not a
32         `MonoDebugMethodInfo *'.
33
34         * mono-debug.c: Drop support for the old symbol tables.
35
36 2007-06-28  Martin Baulig  <martin@ximian.com>
37
38         * mono-debug.c (mono_debug_debugger_version): New public variable.
39
40 2007-07-31  William Holmes  <billholmes54@gmail.com>
41
42         * metadata.c Changed mono_type_create_from_typespec to not insert
43           the type into the hash map until after
44           do_mono_metadata_parse_type has completed.
45         Fixes Bug #82194
46         Code is contributed under MIT/X11 license.
47
48 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
49
50         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
51         generic parameter. Fixes #82211.
52
53 2007-07-27  Jb Evain  <jbevain@novell.com>
54
55         * pedump.c (dump_metadata, dump_metadata_header): dump
56         versions contained in the metadata header.
57
58 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
59
60         * threads.c: register small_id_table with the GC.
61
62 2007-07-27  Mark Probst  <mark.probst@gmail.com>
63
64         * threads.c, threads.h, class-internals.h, object-internals.h:
65         Hazard pointers, to be used by lock-free parallel algorithms.
66
67 2007-07-26  Dick Porter  <dick@ximian.com>
68
69         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
70         routine on non-windows platforms, as I've not managed to think of
71         a non-kludgy way of doing this.  Finishes off bug 78739.
72
73 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
74
75         * object.c: properly setup interface_bitmap in proxy vtables.
76
77 2007-07-25  Marek Habersack  <mhabersack@novell.com>
78
79         * appdomain.c (get_shadow_assembly_location): do not use TickCount
80         to create unique shadow copy target directories, use the domain's
81         serial number instead. Each domain gets a unique target directory
82         that way.
83
84         * domain.c (mono_domain_create): added code to increment domain
85         shadow copy serial number and cache the value in the current
86         domain structure.
87
88         * domain-internals.h (struct _MonoDomain): added a new field -
89         shadow_serial to hold the serial number used in generation of
90         shadow-copy directories. This is to make sure that the directory
91         name is unique for each and every domain created. We avoid a race
92         condition with overriding assemblies already in use by other app
93         domains.
94
95 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
96
97         * class.c (mono_bounded_array_class_get): fixed memory leak when 
98         binding generic parameters.
99
100 2007-07-24  Raja R Harinath  <rharinath@novell.com>
101
102         * metadata.c (do_mono_metadata_parse_generic_class): Use
103         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
104         error.
105
106 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
107
108         * loader.c, class-internals.h, reflection.c: removed the per-method
109         generics hashtable: we use the global one through the call of
110         mono_class_inflate_generic_method ().
111
112 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
113
114         * class.c, metadata.c, class-internals.h: introduce yet another
115         generics global cache for inflated methods (fixes 98% of the perf
116         issue in bug #81806).
117
118 2007-07-23  Raja R Harinath  <rharinath@novell.com>
119
120         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
121         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
122         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
123         return a MonoGenericInst containing (a copy) of those types.
124         (mono_metadata_inflate_generic_inst): Update to changes.
125         (mono_metadata_parse_generic_inst): Likewise.
126         (mono_get_shared_generic_inst): Likewise.
127         * reflection.c (mono_class_bind_generic_parameters): Likewise.
128         (mono_reflection_bind_generic_method_parameters): Likewise.
129         * metadata-internals.h: Likewise.
130         * icall.c (free_generic_context): Kill.
131         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
132
133         * reflection.c (reflection_methodbuilder_to_mono_method): Use
134         mono_metadata_type_dup.
135         * marshal.c (mono_mb_create_method): Likewise.
136
137         * metadata.c (mono_metadata_type_dup): Rename from
138         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
139         MonoImage.  Handle a few more cases, esp. when no mempool is given.
140         * marshal.c, metadata-internals.h: Update to changes.
141
142 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
143
144         * class.c: fixed a small leak for array classes and removed warning.
145
146 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
147
148         * loader.c (mono_method_get_param_token): Make this work on generic methods.
149         Return 0x8000000 for return parameters. Fixes #82161.
150
151 2007-07-21  Marek Habersack  <grendello@gmail.com>
152
153         * appdomain.c (get_shadow_assembly_location): append the current
154         ticks value to the path. Avoids overwriting the same assemblies by
155         several threads at the same time.
156
157 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
158         and Raja R Harinath  <rharinath@novell.com>
159
160         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
161         Simplify slightly.
162         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
163         property for testing if a method is a generic method definition.
164
165 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
166
167         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
168
169 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
170
171         * verify.c: used function from private branch, reverted to the one in class.h 
172
173 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
174
175         * verify.c: a typo slipped in and the code wont compile
176
177 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
178
179         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
180         disabled box instruction as it is doing the wrong thing
181         improved stack dump messages, now it is easier to debug type related issues
182
183
184 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
185
186         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
187
188 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
189
190         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
191         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
192         grouped with class and valuetype. This change will simply 
193         the code as it should be handled just like unmanaged pointers.
194
195 2007-07-19  Mark Probst  <mark.probst@gmail.com>
196
197         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
198
199 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
200
201         * verify.c: several stack merge issues fixed, reference comparisons now
202         check the type size. strict type check now works correctly.
203         added more uses of IS_MANAGED_POINTER macro.
204         fixed issues pointed by running the test suite against .net.
205         
206
207 2007-07-19  Mark Probst  <mark.probst@gmail.com>
208
209         * class.c, loader.c, class-internals.h: Removed the
210         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
211         defines.
212
213         * icall.c: Better error checking in some internal reflection
214         methods.
215
216 2007-07-18  William Holmes  <billholmes54@gmail.com>
217
218         * filewatcher.c : removed unused variable 'filename' in 
219           ves_icall_System_IO_FSW_SupportsFSW
220
221 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
222
223         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
224         obsolete, removed.
225
226 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
227
228         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
229         
230         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
231
232 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
233
234         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
235         Implement generics support.
236         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
237
238         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
239         type_args and method_args arguments.
240         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
241         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
242         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
243
244 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
245
246         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
247           It adds a rootimage parameter to mono_reflection_get_type_internal,
248           adds new function mono_reflection_get_type_with_rootimage and use
249           the rootimage to resolve the types instead of the current image
250
251 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
252
253         * culture-info-table.h: Forgot to update after r78304.
254
255 2007-07-13  Raja R Harinath  <rharinath@novell.com>
256
257         * class.c (mono_class_is_open_constructed_type)
258         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
259
260 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
261
262         * class.c (mono_bounded_array_class_get):  method fails if used with
263         an incomplete TypeBuilder enum (no basetype field), fixed it by 
264         avoiding calculating the size for such array as it cannot be instantiated.
265         Fix bug #82015
266
267 2007-07-12  Raja R Harinath  <rharinath@novell.com>
268
269         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
270         field.
271         * metadata.c, reflection.c: Update to changes.
272
273 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
274
275         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
276         mono_class_is_valid_enum, they are used to valide a enum when loading.
277         * reflection.c: used new functions to throw TypeLoadException when and
278         invalid enum is build with TypeBuilder. Fixes #82018
279   
280 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
281
282         * object.c: forgot commit of mono_class_setup_methods () to access
283         iface->methods.
284         * object-internals.h: added a few more handy fields to
285         MonoIMTCheckItem.
286
287 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
288
289         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
290         iface->methods.
291
292 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
293
294         * class-internals.h, object-internals.h, object.c: IMT-based
295         interface invocation core from Massimiliano Mantione
296         (massi@ximian.com) with a reworked arch-specific interface,
297         bsearch implementation and a few bugfixes and memory savings by me.
298
299 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
300
301         * class.c (mono_class_create_from_typedef): mono would segfault if 
302         an enum did not have a __value field. It now throws a TypeLoadException
303         for such cases. Fix bug #82022
304
305 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
306
307         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
308
309 2007-07-09  Mark Probst  <mark.probst@gmail.com>
310
311         * class.c (mono_class_init): If a class is already inited but has
312         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
313
314 2007-07-09  Mark Probst  <mark.probst@gmail.com>
315
316         * class.c: Properly handle the case of an unimplemented interface
317         method.  Fixes: 81673.
318
319 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
320
321         * class-internals.h, object.c: cleanup patch from massi: use
322         MonoVTable->interface_bitmap since the vtable interfaces offset array
323         is going away.
324
325 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
326
327         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
328         GetMDStreamVersion icall instead.
329
330 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
331
332         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
333         not use mono_dl_build_path() with a full library name: makes
334         fallbacks to libgaim and libfam work.
335
336 2007-07-06  William Holmes  <billholmes54@gmail.com>
337
338         * assembly.c: Added a continue statement in probe_for_partial_name when
339          parse_assembly_directory_name fails.  Fixes : 82002
340
341 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
342
343         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
344         and added a verification  for TYPEDBYREF.
345         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
346         make native int interchangeable with int32 and some small cleanup and formating.
347         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
348         handle byref of byref.
349         * verify.c (push_local): handle byref of byref.
350         * verify.c (do_binop): invalid mix of values is unverifiable
351         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
352         added visibility checks
353         * verify.c (field related method): added visibility checks
354         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
355
356 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
357
358         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
359         string.
360
361 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
362
363         * profiler.c (mono_profiler_load): Fix an off-by-one error.
364
365         * marshal.c (emit_marshal_string): When returning a string from managed code,
366         allways make a copy even for unicode strings. Fixes #81990.
367
368 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
369
370         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
371         of byref generic inst types (bug #81997).
372
373 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
374
375         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
376         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
377
378 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
379
380         * marshal.c (emit_marshal_string): Add support for unicode strings in
381         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
382
383 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
384
385         * verify.c: field load/store are now verified, missing only access checks now
386
387 2007-06-28  Martin Baulig  <martin@ximian.com>
388
389         * mono-debug.c (mono_debug_debugger_version): New public variable.
390
391 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
392
393         * locales.c: When constructing DateTimeFormat or NumberFormat for
394         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
395         MonoCultureInfo contructed from the current locale is always
396         read-only and has UseUserOverride set to true. All MonoCultureInfo
397         instances returned for GetCultures have both IsReadOnly and
398         UseUserOverride set to true. Fixes part of bug #81930.
399
400 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
401
402        * icall-def.h: Update System.__ComObject icalls
403        * marshal.c: Avoid managed transition (and object creation)
404        when looking up COM interface in RCW.
405        * marshal.h: Ditto.
406        
407        Code is contributed under MIT/X11 license.
408
409 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
410
411         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
412         to avoid crashes during assembly unloading.
413
414 2007-06-22  Raja R Harinath  <rharinath@novell.com>
415
416         Fix MethodInfo.IsGenericMethodDefinition
417         * reflection.c (mono_reflection_bind_generic_method_parameters):
418         Rearrange code to ensure we always uses a generic method definition.
419         * class.c (mono_class_inflate_generic_method_full): Set
420         'generic_container' field only for generic method definitions.
421         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
422         Use presense of 'generic_container' field as indication of being a
423         generic method definition.
424
425 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
426
427         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
428
429         * object-internals.h: Reflect changes in the layout of the managed Delegate
430         class.
431         
432         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
433         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
434         runtime memory used by the dynamic method. Fixes #77146.
435
436 2007-06-21  Dick Porter  <dick@ximian.com>
437
438         * file-io.h: 
439         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
440         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
441         81767.
442
443 2007-06-21  Raja R Harinath  <rharinath@novell.com>
444
445         * reflection.c (method_encode_methodspec): Add a tripwire.
446         * class.c (inflate_generic_type): The fully open generic type is
447         not the same as the generic type definition.
448
449 2007-06-21  Martin Baulig  <martin@ximian.com>
450
451         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
452
453         * mono-debug-debugger.h
454         (MonoDebuggerBreakpointInfo): Removed.
455         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
456         (mono_debugger_remove_breakpoint): Likewise.
457         (mono_debugger_breakpoint_callback): Likewise.
458         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
459
460 2007-06-21  Raja R Harinath  <rharinath@novell.com>
461
462         * metadata.c (mono_metadata_lookup_generic_class): The fully open
463         generic type is not the same as the generic type definition.
464         * class.c (mono_generic_class_get_class): Likewise.
465
466 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
467
468         * icall.c: The second argument to 
469         System.Reflection.MethodBase.GetMethodFromHandleInternalType
470         is a MonoType not a MonoClass.
471
472 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
473
474         * verify.c: support for function pointers in the verifier
475
476 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
477
478         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
479
480 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
481
482         * assembly.c: removed Mono.Data.SqliteClient from the list of
483         forward-compatible assemblies as it breaks the ABI (bug #81899).
484
485 2007-06-19  Raja R Harinath  <rharinath@novell.com>
486
487         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
488         lookup/update with the loader lock.
489         * reflection.c (mono_class_bind_generic_parameters): No need to
490         protect mono_metadata_lookup_* with the loader lock.
491         * class.c (inflate_generic_type): Likewise.
492         
493         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
494         on a generic instantiated type.
495
496 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
497
498         *verify.c: produce meanfull error messages on verification error
499         *verify.c: fixed some cases of verification errors reported as validation errors
500         *pedump.c: fixed the error name array, now it shows validation errors properly
501         *verify.h: fixed the contant that should be used for verification errors
502
503 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
504
505         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
506         for bug #77596, 81858 and 80743 (generics data structures on domain
507         unload).
508
509 2007-06-15  Raja R Harinath  <rharinath@novell.com>
510
511         Avoid allocating 'MonoGenericContext' on the heap.
512         * class-internals (_MonoMethodInflated::context): Make field
513         inline, not a pointer.
514         * loader.c (method_from_methodspec): Allocate 'new_context' on the
515         stack.  Use the context embedded within the inflated method as the
516         hash key, rather than 'new_context'.
517         * class.c (inflate_generic_context): Simplify.  Return a struct
518         rather than allocating on the heap.
519         (mono_class_inflate_generic_method_full): Update to changes.  Now,
520         doesn't salt away a copy of the context -- simplifying the
521         lifetime rules of a 'MonoGenericContext *'.
522         (mono_method_get_context): Return pointer to embedded context.
523         (setup_generic_array_ifaces): Allocate temporary context on stack.
524         * reflection.c (inflate_mono_method): Likewise.
525         (mono_reflection_bind_generic_method_parameters): Likewise.
526         Use the context embedded within the inflated method as the hash key.
527
528         Avoid a source of allocation of 'MonoGenericContext'.
529         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
530         and 'cached_context' fields into embedded 'MonoGenericContext' field.
531         * class.c: Update to changes.
532         (mono_generic_class_get_context): Simplify drastically.  Now just
533         returns a pointer to the field.
534         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
535         argument as a const pointer.
536         (mono_metadata_generic_context_equal): Likewise.
537         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
538         Update to changes.
539
540 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
541
542         * verify.c improved the handling of brtrue/brfalse, factored out common code
543
544 2007-06-14  Raja R Harinath  <rharinath@novell.com>
545
546         Kill MonoGenericMethod.
547         * class-internals.h (MonoGenericContext::method_inst): Rename from
548         'gmethod' and convert to a MonoGenericInst.
549         (MonoGenericMethod): Remove.
550         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
551         * loader.c (method_from_methodspec): Update to changes.  Use a
552         MonoGenericContext as the key to the hashtable.
553         * metadata.c (mono_metadata_generic_context_equal): Rename from 
554         'mono_metadata_generic_method_equal' and take MonoGenericContext.
555         (mono_metadata_generic_context_hash): Likewise from
556         'mono_metadata_generic_method_hash'.  Change hash function.
557         (mono_metadata_load_generic_params): Update to changes.
558         (mono_get_shared_generic_method): Remove.
559         * metadata-internals.h (mono_get_shared_generic_method): Remove.
560         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
561         (inflate_generic_context): Likewise.
562         (mono_class_inflate_generic_method_full): Likewise.
563         (setup_generic_array_ifaces): Likewise.
564         (mono_class_create_from_typespec): Likewise.
565         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
566         (method_encode_methodspec): Update callsite.
567         (reflection_methodbuilder_to_mono_method): Update to changes.
568         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
569         MonoGenericContext as the key to the hashtable.
570         (inflate_mono_method): Update to changes.
571
572         * class-internals.h (MonoGenericMethod::container): Remove.
573         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
574
575 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
576
577         * profiler-private.h, profiler.c, profiler.h: added API to profile
578         exception events.
579
580 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
581
582         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
583
584 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
585
586         * verify.c: method invocation is now validated, now we verify parameter types on stack.
587         Fixed overflow and underflow not aborting the verification process.
588
589 2007-06-13  Mark Probst  <mark.probst@gmail.com>
590
591         * class-internals.h (MonoStats): Added stats entries for dynamic
592         code allocations.
593
594 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
595
596         * loader.c (mono_free_method): Free header->locals and header->clauses.
597
598         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
599         dynamic case.
600
601         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
602
603         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
604
605 2007-06-12  Raja R Harinath  <rharinath@novell.com>
606
607         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
608         the tables.
609
610 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
611
612         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
613
614 2007-06-11  Raja R Harinath  <harinath@gmail.com>
615
616         MonoGenericMethod on a diet
617         * class-internals.h (_MonoMethodInflated::reflection_info): Move
618         here ...
619         (_MonoGenericMethod::reflection_info): ... from here.
620         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
621         Update to changes.
622         * reflection.c (inflate_mono_method): Likewise.
623         (mono_reflection_bind_generic_method_parameters): Likewise.
624
625 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
626
627         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
628         *verify.c: factored long ldarg forms to share code with short forms
629
630 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
631
632         *verify.c: fixed code formating factored some duplicate code
633         into a new function
634
635         *verify.h: fixed binary incompatibility introduced earlier
636
637         *pedump.c: fixed formating
638
639 2007-06-11  Raja R Harinath  <harinath@gmail.com>
640
641         Fix assertion when disassembling Mono.C5.dll
642         * loader.c (method_from_methodspec): Avoid inflating a method
643         twice with the same context.  If the methodref is inflated, use
644         the declaring method instead.
645
646         * class.c (mono_class_from_generic_parameter): Fix case similar to
647         bug #81830 handled below, but for method containers.
648
649 2007-06-10  Raja R Harinath  <harinath@gmail.com>
650
651         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
652         get_shared_generic_class.  Directly inflate the instance.
653         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
654         (inflate_generic_class): Delete.
655         (get_shared_generic_class): Delete.  Move setting of
656         'cached_class' and 'cached_context' ...
657         * metadata.c (mono_metadata_lookup_generic_class): ... here.
658
659         * metadata.c (mono_metadata_lookup_generic_class): Change
660         signature to take the components of a MonoGenericClass rather than
661         an allocated MonoGenericClass.  Change semantics to be intern-like.
662         * reflection.c (mono_class_bind_generic_parameters): Update to
663         changes.  Make locking region tighter.
664         * class.c (inflate_generic_class): Update to changes.
665         (get_shared_generic_class): Likewise.
666         * metadata-internals.h: Likewise.
667
668         * reflection.c (mono_class_bind_generic_parameters): Take and
669         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
670         (mono_reflection_bind_generic_parameters): Use
671         'mono_class_bind_generic_parameters' rather than duplicate the code.
672         * class.c (mono_bounded_array_class_get): Update to changes.
673         * object-internals.h: Likewise.
674
675         * reflection.c (mono_class_bind_generic_parameters): Only support
676         parameterizing generic type definitions.  Remove support for other
677         open types.
678
679 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
680
681         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
682
683         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
684         in the dynamic case.
685
686 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
687
688         * threads.c: When cleaning up thread, reset the Background bit.
689         Fixes bug #81720.
690
691 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
692
693        * metadata.c: Move variable declarations to top of scope.
694        * verify.c: Move variable declarations to top of scope.
695
696        Code is contributed under MIT/X11 license.
697
698 2007-06-08  Raja R Harinath  <rharinath@novell.com>
699
700         * reflection.c (mono_class_bind_generic_parameters): Replace
701         open-coded loop with mono_metadata_inflate_generic_inst.
702
703         * class.c (get_shared_generic_class): Don't call
704         mono_get_shared_generic_inst.  Use the container's own
705         'class_inst'.
706
707         * metadata.c (mono_metadata_load_generic_params): Move
708         initialization of 'context' field here from ...
709         * class.c (mono_class_create_from_typedef): ... here, and ...
710         * loader.c (mono_get_method_from_token): ... here.
711
712         * class.c (get_shared_generic_class): Rename from
713         mono_get_shared_generic_class and make static.
714         (mono_get_shared_generic_inst): Move to metadata.c.
715         * loader.c (mono_get_shared_generic_method): Likewise.
716         * class-internals.h, metadata-internals.h: Update to changes.
717
718         Fix #81830
719         * class.c (mono_class_from_generic_parameter): Don't assume a
720         generic container owner exists.  Generic containers from monodis
721         don't have any.
722
723 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
724
725         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
726         * verify.h: new typedefs to returns the non-verifiable status
727         * verify.c: initial implementation of generics, stack merging and object compatibility check
728
729 2007-06-06  Mark Probst  <mark.probst@gmail.com>
730
731         * class.c, image.c, class-internals.h (MonoImage): class_cache is
732         a MonoInternalHashTable again (fixed bug in internal hash table
733         code).
734
735 2007-06-06  Mark Probst  <mark.probst@gmail.com>
736
737         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
738         MonoInternalHashTable again (fixed bug in internal hash table
739         code).
740
741 2007-06-06  Mark Probst  <mark.probst@gmail.com>
742
743         * class.c, image.c, class-internals.h, domain.c,
744         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
745         changes.  Have to figure out what makes them break the SWF
746         regression.
747
748 2007-06-04  Mark Probst  <mark.probst@gmail.com>
749
750         * class.c, image.c, class-internals.h (MonoImage): class_cache is
751         a MonoInternalHashTable now.
752
753 2007-06-04  Mark Probst  <mark.probst@gmail.com>
754
755         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
756         MonoInternalHashTable now.
757
758 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
759
760         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
761         invoke_impl code.
762
763         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
764
765         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
766         dependent trampoline.
767
768         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
769
770         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
771
772 2007-05-29  Robert Jordan  <robertj@gmx.net>
773
774         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
775
776 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
777
778         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
779
780 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
781
782        * marshal.c: Fix interface lookup loops for
783        cominterop_get_com_slot_for_method and 
784        cominterop_get_method_interface. Only need to lookup
785        if type is a class, else use interface type method is on.
786
787        Code is contributed under MIT/X11 license.
788
789 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
790
791         * reflection.c: HasSecurity can be present even if no specially 
792         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
793         SecurityAttribute). Fix CAS regression tests on buildbot.
794
795 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
796
797        * appdomain.c: Add configure checks for header files.
798        * image.c: Add configure checks for header files.
799        * file-io.c: Add configure checks for header files.
800        * debug-mono-symfile.c: Add configure checks for header files.
801        * threadpool.c: Add configure checks for header files.
802        * console-io.c: Add configure checks for header files.
803        * profiler.c: Add configure checks for header files.
804        * rawbuffer.c: Add configure checks for header files.
805        * icall.c: Add configure checks for header files.
806        * rand.c: Add configure checks for header files.
807        * socket-io.c: Add configure checks for header files.
808
809        Code is contributed under MIT/X11 license.
810
811 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
812
813         * reflection.c (mono_custom_attrs_from_builders): Remove the 
814         assertion as it breaks the build.
815         
816         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
817
818         * reflection.c (lookup_custom_attr): Make a copy here too.
819
820         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
821         dynamic images.
822
823         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
824         images.
825
826         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
827         info.
828
829 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
830
831         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
832         (load_cattr_value): Ditto.
833
834 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
835
836         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
837
838 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
839
840         * threads.c: In "start_wrapper", set apartment_state to MTA if
841         apartment_state is Unknown and we're running on 2.0 profile or
842         higher.
843         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
844         to main method, then set apartment_state to Unknown on 1.0 profile,
845         and MTA on 2.0 profile.
846
847 2007-05-16  Jb Evain  <jb@nurv.fr>
848
849         * class-internals.h (MonoDefaults): Add an attribute_class and
850           customattribute_data_class.
851         * domain.c (mono_init_internal): Populate them.
852         * reflection.c: Use them to remove duplicates. Make a vew
853         MonoClass variables `static'.
854
855 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
856
857         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
858         step in implementing IMT, so that all isinst checks now can go
859         through the bitmap.
860         This was needed because vtables for TransparentProxy need to look
861         like the vtable of the "target" class, so they need to point to
862         its interface bitmap directly.
863
864         * object.c: inside "mono_class_create_runtime_vtable" and
865         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
866
867 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
868
869         * object-internals.h
870           culture-info.h : added territory field in MonoCulture and
871           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
872         * locales.c : fill territory field above too.
873         * culture-info-table.h : regenerated.
874
875 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
876
877         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
878         Fixes #81599.
879
880 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
881
882         * object.c: Always initialize apartment, even if 
883         there is no custom attributes on entry point.
884         
885         Code is contributed under MIT/X11 license.
886
887 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
888
889         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
890         * metadata.c: If no encoding is set, check for unicode
891         on class.
892         
893         Code is contributed under MIT/X11 license.
894
895 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
896
897         * threads.c: Handle if mono_thread_current returns NULL 
898         
899         Code is contributed under MIT/X11 license.
900
901 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
902
903         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
904         in start_wrapper. Added mono_thread_init_apartment_state and
905         mono_thread_cleanup_apartment_state.
906         * object.c: Initialize thread apartment state on main thread
907         by checking for STAThreadAttribute on entry point.
908         * object-internals.h: Add apartment_state field to MonoThread.
909         * threads-types.h: Add unmanaged definition of 
910         System.Threading.ApartmentState, MonoThreadApartmentState.
911         
912         Code is contributed under MIT/X11 license.
913         
914 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
915
916         * class.c: Fix windows build.
917         * class-internals.h: Fix windows build.
918         
919         Code is contributed under MIT/X11 license.
920
921 2007-05-08  Robert Jordan  <robertj@gmx.net>
922
923         * process.c (CreateProcess_internal):
924         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
925         .CreateNoWindow was specified. Fixes #81496.
926
927 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
928
929         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
930         step in implementing IMT, replaced it with two compact arrays
931         (interfaces_packed and interface_offsets_packed) and a bitmap that
932         is used for isinst checks (interface_bitmap).
933
934         * class.c: (compare_interface_ids): compare function to pass to
935         bsearch when looking for an interface with a given id.
936         (mono_class_interface_offset): reimplemented using bsearch on
937         interfaces_packed, getting the offset from interface_offsets_packed.
938         (print_implemented_interfaces): utility debugging function.
939         (setup_interface_offsets): reworked to initialize interfaces_packed,
940         interface_offsets_packed and interface_bitmap.
941
942         * object.c: replaced all accesses to "MonoClass.interface_offsets"
943         with uses of interfaces_packed and interface_offsets_packed.
944
945 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
946
947         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
948         mono_class_interface_offset prototype to wrap all accesses to
949         "MonoClass.interface_offsets".
950
951         * class.c: Implemented mono_class_interface_offset, and wrapped all
952         accesses to "MonoClass.interface_offsets".
953
954         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
955         "MonoClass.interface_offsets".
956
957 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
958
959         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
960         GetMethodFromHandle overloads (bug #78637).
961
962 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
963
964         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
965         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
966
967 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
968
969         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
970         #81498.
971
972         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
973         gracefully.
974         (mono_custom_attrs_from_index): Ditto.
975
976         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
977         Fixes #81501.
978
979 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
980
981         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
982         is now allocated from a mempool.
983
984 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
985
986         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
987         caller holds threads_lock, leading to deadlocks. Fixes #81476.
988
989 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
990
991         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
992         mono_loader_clear_error () too late. Fixes #81463.
993
994 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
995
996         * culture-info-table.h : regenerated.
997
998 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
999
1000         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
1001         is missing.
1002
1003 2007-04-25  Dick Porter  <dick@ximian.com>
1004
1005         * Makefile.am: Put the mingw enforced-optimisation back into the
1006         PLATFORM_WIN32 section.
1007
1008 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
1009
1010         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
1011         patch.
1012
1013         * image.c (mono_image_load_module): New API function to load a module reference.
1014
1015         * image.c (load_modules): Load modules lazily. Fixes #80812.
1016
1017         * class.c (mono_class_from_typeref): Use mono_image_load_module.
1018         
1019         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
1020
1021         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
1022         to mono_image_load_module_dynamic.
1023
1024 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
1025
1026         * marshal.c: Fix calling convention for CCW on non-windows
1027         platforms. STDCALL on windows, CDECL everywhere else to work 
1028         with XPCOM and MainWin COM.
1029         
1030         Code is contributed under MIT/X11 license.
1031
1032 2007-04-23  Martin Baulig  <martin@ximian.com>
1033
1034         Fix #80969.
1035
1036         * loader.c
1037         (method_from_memberref): Added `gboolean *used_context' argument.
1038         (mono_get_method_from_token): Likewise.
1039         (mono_get_method_full): Don't insert the method in the cache when
1040         `used_context' is true.
1041
1042 2007-04-23  Raja R Harinath  <rharinath@novell.com>
1043
1044         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
1045
1046         * reflection.c (mono_reflection_bind_generic_parameters): Don't
1047         create new MonoTypes for returned types.
1048         * class.c (mono_generic_class_get_class): Export mono-internal.
1049         * class-internals.h: Update to changes.
1050
1051 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
1052
1053         * threadpool.c, threadpool.h, icall-def.h: patch from
1054         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
1055
1056 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
1057
1058         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
1059         
1060         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
1061
1062         * threads.c (mono_thread_get_stack_bounds): New helper function.
1063
1064         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
1065         Correctly compute stack bounds when attaching. Fixes #81394.
1066
1067 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
1068
1069         * reflection.c: fix handling of doubles in custom attributes
1070         for the arm-fpa format (bug #81368).
1071
1072 2007-04-18  Raja R Harinath  <rharinath@novell.com>
1073
1074         * reflection.c (assembly_add_win32_resources): Mildly relax an
1075         bounds check to let the end pointer point just past the end of the
1076         allocated buffer.  (may fix #81384)
1077
1078 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
1079
1080         * culture-info-table.h : regenerated.
1081
1082 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
1083
1084         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
1085         the thread is aborted early.
1086
1087 2007-04-05  Dick Porter  <dick@ximian.com>
1088
1089         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
1090         FindFirstFile()/FindNextFile() to find entries.  This lets the
1091         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
1092         81038.
1093
1094         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
1095         the parameters of
1096         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
1097
1098 2007-04-04  Martin Baulig  <martin@ximian.com>
1099
1100         * debug-helpers.c
1101         (mono_method_desc_full_match): Add support for nested classes.
1102
1103 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
1104
1105         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
1106
1107 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
1108
1109         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
1110         waiting for too many threads.
1111
1112 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
1113
1114         * environment.c: Fix return value check on uname so we can get the 
1115         executing version on Solaris operating systems.
1116
1117 2007-03-28  Jb Evain  <jbevain@gmail.com>
1118
1119         * class.c (mono_type_get_name_recurse): Complete the
1120         fix for the creation of assembly qualified names for
1121         pointer types. Fixes #81208.
1122
1123 2007-03-27  Dick Porter  <dick@ximian.com>
1124
1125         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
1126         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
1127         changed.
1128
1129         * threads.c
1130         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
1131         the value of ReleaseMutex().
1132
1133 2007-03-27  Dick Porter  <dick@ximian.com>
1134
1135         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
1136         in little-endian order, not network endian, so must be converted
1137         to host endian here.  Fixes bug 80593.
1138
1139 2007-03-22  Jb Evain  <jbevain@gmail.com>
1140
1141         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
1142         qualified names for pointer types. Fixes #81208.
1143
1144 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
1145
1146         * marshal.c: Add support for PreserveSigAttribute. 
1147         
1148         Code is contributed under MIT/X11 license.
1149
1150 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
1151
1152         * process.c: Fix endianness issues. Fixes #81126.
1153
1154         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
1155         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
1156
1157         * image.c (mono_image_lookup_resource): Make this work on big-endian
1158         machines.Change API contract so the caller needs to free the return value.
1159         
1160         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
1161         API change.
1162         
1163 2007-03-14  Martin Baulig  <martin@ximian.com>
1164
1165         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
1166         mono_type_get_desc() as well.
1167
1168 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1169
1170         * icall.c:  Fix environ access in VS.  
1171         
1172 2007-03-13  Alp Toker  <alp@atoker.com>
1173
1174         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
1175         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
1176         #63841.
1177
1178 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
1179
1180         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
1181         circular references among dynamic methods. Fixes #81091.
1182
1183         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
1184
1185 2007-03-09  Martin Baulig  <martin@ximian.com>
1186
1187         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
1188
1189 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
1190
1191         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
1192         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
1193         
1194         Code is contributed under MIT/X11 license.
1195         
1196 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
1197
1198         * loader.c: Reapply patch for bug #79424.
1199
1200 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1201
1202         * metadata.c (mono_type_to_unmanaged): Only convert object to
1203         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
1204
1205 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
1206
1207         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
1208         (and incorrectly set) is_reference field from MonoGenericInst.
1209
1210 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1211
1212         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
1213         a little earlier.
1214
1215         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
1216
1217         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
1218
1219 2007-03-05  Miguel de Icaza  <miguel@novell.com>
1220
1221         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
1222         FileOptions.1 value to mean "temporary", map that to
1223         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
1224
1225         Fixes 80688
1226
1227 2007-03-03  Marek Habersack  <mhabersack@novell.com>
1228
1229         * appdomain.c: implement MS .Net style shadow copying. Copies of
1230         the assemblies are made in a subdirectory of the dynamic base
1231         directory, the assembly names are preserved.
1232         Copy .mdb and .config files along with the assemblies being shadowed.
1233
1234 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1235
1236         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
1237         (emit_marshal_handleref): Ditto.
1238
1239         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
1240         on Visual C++. Fixes #80671.
1241
1242 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
1243
1244         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
1245         for clone operations.
1246
1247 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1248
1249         * marshal.c: Fix warnings.
1250
1251 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
1252
1253         * loader.c: allow case-insensitive matching of the dll name
1254         in dllmap handling when prefixed with "i:".
1255
1256 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
1257
1258         * threads.c: Fix #ifdef for dummy_apc function for VS.
1259
1260 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
1261
1262         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
1263
1264 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
1265         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
1266         giving precedence to the methods with a fully qualified name
1267         (InterfaceName.MethodName) when building the interface sections
1268         of the vtable.
1269
1270 2007-02-16  Dick Porter  <dick@ximian.com>
1271
1272         * threadpool.c (append_job): Fix fast-path array handling, so it's
1273         less likely the array will grow exponentially when the load is
1274         heavy.
1275
1276 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1277
1278         * metadata-internals.h, loader.c: fix dllmap lookup order
1279         for non-function maps, too, and prepare for fallback code.
1280
1281 2007-02-12  Robert Jordan  <robertj@gmx.net>
1282
1283         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
1284         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
1285         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
1286         GlobalFree. Fixes a part of bug #77075.
1287
1288 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
1289
1290         * loader.c: implemented typedef parent in field memberref.
1291
1292 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
1293
1294         * marshal.c: Fix warnings and remember to call Release on
1295         IUnknown of RCW.
1296         
1297         Code is contributed under MIT/X11 license.
1298
1299 2007-02-10  Miguel de Icaza  <miguel@novell.com>
1300
1301         * class-internals.h: Add MonoHandleRef definition, and
1302         handleref_class to mono_defaults. 
1303
1304         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
1305         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
1306
1307         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
1308         (do nothing on this stage)
1309         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
1310         (emit_marshal_handleref): New method, used for argument handling
1311         of HandleRefs. 
1312
1313 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
1314
1315         * class.c (mono_class_setup_parent): Lazily init com types.
1316         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
1317         init com types.
1318         * object.c (mono_remote_class_vtable): Lazily init com types.
1319         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
1320         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
1321         * domain-internals.h: Expose mono_init_com_types.
1322         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
1323         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
1324         Add support for COM Callable Wrapper marshalling.
1325         * marshal.h: Add icall definitions.
1326         * gc.c: Handle freeing of CCWs in finalizer code.
1327         
1328         Code is contributed under MIT/X11 license.
1329
1330 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
1331
1332         * reflection.c: changed all the signature encoding code to use
1333         a variable-sized buffer.
1334
1335 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1336
1337         * marshal.c: locking fixes: never take the loader lock
1338         or other runtime locks when holding the marshal lock
1339         (fixes bug#80664).
1340
1341 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
1342
1343         * marshal.c: make the delegate function pointer mapping
1344         work for the moving GC.
1345
1346 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
1347
1348         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
1349         for bug #80618.
1350
1351 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1352
1353         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
1354         gmodule.
1355
1356 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
1357
1358         * threadpool.c: made the code moving-GC safe.
1359
1360 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
1361
1362         * assembly.c, boehm-gc.c, class-internals.h, class.c,
1363         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
1364         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
1365         warning cleanup.
1366         * reflection.c: warning cleanup, some threading and moving GC fixes.
1367
1368 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
1369
1370         * class.c, loader.c: create the needed Set/Get/Address array methods
1371         as well as the .ctors in mono_class_init (), fixes bug #80567.
1372
1373 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
1374
1375         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
1376         we doesn't decrease its alignment. Should fix the sparc build.
1377
1378 2007-01-24  Dick Porter  <dick@ximian.com>
1379
1380         * socket-io.c
1381         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1382         Create the returned object if we need to ignore an unsupported
1383         socket option.  Fixes a segfault reported by Atsushi.
1384
1385 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
1386
1387         * class.c, object.c: restrict GC-tracked fields to
1388         UIntPtr fields used inside corlib, so we provide better
1389         type info to the GC and also allow broken packing as in
1390         bug #80580.
1391
1392 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
1393
1394         * sgen-gc.c: removed duplicated function.
1395
1396 2007-01-19  Miguel de Icaza  <miguel@novell.com>
1397
1398         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
1399         value that means that the value is not supported, but that we
1400         should not return a failure, but instead report this as a
1401         successful operation.
1402
1403 2007-01-19  Raja R Harinath  <rharinath@novell.com>
1404
1405         Fix tests/bug79956.2.il
1406         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
1407         (mono_generic_class_get_class): If the generic definition in an
1408         enum, copy over other fields related to it.
1409
1410 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
1411
1412         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
1413         genericinst enums (bug #79215).
1414
1415 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
1416         * class.c: Fix bug 80307.
1417
1418 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
1419
1420         * image.c: if the file table is not present, try to load
1421         all the modules, since we don't have info about them
1422         having or not metadata (bug #80517).
1423         * assembly.c: allow mono_assembly_load_references () to
1424         work for netmodules.
1425
1426 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1427
1428         * image.c, metadata-internals.h, object.c: execute module
1429         cctors when running on the 2 runtime if present (bug #80487).
1430
1431 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
1432
1433         * icall.c: optimized InitializeArray() on bigendian.
1434
1435 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
1436
1437         * icall.c: fix for the broken ARM FPA double format.
1438
1439 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
1440
1441         * icall.c: handle endian issues for r4 and r8 types, too, in
1442         the InitializeArray() icall.
1443
1444 2007-01-15  Miguel de Icaza  <miguel@novell.com>
1445
1446         * loader.c (mono_loader_error_prepare_exception): Clear the error
1447         once we have extracted the information from it, do this before we
1448         call into the JIT's class loading mechanisms.
1449
1450         * object.c (mono_class_create_runtime_vtable): Do not clear the
1451         loader error before calling mono_class_get_exception_for_failure
1452         as the loader error is needed inside
1453         mono_class_get_exception_for_failure to throw the error (thinko).
1454
1455         Fixes #80521
1456         
1457 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
1458
1459         * reflection.c: align fields rva data so it's faster to load at
1460         runtime.
1461
1462 2007-01-12  Raja R Harinath  <rharinath@novell.com>
1463
1464         Prepare to simplify GenericMethod handling.
1465         * class-internals.h (mono_method_get_context): New accessor function.
1466         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
1467         rather than directly accessing '->context' field.
1468
1469         * class-internals.h (_MonoGenericParam.method): Move ...
1470         (_MonoGenericContainer): ... here.  Add into union with klass field.
1471         * class.c, icall.c, loader.c, metadata.c, reflection.c:
1472         Update to changes.
1473
1474 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
1475
1476         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
1477         the wrapper type enum and reduce relocations.
1478
1479 2007-01-12  Raja R Harinath  <rharinath@novell.com>
1480
1481         * reflection.c (inflate_mono_method): Reuse method instantiation
1482         from the generic method, if available.
1483
1484 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1485
1486         * marshal.c (emit_marshal_variant): Fix conv_arg
1487         type in last commit, based on whether parameter is byref.
1488         
1489 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1490
1491         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
1492         marshalling.
1493         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
1494         MONO_TYPE_OBJECT back for VARIANT support.
1495
1496 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1497
1498         * marshal.c, marshal.h, icall-def.h: Implement 
1499         Marshal.ReAllocCoTaskMem.
1500
1501 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
1502
1503         * marshal.c: memory retention fixes: use the proper
1504         image cache for runtime_invoke method lookups.
1505
1506 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
1507
1508         * mempool.c: added code to help debug mempool allocations.
1509
1510 2007-01-11  Dick Porter  <dick@ximian.com>
1511
1512         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
1513         support (experimenting with faking it with IP_MTU_DISCOVER for
1514         systems that don't have IP_DONTFRAGMENT.)
1515         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
1516         icall.
1517
1518         * icall-def.h: new System.Net.Sockets.Disconnect icall.
1519
1520         * socket-io.h: Add new fields to MonoSocketAsyncResult
1521         corresponding to the new ones in Socket.cs.
1522
1523 2007-01-11  Raja R Harinath  <rharinath@novell.com>
1524
1525         Fix IronPython regression mentioned in #80249
1526         * metadata.c (do_mono_metadata_parse_generic_class): Clear
1527         'cached_context' field, since it may have been initialized as a
1528         side-effect of metadata parsing.
1529
1530         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
1531         (_MonoGenericClass.cached_class): Move here and rename from lone
1532         remaining field of ...
1533         (_MonoInflatedGenericClass): ... this.  Remove.
1534         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
1535         to changes.
1536
1537         Fix mcs/tests/test-128.cs regression.
1538         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
1539         2007-01-10 change below.
1540         [MONO_TYPE_OBJECT]: Recurse into array case.
1541
1542 2007-01-11  Raja R Harinath  <harinath@gmail.com>
1543
1544         * class-internals.h (mono_get_inflated_generic_class): Remove.
1545         * class.c (mono_get_inflated_generic_class): Remove.
1546         (mono_generic_class_get_class): Rename from
1547         mono_class_create_generic.
1548         (mono_class_from_mono_type) [GENERICINST]: Use it.
1549         * reflection.c, metadata.c: Update to changes.  Use
1550         'mono_class_from_mono_type'.
1551
1552 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
1553
1554         * reflection.c: use passed type when encoding an array element
1555         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
1556
1557 2007-01-09  Robert Jordan  <robertj@gmx.net>
1558
1559         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
1560         result arguments (someDelegate.EndInvoke (unrelatedAres)).
1561         Fixes bug #80392.
1562
1563 2007-01-09  Raja R Harinath  <rharinath@novell.com>
1564
1565         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
1566
1567         * object.c (set_value): Avoid aliasing between type->data.klass
1568         and type->data.generic_class.
1569
1570         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
1571
1572 2007-01-08  Raja R Harinath  <rharinath@novell.com>
1573
1574         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
1575         between type->data.klass and type->data.generic_class.
1576
1577 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
1578
1579         * marshal.c: In MS.NET, StringBuilder objects are not copied by
1580         value in out parameters.
1581
1582 2007-01-08  Raja R Harinath  <rharinath@novell.com>
1583
1584         Simplify invariant for MonoGenericClass::klass field.
1585         * class.c (mono_class_create_generic): Verify 'klass' is null.
1586         * metadata.c (do_mono_metadata_parse_generic_class): Don't
1587         initialize 'klass' field.
1588
1589 2007-01-05  Raja R Harinath  <rharinath@novell.com>
1590
1591         Ongoing work to avoid redundant data and simplify invariants.
1592         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
1593         'generic_class', and change type to a GenericInst.
1594         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
1595         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
1596
1597 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
1598
1599         * class.c : skip io-layer under PLATFORM_WIN32.
1600
1601 2007-01-03  Tor Lillqvist  <tml@novell.com>
1602
1603         Fix #80305: In a bundled executable, look in the bundled exe
1604         assembly to determine the runtime version. Add the possibility to
1605         bundle also the machine.config file.
1606         
1607         * assembly.c (mono_assembly_open_from_bundle): Make
1608         non-static. Allow being called even if we have no bundled
1609         assemblies, and return NULL right away in that case.
1610
1611         * domain-internals.h: Declare mono_assembly_open_from_bundle()
1612         here.
1613
1614         * domain.c (app_config_parse): Take an assembly exe file name as
1615         parameter instead of a config file name. Check for a bundled
1616         config file for that assembly by calling
1617         mono_config_string_for_assembly_file() (see below) before looking
1618         for one in the file system.
1619         (get_runtimes_from_exe): Corrsponding change to call of
1620         app_config_parse().
1621         (get_runtimes_from_exe): Check for bundled assembly exe file first
1622         by calling mono_assembly_open_from_bundle(). If no bundled
1623         assembly exe file is found, call mono_image_open() as before to
1624         look it up in the file system.
1625
1626         * mono-config.c: Add variable bundled_machinec_onfig.
1627         (mono_config_string_for_assembly_file): New function.
1628         (mono_config_for_assembly): Move code snippet that looks for a
1629         bundled assembly .config file into the above new function. Call
1630         it.
1631         (mono_register_machine_config, mono_get_machine_config): New
1632         functions to set and retrieve
1633
1634         * assembly.h: Declare mono_register_machine_config().
1635
1636         * mono-config.h: Declare mono_get_machine_config() and
1637         mono_config_string_for_assembly_file().
1638
1639         * icall.c: No declaration of environ necessary on Win32. It is
1640         declared (as a macro expanding to a function call) in stdlib.h.
1641         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
1642         New internal mono function. Returns the value of
1643         mono_get_machine_config() as a Mono string.
1644
1645         * icall-def.h: Add get_bundled_machine_config().
1646
1647 2007-01-04  Raja R Harinath  <rharinath@novell.com>
1648
1649         Remove redundant field
1650         * class-internals.h (_MonoGenericContext.container): Remove field.
1651         * loader.c (mono_method_get_signature_full): Don't parse a
1652         "container" for a signature parse when the signature is inflated
1653         immediately.
1654         (method_from_methodspec): Likewise, for a generic_inst.
1655         * class.c, metadata.c, reflection.c: Update to changes.
1656
1657 2006-01-04  Raja R Harinath  <rharinath@novell.com>
1658
1659         * class-internals.h (_MonoGenericClass): Rename 'context' field to
1660         'cached_context', and change semantics -- it starts off NULL, and
1661         is initialized on demand.
1662         * class.c (mono_generic_class_get_context): New accessor to
1663         replace 'context' field accesses.
1664         (mono_class_get_context): New helper.
1665         (*): Update to changes.
1666         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
1667
1668 2007-01-03  Miguel de Icaza  <miguel@novell.com>
1669
1670         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
1671         before the memcpy.   Fixes Marshal2 regression.
1672
1673 2007-01-02  Jb Evain  <jbevain@gmail.com>
1674
1675         * blob.h: add a MONO_TYPE_ENUM definition
1676         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
1677         fix the encoding of arrays of enums in custom attributes.
1678
1679         Fixes #79666.
1680
1681 2007-01-01  Miguel de Icaza  <miguel@novell.com>
1682
1683         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
1684         string is null terminated, but only cut the string short if it
1685         overflows the buffer.   
1686         
1687         (mono_string_to_byvalstr): Also fix this routine.   The code here
1688         was not properly terminating a string (it was only terminated
1689         because of the previous catch-all memset). 
1690
1691         I left the memset, because I do not know if applications expect
1692         the runtime to clear this region. 
1693
1694         Fixes #79944.
1695
1696         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
1697         Clear the error before returning to unmanaged code to prevent the
1698         runtime from being confused later on (fixes  80420).
1699         (ves_icall_type_from_name): Always call mono_loader_clear_error
1700         after parsing a type that could have failed.
1701         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
1702
1703         * loader.c (mono_loader_clear_error): Fix indentation.
1704
1705 2006-12-28  Martin Baulig  <martin@ximian.com>
1706
1707         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
1708
1709 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
1710
1711         * reflection.c: patch from Rolf Bjarne Kvinge to fix
1712         getting a token for an EnumBuilder.
1713
1714 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
1715
1716         * reflection.c: be more careful in case resource generation
1717         fails to create the data array.
1718
1719 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
1720
1721         * sgen-gc.c: write barrier for clone and fix unregister handles.
1722
1723 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
1724
1725         * reflection.c: some fixes needed in the generics code for the moving GC.
1726
1727 2006-12-22  Robert Jordan  <robertj@gmx.net>
1728
1729         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
1730         account. Fixes bug #80299.
1731
1732 2006-12-21  Raja R Harinath  <rharinath@novell.com>
1733
1734         Fix WaitHandle usage in delegates.
1735         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
1736         * object.c (mono_wait_handle_new): Use the property set method to
1737         initialize the handle.
1738         (mono_wait_handle_get_handle): New.
1739         * threadpool.c (mono_async_invoke): Use it.
1740         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
1741         Likewise.
1742         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
1743
1744 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
1745
1746         * marshal.c (emit_marshal): Call emit_marshal_variant and
1747         emit_marshal_com_interface when applicable.
1748         (emit_marshal_variant, emit_marshal_com_interface): Add
1749         methods for this case and remove if's from emit_marshal_object.
1750         
1751 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
1752
1753         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
1754
1755 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
1756
1757         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
1758         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
1759         and GlobalFree on Windows. Remove FIXME.
1760
1761 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
1762
1763         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
1764         implementation for managed objects.
1765
1766 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
1767
1768         * object.c: implemented code to be used for checking
1769         that no reference field overlaps with non-references.
1770
1771 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1772
1773         * threadpool.c: fix queue code to be compatible with the
1774         moving GC.
1775
1776 2006-12-18  Miguel de Icaza  <miguel@novell.com>
1777
1778         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
1779         in structures by throwing ArgumentNullException.
1780
1781         (emit_marshal_safehandle): Also when they are null parameters.
1782
1783         (emit_marshal_safehandle): Add support for ref
1784         SafeHandles parameters
1785
1786 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
1787
1788         * profiler.c: updated to use the mono-dl API instead of
1789         gmodule.
1790
1791 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1792
1793         * profiler.c: updated to use the mono-dl dynamic loading
1794         API instead of gmodule.
1795
1796 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
1797
1798         * profiler.c: use readlink, older versions of glib don't have
1799         g_file_read_link ().
1800
1801 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1802
1803         * profiler.c: try to detect the path to mono if libc fails to provide
1804         a useful name (bug #80286).
1805
1806 2006-12-16  Raja R Harinath  <rharinath@novell.com>
1807
1808         Fix #80242
1809         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
1810         instance, use the generic type definition instead.
1811         (ves_icall_Type_GetNestedTypes): Likewise.
1812         * class.c (mono_class_create_generic): Always set the
1813         nested_classes of a generic instance to NULL, even if the generic
1814         type definition has nested types.
1815
1816 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
1817
1818         * marshal.c (mono_string_from_bstr): Revert previous Windows change
1819         and fix on Linux.
1820         
1821 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1822
1823         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
1824         my arguments were in the wrong order.   I also fixed the Windows
1825         version which seems to have had the same issue.
1826
1827         (mono_free_bstr): On Unix, this is g_free.
1828         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
1829         conversions (for the tests in corlib to pass).
1830
1831 2006-12-14  Miguel de Icaza  <miguel@novell.com>
1832
1833         * marshal.c (emit_ptr_to_object_conv): For now, ignore
1834         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
1835         exception if a ref SafeHandle in a struct has changed).
1836         
1837         (emit_struct_conv): Do not perform layout checks for classes
1838         derived from SafeHandle, as those are specially handled. 
1839
1840         (emit_object_to_ptr_conv): Add support for
1841         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
1842
1843         (emit_marshal_safehandle): Implement conversion of return values
1844         of safehandles (MARSHAL_ACTION_CONV_RESULT).
1845         
1846         * threads.c: WaitHandle now is compiled with two different handles
1847         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
1848         for 2.0.
1849         
1850         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
1851         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
1852         these routines to cope with both kinds of fields.
1853
1854 2006-12-12  Miguel de Icaza  <miguel@novell.com>
1855
1856         * metadata.c (mono_type_to_unmanaged): Handle the case where
1857         type->data.klass is a SafeHandle, and in that case, return the
1858         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
1859         MONO_MARSHAL_CONV_SAFEHANDLE. 
1860
1861 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1862
1863         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
1864         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
1865         calling emit_marshal_object.
1866
1867         (emit_marshal_safehandle): Implement marshalling of
1868         SafeHandle parameters (no ref support yet).
1869
1870         (MarshalAction): Document the defines as I implement
1871         them for SafeHandle.
1872
1873         (emit_marshal_object): indentation police.
1874
1875         * class-internals.h: Define MonoSafeHandle.
1876         Add safehandle_class to MonoDefaults type.
1877
1878         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
1879         list of classes to check for fields. 
1880
1881         * domain.c (mono_init_internal): Add SafeHandle to the list of
1882         mono_defaults loaded.
1883
1884 2006-12-15  Raja R Harinath  <rharinath@novell.com>
1885
1886         Fix #80253
1887         * reflection.c (mono_reflection_bind_generic_parameters): If the
1888         generic type definition is a type builder, ensure that it is fully
1889         initialized before instantiating it.  Kill some dead code.
1890
1891 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
1892
1893         * object.c: clear the loader_error () before loading
1894         more metadata stuff (bug #80258).
1895
1896 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
1897
1898         * icall.c, icall-defs.h: type modifiers icalls for
1899         parameters and properties.
1900
1901 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
1902
1903         * object.c, icall.c: fixed warnings.
1904
1905 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1906
1907         * marshal.c: fixed a couple of leaks and coding style in a few places.
1908
1909 2006-12-08  Dick Porter  <dick@ximian.com>
1910
1911         * process.c: Cope with NULL ProcessStartInfo arguments on windows
1912         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
1913         80173.
1914
1915 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
1916
1917         * process.c: ProcessStartInfo may have only filename set and
1918         arguments can be NULL.
1919
1920 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1921
1922         * icall.c: fix leak found by Robert Jordan.
1923
1924 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1925
1926         * marshal.c, marshal.h: generate managed method to access an element
1927         of a multi-dimensional array.
1928
1929 2006-11-30  Paolo Molaro (lupus@ximian.com)
1930
1931         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
1932
1933 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1934
1935         * icall.c: back out GetFields () fix until the serialization code is
1936         fixed to not depend on the incorrect behaviour.
1937
1938 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
1939
1940         * profiler.c: provide defaults if none are set.
1941
1942 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
1943
1944         * Makefile.am, attrdefs.h: new public header file with
1945         constants for attributes for use by embedders.
1946
1947 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
1948
1949         * icall.c: GetFields () fix for bug #80064.
1950
1951 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
1952
1953         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
1954         removed long unused icalls.
1955
1956 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
1957   
1958         * marshal.c: 
1959                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
1960                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
1961                 can be generated without a delegate class.
1962                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
1963         
1964         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
1965
1966 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1967
1968         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
1969         #80069.
1970
1971 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
1972
1973         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
1974         icall-def.h: added icalls needed by System.GC.
1975
1976 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
1977
1978         * loader.c: ensure the class in catch clauses is handled
1979         correctly for generics methods (fixes bug#79980).
1980
1981 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
1982
1983         * monitor.h, monitor.c: added mono_locks_dump () function
1984         to help debug deadlocks involving managed locks.
1985
1986 2006-11-13  Dick Porter  <dick@ximian.com>
1987
1988         * file-io.c (get_file_attributes): If the file is a symlink try
1989         and get the stat data for the target, but also add the
1990         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
1991         the specs for the windows symlink support, but will probably have
1992         to be reworked when I have test data from a vista machine.  Fixes
1993         bug 79887.
1994
1995 2006-11-13  Dick Porter  <dick@ximian.com>
1996
1997         * gc.c (mono_domain_finalize): 
1998         * marshal.c (mono_delegate_begin_invoke): 
1999         * threadpool.c (socket_io_init, mono_thread_pool_init)
2000         (mono_thread_pool_finish): 
2001         * monitor.c (mono_monitor_try_enter_internal): 
2002         * threads.c (mono_thread_resume, mono_thread_init)
2003         (mono_thread_suspend_all_other_threads)
2004         (mono_thread_execute_interruption): 
2005         * appdomain.c (mono_domain_unload): Check for NULL error returns
2006         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
2007         75733.
2008
2009 2006-11-11  Miguel de Icaza  <miguel@novell.com>
2010
2011         * process.c
2012         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
2013         Only close the handle if the value of the handle is not
2014         INVALID_HANDLE_VALUE.  This just makes the process a bit more
2015         robust.
2016
2017         Improvement for #75733, so that we do not run into this problem. 
2018
2019         
2020         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
2021         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
2022         internal variables.  Fixes #79462 
2023         
2024
2025 2006-11-09  Dick Porter  <dick@ximian.com>
2026
2027         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2028         Use poll() not select().  Fixes bug 79397.
2029
2030 2006-11-09  Raja R Harinath  <rharinath@novell.com>
2031
2032         Fix #79872
2033         * assembly.c (mono_assembly_load_from_full): Check that the given
2034         image has an assembly manifest.
2035
2036 2006-11-09  Ankit Jain  <jankit@novell.com>
2037
2038         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
2039         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
2040         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
2041
2042 2006-11-07  Dick Porter  <dick@ximian.com>
2043
2044         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2045         Put the old resolver behaviour back for pre-2.0 profiles.
2046
2047 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2048
2049         * threadpool.c: precise GC and locking fixes.
2050
2051 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
2052
2053         * class.c: don't load types that have an explicit unaligned
2054         managed reference. Provide better info in the TypeLoad exception.
2055         Part of the fix for bug #79744.
2056         * object.c: use the correct check for class type load issues.
2057
2058 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
2059
2060         * class.c: enforce alignment of fields with managed references
2061         even when Pack=1 is forced by the user (bug #77788).
2062
2063 2006-11-03  Dick Porter  <dick@ximian.com>
2064
2065         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2066         If the address reverse lookup fails, return it as the hostname
2067         anyway.  Fixes bug 79721.
2068
2069 2006-11-03  Dick Porter  <dick@ximian.com>
2070
2071         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
2072         Fix build on Windows.
2073
2074 2006-11-02  Dick Porter  <dick@ximian.com>
2075
2076         * icall-def.h: 
2077         * object-internals.h: 
2078         * exception.c (mono_get_exception_thread_interrupted): 
2079         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
2080         Fixes bug 74525.
2081
2082         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
2083         Check for pending Thread.Interrupt.
2084
2085 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
2086         * loader.c: Fixed bug 79684.
2087
2088 2006-10-27  Dick Porter  <dick@ximian.com>
2089
2090         * file-io.c (get_file_attributes): Force symlinks to directories
2091         to be returned as a regular file.  Fixes bug 79733.
2092 2006-10-26  Dick Porter  <dick@ximian.com>
2093
2094         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
2095         CreateFile to open a directory then we need to set the
2096         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
2097
2098 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
2099
2100         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
2101         friends.
2102
2103 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2104
2105         * sgengc.c: small cleanup of timer code.
2106
2107 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2108
2109         * sgen-gc.c: fix some warnings and start adding support for
2110         complete object removal on domain unload.
2111
2112 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
2113
2114         * assembly.c: build_assembly_name should not consider a version
2115         number without build or revision number invalid. Fixes bug #79715.
2116
2117 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
2118
2119         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
2120         call kernel32 function OutputDebugString directly.
2121         
2122         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2123         
2124 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
2125
2126         * reflection.c: small cleanup, using a function to insert a MonoString
2127         in the string heap.
2128
2129 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
2130
2131         * reflection.c: moving GC fixes.
2132
2133 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
2134
2135         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
2136         all the objects with finalizers belonging to an unloading appdomain.
2137
2138 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
2139
2140         * sgen-gc.c: added ability to allocate even when the nursery is fully
2141         pinned and fixed a couple of bugs.
2142
2143 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2144
2145         * threads.h: Revert the last change for now.
2146
2147         * threads.h (mono_thread_get_pending_exception): Rename this to
2148         mono_thread_get_undeniable_exception ().
2149
2150 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
2151
2152         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
2153         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
2154         when fname does not refer to valid assembly. This result in a more
2155         meaningful error message.
2156         * exception.c: added mono_get_exception_bad_image_format2 which 
2157         constructs a BadImageFormatException using the ctor taking a custom
2158         message and the file name. Passing in a NULL msg results in a default
2159         message.
2160         * exception.h: define mono_get_exception_bad_image_format2 function.
2161         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
2162         when file name pointed to an invalid IL image. Use 
2163         mono_get_exception_file_not_found2 to construct FileNotFoundException,
2164         as this results in a more meaningful error message.
2165
2166 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2167
2168         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
2169         #79465.
2170
2171 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
2172
2173         * metadata.c (mono_type_size): Change the align parameter to guint32 for
2174         consistency with the other _size functions.
2175         (mono_type_stack_size): Ditto.
2176
2177         * class.c object.c icall.c: Fix warnings caused by the above change.
2178
2179         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
2180
2181         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
2182
2183         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
2184
2185 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2186
2187         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
2188         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
2189         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
2190         threadpool.h, threads-types.h: mark more internal functions.
2191
2192 2006-10-11  Dick Porter  <dick@ximian.com>
2193
2194         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2195         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
2196         reproduce the bug even before applying the fix.)
2197
2198 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
2199
2200         * reflection.c: allow retrieving attributes for arguments in generic
2201         methods (bug #79241).
2202
2203 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
2204
2205         * debug-mono-symfile.c: properly check fopen () result (found by
2206         coverity).
2207
2208 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
2209
2210         * reflection.c: make error message clearer and fixed two
2211         issuelets found by Coverity.
2212
2213 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
2214
2215         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
2216
2217 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2218
2219         * object-internals.h, gc-internal.h, profiler-private.h:
2220         mark internal functions.
2221
2222 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2223
2224         * reflection.c: put data in the text section.
2225         * icall.c: recognize more types in type_from_typename ().
2226         * process.c, marshal.c: added some GC FIXMEs.
2227
2228 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2229
2230         * loader.c: check for NULL before initializing.
2231
2232 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
2233
2234         * gc.c (finalizer_thread): Use a non-alertable wait here.
2235
2236         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
2237         until the correct solution is found.
2238
2239 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2240
2241         * reflection.c (mono_module_get_object): Avoid an assert when operating on
2242         modules with no metadata. Fixes #79596.
2243
2244         * image.c (load_metadata_ptrs): Put back the error message when
2245         the #- heap is encountered since the support is not complete yet.
2246
2247 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2248
2249         * gc.c: do not allow the user to SuppressFinalize () a
2250         delegate because it would leak the trampoline if present.
2251
2252 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2253
2254         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
2255         PropertyPtr table.
2256
2257 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
2258
2259         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
2260
2261         * metadata.c (mono_metadata_get_param_attrs): Ditto.
2262
2263         * row-indexes.h: Add definitions for *Ptr tables.
2264
2265         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
2266
2267         * metadata.c (mono_metadata_translate_token_index): New helper function to
2268         translate table indexes used in uncompressed metadata.
2269         (mono_metadata_decode_table_row): Ditto.
2270         (mono_metadata_decode_table_row_col): Ditto.
2271
2272         * metadata.c: Add table schema for *Ptr tables.
2273
2274         * class.c loader.c: Use the new helper function to access the affected metadata
2275         tables.
2276         
2277         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
2278         #38532.
2279         
2280 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
2281
2282         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
2283         sequences which can be unbounded in size. Fixes #79583.
2284
2285 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
2286
2287         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
2288         static initialization.
2289
2290         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
2291
2292         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
2293
2294         * domain.c (mono_domain_free): Free up type_init_exception_hash.
2295
2296         * object.c (mono_runtime_class_init): Implement correct semantics when a static
2297         ctor fails, i.e. throw the same exception on subsequent accesses.
2298         
2299 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
2300
2301         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
2302         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
2303         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
2304         Handle marshalling of interfaces and VARIANTs contained in structs.
2305         
2306         Code is contributed under MIT/X11 license.
2307         
2308 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
2309
2310         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
2311         
2312         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
2313         mempool.
2314
2315 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2316
2317         * console-io.c: ignore previous SIGINT handler.
2318
2319 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
2320
2321         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
2322         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
2323         #79460, #79461, #79485.
2324
2325         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
2326
2327         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
2328         #79217.
2329
2330 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2331
2332         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
2333         could be generated from it.
2334
2335 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
2336
2337         * rand.c: fix read loop to correctly handle EINTR.
2338
2339 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2340
2341         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
2342         internal calls are defined to keep methods closer to the declaring
2343         type and allow a significant reduction in runtime relocations and
2344         memory usage.
2345
2346 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
2347
2348         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
2349         exception message to have FileNotFoundException use the default
2350         assembly load error message. Fixes bug #79426.
2351         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
2352
2353 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2354
2355         * threadpool.c: (start_thread_or_queue) use the root domain when
2356         creating the thread instead of the async object one.
2357
2358 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
2359
2360         * class.c, object.c, class-internals.h, reflection.c:
2361         for arrays, store element_size inside MonoClass (speedup
2362         for array object creation).
2363
2364 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
2365
2366         * icall.c: fixed CodeBase to use the file name and not the module
2367         name (bug #79365).
2368
2369 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2370
2371         * mono-debug.c, mono-debug.h: export find_method as
2372         mono_debug_find_method ().
2373
2374 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2375
2376         * debug-helpers.c, class-internals.h: added a few functions useful
2377         when debugging under gdb.
2378
2379 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2380
2381         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
2382         characters that need special handling.
2383
2384 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
2385
2386         * mono-config.c: make the os/cpu specification more flexible,
2387         allowing lists and negation.
2388
2389 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
2390
2391         * marshal.c: COM Interop fixes. Handle case where method->klass.
2392         is interface. Handle BSTR/MonoString when null. Use CDECL as 
2393         calling convention on non-windows platforms. This is for
2394         compatibility with XPCOM and MainWin COM.
2395         
2396         Code is contributed under MIT/X11 license.
2397         
2398
2399 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
2400
2401         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
2402         correctly. Fixes #79217.
2403
2404         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
2405
2406 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
2407
2408         * mono-config.c: allow both an os and cpu attribute for dllmap
2409         and dllentry elemnets to enable a single config file to be used
2410         for multiple architectures.
2411
2412 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
2413
2414         * loader.c: MonoLoaderError was cleared too soon on load failure.
2415         Fixes bug #79424.
2416
2417 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
2418
2419         * icall.c: use the defining class vtable when accessing a
2420         static field, not a pobblibly derived class.
2421
2422 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
2423
2424         * icall.c string-icalls.c: Remove references to unicode.h.
2425
2426         * unicode.h unicode.c Makefile.am: Remove these unused source files.
2427
2428         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
2429
2430         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
2431         indicating the image where custom marshaller types should be looked up.
2432         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
2433         custom marshallers, instead of corlib. Fixes #79425.
2434
2435 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
2436
2437         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
2438
2439 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
2440
2441         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
2442         Implement Environment.ProcessorCount.
2443         
2444         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
2445         Implement Environment.ProcessorCount.
2446         
2447         * icall.c: 
2448         Add Environment.ProcessorCount icall.
2449         
2450         Patch by Jason McFall.
2451
2452 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2453
2454         * assembly.c: don't append .exe/.dll when the filename already contains
2455         one of those extensions.
2456
2457 2006-09-12  Martin Baulig  <martin@ximian.com>
2458
2459         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
2460         to array interfaces.
2461
2462 2006-09-11  Martin Baulig  <martin@ximian.com>
2463
2464         * reflection.c (mono_image_build_metadata): Create the
2465         MethodImpl's after emitting all types and methods, so we don't
2466         need another fixup pass for them.
2467
2468 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
2469
2470         * class.c (mono_class_from_name_case): Fix regression introduced by the last
2471         change.
2472
2473 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
2474
2475         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
2476         unload.
2477
2478 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
2479
2480         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
2481         args is not set. Fixes #78926.
2482
2483 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
2484
2485         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
2486
2487         * image.c (load_class_names): Move this to class.c, and rename it to 
2488         'mono_image_init_name_cache'.
2489         (load_modules): Fix a warning.
2490
2491         * class.c icall.c image.c: Initialize image->name_cache lazily.
2492
2493         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
2494         on its name using information in the AOT file.
2495
2496         * class.c (mono_class_from_name): Use the new hook function.
2497
2498 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
2499
2500         * reflection.c (mono_param_get_objects): Handle enum default parameter values
2501         correctly.
2502
2503         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
2504         Fixes #79289.
2505         
2506 2006-09-06  Martin Baulig  <martin@ximian.com>
2507
2508         * icall.c (mono_lookup_internal_call): Small fix.
2509
2510 2006-09-05  Raja R Harinath  <rharinath@novell.com>
2511
2512         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
2513         double g_free.
2514
2515 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
2516
2517         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
2518         when --debug is specified.
2519
2520 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
2521
2522         * class.c (setup_generic_array_ifaces): Fix a warning.
2523
2524 2006-09-04  Miguel de Icaza  <miguel@novell.com>
2525
2526         * Temporarily remove the patch to assemly.c that checks the
2527         assembly versions as it breaks our gacutil.
2528
2529 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
2530
2531         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
2532
2533         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
2534         a net 1.0 runtime.
2535
2536         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
2537         created using the default ctor. Fixes #79152.
2538         (mono_string_builder_to_utf16): Ditto.
2539
2540 2006-09-01  Martin Baulig  <martin@ximian.com>
2541
2542         Fix handling of the generic array interfaces.
2543
2544         * class-internals.h
2545         (MonoDefaults): Removed `generic_array_class' and added
2546         `generic_ilist' class.
2547
2548         * class.c
2549         (mono_bounded_array_class_get): Add the new generic array interfaces.
2550         (setup_generic_array_ifaces): New static method; create vtable
2551         entries for each method in the generic array interfaces.
2552
2553         * metadata.c
2554         (select_container): Allow "parent-less" generic methods.
2555
2556         * marshal.c
2557         (mono_marshal_get_generic_array_helper): New public method.
2558
2559         * icall.c
2560         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
2561         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
2562         moved the interncall into System.Array.
2563
2564 2006-09-01  Raja R Harinath  <rharinath@novell.com>
2565
2566         A few more cases of avoiding work on types with ->byref set.
2567         Has the real fix for #79238
2568         * icall.c (is_generic_parameter): New helper.
2569         (ves_icall_Type_GetGenericParameterPosition): Use it.
2570         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
2571         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
2572         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
2573         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
2574         reference types.
2575         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
2576         reference types.
2577         (ves_icall_Type_get_IsGenericInstance): Likewise.
2578         (ves_icall_Type_get_IsGenericType): Likewise.
2579
2580 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
2581
2582         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
2583         class if possible.
2584
2585         * mempool.h (mono_mempool_get_allocated): New helper function.
2586
2587         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
2588         change.
2589
2590         * mempool.c: Fix warnings and the calculation of stats.
2591
2592         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
2593
2594         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
2595
2596         * loader.c (mono_get_method_from_token): Update method_count stat.
2597
2598         * class-internals.h (MonoStats): Add some stats.
2599
2600 2006-08-31 Robert Jordan  <robertj@gmx.net>
2601
2602         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
2603         with managed variants.
2604         All code is contributed under the MIT/X11 license.
2605         
2606 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
2607
2608         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
2609         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
2610
2611         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
2612
2613         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
2614         with cycles in classes.
2615
2616         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
2617
2618         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
2619         missing a [MarshalAs] directive. Fixes #79203.
2620
2621         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
2622         klass->marshal_info. Fixes #79217.
2623
2624 2006-08-30  Martin Baulig  <martin@ximian.com>
2625
2626         Committing a patch from Joachim Ante <joe@otee.dk>:
2627         Add support for binary data symbol stores.
2628
2629         * debug-mono-symfile.c
2630         (mono_debug_open_mono_symbol_file): Renamed into
2631         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
2632         arguments.
2633
2634         * mono-debug.c
2635         (mono_debug_open_image): Added `raw_contents' and `size' args.
2636         (mono_debug_init_2_memory): New public function.
2637
2638 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
2639
2640         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
2641
2642 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2643
2644         * appdomain.c: implement support for ShadowCopyFiles.
2645
2646 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
2647
2648         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
2649         when value is NULL (and should remove CID #51).
2650
2651 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2652
2653         * image.c: moved 2 functions to ../utils.
2654
2655 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
2656
2657         * gc.c: cope with the target object of a GC handle being NULL
2658         (bug #78877).
2659
2660 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
2661
2662         * class.c: recursively check parent's explicit implementations
2663         of interface methods (fixes bug #79125).
2664
2665 2006-08-19  Miguel de Icaza  <miguel@novell.com>
2666
2667         * filewatcher.c: Avoid warnings when building, do not redefine
2668         constants that are defined.
2669
2670         Remove warnings.
2671
2672 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2673
2674         * image.c: don't fail when the link points to an absolute path.
2675
2676 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
2677
2678         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
2679         Fix CID #3.
2680
2681 2006-08-17  Miguel de Icaza  <miguel@novell.com>
2682
2683         * image.c (full_path): A new method used to obtain the actual path
2684         of an assembly even in the presence of symbolic links.  
2685
2686         This is necessary for the case where we are running a binary that
2687         has been GACed, but we are using the "published" path name
2688         ($prefix/mono/1.0/blah.exe) which happens to point to the real
2689         file in the GAC.
2690
2691         This was the source of the failure for the `xsp' command with the
2692         recent AppDomain changes, as far as the runtime was concerned,
2693         there were two different assemblies: $prefix/mono/1.0/blah.exe and
2694         $prefix/mono/gac/blah/version/blah.exe.
2695
2696         (do_mono_image_open): use full path
2697
2698 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2699
2700         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
2701
2702 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
2703
2704         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
2705         domain_id is supplied. Fix CID #241 and corlib's unit tests.
2706
2707 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2708
2709         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
2710         small structures. Fixes #78990.
2711
2712 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2713
2714         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
2715
2716         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
2717
2718 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2719
2720         * appdomain.c:
2721         * marshal.c: don't load all the assemblies from a domain into newly
2722         created ones. The new domains might have different rules and load
2723         assemblies from different locations. Fixes bug #76757.
2724
2725         Patch by Lluis. Conflicts resolved by Brian Crowell.
2726
2727 2006-08-16  Alp Toker  <alp@atoker.com>
2728
2729         * socket-io.c: First half of the fix for #79084.
2730         Set sa_size to the length of the content, not that of the struct.
2731         Don't add NULL suffix to the content, this should be done in
2732         managed code if needed.
2733
2734 2006-08-14  Raja R Harinath  <rharinath@novell.com>
2735
2736         Fix part of #79012
2737         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
2738         mono_metadata_parse_type returns NULL.
2739
2740 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
2741
2742         * normalization-tables.h : new file for string normalization data.
2743         * locales.c, locales.h, icall.c :
2744           added load_normalization_resource() for string normalization,
2745           and icall as well.
2746         * Makefile.am : added normalization-tables.h to the sources.
2747
2748 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
2749
2750         * marshal.c: Add more helper functions to reduce code duplication and use them
2751         everywhere.
2752
2753 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
2754
2755         * marshal.c: Fix non-x86 stdcall warnings.
2756         
2757         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
2758         them everywhere.
2759
2760 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
2761
2762         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
2763         type check on multi-dimensional arrays. Fixes #79000.
2764
2765 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
2766
2767         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
2768         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
2769         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
2770         * class-internals.h: add is_com_object to class structure.
2771         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
2772         null checks to COM object marshalling. Fix .ctor call on RCW.
2773         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
2774         
2775         All code is contributed under the MIT/X11 license.
2776
2777 2006-08-09  Dick Porter  <dick@ximian.com>
2778
2779         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
2780         racing mono_monitor_allocator_lock() somewhere, so don't delete
2781         the critical section for now.  Found by running and exiting
2782         monodevelop.
2783
2784 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
2785
2786         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
2787         (ves_icall_System_ComObject_FindInterface): Ditto.
2788         (ves_icall_System_ComObject_CacheInterface): Ditto.
2789
2790         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
2791         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
2792
2793 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2794
2795         * threadpool.c: treat pipes from process asynchronous reads as sockets
2796         when reading from them, so we get select/poll or epoll to wait for
2797         data.
2798
2799 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
2800
2801         * loader.c: Fix a typo (CID #233) in the null check.
2802
2803 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
2804
2805         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
2806         Hopefully fixes #78949.
2807         
2808         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
2809         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
2810         bytes. Fixes #78972.
2811
2812 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2813
2814         * filewatcher.c: we need to set errno here.
2815
2816 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2817
2818         * filewatcher.c: let Win32Exception get the error value.
2819
2820 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2821
2822         * filewatcher.c: translate errno into win32 errors for Win32Exception
2823         to know what happened.
2824
2825 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
2826
2827         * threadpool.c: Fix more warnings.
2828
2829         * assembly.c (search_loaded): Fix warnings.
2830
2831         * threadpool.c (mono_thread_pool_finish): Fix warnings.
2832         (mono_async_invoke): Ditto.
2833
2834 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
2835
2836         * object.c (mono_remote_class_vtable): Need to create proxy vtable
2837         entries for __ComObject type in addition to ComImport types.
2838         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
2839         about hash table.
2840         
2841         All code is contributed under the MIT/X11 license.
2842
2843 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2844
2845         * image.c: avoid tentative loading of modulerefs that contain
2846         no metadata (P/Invoke library names).
2847
2848 2006-07-28  Dick Porter  <dick@ximian.com>
2849
2850         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
2851         mono_loader_lock() somewhere, so don't delete the critical section
2852         for now.  Found by running and exiting monodevelop.
2853
2854 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2855
2856         * filewatcher.c: define the inotify syscalls when we're building on
2857         linux and have sys/syscall.h. The build system might not have support
2858         for inotify but the target system might have it.
2859
2860 2006-07-26  Miguel de Icaza  <miguel@novell.com>
2861
2862         * domain.c: Documentation updates.
2863
2864         * loader.c (mono_free_method): Do not release the method
2865         information if we are being profiled, as profilers will use this
2866         information at shut down to present some data to the user.
2867
2868         This is needed so that the profiler does not crash, as the
2869         profiler tends to keep MonoMethods around, and they might become
2870         invalid if we free these.
2871
2872         (mono_get_method_constrained): Return the original CIL stream
2873         method as well, so verification can be performed against it.
2874
2875 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2876
2877         * filewatcher.[ch]: support for inotify file system watcher.
2878         * icall.c: add new internal calls for the inotify file system watcher.
2879
2880 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2881
2882         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
2883         #78888.
2884
2885 2006-07-20  Dick Porter  <dick@ximian.com>
2886
2887         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
2888         warning.
2889
2890 2006-07-20  Dick Porter  <dick@ximian.com>
2891
2892         * threads.c (start_wrapper): Do the thread cleanup while we still
2893         hold a reference to its object.  Fixes bug 78123.
2894
2895 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
2896
2897         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
2898         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
2899           "managed-to-managed".
2900         * icall.c: Redirect string constructors that take sbyte* to
2901           ves_icall_System_String_ctor_RedirectToCreateString.
2902         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
2903           to CreateString () methods with matching signature.
2904         * reflection.c: Use original security informations for
2905           MONO_WRAPPER_MANAGED_TO_MANAGED.
2906         * security-manager.c: Use original security informations for
2907           MONO_WRAPPER_MANAGED_TO_MANAGED.
2908         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
2909           that is a placeholder and only its address should be used.
2910         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
2911           that is a placeholder and only its address should be used.
2912
2913 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
2914
2915         Begin implementing COM Interop.
2916         * appdomain.c: Increment corlib version.
2917         * class.c: Set ComImport classes' parent to __ComObject.
2918         * loader.c: Mark cominterop methods as such.
2919         * domain.c: Add __ComObject class to MonoDefaults structure.
2920         * image.c: Add 2 hashtables to the image for COM Interop related methods
2921         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
2922         using the mempool allocator
2923         
2924         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
2925         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
2926         declaration for mono_metadata_type_dup_mp.
2927         
2928         * debug-helpers.c: Added strings for two additional wrapper types
2929         * object.c: Create proxy objects for ComImport classes
2930         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
2931         and added __ComObject class to MonoDefaults structure.
2932         
2933         * object-internals.h: Finish MonoRealProxy definition, and add definition of
2934         MonoComInteropProxy and MonoComObject.
2935         
2936         * marshal.c: Added support for COM Interop
2937         (signature_cominterop): Converts managed signature to corresponding
2938         unmanaged COM signature.
2939         (cominterop_get_function_pointer): gets unmanaged function pointer via
2940         COM object vtable
2941         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
2942         (cominterop_get_method_interface): returns interface type that method is defined on
2943         (mono_mb_emit_cominterop_call): emits native call to function pointer
2944         gotten from vtable
2945         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
2946         that matches signature of unmanaged function.
2947         (cominterop_get_native_wrapper): wrapper around adjusted method call.
2948         (cominterop_get_invoke): forwards call from proxy to __ComObject
2949         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
2950         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
2951         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
2952         
2953         * marshal.h: Added Marshal icall declarations.
2954         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
2955         so we can access them in finalizer
2956         
2957 2006-07-14  Dick Porter  <dick@ximian.com>
2958
2959         * object.c (mono_type_initialization_cleanup): Fix a race
2960         condition by temporarily commenting out the critical section
2961         deletion.
2962
2963 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
2964
2965         * reflection.c (create_custom_attr): Fix some warnings.
2966         (create_custom_attr_data): Ditto.
2967         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
2968         types. Fixes #78855.
2969
2970 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
2971
2972         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
2973
2974         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
2975
2976 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
2977
2978         * reflection.c (resolve_object): Add support for DynamicMethod.
2979
2980         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
2981         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
2982
2983 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
2984
2985         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
2986         don't leak GPtrArray's pdata has we have no use (nor free) for it.
2987
2988 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
2989
2990         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
2991         Fixes #77888.
2992
2993 2006-06-30  Raja R Harinath  <rharinath@novell.com>
2994
2995         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
2996         slightly: remove a shadow local variable.
2997
2998 2006-06-29  Raja R Harinath  <rharinath@novell.com>
2999
3000         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
3001         definition that introduces the virtual function slot.
3002         Also fix Coverity #105.
3003
3004 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
3005
3006         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
3007         for dynamic assemblies. Fixes #78724.
3008
3009 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
3010
3011         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
3012         Fixes #78722.
3013
3014 2006-06-21  Martin Baulig  <martin@ximian.com>
3015
3016         * reflection.c
3017         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
3018         fixes #76484.
3019
3020 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
3021
3022         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
3023
3024 2006-06-20  Raja R Harinath  <rharinath@novell.com>
3025
3026         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
3027         nor TYPEREFs.
3028         * class.c (mono_class_create_from_typespec): Add 'context' argument.
3029         Inflate result if necessary.
3030         (mono_class_get_full): Remove old version.  Rename from
3031         'mono_class_get' and add 'context' argument.  Pass it to
3032         ..._create_from_typespec.
3033         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
3034         (mono_ldtoken): Revert change below.
3035
3036 2006-06-20  Martin Baulig  <martin@ximian.com>
3037
3038         * class.c (mono_ldtoken): Don't pass the generic context to
3039         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
3040
3041 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
3042
3043         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
3044         and later freeing it. Fixes #78638.
3045
3046 2006-06-15  Miguel de Icaza  <miguel@novell.com>
3047
3048         * icall.c (mono_class_get_throw): Revert over-zealous error
3049         throwing, the caller for mono_class_get_throw will cope with
3050         errors when classes are not properly initialized already.
3051
3052         The code still copes with loader exceptions though.
3053
3054         Fixes the regression in reftype1 and reftype3 from the CAS tests.
3055         
3056 2006-06-14  Miguel de Icaza  <miguel@novell.com>
3057
3058         Fixes the `make run1' version of RuntimeAbort (to be commited,
3059         source is in Bugzilla).
3060         
3061         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
3062         FALSE on class loading failure instead of returning true.
3063
3064         * class.c (mono_class_create_from_typedef): It is possible for
3065         mono_metadata_interfaces_from_typedef_full to fail if a class is
3066         not found, cope with this.
3067         
3068
3069 2006-06-14  Dick Porter  <dick@ximian.com>
3070
3071         * socket-io.c: 
3072         * process.c: Fix a bunch of signed/unsigned warnings from gcc
3073         4.1.1
3074
3075 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
3076
3077         * culture-info-table.h : oops, forgot to make it nsync with r61548.
3078
3079 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3080
3081         * icall.c: Another fix for building mono in Visual Studio.
3082
3083 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3084
3085         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
3086         
3087 2006-06-09  Martin Baulig  <martin@ximian.com>
3088
3089         * debug-mono-symfile.c: Put this back and really fix it this
3090         time. Sorry for all the trouble.
3091
3092 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
3093
3094         * icall.c (mono_class_get_throw): Fix a warning.
3095         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
3096         ReflectionTypeLoadException if needed. Fixes #78606.
3097
3098         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
3099         (mono_class_init): Ditto.
3100
3101         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
3102         ref_only exceptions.
3103         (mono_loader_clear_error): Make this work even if there is no error.
3104
3105 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
3106
3107         * object-internals.h marshal.c marshal.h icall.c: Implement method 
3108         Marshal.GetComSlotForMethodInfo using internal call.
3109
3110 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
3111
3112         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
3113         a function for signalling it.
3114
3115         * class.c (mono_class_from_typeref): Use the new kind of loader error when
3116         a referenced assembly is not found.
3117
3118         * loader.c (mono_loader_error_prepare_exception): Add support for 
3119         LOADER_ERROR_ASSEMBLY. Fix formatting.
3120
3121 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
3122
3123         * domain.c appdomain.c class-internals.h marshal.c: Add support 
3124         for VARIANT marshalling on windows and increment corlib version
3125         since Variant struct was added.
3126
3127 2006-06-03  Miguel de Icaza  <miguel@novell.com>
3128
3129         * debug-mono-symfile.c: Revert Martin's previous patch which broke
3130         stack trace line information:
3131
3132         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
3133         (Martin) when looking up B which is between A and C, return A not C.
3134
3135         Bug is #78573.
3136
3137         Thanks to Alexander Olk for tracking this down.
3138
3139 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
3140
3141         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
3142         
3143         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
3144         avoid clobbering its value.
3145         (mono_string_to_lpstr): Fix a warning on windows.
3146
3147 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3148
3149         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
3150
3151         * reflection.c loader.c: Removed references to 'dummy' flag.
3152
3153         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
3154
3155         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
3156         it gets GC tracking.
3157
3158         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
3159         GC tracking.
3160         
3161         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
3162
3163         * marshal.c threadpool.c: Update callers of mono_async_result_new.
3164
3165         * appdomain.c: Bump corlib version.
3166
3167 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3168
3169         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3170         CEE_STIND_REF when working with object references.
3171
3172 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3173
3174         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
3175         Fixes #78539.
3176
3177 2006-05-30  Miguel de Icaza  <miguel@novell.com>
3178
3179         * loader.c (method_from_memberref): Fix argument value for
3180         mono_loader_set_error_method_load (I was passing the MonoClass
3181         instead of the class name char *).
3182
3183 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3184
3185         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3186         CEE_STIND_REF when working with object references.
3187
3188 2006-05-30  Martin Baulig  <martin@ximian.com>
3189
3190         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
3191         mono_method_full_name() change and replace the ':' with a '.'
3192         here.
3193
3194 2006-05-30  Martin Baulig  <martin@ximian.com>
3195
3196         * debug-mono-symfile.c
3197         (mono_debug_symfile_lookup_location): Fix the algorithm:
3198         when looking up B which is between A and C, return A not C.
3199
3200 2006-05-29  Martin Baulig  <martin@ximian.com>
3201
3202         * mono-debug.h
3203         (MonoDebugMethodInfo): Make the typedef public.
3204         (MonoDebugSourceLocation): New public struct.
3205
3206         * mono-debug.c
3207         (mono_debug_source_location_from_address): Removed.
3208         (mono_debug_source_location_from_il_offset): Removed.
3209         (mono_debug_il_offset_from_address): Removed.
3210         (mono_debug_address_from_il_offset): Removed.
3211         (mono_debug_lookup_method): New public function.
3212         (mono_debug_lookup_source_location): New public function; replaces
3213         the old mono_debug_source_location_from_*() functions; see the
3214         inline documentation.
3215         (mono_debug_free_source_location): New public function.
3216         (mono_debug_print_stack_frame): New public function; see the
3217         inline documentation.
3218
3219         * debug-mono-symfile.c
3220         (mono_debug_find_source_location): Renamed into
3221         mono_debug_symfile_lookup_location(); only take a
3222         `MonoDebugMethodInfo *' and an `offset' argument; added inline
3223         documentation.
3224         (mono_debug_find_method): Renamed into
3225         mono_debug_symfile_lookup_method().
3226
3227 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
3228
3229         * assembly.c (mono_assembly_open_full): Dont overwrite the status
3230         returned by mono_image_open_full ().
3231
3232         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
3233         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
3234         #78517.
3235
3236         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
3237         #78518.
3238
3239 2006-05-27  Miguel de Icaza  <miguel@novell.com>
3240
3241         * class.c (mono_class_from_typeref): handle missing images
3242         earlier, deals with bug #78418.   Refactor code; 
3243
3244         Fix a warning introduced in my previous commit (some stale code
3245         from before I revisited my patch).
3246
3247         * class.c (mono_class_create_from_typedef): On failure, remove the
3248         class from the MonoImage->class_cache as the class is not
3249         initialized;   Fixes the leak pointed out by Paolo.
3250
3251 2006-05-25  Dick Porter  <dick@ximian.com>
3252
3253         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
3254         DeleteCriticalSections until I figure out which one may still be
3255         sometimes locked when mono_thread_cleanup is called.
3256
3257 2006-05-24  Dick Porter  <dick@ximian.com>
3258
3259         * threads.c (mono_thread_cleanup): Move the threading cleanup out
3260         of mono_thread_manage and back into its own function, so it can be
3261         called after the finalizer thread has finished.
3262
3263         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
3264
3265 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
3266
3267         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
3268         Fixes #78495.
3269
3270         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
3271         with non-blittable elements.
3272         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
3273
3274 2006-05-24  Martin Baulig  <martin@ximian.com>
3275
3276         * mono-debug-debugger.h (MonoDebuggerEvent): Added
3277         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
3278
3279         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
3280         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
3281         `mono_debugger_event_handler' to NULL.
3282
3283 2006-05-24  Martin Baulig  <martin@ximian.com>
3284
3285         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
3286
3287 2006-05-24  Martin Baulig  <martin@ximian.com>
3288
3289         * mono-debug-debugger.h
3290         (mono_debugger_create_notification_function): Added
3291         `MonoCodeManager *' argument.
3292
3293 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
3294
3295         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
3296
3297 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
3298
3299         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
3300         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
3301         implementation.
3302
3303 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
3304
3305         * icall.c: precise GC support: objects can't be stored in unmanaged
3306         memory anymore, even if they are kept alive by other references: since
3307         they can move the GC needs to be able to always find them.
3308
3309 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
3310
3311         * object.c: precise GC support for static fields. Support
3312         for moving GCs: write barriers and pinned allocation for interned
3313         strings.
3314
3315 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
3316
3317         * domain.c, domain-internals.h: precise GC support for the MonoDomain
3318         structure.
3319
3320 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
3321
3322         * class.c, gc.c: sgen and precise GC updates.
3323
3324 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
3325
3326         * marshal.h, marshal.c: added write barrier wrapper and precise type
3327         fixes.
3328
3329 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
3330
3331         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
3332         support.
3333
3334 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
3335
3336         * reflection.c: precise and sgen GC updates.
3337
3338 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
3339
3340         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
3341
3342 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
3343
3344         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
3345
3346 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
3347
3348         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
3349         MONO_TYPE_OBJECT. Fixes #78462.
3350
3351 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
3352
3353         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
3354         and blittable types.
3355
3356 2006-05-17  Miguel de Icaza  <miguel@novell.com>
3357
3358         * class.c (mono_class_get_exception_for_failure): Implement parts
3359         of a TODO: if the loader error is set (instead of the class
3360         error), we return a Loader exception that can be properly thrown
3361         elsewhere.
3362
3363         This was exposed by some Winforms 2.0 code that I tried to run
3364         (Atsushi pointed me to it).
3365
3366 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
3367
3368         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
3369         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
3370         
3371         * marshal.c (emit_marshal_vtype): Add limited support for 
3372         UnmanagedType.LPStruct. Fixes #78427.
3373
3374         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
3375         Applied a patch from kangaroo to fix #77523.
3376
3377 2006-05-17  Martin Baulig  <martin@ximian.com>
3378
3379         * threads.c
3380         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
3381         (debugger_thread_created): Removed.
3382         (debugger_thread_exited): Removed.
3383
3384 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
3385
3386         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3387
3388         * object-internals.h (MonoReflectionResource): Sync with managed version.
3389
3390 2006-05-12  Wade Berrier <wberrier@novell.com>
3391
3392         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
3393
3394 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
3395
3396         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
3397         functions try to allocate from the image mempool.
3398
3399 2006-05-12  Dick Porter  <dick@ximian.com>
3400
3401         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
3402
3403 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
3404
3405         * object.c: The FieldGetter and FieldSetter methods require the full
3406         name of the class, not only the name. Fixes bug #78277.
3407
3408 2006-05-11  Miguel de Icaza  <miguel@novell.com>
3409
3410         * loader.c (method_from_memberref): Do not pass the NULL klass to
3411         mono_loader_set_error_() methods.  Pass the non-NULL value
3412         (class). 
3413
3414 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
3415
3416         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
3417         (mono_assembly_close): Null out assembly->image->references after freeing it.
3418
3419         * image.c (mono_image_close): Free image->references.
3420         
3421         * reflection.c (mono_image_basic_init): Fix a small memory leak.
3422
3423 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
3424
3425         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
3426         before checking if it's NULL (g_assert).
3427
3428 2006-05-10  Martin Baulig  <martin@ximian.com>
3429
3430         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
3431         I thought I already killed that two months ago, but now it somehow reappeared.
3432
3433 2006-05-10  Martin Baulig  <martin@ximian.com>
3434
3435         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
3436
3437 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
3438
3439         * reflection.c: Allocate memory for dynamically created methods in the image
3440         mempools.
3441
3442 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
3443
3444         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
3445         don't use the ad pointer before checking if it's NULL (g_assert).
3446
3447 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
3448
3449         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
3450         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
3451
3452         * marshal.c: Allocate all signatures from mempools.
3453
3454         * marshal.c: Allocate some more signatures from mempools.
3455
3456 2006-05-09  Miguel de Icaza  <miguel@novell.com>
3457
3458         * object.c (mono_load_remote_field): The code used to provide a
3459         temporary variable for returning results if the user did not
3460         provide a result pointer.  But our temporary variable was allocted
3461         on the satck.
3462
3463         Fix calling code to always pass a result area.   Coverity ID 103.
3464
3465 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
3466
3467         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
3468         value, not the old. Fixes #78312.
3469         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
3470
3471         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
3472         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
3473         per-image cache.
3474
3475         * assembly.c (mono_assembly_close): Free image->references.
3476
3477         * assembly.c (mono_assembly_names_equal): Fix a warning.
3478         (mono_assemblies_cleanup): Cleanup more global data.
3479
3480         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
3481
3482         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
3483         ptr_cache and image->modules.
3484
3485         * image.c (mono_image_init): Allocate array_cache lazily.
3486         
3487 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3488
3489         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
3490         behavior was changed recently and has bad side effects.
3491
3492 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
3493
3494         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
3495         
3496         * assembly.c (mono_assembly_close): Remove a debug printf.
3497
3498         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
3499
3500         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
3501         to also allow for temporary references between mono_image_open ()/close ().
3502
3503         * domain.c (get_runtimes_from_exe): Add a FIXME.        
3504
3505 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
3506
3507         * marshal.c: Fix support for dynamic methods.
3508
3509         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
3510
3511         * marshal.c (mono_marshal_cleanup): New cleanup function.
3512
3513         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
3514         image mempools.
3515
3516         * class.c (mono_class_init): Fix leaking class->nested_classes.
3517
3518         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
3519
3520         * image.c (mono_image_init): Initialize the new cashes.
3521
3522         * image.c (mono_image_close): Destroy the new cashes.
3523
3524         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
3525
3526         * mempool.c (mono_mempool_strdup): New helper function.
3527
3528         * class-internals.h: Add prototype for mono_loader_unlock ().
3529
3530         * domain.c (mono_jit_info_table_find): Fix a warning.
3531         (mono_debugger_check_runtime_version): Ditto.
3532
3533         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
3534         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
3535         functions to these modules.
3536
3537         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
3538         metadata modules.
3539         
3540         * marshal.c (mono_free_bstr): Fix a warning.
3541
3542         * assembly.c (mono_assembly_open_full): Fix another small leak.
3543
3544         * object.c: Fix some unload leaks in the remoting code.
3545
3546         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
3547         function.
3548
3549         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
3550
3551         * reflection.c: Fix some unload leaks in dynamic assemblies.
3552
3553 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
3554
3555         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
3556         * marshal.h: Add BSTR support on Win32
3557         * icall.c: Add BSTR icalls
3558         * metadata.h: Add BSTR enums
3559
3560 2006-04-28  Miguel de Icaza  <miguel@novell.com>
3561
3562         Work to catch the crash from #76795 and turn it into an
3563         exception.   As I stubbed out pieces of the VisualBasic support,
3564         I found a number of places where the code was failing and I added
3565         checks to those places. 
3566         
3567         * metadata.c (do_mono_metadata_parse_generic_class): Make this
3568         function return a status code.  If we fail to parse the signature
3569         from mono_metadata_parse_generic_inst, return FALSE.
3570
3571         * loader.c (mono_get_method_from_token): If we fail to load the
3572         method (mono_class_get) return NULL.   
3573
3574         * (method_from_memberref): Return NULL if we are unable to parse
3575         the method signature
3576
3577         (mono_loader_error_prepare_exception): Since we now use the
3578         loader_error flag internally to stop processing, and obtaining
3579         exceptions that might be thrown will walk this code path the
3580         proper way of going from a MonoLoaderError into a
3581         MonoException was convoluted.   This new routine encapsulates the
3582         process of turning the error into an exception and *clearing* the
3583         error afterwards.
3584         
3585 2006-04-27  Miguel de Icaza  <miguel@novell.com>
3586
3587         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
3588         with missing assemblies), and to cope with:
3589
3590                 * Missing fieldref from a non-existing assembly.
3591                 * Missing methodref from a non-existing assembly.
3592
3593         The first batch of work to address *some* of the issues from 76661.
3594         
3595         * object.c (mono_class_create_runtime_vtable): If we fail to
3596         initialize the class raise the exception here. 
3597
3598         * metadata.c (mono_class_get_overrides_full): If any methods fail
3599         to load return the failure to the caller.
3600
3601         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
3602         flagging assemblies that failed to load.   
3603
3604         Do not crash if we are unable to load the assembly.
3605
3606         (mono_assembly_close): Do nothing with REFERENCE_MISSING
3607         assemblies. 
3608
3609         * loader.c (mono_loader_set_error_type_load): Change the
3610         convention to always pass unallocated strings, so we make our own
3611         copies (I know our own code had duplicated strings before, but
3612         this keeps the normal conventions).
3613         (method_from_memberref): Call mono_loader_set_error_method_load
3614         for all possible failures of loading the class. 
3615         Remove assert, turn into a loader error.
3616
3617         (mono_loader_error_to_exception): Move this routine from mini
3618         (mini_loader_error_to_exception) there was no need to have that in
3619         mini. 
3620
3621         * class.c (mono_class_from_typeref): If we were not able to load
3622         the assembly with mono_assembly_load_reference, call the
3623         mono_loader_set_error_type_load to register the problem.
3624
3625         (mono_class_setup_fields): If we fail to load the type from
3626         mono_metadata_parse_type_full, call mono_class_set_failure and
3627         break from the loop.
3628
3629         If class->exception_type is set, we do not layout the fields as
3630         that might crash the runtime, and instead return (from breaking
3631         from the previous loop).
3632
3633         (mono_class_setup_vtable): This now returns a boolean indicating
3634         whether the table was properly setup.   The decision is driven by
3635         mono_class_get_overrides_full which might run into non-existing
3636         methods. 
3637         
3638         (mono_class_init): Returns TRUE on success or FALSE if there was a
3639         problem in loading the type (incorrect assemblies, missing
3640         assemblies, methods, etc).
3641
3642         When we call mono_class_setup_fields we also check for a potential
3643         error inside this call (either a class exception or a general
3644         loader exception).
3645
3646         (mono_class_create_from_typedef): If the parent fails to load
3647         (calling mono_class_get_full) return NULL.
3648         
3649         ** Important **
3650
3651         calls to mono_metadata_parse_type_full should be checked
3652         everywhere and set the mono_class_set_failure
3653         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
3654
3655         The current patch checks the places where my manually constructed
3656         tests show the errors are showing up, but we should do it
3657         everywhere. 
3658
3659         ** Important2 **
3660
3661         mono_class_init return values should be tested everywhere, like
3662         the previous case this is something that we should audit
3663         everywhere and not only on the cases exposed by the tests I
3664         created. 
3665
3666 2006-04-26  Miguel de Icaza  <miguel@novell.com>
3667
3668         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
3669         boolean parameter and instead pass the information on `options'
3670         parameter (FileOptions).
3671
3672         * icall.c: Register the new signature for MonoIO.Open.
3673
3674         * debug-helpers.c (dis_one): Trying to understand how coverity
3675         works.  Fix Run 5, item 78.
3676
3677 2006-04-26  Dick Porter  <dick@ximian.com>
3678
3679         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
3680         dereference.
3681
3682 2006-04-25  Martin Baulig  <martin@ximian.com>
3683
3684         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
3685
3686         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
3687         debugger_thread_created().
3688         (debugger_gc_push_all_stacks): Don't handle the main thread in any
3689         special way.
3690         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
3691         (mono_debugger_finalize_threads): New function; undo the effects
3692         of mono_debugger_init_threads().
3693         (mono_debugger_create_all_threads): Removed.
3694
3695 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
3696
3697         * image.c (mono_image_close): Tidy up trace messages.
3698
3699         * assembly.c (mono_assembly_close): Ditto.
3700
3701         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
3702         no longer references an already freed assembly. Fixes #78168.
3703
3704 2006-04-21  Dick Porter  <dick@ximian.com>
3705
3706         * threads.c (mono_thread_detach): Fix reference counting when
3707         detaching threads.
3708
3709 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
3710
3711         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
3712         #78155.
3713
3714 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
3715
3716         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
3717         (mono_type_to_stind): Ditto.
3718
3719         * marshal.c: Use the new helper functions to simplify code.
3720
3721         * image.c (mono_image_close): Add some code for help debug assembly unloading
3722         problems.
3723
3724         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
3725         image mempool.
3726
3727         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
3728         assembly was already loaded in another appdomain. Fixes #78083.
3729
3730 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
3731
3732         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
3733         referenced assemblies.
3734         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
3735
3736         * domain.c (mono_domain_free): Add a trace message.
3737
3738         * appdomain.c (add_assemblies_to_domain): Ditto.        
3739
3740         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
3741         field.  
3742
3743 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3744
3745         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
3746
3747 2006-04-12  Martin Baulig  <martin@ximian.com>
3748
3749         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
3750         `USE_INCLUDED_LIBGC'.   
3751
3752 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3753
3754         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
3755         the patch contains ../ and a small directory name later. Hopefully fixes
3756         #78035.
3757
3758 2006-04-10  Martin Baulig  <martin@ximian.com>
3759
3760         Clean up the debugger's thread-handling code.
3761
3762         The debugger's thread-handling code has been moved from
3763         ../mini/debug-debugger.c to threads.c.  We now iterate directly
3764         over the `threads' hash, keep track of exiting threads and also
3765         use proper locking.
3766
3767         We can now debug XSP and XSP based applications with the debugger.
3768
3769         * object-internals.h (MonoThread): Added `gpointer end_stack'.
3770
3771         * threads.h
3772         (MonoThreadCallbacks): Removed; this was only used by the debugger.
3773         (mono_install_thread_callbacks): Likewise.      
3774
3775         * threads.c (mono_thread_callbacks): Removed.
3776         (debugger_thread_created, debugger_thread_exited): New static functions.
3777         (start_wrapper): Call debugger_thread_created().
3778         (thread_cleanup): Call debugger_thread_exited().
3779         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
3780         (mono_debugger_init_threads): New public function.
3781         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
3782         iterate directly over the `threads' hash and also use proper locking.
3783
3784         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
3785
3786         * mono-debug-debugger.h
3787         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
3788
3789 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
3790
3791         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
3792         argument type=array. Fixes #78057.
3793
3794 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
3795
3796         * culture-info-table.h : regenerated. Fixed bug #69652.
3797
3798 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
3799
3800         * loader.c metadata.c: Reapply a variant r59116.
3801         
3802         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
3803
3804         * class.c (mono_class_setup_interface_offsets): New internal function.
3805
3806         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
3807         interfaces too. Fixes #77398.
3808
3809         * reflection.c (encode_cattr_value): Add support for 
3810         parameter type=object, argument type=array.
3811         (load_cattr_value): Ditto. Fixes #77916.
3812
3813         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
3814         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
3815
3816         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
3817         a byval char array and CharSet is Ansi.
3818
3819         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
3820
3821 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
3822
3823         * metadata.c: Add some locking comments.
3824         
3825         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
3826         mempool.
3827         (mono_metadata_free_method_signature): Don't free the signature itself.
3828
3829         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
3830
3831         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
3832         reference the same MonoImage.
3833         (mono_assembly_load_from_full): Add an assert.
3834
3835 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
3836
3837         * image.c (mono_image_close): Don't put the image we are about to free into the
3838         loaded_images_guid_hash.
3839
3840         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
3841         to reduce code duplication.
3842
3843         * marshal.c: Register the native functions called by this module as icalls, to
3844         somewhat centralize the creation of MonoMethodSignature's.
3845
3846         * loader.c (mono_method_signature): Add a cache for method signatures.
3847
3848         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
3849         the parameter attributes of a method.
3850         (mono_metadata_parse_method_signature_full): Refactored the computation of
3851         parameter attributes into a separate function. Also avoid one allocation in
3852         most cases.
3853
3854         * assembly.c (mono_assembly_close): Ditto.
3855
3856         * image.c (mono_image_close): Log trace messages with INFO level.
3857
3858         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
3859
3860         * image.c reflection.c: Correct reference counting of image modules.
3861         
3862         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
3863         of this function from the image mempool.
3864         
3865         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
3866         to allow more cached types to be used.
3867
3868         * mono-debug.c (mono_debug_add_method): Appled patch from
3869         David S. Miller  <davem@sunset.davemloft.net>: Access 
3870         minfo->lexical_blocks[] entry elements using read32().
3871
3872 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
3873
3874         * loader.c (mono_free_method): No longer free the method header for non-dynamic
3875         methods as it is allocated from the mempool.
3876
3877         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
3878         image mempool.
3879
3880         * metadata-internals.h: Add comments describing the reference counting scheme
3881         used for MonoImage and MonoAssembly.
3882
3883         * image.c assembly.c reflection.c: Rework reference counting of images and 
3884         assemblies so they are freed when the runtime is shut down. Free some 
3885         additional memory structures when an image is unloaded.
3886         
3887 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
3888
3889         * class.c loader.c reflection.c: Allocate more data structures in
3890         the image mempool.
3891
3892 2006-03-31  Miguel de Icaza  <miguel@novell.com>
3893
3894         * icall.c
3895         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
3896         build on pre glib 2.4 systems.
3897
3898 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
3899
3900         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
3901
3902         * icall.c: Fix some warnings.
3903
3904 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
3905
3906         * culture-info-table.h : regenerated.
3907
3908 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
3909
3910         * threads.c, object-internals.h, verify.c: changed the culture caching
3911         code to use a normal MonoArray for storage so the GC can keep track of
3912         them easily. Fixed bits of the cache logic, too and simplified the
3913         code.
3914
3915 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
3916
3917         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
3918         thread for non-Boehm GCs.
3919
3920 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
3921
3922         * domain.c, object.c, domain-internals.h: reduce the amount of memory
3923         needed to keep track of the data for static fields.
3924
3925 2006-03-29  Raja R Harinath  <rharinath@novell.com>
3926
3927         Fix #75172
3928         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
3929         for interface classes.  Use 'num_methods' instead.
3930         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
3931         before using '->vtable_size' field.
3932
3933 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
3934
3935         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
3936         doesn't contain managed pointers, so use a normal hashtable.
3937
3938 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
3939
3940         * reflection.c, class-internals.h, domain.c: fixed handling of types
3941         used as values for objects in custom attributes (bug #77915):
3942
3943 2006-03-24  Martin Baulig  <martin@ximian.com>
3944
3945         * class.c (mono_class_setup_fields): Added support for generic
3946         instances; fixes #77580.
3947
3948 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3949
3950         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
3951
3952 2006-03-24  Dick Porter  <dick@ximian.com>
3953
3954         * file-io.c (get_file_attributes): More stat macro breakage.
3955         Fixes bug 77759.
3956
3957 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
3958
3959         * profiler.c: added the file=filename option in the default profiler
3960         to output the profile data to filename.
3961
3962 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3963
3964         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
3965         bug #77877.
3966
3967 2006-03-22  Martin Baulig  <martin@ximian.com>
3968
3969         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
3970         allocated `MonoClassField *' in `fb->handle'.
3971
3972 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
3973
3974         * class.c, image.c, metadata-internals.h: implemented new mechanism to
3975         allocate interface ID to save memory and allow better ID reuse on
3976         appdomain unload. setup_generic_vtable () removal from Martin.
3977
3978 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3979
3980         * object.h, appdomain.c, domain.c, exception.c, icall.c,
3981         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
3982         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
3983         write barriers for reference stores with managed objects accessed with
3984         C structures in the runtime and in embedding programs.
3985
3986 2006-03-20  Raja R Harinath  <rharinath@novell.com>
3987
3988         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
3989         'interface_id' and 'max_interface_id' fields of MonoClasses
3990         representing open generic types.
3991
3992 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
3993
3994         * object.h, object.c, icall.c: added functions to deal with
3995         storing valuetypes that contain references in managed objects.
3996         * reflection.c, string-icalls.c, threads.c, marshal.c: small
3997         fixes and comments around uses of mono_array_addr ().
3998
3999 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
4000
4001         * object.h, icall.c, monitor.c: object.GetHashCode ()
4002         implementation that supports the moving garbage collector.
4003
4004 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
4005
4006         * icall.c, threads-types.h, threads.c: implemented finalizer for
4007         LocalDataStoreSlot.
4008
4009 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
4010
4011         * metadata.c (mono_type_size): Add a fixme.
4012         (mono_type_stack_size): Ditto.
4013
4014         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
4015         'type_forwarders' field.
4016
4017         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
4018         attribute from net 2.0.
4019
4020         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
4021         from class.c.
4022
4023         * class.c (mono_class_setup_fields): Fix a warning.
4024         
4025         * class.c (mono_class_from_name): Add support for assemblyref entries
4026         in the EXPORTEDTYPE table.
4027
4028         * reflection.c: Add support for handling type forwarders under net 2.0.
4029
4030         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
4031         
4032 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
4033
4034         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
4035         overwriting entries in ModuleBuild->types, also clean up the code
4036         a little. Fixes #77774.
4037
4038 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
4039
4040         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
4041         load friend assembly info when present.
4042
4043 2006-03-14  Raja R Harinath  <rharinath@novell.com>
4044
4045         Fix crasher on gtest-158.cs.
4046         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
4047         the return value if the MonoClass we want is yet in an
4048         inconsistent state.
4049         * class.c (mono_class_create_from_typedef): Add an comment
4050         explaining an order dependency between mono_class_setup_parent and
4051         mono_class_setup_mono_type.
4052
4053 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
4054
4055         * class.c: documentation updates and events bug fix.
4056
4057 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
4058
4059         * class.c: some cleanup, locking fixes.
4060
4061 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
4062
4063         * class.c: fix the generics code to setup nested
4064         type info to the instantiated type (bug #77770).
4065
4066 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
4067
4068         * marshal.c: fixed a few type correctness issues.
4069
4070 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4071
4072         * loader.c: the Set/Get/Addrtess array methods should be public.
4073
4074 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
4075
4076         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
4077         
4078         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
4079         info->wrapper.
4080
4081 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
4082
4083         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
4084
4085         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
4086
4087         * mempool.c (mono_mempool_alloc): Speed this up a bit.
4088         (mono_mempool_alloc0): Ditto.
4089
4090 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4091
4092         * socket-io.c:
4093         (create_object_from_sockaddr): it was allocating 4 extra bytes
4094         for the AF_UNIX data. Fixes bug #77747.
4095
4096 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
4097
4098         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
4099
4100 2006-03-09  Dick Porter  <dick@ximian.com>
4101
4102         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
4103         Fixes bug 76966 again.
4104
4105 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
4106
4107         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
4108         names from r57532
4109         * appdomain.c: Bumped corlib version to 48 (due to r57532)
4110
4111 2006-03-07  Martin Baulig  <martin@ximian.com>
4112
4113         * object.c
4114         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
4115
4116 2006-03-07  Martin Baulig  <martin@ximian.com>
4117
4118         * class.c
4119         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
4120         regression introduced in r56970; see gtest-252.cs.
4121
4122         * loader.c (mono_get_method_constrained): Correctly handle generic
4123         methods; see gtest-253.cs.
4124
4125 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
4126
4127         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
4128
4129 2006-03-04  Martin Baulig  <martin@ximian.com>
4130
4131         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
4132         compute the parent type at runtime, just like we're already doing
4133         it for interfaces.
4134
4135         * reflection.c
4136         (mono_reflection_bind_generic_parameters): Don't compute the
4137         parent type anymore.
4138
4139         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
4140
4141 2006-03-04  Martin Baulig  <martin@ximian.com>
4142
4143         * mono-debug-debugger.h
4144         (mono_debugger_create_notification_function): Allocate memory at
4145         runtime and return a pointer to it.
4146
4147 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
4148
4149         * assembly.c: Fix windows build.
4150         
4151         * assembly.c: Fix build.
4152
4153         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
4154
4155         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
4156         
4157 2006-03-03  Dick Porter  <dick@ximian.com>
4158
4159         * process.c
4160         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4161         Check parameters before dereferencing them.  Fixes Aaron's part of
4162         bug 77393.
4163
4164 2006-03-03  Raja R Harinath  <rharinath@novell.com>
4165
4166         Fix performance regression.
4167         * loader.c (find_method_in_class): Add 'from_class' argument.
4168         Rename 'klass' argument to 'in_class'.  The signature is compared
4169         against the method in 'in_class', and the corresponding method is
4170         returned from 'from_class'.
4171         (find_method): Walk both 'in_class' and 'from_class' in parallel.
4172         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
4173         type definition and generic instantiation in parallel.
4174         (mono_get_method_constrained): Update to changes.
4175
4176 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
4177
4178         * threads.c: make sure the domain is correct, too when doing
4179         mono_thread_attach ().
4180
4181 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
4182
4183         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
4184         windows. Fixes #77683.
4185
4186 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
4187
4188         * object.h, *: introduced specific way to set elements of an array
4189         of references to be used as write barrier. Still need to audit the
4190         uses of mono_array_addr.
4191
4192 2006-03-01  Miguel de Icaza  <miguel@novell.com>
4193
4194         * object-internals.h: New field to cache the assmebly name, patch
4195         from Tambet Ingo (tambet@ximian.com)
4196
4197 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4198
4199         * decimal.h, class-internals.h, metadata-internals.h,
4200         file-io.h: mark a few function declarations as internal, to
4201         reduce the number of PLT entries.
4202
4203 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4204
4205         * file-io.c: fix typo in warning message.
4206
4207 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
4208
4209         * loader.c: on unix, lookup the "*A" version of a function
4210         if charset is auto as a second option before failing.
4211
4212 2006-02-28  Raja R Harinath  <rharinath@novell.com>
4213
4214         * class.h (mono_class_inflate_generic_method): Revert to two
4215         argument version.
4216         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
4217         (mono_class_inflate_generic_method_full): Add.
4218         * class.c (mono_class_inflate_generic_method_full): Rename from
4219         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
4220         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
4221         * loader.c, reflection.c: Update to changes.
4222
4223 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
4224
4225         * icall.c: const fixes and small improvements.
4226
4227 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4228
4229         * threadpool.c: for asynchronous connect(), enable the same workaround
4230         for BSD 6 as for the Mac. Fixes bug #77637.
4231
4232 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
4233
4234         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
4235         formatted classes. Fixes #77524.
4236
4237 2006-02-24  Raja R Harinath  <rharinath@novell.com>
4238
4239         * class.c (inflate_generic_type): Add a couple more
4240         micro-optimizations.
4241         (inflate_generic_context): Don't use the 'gmethod' from
4242         'inflate_with'.
4243         (mono_class_inflate_generic_method): If the method has generic
4244         parameters, but the passed-in context doesn't have a 'gmethod',
4245         create one.  Use the possibly simplified generic instantiation
4246         from the declaring class instead of the one passed in.
4247
4248 2006-02-24  Raja R Harinath  <harinath@gmail.com>
4249
4250         Make generic method signature and method header handling lazy.
4251         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
4252         (inflate_generic_header): Likewise.
4253         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
4254         parameter to avoid inflating types.
4255         (mono_get_inflated_method): Empty out.
4256         * class.h (mono_class_inflate_generic_method): Update to changes.
4257         * loader.c (mono_get_method_from_token): Don't parse signature for
4258         generic methods, nor methods of generic classes.
4259         (mono_method_signature): Rename from 'mono_method_signature'.
4260         Inflate signature on demand.
4261         (mono_method_get_header): Inflate method header on demand.
4262         * reflection.c: Update to changes.
4263
4264 2006-02-23  Raja R Harinath  <rharinath@novell.com>
4265
4266         * metadata.c (mono_metadata_inflate_generic_inst): If the
4267         instantiation is closed, don't bother expanding it in the new
4268         context.
4269         * class.c (inflate_generic_class): If the generic instantiation
4270         doesn't change after inflation, return the argument itself.
4271         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
4272         Add bounds checks.
4273         (inflate_generic_context): If neither the generic class nor the
4274         generic method instantiations change, return the original context.
4275         * reflection.c (mono_method_get_object): Do
4276         'mono_get_inflated_method' before accessing the ->klass field.
4277         (inflate_mono_method): Don't create a MonoGenericMethod unless
4278         necessary.
4279         (inflate_method): Don't pass a constructed type as the declaring
4280         type of a methodbuilder.
4281
4282 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
4283
4284         * object.c: fix memory overwrite.
4285
4286 2006-02-22  Dick Porter  <dick@ximian.com>
4287
4288         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
4289         it doesn't work any more.
4290         (mono_threads_request_thread_dump): Fix unused variable warnings.
4291
4292 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4293
4294         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
4295         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
4296         the public header file.
4297
4298 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
4299
4300         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
4301
4302 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
4303
4304         * class-internals.h, object.c: reduce the size of MonoVTable
4305         and store the interface_offsets array at negative offsets.
4306
4307 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
4308
4309         * metadata.c: tweak table descriptors data structures to reduce
4310         size and runtime relocations.
4311
4312 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
4313
4314         * marshal.c: fix some types and opcodes to be type-safe
4315         in marshaling wrappers.
4316
4317 2006-02-21  Ankit Jain  <jankit@novell.com>
4318
4319         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
4320
4321 2006-02-21  Raja R Harinath  <rharinath@novell.com>
4322
4323         * metadata.c (get_constraints): Relax debugging checks for monodis.
4324
4325 2006-02-21  Ankit Jain  <jankit@novell.com>
4326
4327         * metadata.c (mono_metadata_load_generic_params): Move the code
4328         checking for ambiguous generic params from here to mono/dis/get.c
4329         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
4330
4331 2006-02-21  Raja R Harinath  <harinath@gmail.com>
4332
4333         Fix assertion triggered when compiling nemerle.
4334         * class.c (mono_get_shared_generic_inst): Rename from
4335         get_shared_inst and make non-static.
4336         * loader.c (mono_get_shared_generic_method): New.  Used to create
4337         the MonoGenericContext-equivalent of a MonoGenericContainer.
4338         (mono_get_method_from_token): Initialize the 'context' field of
4339         the created MonoGenericContainer.
4340         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
4341         * metadata.c (get_constraints): Add sanity check.
4342         * class-internals.h: Add new internal methods.
4343
4344         * reflection.c (verify_safe_for_managed_space): New sanity check.
4345         Currently checks that owner-less generic parameters aren't allowed
4346         in managed space.
4347         (mono_type_get_object): Use it.
4348         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
4349         that are now in mono_type_get_object.
4350         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
4351
4352 2006-02-19  Raja R Harinath  <harinath@gmail.com>
4353
4354         * metadata.c (mono_type_create_from_typespec): Rename from
4355         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
4356         argument and caching of types in the generic container.
4357         (unwrap_arrays, find_generic_param): Remove.
4358         * metadata-internals.h: Update.
4359         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
4360
4361 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
4362
4363         * class.c (mono_class_get_exception_for_failure): Fix a warning.
4364
4365         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
4366         return values. Fixes #77581.
4367
4368         * class.c (mono_fnptr_class_get): Switch name and name_space.
4369
4370         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
4371         classes and add support for [In, Out] attributes.
4372         (mono_marshal_free_asany): Ditto. Fixes #77524.
4373
4374 2006-02-18  Raja R Harinath  <harinath@gmail.com>
4375
4376         * class.c (mono_class_from_generic_parameter): Make more robust to
4377         incomplete MonoGenericContainers from monodis.
4378
4379 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4380
4381         * class-internals.h: added some more exception types.
4382         * class.c, metadata.c: added a few checks to handle missing
4383         types.
4384
4385 2006-02-17  Raja R Harinath  <rharinath@novell.com>
4386
4387         Use owner-less generic-params some more.
4388         * class.c (my_mono_class_from_generic_parameter): Remove.
4389         (mono_class_from_generic_parameter): Handle null image,
4390         param->name and param->owner.
4391         (mono_class_from_mono_type): Update.
4392         (mono_class_create_from_typespec): Remove 'container' parameter.
4393         If that parameter is non-null, the result is always inflated by
4394         'mono_class_get_full' anyway.
4395         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
4396         parameter.
4397         (mono_class_get_full): Update.
4398
4399         * class.c (inflate_generic_type) [GENERICINST]: If the generic
4400         instance is not open, don't bother inflating.
4401         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
4402         parse metadata for inflated classes.
4403         (_mono_class_get): Change GenericContext* parameter to
4404         GenericContainer*.
4405         (mono_class_create_from_typespec): Likewise.  Simplify, and
4406         implement trivially.  All the cases are handled in
4407         mono_class_from_mono_type.  Don't inflate returned class.
4408         (mono_class_get_full): Delegate GENERICINST optimization to
4409         inflate_generic_type.
4410         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
4411
4412 2006-02-16  Dick Porter  <dick@ximian.com>
4413
4414         * socket-io.c (create_object_from_sockaddr): Fix typo.
4415         (create_sockaddr_from_object): Check array lengths before
4416         potentially accessing items off the end.
4417         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
4418         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
4419         (ves_icall_System_Net_Sockets_Socket_Send_internal)
4420         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
4421         length checks to avoid wraparound overflows.
4422         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
4423         contents of the array of sockets
4424         (hostent_to_IPHostEntry2)
4425         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
4426         Check return value of inet_ntop ().
4427         (addrinfo_to_IPHostEntry): Fix typo
4428
4429 2006-02-16  Raja R Harinath  <rharinath@novell.com>
4430
4431         Type metadata parsing doesn't use generic-instantiation information.
4432         * metadata.c (mono_metadata_parse_array_full): Change
4433         MonoGenericContext* parameter to MonoGenericContainer*.
4434         (mono_metadata_parse_type_full): Likewise.
4435         (mono_type_create_from_typespec_full): Likewise.
4436         (mono_metadata_parse_mh_full): Likewise.
4437         (mono_metadata_parse_generic_inst): Likewise.
4438         (do_mono_metadata_parse_generic_class): Likewise.
4439         (do_mono_metadata_parse_type): Likewise.
4440         * metadata-internals.h: Update to changes.
4441         * class.c (mono_class_find_enum_basetype): Likewise.
4442         (mono_class_setup_fields): Likewise.
4443         (mono_class_create_from_typespec): Likewise.
4444         * loader.c (method_from_methodspec): Likewise.
4445         (mono_get_method_from_token): Likewise.
4446         (mono_method_get_header): Likewise.
4447
4448 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
4449
4450         * marshal.c: handle additional GENERICINST case (patch from
4451         Thong Nguyen <tum@veridicus.com>).
4452         Fix a few cases where LDIND_I/STIND_I was used for references.
4453
4454 2006-02-16  Raja R Harinath  <rharinath@novell.com>
4455
4456         * reflection.c (mono_reflection_get_token): Remove unused variable.
4457
4458 2006-02-16  Martin Baulig  <martin@ximian.com>
4459
4460         * reflection.c (mono_reflection_get_token): Add support for fields
4461         in instantiated generic types.
4462
4463         * icall.c
4464         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
4465
4466 2006-02-15  Martin Baulig  <martin@ximian.com>
4467
4468         * icall.c
4469         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
4470         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
4471         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
4472         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
4473
4474 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
4475
4476         * class.c, metadata.c, metadata.h, object.c, icall.c,
4477         marshal.c: changed mono_type_get_underlying_type () to do
4478         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
4479         Fixed handling of instantiated generic valuetypes (bug #75479).
4480
4481 2006-02-15  Raja R Harinath  <rharinath@novell.com>
4482
4483         * metadata.c (mono_metadata_decode_signed_value): Simplify.
4484         Delegate to mono_metadata_decode_value, and work on the returned value.
4485
4486         * icall.c (ves_icall_MonoType_GetGenericArguments):
4487         Add consistency check here too.
4488         
4489 2006-02-15  Ankit Jain  <jankit@novell.com>
4490
4491         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
4492         char/short etc.
4493
4494 2006-02-15  Ankit Jain  <jankit@novell.com>
4495
4496         * metadata.c (mono_metadata_decode_signed_value): New function to decode
4497         signed values, used only for representing lower bounds of arrays.
4498         (mono_metadata_parse_array_full): Use new
4499         mono_metadata_decode_signed_value to decode lower bounds.
4500
4501 2006-02-14  Martin Baulig  <martin@ximian.com>
4502
4503         * reflection.c
4504         (mono_reflection_get_token): Support "MonoGenericMethod" and
4505         "MonoGenericCMethod" and allow generic instances / methods.
4506
4507 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
4508
4509         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
4510         to obtain the terminal size using an ioctl.
4511
4512         * object.c (mono_nullable_init): Revert this as nullable reference
4513         types are not valid.
4514         (mono_nullable_box): Ditto.
4515
4516 2006-02-09  Dick Porter  <dick@ximian.com>
4517
4518         * threads.c (mono_thread_detach): Drop a reference to the thread
4519         we're detaching.
4520
4521 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
4522
4523         * object.c (mono_nullable_init): Handle nullable reference types.
4524         (mono_nullable_box): Ditto. Fixes #77446.
4525
4526 2006-02-07  Martin Baulig  <martin@ximian.com>
4527
4528         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
4529
4530 2006-02-07  Ankit Jain  <jankit@novell.com>
4531
4532         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
4533         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
4534         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
4535         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
4536         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
4537         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
4538
4539 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
4540
4541         * class.c (mono_class_create_generic): Set type_token as well.
4542
4543         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
4544         compatible with MS.
4545
4546 2006-02-02  Martin Baulig  <martin@ximian.com>
4547
4548         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
4549         has never been used so far.
4550
4551 2006-02-02  Martin Baulig  <martin@ximian.com>
4552
4553         * mono-debug-debugger.h: Changed comment at the top of this file;
4554         the header is not installed, but it's safe to #include it from
4555         within the JIT.
4556
4557         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
4558         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
4559
4560 2006-02-02  Martin Baulig  <martin@ximian.com>
4561
4562         * mono-debug.h
4563         (MonoSymbolTable): Removed the `metadata_info' field.
4564
4565         * mono-debug.c
4566         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
4567
4568         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
4569         (mono_debugger_add_builtin_types): Removed.
4570         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
4571         (mono_debugger_create_notification_function): We now operate on a
4572         pre-allocated area; take a `gpointer' and return `void'.
4573
4574         * mono-debug-debugger.c
4575         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
4576         (mono_debugger_add_builtin_types): Removed.
4577
4578 2006-02-02  Martin Baulig  <martin@ximian.com>
4579
4580         * threads.c (mono_debugger_create_all_threads): New public method.
4581
4582 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4583
4584         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
4585         breaks on several platforms.
4586
4587 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
4588
4589         * assembly.c: the VS.NET build doesn't supply default values for
4590         MONO_ASSEMBLIES and MONO_CFG_DIR.
4591
4592 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
4593
4594         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
4595         helper function.
4596
4597         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
4598
4599         * loader.c (method_from_memberref): Fix a warning.
4600
4601         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
4602
4603         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
4604         with explicit layout. Fixes #77433.
4605
4606 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
4607
4608         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
4609         max_interface_id is initialized before using it. Fixes #77398.
4610         (ves_icall_Type_GetInterfaces): Ditto.
4611
4612 2006-01-30  Raja R Harinath  <rharinath@novell.com>
4613
4614         * metadata.c (mono_metadata_parse_method_signature_full): Don't
4615         allocate memory for parameter attributes when parsing memberref
4616         signatures.
4617         * loader.c (mono_loader_set_error_method_load): Don't warn.
4618         (method_from_memberref): Ensure MissingMethodException gets thrown
4619         if method is not found.  Make warning more informative.
4620
4621 2006-01-29  Raja R Harinath  <harinath@gmail.com>
4622
4623         Fix #77397
4624         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
4625         return true if is byref.
4626         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
4627         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
4628         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
4629
4630 2006-01-27  Raja R Harinath  <rharinath@novell.com>
4631
4632         Fix tests/find-method.2.il
4633         * loader.c (find_method, find_method_in_class): Remove is_inflated
4634         argument.  Revert 2006-01-18 change.
4635         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
4636         is generic, search for method in its generic definition.
4637         * class.c (mono_class_setup_vtable_general): Print generic
4638         arguments of generic types in debugging printf.
4639
4640 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
4641
4642         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
4643
4644         * threads.c (mono_threads_request_thread_dump): New helper function.
4645
4646 2006-01-25  Raja R Harinath  <rharinath@novell.com>
4647
4648         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
4649
4650 2006-01-25  Ankit Jain  <jankit@novell.com>
4651
4652         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
4653         move definition to ..
4654         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
4655         
4656 2006-01-25  Ankit Jain  <jankit@novell.com>
4657             Raja R Harinath  <rharinath@novell.com>
4658
4659         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
4660         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
4661         as necessary.
4662
4663 2006-01-25  Martin Baulig  <martin@ximian.com>
4664
4665         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
4666         `MonoDebuggerThread' into debug-debugger.c.
4667
4668 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
4669
4670         * profiler.c: fix printing of data.
4671
4672 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
4673
4674         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
4675           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
4676
4677 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
4678
4679         * object.c: fix deadlock related to string interning.
4680
4681 2006-01-23  Martin Baulig  <martin@ximian.com>
4682
4683         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
4684
4685         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
4686
4687 2006-01-23  Martin Baulig  <martin@ximian.com>
4688
4689         * mono-debug.h: Moved the prototypes of some functions which are
4690         used by the JIT here from mono-debug-debugger.h.
4691
4692 2006-01-21  Martin Baulig  <martin@ximian.com>
4693
4694         * Makefile.am: Don't install mono-debug-debugger.h.
4695
4696 2006-01-21  Martin Baulig  <martin@ximian.com>
4697
4698         * mono-debug-debugger.h: Enforce the private status of this header
4699         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
4700         Moved some stuff from mono-debugger-jit-wrapper.h here.
4701
4702 2006-01-20  Raja R Harinath  <rharinath@novell.com>
4703
4704         * class.c (mono_class_from_typeref): Add a sanity test to help
4705         catch lack of assembly load/search hooks.
4706
4707 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
4708
4709         * marshal.c (emit_struct_conv): Relax the fields with same offset
4710         check even more. Fixes #77230.
4711
4712 2006-01-18  Martin Baulig  <martin@ximian.com>
4713
4714         * loader.c (find_method_in_class): Added `gboolean is_inflated'
4715         argument; if false, we compare the uninstantiated signatures.
4716         (method_from_memberref): Compare the uninstantiated signatures;
4717         fixes #76417.
4718
4719 2006-01-18  Robert Jordan  <robertj@gmx.net>
4720
4721         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
4722         Clear the weak link. Fixes bug #77170.
4723
4724         * gc.c (mono_gchandle_free):
4725         Reflect *-gc.c changes (tiny optimization).
4726
4727 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
4728
4729         * metadata.c (mono_metadata_signature_dup): Applied patch from
4730         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
4731         Fixes #77288.
4732
4733 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
4734
4735         * marshal.c (emit_struct_conv): Allow fields with the same offset when
4736         marshalling from native to managed code. Fixes #77230.
4737
4738 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4739
4740         * threadpool.c: fix problem (Mac only) when more than one asynchronous
4741         connect. Fixes bug #77020.
4742
4743 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
4744
4745         * class.c: fixed id assignement for nested interfaces (bug #77275).
4746         Added also better info for --print-vtable debugging.
4747
4748 2006-01-12  Martin Baulig  <martin@ximian.com>
4749
4750         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
4751         interfaces on-the-fly; fixes #76625.
4752
4753         * class-internals.h
4754         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
4755         don't need that anymore.
4756
4757 2006-01-12  Miguel de Icaza  <miguel@novell.com>
4758
4759         * socket-io.c
4760         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4761         To avoid initing the nested_classes when not needed I turned the
4762         PeerCredData as a toplevel internal class, as it has to be shared
4763         anyways. 
4764
4765         Fixes the CASA issue.
4766
4767 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
4768
4769         * domain.c: Accessors for MonoJitInfo
4770
4771         * profiler-private.h: Add jitinfo to the end jit hook
4772
4773         * profiler.[ch]: Define new hooks, called after jitting which give
4774         the MonoJitInfo that was compiled
4775
4776 2006-01-10  Martin Baulig  <martin@ximian.com>
4777
4778         * class.c (mono_class_setup_events): Add support for generic
4779         classes; fixes #76440.
4780
4781 2006-01-06  Raja R Harinath  <rharinath@novell.com>
4782
4783         Fix #77160.
4784         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
4785         on passed-in method.
4786
4787 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4788
4789         * object.c (mono_runtime_invoke_array): Add Nullable support.
4790
4791         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
4792
4793 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
4794
4795         * file-io.c: Don't consider sockets as directory and avoid an endless
4796         loop. Fix bug #76966.
4797
4798 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4799
4800         * object.c (mono_nullable_init): New helper function.
4801         (mono_nullable_box): Ditto.
4802
4803         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
4804
4805         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
4806
4807         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
4808         
4809 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
4810
4811         * class.c (mono_class_is_assignable_from): Make T assignable to 
4812         Nullable<T>.
4813
4814 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
4815
4816         * appdomain.c: Bump corlib version to 46.
4817         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
4818         serialization purpose) and changed ves_icall_System_Reflection_
4819         Assembly_get_code_base signature to accept a boolean (to escape, or 
4820         not, the assembly code base).
4821
4822 2005-12-23  Dick Porter  <dick@ximian.com>
4823
4824         * icall.c: 
4825         * threads-types.h: 
4826         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
4827         CreateEvent icall now returns "created" boolean parameter.
4828
4829 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
4830
4831         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
4832         #76967.
4833
4834         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
4835         when attr_klass is an interface. Fixes #77045.
4836
4837 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
4838
4839         * marshal.c (emit_struct_conv): Fix previous patch.
4840         
4841         * marshal.c (emit_struct_conv): Add a check for fields with the same
4842         offset.
4843
4844 2005-12-20  Raja R Harinath  <rharinath@novell.com>
4845
4846         Fix regression in Mono.C5.
4847         * class.c (mono_class_create_generic): If 'klass' is an interface
4848         set up the interface offsets.
4849         (mono_class_is_assignable_from): Don't throw away generic arguments.
4850
4851 2005-12-19  Raja R Harinath  <rharinath@novell.com>
4852
4853         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
4854         type parameters.
4855
4856 2005-12-15  Raja R Harinath  <rharinath@novell.com>
4857
4858         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
4859         dead store.
4860         (do_mono_metadata_parse_generic_class): Don't pass the current
4861         generic context when parsing the type being instantiated: it
4862         cannot use it, anyway.
4863
4864         * loader.c (method_from_memberref): Don't inflate a signature if
4865         it doesn't contain any type parameters.
4866
4867 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
4868
4869         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
4870
4871 2005-12-14  Martin Baulig  <martin@ximian.com>
4872
4873         * class.c
4874         (mono_type_get_name_recurse): Don't return null for type
4875         parameters and open generic classes.
4876         (mono_class_setup_methods): Don't exclude generic instances.
4877         (mono_get_unique_iid): Use different IDs for different
4878         instantiations of the same generic type.
4879         (mono_class_setup_vtable): Only use setup_generic_vtable() for
4880         open generic instances; create a normal vtable for closed generic
4881         instances.
4882         (mono_class_setup_vtable_general): We're now also called for
4883         closed generic instances.
4884
4885         * reflection.c
4886         (mono_reflection_bind_generic_parameters): Correctly use
4887         mono_metadata_lookup_generic_inst() everywhere.
4888
4889 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
4890
4891         * object.c (mono_class_create_runtime_vtable): Call 
4892         mono_class_setup_vtable ().
4893
4894         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
4895         function.
4896         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
4897         #76959.
4898
4899         * loader.c (mono_loader_set_error_type_load): Print the type load
4900         warnings to the console so they are more visible to the user.
4901         (mono_loader_set_error_method_load): Ditto.
4902
4903         * reflection.c (ensure_runtime_vtable): Revert the last change as it
4904         is still broken.
4905         
4906         * reflection.c (ensure_runtime_vtable): Fix build.
4907
4908         * reflection.c (ensure_runtime_vtable): Disable an optimization which
4909         doesn't work in all cases.
4910
4911 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
4912
4913         * object.c (mono_array_new_full): Treat a single dimensional array
4914         with 0 lower bounds as an szarray. Fixes #76973.
4915
4916         * reflection.c (custom_attr_visible): Really fix this.
4917
4918 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
4919
4920         * reflection.c (custom_attr_visible): Allow nested public attributes
4921         as well.
4922
4923         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
4924         interface check.
4925
4926 2005-12-12  Raja R Harinath  <harinath@gmail.com>
4927
4928         * class.c (set_generic_param_owner): Delete.
4929         (mono_class_create_from_typedef): Don't set ->owner field of
4930         generic parameters to "param containers" of enclosing classes.
4931         * reflection.c (mono_reflection_initialize_generic_parameter):
4932         Likewise.
4933
4934 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
4935
4936         * reflection.c (custom_attr_visible): Fix build.
4937
4938 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
4939
4940         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
4941         private attributes.
4942         
4943         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
4944         handling of null parameter defaults.
4945
4946 2005-12-09  Raja R Harinath  <rharinath@novell.com>
4947
4948         * class.c (mono_class_from_generic_parameter): Don't set
4949         klass->generic_container.
4950         (my_mono_class_from_generic_parameter): Likewise.
4951
4952 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
4953
4954         * reflection.c (load_public_key): Fix a warning.
4955         (method_encode_code): Fix unaligned accesses.
4956
4957 2005-12-07  Martin Baulig  <martin@ximian.com>
4958
4959         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
4960
4961         * reflection.c
4962         (write_generic_param_entry): Encode our custom attrs.
4963
4964         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
4965
4966 2005-12-07  Martin Baulig  <martin@ximian.com>
4967
4968         * reflection.c (encode_new_constraint): Removed; we don't use the
4969         `NewConstraintAttribute' anymore.
4970
4971 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
4972
4973         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
4974         not fire a TypeResolve event when Assembly.GetType () is called.
4975
4976 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
4977
4978         Beginning of support for nullable types in the runtime. Parts of
4979         this patch are from Martin.
4980
4981         * appdomain.c (MONO_CORLIB_VERSION): Bump
4982
4983         * domain.c (mono_init_internal): get the nullable type
4984
4985         * class.c (mono_class_is_nullable): New method
4986         (mono_class_get_nullable_param): New mehod
4987         (mono_class_create_generic): In types T? set cast_class to T
4988
4989         * class-internals.h (MonoDefaults): new nullable default class
4990         (mono_class_get_nullable_param, mono_class_get_nullable_param):
4991         new methods.
4992
4993 2005-12-05  Raja R Harinath  <rharinath@novell.com>
4994
4995         * metadata.c (select_container): New.  Refactor code to select the
4996         appropriate GenericContainer given the type of generic parameter
4997         we are looking for.
4998         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
4999         not a MonoGenericContext.  Use select_container.  Update parameters.
5000         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
5001         and MONO_TYPE_MVAR.
5002         (unwrap_arrays): Remove duplicate tests.
5003         (find_generic_param): Rename from 'has_same_context'.  Now walks a
5004         generic instantiated class to find any arguments that are generic
5005         parameters.
5006         (mono_type_create_from_typespec_full): Use find_generic_param to
5007         avoid evicting some generic instantiations from the typespec
5008         cache.
5009
5010 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
5011
5012         * reflection.c: fixed writing of doubles on ARM FPA.
5013
5014 2005-12-02  Robert Jordan  <robertj@gmx.net>
5015
5016         * icall.c: Fixed EventInfo.ReflectedType (#76829).
5017
5018 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5019
5020         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
5021         least on SUSE 10 they are not the same (on debian, they are just the
5022         same thing).
5023
5024 2005-12-01  Raja R Harinath  <rharinath@novell.com>
5025
5026         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
5027         DeclaringType for VARs and MVARs.
5028         * class.c (set_generic_param_owner): Fix initialization of owner
5029         fields.
5030
5031 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
5032
5033         * icall.c: fixed Enum.ToObject() to correctly convert the values.
5034
5035 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5036
5037         * threadpool.c: workaround for a bug that shows up on the Mac:
5038         select()+connect() on a blocking socket is not like it should
5039         be, so we proceed to connect() in that case, wasting the I/O
5040         threadpool thread until connect succeedes. Fixes bug #75436.
5041
5042 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5043
5044         * threadpool.c: fix typo when setting file descriptor states.
5045
5046 2005-11-28  Raja R Harinath  <rharinath@novell.com>
5047
5048         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
5049         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5050         create a temporary signature container.
5051         (mono_metadata_parse_generic_param): Update to changes.
5052         (mono_type_create_from_typespec_full): Update to changes.
5053         * loader.c (method_from_memberref): Don't use a
5054         MonoGenericContainer while parsing a memberref signature.
5055         (method_from_methodspec): Remove dead-store of the 'container'
5056         variable.  It's overwritten before use.
5057
5058         * metadata.c (mono_type_create_from_typespec_full): Make debugging
5059         checks tighter.
5060         (mono_metadata_parse_generic_param): Likewise.
5061         * loader.c (find_method_in_class): Does not need a
5062         MonoGenericContainer.  Use 'mono_method_signature' rather than
5063         'mono_method_signature_full'.
5064         (find_method, mono_get_method_constrained, method_from_memberref):
5065         Update to changes.
5066
5067         * metadata.c (mono_type_create_from_typespec_full): Ensure that
5068         owner-less generic-parameters are never evicted from the typespec
5069         cache.
5070
5071         * loader.c (method_from_memberref): Don't use the current context
5072         when parsing signatures.
5073         (method_from_methodspec, mono_get_method_from_token): Update to changes.
5074
5075         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
5076         side-effects in g_assert.
5077         * loader.c (mono_get_method_from_token): Resolve klass earlier so
5078         that we don't potentially lose information.
5079
5080 2005-11-26  Dick Porter  <dick@ximian.com>
5081
5082         * icall.c:
5083         * threads.c: icalls to implement basic (ie, not named)
5084         System.Threading.Semaphore.
5085
5086 2005-11-24  Dick Porter  <dick@ximian.com>
5087
5088         * process.c
5089         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
5090         Use GetProcessId() if it's available.
5091
5092 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
5093
5094         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
5095
5096 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5097             Ankit Jain  <jankit@novell.com>
5098
5099         * loader.c (mono_get_method_from_token): Initialize 'method' field
5100         of all generic parameters before parsing the signature.  Remove
5101         code that "fixed"-up MVAR references.
5102
5103 2005-11-23  Ankit Jain  <jankit@novell.com>
5104
5105         * metadata.c (mono_metadata_has_generic_params):
5106         (mono_metadata_load_generic_param_constraints):
5107         (mono_metadata_load_generic_params): Move duplicate code ...
5108         (mono_metadata_get_generic_param_row): ... here. Returns the
5109         first row-id in GenericParam table for a given owner (token).
5110         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
5111         prototype.
5112
5113 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5114             Ankit Jain  <jankit@novell.com>
5115
5116         * metadata.c (mono_metadata_class_equal): Pass signature_only when
5117         comparing VARs too.
5118         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
5119         type->data.generic_param only if the type is an MVAR.
5120         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
5121         leak owner-less VARs and MVARs into managed space.
5122
5123 2005-11-21  Martin Baulig  <martin@ximian.com>
5124
5125         * class-internals.h
5126         (MonoMethod): Moved the `generic_container' here from
5127         `MonoMethodNormal' since we now also need it for
5128         `MonoMethodPInvoke';
5129         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
5130         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
5131         an union containing both `MonoMethodNormal' and
5132         `MonoMethodPInvoke'.
5133
5134         * loader.c
5135         (mono_get_method_from_token): Allow implementing generic methods
5136         as interncalls.
5137
5138         * threads.c
5139         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
5140         icall.
5141
5142 2005-11-17  Dick Porter  <dick@ximian.com>
5143
5144         * icall.c: 
5145         * process.h: 
5146         * process.c: Split the Process Start_internal icall into
5147         ShellExecuteEx_internal and CreateProcess_internal, which are
5148         called depending on whether UseShellExecute is true.  Fixes bug
5149         76670.
5150
5151         * appdomain.c (MONO_CORLIB_VERSION): Incremented
5152
5153 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
5154
5155         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
5156         'msize' parameters, use the information in 'mspec' instead.
5157         (emit_object_to_ptr_conv): Ditto.
5158
5159         * marshal.c (emit_struct_conv): Handle explicit layout structs with
5160         fields out of order. Fixes #76733.
5161
5162 2005-11-17  Ankit Jain  <jankit@novell.com>
5163
5164         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
5165
5166 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
5167
5168         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
5169           bug #76575.
5170
5171 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5172
5173         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
5174         for types with non-auto layout. Fixes #76717.
5175
5176 2005-11-16  Ankit Jain  <jankit@novell.com>
5177
5178         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
5179         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
5180         if generic_context is null.
5181           (mono_metadata_generic_param_equal): param->owner can be null.
5182           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
5183         null.
5184
5185 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5186
5187         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
5188         the correct value.
5189
5190 2005-11-15  Martin Baulig  <martin@ximian.com>
5191
5192         * object.c (set_value): Use mono_class_from_mono_type() instead of
5193         the hack for generic instances; fixes #76136.
5194
5195 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
5196
5197         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
5198         fields.
5199
5200         * image.c (load_metadata_ptrs): Initialize the new fields.
5201
5202         * reflection.c (create_dynamic_mono_image): Ditto.
5203
5204         * reflection.c (build_compressed_metadata): Use the new fields.
5205
5206         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
5207         icall.
5208
5209         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
5210         icall.
5211         
5212 2005-11-15  Ankit Jain  <jankit@novell.com>
5213             Raja R Harinath  <harinath@gmail.com>
5214
5215         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
5216         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
5217         new per-generic_container cache if the cached MonoType's context matches
5218         the current context.
5219           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
5220         to the expected context.
5221           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
5222
5223 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5224
5225         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
5226         we changed the signature of an icall.
5227         * icall.c: Modify to mono_double_ParseImpl return true/false 
5228         depending on the success, instead of throwing the exception. This will
5229         help us in Double.TryParse methods.
5230         
5231 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
5232
5233         * marshal.c (emit_marshal_object): Throw an exception when
5234         marshalling 'object' instead of crashing. Fixes #76696.
5235
5236 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5237
5238         * class-internals.h: Add prototype for mono_type_get_full_name ().
5239
5240 2005-11-11  Dick Porter  <dick@ximian.com>
5241
5242         * threads.c (mono_thread_manage): Make sure the main thread has
5243         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
5244
5245 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5246
5247         * loader.c (mono_loader_set_error_type_load): Log a warning to the
5248         console about the missing type.
5249         (mono_loader_set_error_method_load): Ditto.
5250
5251 2005-11-09  Miguel de Icaza  <miguel@novell.com>
5252
5253         * mono-config.c (mono_get_config_dir): Set the system defaults if
5254         none is specified.
5255
5256         * assembly.c (mono_set_dirs): New API entry point to set the
5257         assembly and the config directory in one call
5258
5259 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
5260
5261         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
5262         the ftnptr was created from a delegate in a domain other than the
5263         current domain. Fixes #75377.
5264
5265         * exception.h exception.c: Add mono_get_exception_not_supported ().
5266
5267 2005-11-08  Martin Baulig  <martin@ximian.com>
5268
5269         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
5270
5271 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
5272
5273         * security-manager.h: Added definitions to deal with strongname key 
5274         pairs bigger (and smaller) than 1024 bits.
5275         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
5276         adjust wrt the public key length being used.
5277
5278 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
5279
5280         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
5281           Windows build (r51396-51397).
5282
5283 2005-11-03  Martin Baulig  <martin@ximian.com>
5284
5285         * class.c (mono_class_setup_vtable_general): Also add generic
5286         methods to the vtable; fixes #76581.
5287
5288 2005-11-01  Miguel de Icaza  <miguel@novell.com>
5289
5290         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
5291         sure that we lookup GetString method from the System.Text.Encoding
5292         class, not the derived class or we get an empty method.
5293
5294         Fixed class #76612.
5295
5296 2005-10-25  Miguel de Icaza  <miguel@novell.com>
5297
5298         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
5299         if it has been previously set (embedders). 
5300
5301         Make mono_set_rootdir available also on Unix.
5302
5303 005-10-24  Robert Jordan  <robertj@gmx.net>
5304
5305         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
5306
5307 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
5308
5309         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
5310         only calls which are made to native code use this flag.
5311
5312         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
5313
5314 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
5315
5316         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
5317         Add support for FieldBuilders.
5318
5319 2005-10-29  Martin Baulig  <martin@ximian.com>
5320
5321         * mono-debug.c
5322         (mono_debug_using_mono_debugger): New public method; returns
5323         whether we're running inside the debugger.
5324
5325 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
5326
5327         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
5328         for Method/Constructor/FieldBuilders.
5329
5330 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
5331
5332         * reflection.c (module_add_cattrs): Save custom attributes for global methods
5333         and fields as well.
5334
5335 2005-10-26  Martin Baulig  <martin@ximian.com>
5336
5337         * mono-debug-debugger.c
5338         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
5339
5340 2005-10-24  Raja R Harinath  <harinath@gmail.com>
5341
5342         * icall.c (base64_to_byte_array): Don't pass an out-of-range
5343         integer to isspace.
5344
5345 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
5346
5347         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
5348         when passing valuetypes byref. Fixes #76502.
5349
5350 2005-10-19  Jackson Harper  <jackson@ximian.com>
5351
5352         * profiler.c: Don't put a . in front of types that are not in a
5353         namespace.
5354
5355 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
5356
5357         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
5358
5359 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
5360
5361         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
5362         #76436.
5363         (mono_marshal_get_ldflda_wrapper): Fix a warning.
5364
5365 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5366
5367         * assembly.c metadata-internals.h icall.c: Define an additional
5368         parameter for mono_assembly_name_parse_full, so we can avoid creating
5369         S.R.AssemblyName.Version when no version info wasn't passed.
5370         
5371 2005-10-09  Miguel de Icaza  <miguel@novell.com>
5372
5373         * class.c (mono_type_get_full_name): Reimplement method that was
5374         removed. 
5375
5376         * image.c: Some docs
5377
5378 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
5379
5380         * profiler.c (output_newobj_profile): Fix printing of Total memory
5381         on x86.
5382
5383 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5384
5385         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
5386
5387 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
5388
5389         * threads.c: remove debug output.
5390
5391 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5392
5393         * threads.c (mono_thread_manage): Fix crashes if more than 64
5394         threads need to be aborted. Hopefully fixes #75899.
5395
5396         * assembly.c (mono_stringify_assembly_name): New helper function.
5397
5398         * class.c: Use mono_stringify_assembly_name instead of the similar
5399         static function.
5400
5401         * assembly.h assembly.c: Add support for calling a postload search 
5402         hook if an assembly cannot be loaded.
5403
5404         * appdomain.c: Register new search hooks which call the AssemblyResolve
5405         events in AppDomain. Fixes #75231
5406
5407 2005-10-07  Martin Baulig  <martin@ximian.com>
5408
5409         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
5410         methods without debug info.
5411
5412 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
5413
5414         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
5415         wrappers.
5416
5417 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5418
5419         * file-io.c: now that we return symlinks, use lstat and, when the file
5420         is a symbolic link, stat, to get the file attributes. Also avoid the
5421         conversion to/from utf16/external.
5422
5423 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
5424
5425         * class.c (mono_class_layout_fields): Compute klass->has_references
5426         correctly if an embedded valuetype is not yet initialized. Fixes
5427         #76331.
5428
5429 2005-10-04  Martin Baulig  <martin@ximian.com>
5430
5431         * metadata.c
5432         (mono_metadata_load_generic_param_constraints): New public
5433         function; splitted the constraints loading out from
5434         mono_metadata_load_generic_params().
5435
5436         * class.c (mono_class_create_from_typedef): Call
5437         mono_metadata_load_generic_param_constraints() after setting up
5438         the type and creating our parent; fixes #75329.
5439
5440 2005-10-04  Martin Baulig  <martin@ximian.com>
5441
5442         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
5443         non-dynamic parent classes.
5444
5445 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
5446
5447         * file-io.c : win32 build fix (ETXTBSY seems not found).
5448
5449 2005-10-04  Martin Baulig  <martin@ximian.com>
5450
5451         * reflection.c
5452         (mono_image_get_methodspec_token): Make the cache actually work;
5453         fixes #75974.
5454
5455 2005-10-04  Martin Baulig  <martin@ximian.com>
5456
5457         * class.c (mono_class_name_from_token): Removed the unneccessary
5458         `MonoGenericContext *' argument.
5459
5460 2005-10-04  Martin Baulig  <martin@ximian.com>
5461
5462         * loader.c
5463         (method_from_methodspec): Make the caching work again; fixes the
5464         performance regression from #76262.
5465
5466 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5467
5468         * file-io.c:
5469         * file-io.h:
5470         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
5471         GetFileSystemEntries that performs the same work but without going
5472         into io-layer, locking, etc.
5473
5474 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
5475
5476         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
5477         ThreadState_Stopped as well. Fixes #76047.
5478
5479 2005-09-29  Martin Baulig  <martin@ximian.com>
5480
5481         * class.c
5482         (inflate_generic_context): If the new context has a `gmethod', set
5483         its `container' that that gmethod's `container'.
5484
5485         * metadata.c
5486         (mono_metadata_parse_generic_param): Simplify things;
5487         `generic_container = generic_context->container;' is just fine.
5488
5489         * loader.c (method_from_methodspec): Code cleanups.
5490
5491 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
5492
5493         * decimal.c: fix warning (and let gcc generate correct
5494         code on ARM with optimizations).
5495
5496 2005-09-28  Martin Baulig  <martin@ximian.com>
5497
5498         * loader.c
5499         (method_from_memberref): Added `MonoGenericContext *class_context'
5500         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
5501         (method_from_methodspec): If we're a memberref, use the enclosing
5502         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
5503
5504 2005-09-28  Martin Baulig  <martin@ximian.com>
5505
5506         * object.c (mono_runtime_invoke_array): Added support for
5507         MONO_TYPE_GENERICINST; fixes #75917.
5508
5509 2005-09-27  Martin Baulig  <martin@ximian.com>
5510
5511         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
5512         `k->byval_arg.type' to determine the actual type.
5513
5514         * loader.c (method_from_methodspec): Removed some hacks.
5515
5516 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
5517
5518         * class-internals.h (mono_field_is_deleted): Do the test for
5519         rtspecialname before we check the actual name of the field. This
5520         prevents us from dereferencing a pointer into the string table,
5521         saving us from accessing a few pages
5522
5523         * *.c: Replace the use of {Enter,Leave}CriticalSection with
5524         macros. This will allow a deadlock debugger to easily be plugged
5525         in.
5526
5527 2005-09-27  Martin Baulig  <martin@ximian.com>
5528
5529         * loader.c (method_from_methodspec): Create a "signature"
5530         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
5531
5532 2005-09-27  Martin Baulig  <martin@ximian.com>
5533
5534         * class.c
5535         (inflate_generic_class): Correctly set the new context's
5536         container.
5537
5538         * loader.c
5539         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
5540         instead of a `MonoGenericContext *'.
5541         (mono_method_signature_full): Take a `MonoGenericContainer *'
5542         instead of a `MonoGenericContext *'.
5543
5544         * metadata.c
5545         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
5546         instead of a `MonoGenericContext *'.
5547         (mono_metadata_parse_method_signature_full): Likewise.
5548
5549 2005-09-26  Martin Baulig  <martin@ximian.com>
5550
5551         * class.c
5552         (mono_class_from_generic_parameter): Set `klass->generic_container'
5553         (mono_class_from_generic_parameter): Likewise.
5554         (mono_bounded_array_class_get): We inherit the generic container
5555         from the element class.
5556
5557         * loader.c
5558         (find_method, find_method_in_class): Take a `MonoGenericContext *'
5559         argument rather than computing it here.
5560         (method_from_memberref): Correctly set the generic context before
5561         parsing the signature.  Fixes #75681.
5562
5563 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
5564
5565         * object.c (mono_class_has_special_static_fields): Fix warnings.
5566
5567 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5568
5569         * assembly.c: Add parse_public_key function, to
5570         par the public keys. Also added mono_assembly_name_parse_full,
5571         to define it the parsed key should be freed or not.
5572         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
5573         to parse a long format assembly name.
5574         * metadata-internals.h: Keep mono_assembly_name_parse_full as
5575         private, since calling it to preserve the key requires
5576         freeing it manually.
5577         
5578 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
5579
5580         * locales.c : removed HAVE_ICU part.
5581
5582 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
5583
5584         * object.c (mono_class_create_runtime_vtable): Avoid calling 
5585         field_is_special_static if the klass has no special static fields.
5586
5587         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
5588         (MonoCachedClassInfo): Likewise.
5589
5590         * object.c (mono_class_has_special_static_fields): New helper function.
5591
5592 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5593
5594         * class.c (mono_class_create_from_typedef): Don't call 
5595         interfaces_from_typedef_full for enums.
5596         (mono_class_create_from_typedef): Compute the base types of enums directly
5597         without calling mono_class_setup_fields ().
5598         (mono_class_find_enum_basetype): New helper function.
5599
5600         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
5601         one place inside the string heap.
5602         
5603 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
5604
5605         * class.c: locking fixes, code cleanups, some docs added.
5606         Allocate some data structures in the image mempool.
5607
5608 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5609
5610         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
5611         the example code.
5612         
5613 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
5614
5615         * class-internals.h, class.c, reflection.c: reduce memory taken by
5616         MonoClass.
5617
5618 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
5619
5620         * metadata.c, metadata.h, loader.h: documentation updates, code and
5621         API cleanups.
5622
5623 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5624
5625         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
5626         the example code.
5627
5628         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
5629         page faults caused by the runtime while reading metadata.
5630
5631 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5632
5633         * socket-io.c: the field names were changed 3 months ago and no one
5634         realized until bug #76077 got filed!
5635
5636 2005-09-20  Martin Baulig  <martin@ximian.com>
5637
5638         * icall.c (assembly_icalls): Removed some unused debugger icalls.
5639
5640 2005-09-20  Martin Baulig  <martin@ximian.com>
5641
5642         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
5643         write the rank into the class entry.
5644
5645 2005-09-20  Martin Baulig  <martin@ximian.com>
5646
5647         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
5648
5649 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
5650
5651         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5652
5653         * icall.c (custom_attrs_defined_internal): New icall.
5654
5655         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
5656         function.
5657         (mono_custom_attrs_construct_by_type): New helper function.
5658
5659 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
5660
5661         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
5662         terminate the resulting string. Fixes #76123.
5663
5664 2005-09-16  Martin Baulig  <martin@ximian.com>
5665
5666         * mono-debug.c
5667         (mono_debug_add_method): Ignore inflated methods for the moment.
5668
5669 2005-09-14  Martin Baulig  <martin@ximian.com>
5670
5671         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
5672
5673 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
5674
5675         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
5676         return a success/failure indication.
5677         (mono_metadata_interfaces_from_typedef_full): Ditto.
5678         (get_constraints): Ditto.
5679
5680 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
5681
5682         * marshal.c (emit_marshal_array): Fix handling of null arrays.
5683         
5684         * marshal.c (emit_marshal_array): Add support for returning string
5685         arrays from delegates. Fixes #76063.
5686
5687         * marshal.c: Use the emit_ldloc/stloc macros where possible.
5688
5689 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
5690
5691         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
5692         icall.
5693
5694 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
5695
5696         * reflection.c icall.c: Fix after mono_get_exception_type_load
5697         signature change.
5698
5699         * assembly.c (mono_assembly_get_assemblyref): New helper function.
5700         (mono_assembly_load_reference): Use the new helper.
5701
5702         * class-internals.h (MonoLoaderError): New structure containing 
5703         information about type loading errors.
5704
5705         * class-internals.h loader.c: Add APIs to store per-thread loader
5706         error information.
5707
5708         * loader.c class.c: Set the loader error if needed.
5709
5710         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
5711
5712 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
5713
5714         * decimal.c: fixed to handle the broken ARM fp format.
5715
5716 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
5717
5718         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
5719         broken.
5720
5721 2005-09-06  Martin Baulig  <martin@ximian.com>
5722
5723         * domain.c (supported_runtimes): Added v2.0.50727.
5724
5725 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
5726
5727         * culture-info.h: reduce the size of some structures.
5728
5729 2005-09-05  Martin Baulig  <martin@ximian.com>
5730
5731         Reflect latest API changes in the August CTP.
5732
5733         * icall.c
5734         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
5735         ("MonoType.HasGenericArguments"): Removed.
5736         ("MonoMethod.BindGenericParameters"): Renamed to
5737         "MakeGenericMethod".
5738         ("MethodBuilder.BindGenericParameters"): Renamed to
5739         "MakeGenericMethod".    
5740
5741 2005-09-05  Martin Baulig  <martin@ximian.com>
5742
5743         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
5744
5745 2005-09-05  Martin Baulig  <martin@ximian.com>
5746
5747         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5748
5749         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
5750         generic_container is non-NULL.
5751
5752 2005-09-05  Martin Baulig  <martin@ximian.com>
5753
5754         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5755
5756         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
5757
5758 2005-08-29  Michal Moskal  <malekith@nemerle.org>
5759
5760         * reflection.c (encode_locals,
5761         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
5762         for large generic types.
5763
5764 2005-09-05  Martin Baulig  <martin@ximian.com>
5765
5766         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5767
5768         * class.c (mono_dup_array_type): New public method.
5769         (mono_metadata_signature_deep_dup): New public method.
5770         (dup_type): Correctly duplicate array and function types.
5771
5772 2005-09-05  Martin Baulig  <martin@ximian.com>
5773
5774         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5775
5776         * reflection.c (get_default_param_value_blobs): Handle generic types
5777         and generic methods.
5778
5779 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
5780
5781         * class.c: Fixed error reporting (method/class were inversed) for 
5782         inheritance demands.
5783         * security-manager.c|h: Added the AppDomain when calling the managed
5784         System.Security.SecurityManager.InheritanceDemand method.
5785
5786 2005-09-01  Raja R Harinath  <rharinath@novell.com>
5787
5788         * reflection.c (encode_marshal_blob): 'marshaltype' and
5789         'marshaltyperef' are alternate sources for the custom marshaler
5790         name.
5791
5792 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
5793
5794         * class.c: fix creation of array classes with rank == 1
5795         (patch by Ankit Jain <jankit@novell.com>).
5796
5797 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
5798
5799         * object.c: fix check for creating the bound data for arrays vs
5800         szarrays.
5801
5802 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5803
5804         * object.c: configuration file name is now based on the executable name,
5805         not the image name. Fixes bug #75931.
5806
5807 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
5808
5809         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
5810         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
5811
5812 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
5813
5814         * rand.c: Use wincrypt.h instead of WinCrypt.h.
5815
5816 2005-08-24  Ankit Jain  <jankit@novell.com>
5817             Raja R Harinath  <rharinath@novell.com>
5818
5819         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
5820           called by it recursively.
5821           (mono_class_init): Remove special case in pending_init handling, since it's
5822           superseded by the fix to mono_class_from_typeref.
5823
5824 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
5825
5826         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
5827         BROKEN_THREAD_START stuff.
5828
5829 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
5830
5831         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
5832         trampoline.
5833
5834         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
5835         
5836         * object.c (mono_delegate_ctor): Replace the original function address with
5837         a delegate trampoline.
5838
5839 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
5840
5841         * icall.c: add boolean argument to base64_to_byte_array and 
5842         InternalFromBase64String to control whether a whitespace-only string
5843         is allowed (or should casue a FormatException to be thrown). We need
5844         this as the behavior has changed between MS.NET 1.x and 2.0, and we
5845         to match the MS behaviour in both profiles.
5846         * appdomain.c: Bump corlib version.
5847
5848 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5849
5850         This patch implements a big portion of publisher policy
5851         support, used to bind assembly versions and redirect
5852         one assembly from version A to version B.
5853
5854         * assembly.c:
5855         New GSList loaded_assembly_bindings, for storing the cached
5856         assembly bindings.
5857         (assembly_binding_maps_name): New static function for checking if a 
5858         assembly binding information maps an assembly name.
5859         (mono_assembly_binding_info_free): New function for freeing
5860         assembly binding information resources.
5861         (get_publisher_policy_info): New static function for retrieving 
5862         assembly binding information from a MonoImage.
5863         (compare_versions): New static function for comparing an assembly
5864         binding information data and the version of an assembly name.
5865         (check_policy_versions): New static function for checking if an
5866         assembly binding info mapping an assembly name is valid for it.
5867         (mono_assembly_load_publisher_policy): New static function for
5868         loading the 'policy.major.minor.MyAssembly' image for an assembly
5869         with an assembly name 'aname'.
5870         (mono_assembly_bind_version): New static function for updating
5871         assembly redirection.
5872         (mono_assembly_apply_binding): New static function for applying
5873         assembly binding.
5874         (search_binding_loaded): New static function for searching 
5875         loaded assembly binding infos in the cache domain.
5876         (mono_assembly_load_full): Don't apply assembly binding for
5877         reflection only assemblies.
5878
5879         * metadata-internals.h: Add MonoAssemblyBindingInfo,
5880         which contains information about assembly binding. Also
5881         declare signature for mono_config_parse_publisher_policy ()
5882         function, used to retrieve pub policy info.
5883         
5884         * mono-config.c:
5885         (publisher_policy_start): New static function used to parse publisher 
5886         policy config files.
5887         (publisher_policy_parser): New static MonoParseHandler containing 
5888         the functions used when parsing config files.
5889         (mono_config_parse_publisher_policy): New function for parsing
5890         publisher policy files.
5891         
5892 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
5893
5894         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
5895
5896         * marshal.c (mono_delegate_free_ftnptr): Ditto.
5897
5898         * object.c (mono_get_addr_from_ftnptr): New helper function.
5899
5900         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
5901
5902         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5903
5904 2005-08-19  Dick Porter  <dick@ximian.com>
5905
5906         * threads.c, threads.h, appdomain.c, appdomain.h,
5907         profiler-private.h, monitor.c, object.c, object-internals.h,
5908         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
5909         store the thread ID, so it can hold a 64 bit value if needed.
5910
5911 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
5912
5913         * reflection.c (mono_reflection_create_dynamic_method): Store the
5914         handle class into the method references as well so ldtoken works in
5915         dynamic methods.
5916
5917         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
5918         types.
5919
5920 2005-08-19  Ankit Jain <jankit@novell.com>
5921
5922         Fix #75847.
5923         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
5924           here rather than using the method signature of a arbitrary function
5925           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
5926           two arguments.
5927           Hack done with Harinath.
5928
5929 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5930
5931         * threadpool.c: disable printing stack traces when we get a exception
5932         in a threadpool thread. I need to do more testing to figure out which
5933         cases actually print this. Fixes bug #75828.
5934
5935 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5936
5937         * icall.c: there might be ignored whitespace after the last '='. This
5938         fixes length computation and bug #75840.
5939
5940 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
5941
5942         * assembly.c (mono_assembly_load_full): Consider .exe extension as
5943         well. Fixes #75809.
5944
5945         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
5946         #75784.
5947         
5948         * reflection.c (create_custom_attr_data): Ditto.
5949
5950 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
5951
5952         * locales.c, culture-info.h : removed RegionLCIDMap.
5953         * culture-info-tables.h : regenerated.
5954
5955 2005-08-16  Martin Baulig  <martin@ximian.com>
5956
5957         * class.c (mono_type_get_name_recurse): Small fix.
5958
5959 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5960
5961         * locales.c : indentation fixie.
5962
5963 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
5964
5965         * object-internals.h,
5966           locales.h,
5967           locales.c,
5968           culture-info.h,
5969           icall.c : added RegionInfo table support.
5970         * culture-info-table.h : regenerated for region support.
5971
5972 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
5973
5974         * reflection.c (resolve_object): handle all kinds of MonoMethod
5975         including generic ones
5976
5977 2005-08-12  Ankit Jain <jankit@novell.com>
5978
5979         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
5980           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
5981
5982 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
5983
5984         * process.c: Don't close a thread handle when it's NULL. This is a
5985         workaround for bug #75733.
5986
5987 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
5988
5989         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
5990
5991 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
5992
5993         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
5994
5995 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5996
5997         * threadpool.c: if a work item in the thread pool has a callback that
5998         catches a exception, don't propagate it after invoking the callback.
5999         Fixes bug #75336.
6000
6001 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
6002
6003         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
6004
6005         * class-internals.h (MonoCachedClassInfo): Add some new fields.
6006
6007         * class.c (mono_class_init): Load field info lazily in the AOT case.    
6008
6009         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
6010
6011 2005-08-03  Ankit Jain  <jankit@novell.com>
6012
6013         Fix #75683.
6014         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
6015           PInvoke calling convention is 0.
6016
6017 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
6018
6019         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
6020         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
6021
6022 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
6023
6024         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
6025         to handle threads not started by the GC (patch by Michael Meeks
6026         <michael.meeks@novell.com>).
6027
6028 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
6029
6030         * reflection.c: Make buffer used in emitting types larger for some
6031         big generic types (patch by Michal Moskal).
6032
6033 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
6034
6035         * mono-debug.c: Fix some (not all) alignment problems.
6036
6037 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6038
6039         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
6040         Invoke mono_image_load_from_data_full passing the refonly
6041         parameter.
6042
6043         * assembly.c
6044         (mono_assembly_open_from_bundle): Add the refonly argument, 
6045         in order to pass it to other methods it calls to.
6046         (do_mono_assembly_open): Add the refonly argument, in order 
6047         to pass it to other methods it calls to.
6048         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
6049         the refonly parameter to it.
6050
6051         * image.c: Add loaded_images_refonly_hash and
6052         loaded_images_refonly_guid_hash to cache the reflection
6053         only loaded images.
6054         (mono_images_init): Initialize the hash tables used for
6055         caching the reflection only images.
6056         (load_modules): Invoke mono_image_open_full passing the refonly
6057         parameter to load the modules the correct way.
6058         (build_guid_table): Add the refonly argument, to re-build the 
6059         correct hash table.
6060         (do_mono_image_open): Added the refonly argument, in order to
6061         define it for the loaded image.
6062         (mono_image_loaded_full): New function, which receives an
6063         additional parameter to look for the image in the refonly or
6064         non-refonly section.
6065         (mono_image_loaded): Updated, using mono_image_loaded_full.
6066         (mono_image_loaded_by_guid_full): The same case that happens
6067         with mono_image_loaded_full.
6068         (mono_image_loaded_by_guid): Likewise.
6069         (register_image): Use the ref_only variable inside MonoImage
6070         to decide in which hash table store the current image.
6071         (mono_image_open_from_data_full): Rename
6072         mono_image_open_from_data to mono_image_open_from_data_full,
6073         adding the refonly argument, to define the ref_only variable 
6074         inside MonoImage.
6075         (mono_image_open_from_data): Return 
6076         mono_image_open_from_data_full.
6077         (mono_image_open_full): Rename mono_image_open to
6078         mono_image_open_full, receiving the new refonly argument,
6079         to pass it to inner methods.
6080         (mono_pe_file_open): Update this function, to open
6081         a MonoImage as a non-refonly image.
6082         (mono_image_close): Use the refonly variable inside
6083         MonoImage to remove the image from the correct caches.
6084
6085         * image.h: Add the signatures of mono_image_open_full,
6086         mono_image_open_from_data_full, mono_image_loaded_full,
6087         mono_image_loaded_by_guid_full.
6088
6089         * metadata-internals.h: Add the ref_only field to 
6090         MonoImage.
6091         
6092 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6093
6094         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
6095         Fix the last behavior, which used to load the assemblies and
6096         extract MonoReflectionAssemblyName information, instead of
6097         extract it from the metadata tables. Needed for Reflection
6098         Only assemblies.
6099         
6100 2005-07-29  Martin Baulig  <martin@ximian.com>
6101
6102         * mono-debug-debugger.c
6103         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
6104         not initialized.
6105
6106         * mono-debug.c
6107         (mono_debug_address_from_il_offset): Check whether we have
6108         debugging support before attempting to take the lock.
6109         (mono_debug_source_location_from_address): Likewise.
6110         (mono_debug_source_location_from_il_offset): Likewise.
6111         (mono_debug_il_offset_from_address): Likewise.
6112         (mono_debug_address_from_il_offset): Likewise.
6113
6114 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
6115
6116         * class.c (mono_class_from_name_case): Add support for dynamic images.
6117         Fixes #75650.
6118
6119         * object.c (mono_class_compute_gc_descriptor): Add a workaround
6120         for #75479.
6121
6122 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6123         
6124         * reflection.c (mono_method_get_object): Fix warning.
6125
6126 2005-07-28  Martin Baulig  <martin@ximian.com>
6127
6128         * mono-debug.c
6129         (mono_debug_add_wrapper): Also write the wrapper type.
6130
6131 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6132
6133         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
6134         
6135         * class.c (mono_class_init): Avoid reading nested classes if the AOT
6136         data indicates the class has none.
6137
6138 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
6139
6140         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
6141         loader lock with the debugger lock. Prevents deadlocks for beagle.
6142
6143         Beagle can now run on an smp box for a weekend without any
6144         issues. Woohoo!
6145
6146 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
6147
6148         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
6149         in a module. Fixes #75629.
6150
6151 2005-07-26  Martin Baulig  <martin@ximian.com>
6152
6153         * mono-debug.c (mono_debug_add_wrapper): New static method.
6154         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
6155         interncall or a wrapper.
6156
6157         * mono-debug.h (MonoDebugWrapperData): New public typedef.
6158         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
6159         (MONO_DEBUGGER_VERSION): Bump to 51.
6160
6161         * mono-debug-debugger.c
6162         (mono_debugger_add_type): Removed this empty function.
6163         (mono_debugger_add_method): Likewise.
6164
6165 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
6166
6167         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
6168         before accessing method->slot.
6169
6170 2005-07-21  Jb Evain  <jbevain@gmail.com>
6171
6172         * reflection.c (method_encode_clauses/class): Handle filters clauses.
6173         Fixes #75010.
6174
6175 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
6176
6177         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
6178         #75587.
6179
6180 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
6181
6182         * image.h image.c: Add mono_image_get_guid () API function.
6183
6184 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
6185
6186         There were issues when multiple threads tried to load
6187         assemblies. A deadlock was created between assemblies_mutex and
6188         mono_domain_assemblies_lock. This fixes the issue by making the
6189         assembly ref counting be lock free. See bug 75586.
6190         
6191         * image.c (mono_image_close): The add ref function here was using
6192         Interlocked operations while the unref was using a mutex and a
6193         --. I don't think this was ever a bug that would be exposed in a
6194         non-pendantic way (ie, by an embedder doing a ref on one thread
6195         and an unref on another), but for the sake of correctness, this is
6196         now Interlocked.
6197
6198         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
6199         (mono_assembly_load_reference): Call mono_assembly_addref rather
6200         than touching the refcount ourselves.
6201         (mono_assembly_close): Use InterlockedDecrement to unref the
6202         assembly. Don't acquire the lock unless it is actually needed.
6203
6204 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6205
6206         * class.c (mono_class_layout_fields): Fix calculation of has_references
6207         for generic types.
6208
6209 2005-07-12  Martin Baulig  <martin@ximian.com>
6210
6211         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6212
6213         * metadata.c
6214         (mono_type_hash): Provide better hashing for generic instances.
6215         (mono_generic_inst_hash): Improve hashing.
6216         (mono_generic_class_hash): Likewise.
6217
6218         * reflection.c (mymono_metadata_type_hash): Improve hashing for
6219         generic instances.
6220
6221 2005-07-12  Martin Baulig  <martin@ximian.com>
6222
6223         * reflection.c (mono_reflection_create_runtime_class): Remove the
6224         hack for generic type definitions and non-`Run' assemblies.
6225         (mono_reflection_bind_generic_parameters): Also use
6226         `klass->wastypebuilder' to check for TypeBuilders.
6227
6228 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6229
6230         * class.c (mono_class_layout_fields): Fix calculation of has_references
6231         for generic types.
6232
6233         * class.c (inflate_generic_class): Fix a leak.
6234         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
6235         for generic types.
6236
6237 2005-07-11  Martin Baulig  <martin@ximian.com>
6238
6239         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
6240         on error.
6241
6242 2005-07-11  Martin Baulig  <martin@ximian.com>
6243
6244         * loader.c (find_method): Also lookup in
6245         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
6246
6247 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6248
6249         * appdomain.c (mono_domain_unload): Don't free the error message
6250         before passing it to mono_get_exception_...
6251
6252         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
6253         
6254 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
6255
6256         * threads.c: try to better guess an available RT signal (bug #75387).
6257
6258 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6259
6260         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
6261         and CACHE_OBJECT.
6262
6263 2005-07-07  Martin Baulig  <martin@ximian.com>
6264
6265         * class.c (mono_type_get_name_full): Return NULL for
6266         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
6267         fixes #75408.
6268
6269 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6270
6271         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
6272         exit the appdomain as well being aborted.
6273
6274         * threadpool.c: Create all threadpool threads inside the root appdomain, and
6275         change back to the root domain after calling managed code. This enables
6276         appdomains using threadpools to be unloaded.
6277
6278 2005-07-07  Martin Baulig  <martin@ximian.com>
6279
6280         * class-internals.h
6281         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
6282         into `MonoDynamicGenericClass' since we only need it for dynamic
6283         types.
6284
6285         * reflection.c (mono_class_bind_generic_parameters): We don't need
6286         to compute the `parent' here.
6287
6288 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
6289
6290         * culture-info-table.h : regenerated.
6291
6292 2005-07-06  Martin Baulig  <martin@ximian.com>
6293
6294         * icall.c
6295         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
6296
6297         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
6298
6299 2005-07-06  Martin Baulig  <martin@ximian.com>
6300
6301         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
6302         we're doing a signature-only comparision; fixes #74945.
6303
6304 2005-07-06  Martin Baulig  <martin@ximian.com>
6305
6306         * class-internals.h (MonoGenericClass): Moved some things out into
6307         a new `MonoInflatedGenericClass' type.  
6308         (MonoInflatedGenericClass): New type; the `klass' of a
6309         `MonoGenericClass' is now computed lazyly in
6310         mono_get_inflated_generic_class().      
6311
6312         * class.c (mono_get_inflated_generic_class): New public function.
6313         (mono_class_inflate_generic_method): Removed the unused
6314         `MonoClass *' argument.
6315         (setup_generic_vtable): Don't call mono_get_inflated_method() on
6316         all the methods.
6317         (mono_class_create_generic): Make this static and merge it with
6318         mono_class_create_generic_2(); we're now called automatically from
6319         mono_get_inflated_generic_class().
6320
6321         * loader.c (mono_method_signature): Call
6322         mono_get_inflated_method() here.
6323
6324 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
6325
6326         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
6327         type of fields with RVA.
6328
6329         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
6330         for this pseudo class.
6331         (my_mono_class_from_generic_parameter): Likewise.
6332         (mono_class_init): Allow interfaces to have cctors.
6333
6334 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6335
6336         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
6337         lazily for AOT methods.
6338
6339 2005-07-05  Martin Baulig  <martin@ximian.com>
6340
6341         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
6342         returns FALSE for a successful match, not TRUE.
6343
6344 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6345
6346         * loader.c (mono_method_get_index): Optimize this a bit.
6347
6348 2005-07-04  Martin Baulig  <martin@ximian.com>
6349
6350         * class.c
6351         (class_compute_field_layout): Move the check for generic type
6352         definitions into mono_class_layout_fields().  Fixes #74684.
6353         (mono_class_from_generic_parameter): Correctly compute
6354         `klass->parent'; fixes #75457.
6355
6356         * reflection.c (register_assembly, register_module): Make sure
6357         `domain->rejobject_hash' is already created.
6358
6359 2005-07-02  Martin Baulig  <martin@ximian.com>
6360
6361         * class-internals.h
6362         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
6363         `MonoDynamicGenericClass'.      
6364
6365 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
6366
6367         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
6368         returned by a field getter is null, since null is a valid value.
6369
6370 2005-07-01  Martin Baulig  <martin@ximian.com>
6371
6372         * reflection.c (mono_reflection_generic_class_initialize): Update
6373         the `dgclass->fields [i].parent' to the correct class.
6374         (mono_image_get_fieldref_token): Use the declaring type, not the
6375         reflected type.
6376
6377 2005-07-01  Martin Baulig  <martin@ximian.com>
6378
6379         * loader.c (find_method): Also look in the interfaces; fixes #75429.
6380
6381 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
6382
6383         * threads.c (thread_cleanup): assert that thread != NULL
6384         (wait_for_tids_or_state_change): We were using the wrong variable
6385         when accessing wait->threads. `i' was always out of the bounds of
6386         the array.
6387
6388 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6389
6390         * loader.c: map user32 and kernel32 to libMonoSupportW
6391
6392 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
6393
6394         * appdomain.c (unload_thread_main): Mark this as WINAPI.
6395
6396 2005-06-28  Martin Baulig  <martin@ximian.com>
6397
6398         * loader.c (method_from_methodspec): Fix #75334.
6399
6400 2005-06-28  Martin Baulig  <martin@ximian.com>
6401
6402         Fix #74953 - Arrays now implement the generic IList<T> interface
6403         on the 2.0 platform.
6404
6405         * class-internals.h (MonoDefaults): Added `generic_array_class'.
6406
6407         * reflection.c (mono_class_bind_generic_parameters): New public
6408         function; similar to mono_reflection_bind_generic_parameters(),
6409         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
6410
6411         * domain.c (mono_init_internal): Try to initialize.
6412         `mono_defaults.generic_array_class' here; this'll only succeed if
6413         we're using the 2.0 corlib.
6414
6415         * icall.c
6416         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
6417         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
6418         (mono_lookup_internal_call): Added support for nested classes.
6419
6420         * loader.c
6421         (mono_get_method_from_token): Set `result->signature->pinvoke' if
6422         we're an interncall and have generic arguments.
6423
6424         * class.c
6425         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
6426         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
6427         instance of System.Array.InternalArray<T> for arrays, so they
6428         implement the generic IList<T> interface.
6429
6430 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
6431
6432         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
6433         (chastamar@yahoo.com). Fixes #75374.    
6434
6435 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
6436
6437         * culture-info-table.h: regenerated.
6438
6439 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6440
6441         * icall.c: handle spaces correctly for base64 strings.
6442
6443 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
6444
6445         * *.c: Kill some warnings.
6446
6447 2005-06-23  Duncan Mak  <duncan@novell.com>
6448
6449         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
6450         that this builds on Solaris 10 (x86).
6451
6452 2005-06-23  Martin Baulig  <martin@ximian.com>
6453
6454         * class.c
6455         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
6456         generic type definitions.
6457
6458 2005-06-23  Martin Baulig  <martin@ximian.com>
6459
6460         Fix #75331.
6461
6462         * metadata.c (mono_class_get_overrides): Renamed to
6463         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
6464         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
6465         pass it to mono_get_method_full().
6466
6467 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
6468
6469         * reflection.c (mono_reflection_create_runtime_class): take the
6470         mono_domain_lock in this method. Prevents deadlocks
6471
6472 2005-06-22  Martin Baulig  <martin@ximian.com>
6473
6474         * loader.c (method_from_methodspec): Fix #75330.
6475
6476 2005-06-22  Martin Baulig  <martin@ximian.com>
6477
6478         * reflection.c (type_get_qualified_name): Use
6479         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
6480         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
6481         argument; use it if we don't have an assembly name.
6482
6483 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
6484
6485         * object.c: In mono_message_init, set "copy out" flag for in
6486         parameters with the [Out] flag.
6487
6488 2005-06-21  Martin Baulig  <martin@ximian.com>
6489
6490         * class.c
6491         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
6492         and MONO_TYPE_PTR.
6493
6494 2005-06-21  Martin Baulig  <martin@ximian.com>
6495
6496         * class.c (mono_class_init): Don't initialize `class->fields' for
6497         generic instances since they're initialized again in
6498         compute_field_layout(). 
6499         (compute_field_layout): Set the field's `generic_info' here; fix
6500         #75320. 
6501
6502 2005-06-21  Martin Baulig  <martin@ximian.com>
6503
6504         * class-internals.h
6505         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
6506
6507         * metadata.c (mono_metadata_generic_method_equal): Also
6508         distinguish the `generic_class'; fixes #75334.
6509
6510 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6511
6512         * domain.c:
6513         * appdomain.c:
6514         * domain-internals.h:
6515         * reflection.c: 'domain_assemblies' field is now protected by its own
6516         lock. Don't call into managed code to run the AssemblyLoad event if we
6517         now there are no registered delegates for it.
6518
6519 2005-06-20  Martin Baulig  <martin@ximian.com>
6520
6521         * class.c (mono_class_is_assignable_from): Use a custom version of
6522         mono_class_has_parent() to make things work for generic instances;
6523         fix #75300.
6524
6525 2005-06-20  Martin Baulig  <martin@ximian.com>
6526
6527         * loader.c (method_from_methodspec): Apply a patch from
6528         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
6529
6530 2005-06-20  Martin Baulig  <martin@ximian.com>
6531
6532         * class.c (mono_class_init): Reverted Zoltan's last change; it
6533         breaks generics.
6534
6535 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
6536
6537         * threads.c (wait_for_tids_or_state_change): Add missing locking.
6538
6539 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6540
6541         * socket-io.c: fix the index in the socket array for writable/error
6542         sockets. Fixes bug #75306.
6543
6544 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
6545
6546         * class.c (mono_class_init): Allow interfaces to have static ctors.
6547
6548 2005-06-17  Martin Baulig  <martin@ximian.com>
6549
6550         * loader.c (method_from_methodspec): Use `context->container' when
6551         parsing the `gmethod->inst'.
6552
6553 2005-06-17  Martin Baulig  <martin@ximian.com>
6554
6555         * class.c (mono_type_get_name_recurse): Don't add the assembly
6556         name for type arguments.
6557
6558 2005-06-15  Martin Baulig  <martin@ximian.com>
6559
6560         * reflection.c (mono_image_get_inflated_method_token): Encode
6561         correct klass; fixes #75260.
6562
6563 2005-06-13 Michal Moskal <malekith@nemerle.org>
6564
6565         * icall.c: Make GetCorrespondingMethod/Constructor take
6566         MonoReflectionMethod method not MonoMethod. Removed
6567         MonoType.GetCorrespondingField, and make
6568         MonoGenericType.GetCorrespondingField take name not
6569         MonoClassField.
6570
6571 2005-06-13  Michal Moskal <malekith@nemerle.org>
6572
6573         * reflection.c (field_encode_signature, encode_locals):
6574          Make sizes of buffers for types larger (for big generic types).
6575          (create_generic_typespec,
6576          mono_reflection_sighelper_get_signature_local,
6577          mono_reflection_sighelper_get_signature_field):
6578          Add asserts for too small buffers.
6579
6580 2005-06-15  Martin Baulig  <martin@ximian.com>
6581
6582         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
6583         if our parent is not a dynamic type.
6584
6585 2005-06-15  Martin Baulig  <martin@ximian.com>
6586
6587         * class-internals.h (MonoTypeNameFormat): New enum.
6588
6589         * class.c
6590         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
6591         (mono_type_get_full_name): Removed.
6592         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
6593         argument instead of the boolean's.
6594
6595         * icall.c (ves_icall_System_MonoType_getFullName):
6596         Added `gboolean assembly_qualified'.    
6597
6598         * reflection.h
6599         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
6600
6601         * reflection.c (mono_reflection_parse_type): Parse the new type
6602         name format.
6603
6604 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6605
6606         * icall.c: no need to convert from utf16 to utf8 and then back again
6607         after the call to GetLogicalDrives.
6608
6609 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6610
6611         * icall.c: frombase64. Fix problems exposed by new tests.
6612
6613 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6614
6615         * icall.c: added internal calls for converting char [] and strings in
6616         base64 into byte [].
6617
6618 2005-06-10  Martin Baulig  <martin@ximian.com>
6619
6620         * class.c (mono_class_create_generic_2): Read the nested classes
6621         from the metadata rather than from `gklass->nested_classes' since
6622         `gklass' might not be initialized yet.
6623
6624 2005-06-09  Duncan Mak  <duncan@novell.com>
6625
6626         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
6627         all public headers. Fixes #74919.
6628
6629 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
6630
6631         * domain.c: The key for proxy_vtable_hash is now a pointer
6632         array. Added new GHashFunc and GCompareFunc functions for this.
6633
6634         * class.h: The list of interfaces in MonoRemoteClass is known in
6635         advance and can't grow (we create a new MonoRemoteClass if needed),
6636         so now the interface array can be allocated together with
6637         MonoRemoteClass.
6638         
6639         * object.c: Added a new method create_remote_class_key.
6640         Fixed mono_remote_class so it does not depend on
6641         mono_upgrade_remote_class.
6642         Removed extend_interface_array.
6643         Added new method clone_remote_class(), which makes a copy of a remote
6644         class and adds a new interface or class to it.
6645         mono_upgrade_remote_class() now creates a new remote class (or gets
6646         it from the cache) if an vtable upgrade is needed. In this way
6647         we make sure that other objects sharing the same remote class
6648         don't get the new vtable with unwanted interfaces.
6649         
6650         * object-internals.h:
6651         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
6652         
6653         * marshal.c: Track changes in mono_upgrade_remote_class().
6654
6655 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
6656         * icall.c: Add runtime methods for obtaining members of inflated
6657         class, which were created from supplied non-inflated members. It
6658         is used in internal Get{Method,Constructor,Field} methods in
6659         System.Type
6660
6661 2005-06-09  Martin Baulig  <martin@ximian.com>
6662
6663         * reflection.c
6664         (mono_reflection_bind_generic_method_parameters): Fix #75169.
6665
6666 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6667         * reflection.c (mono_image_basic_init): Define
6668         Version in MonoDynamicAssembly. 
6669         
6670 2005-06-08  Martin Baulig  <martin@ximian.com>
6671
6672         Fix #75136.
6673
6674         * loader.c
6675         (mono_method_signature_full): New public method; takes a
6676         `MonoGenericContext *'.
6677         (find_method): Use mono_method_signature_full() and pass the
6678         klass'es context to it.
6679
6680         * class.c (mono_class_is_inflated_method): Use
6681         mono_method_signature_full() and pass the context to it.
6682
6683 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
6684
6685         * object.c: add proper locking in mono_remote_class_vtable(),
6686         fixes possible memory corruption.
6687
6688 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
6689
6690         * marshal.c (mono_remoting_marshal_init): set
6691         initialized after initialization.
6692
6693 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
6694
6695         * locales.c : hush.
6696
6697 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
6698
6699         * object.c (extend_interface_array): fix really silly
6700         memory corrupting / comparison bug.
6701
6702 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6703
6704         * reflection.c: Functions added to support the creation
6705         of CustomAttributeData, which includes Attribute data
6706         used by ReflectionOnly methods.
6707
6708         * reflection.h:  mono_reflection_get_custom_attrs_data and
6709          mono_custom_attrs_data_construct added (functions exposed).
6710
6711          * icall.c: Added mono_reflection_get_custom_attrs_data
6712          as icall.
6713         
6714 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
6715
6716         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
6717         lupus's request.
6718
6719 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
6720
6721         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
6722
6723         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
6724         dynamic DllImportAttribute.
6725
6726         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
6727         dynamic DllImportAttribute.
6728
6729         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
6730         Fixes #75162.
6731
6732 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6733
6734         * threads.c: avoid segfault when an unstarted thread is aborted.
6735
6736 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
6737
6738         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
6739         Returns the name and version of the runtime for reporting.
6740
6741 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6742
6743         * appdomain.c: bump corlib version.
6744         * object-internals.h: new field in MonoReflectionAssembly.
6745
6746 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6747
6748         * object-internals.h: Carlos forgot to add this field.
6749
6750 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6751
6752         * icall.c: Added create_version to create instances
6753         of Version of MonoReflectionAssemblyName. This change helps
6754         the AssemblyName tests to keep running fine.
6755         
6756 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
6757   
6758         * object.c (mono_method_return_message_restore): A somehow less
6759         intrusive fix for #75138.
6760
6761 2005-06-03  Raja R Harinath  <rharinath@novell.com>
6762
6763         * object.c (mono_method_return_message_restore): Fix computation
6764         of expected number of out args.
6765
6766 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6767
6768         * reflection.c (mono_image_get_method_info): Fix the case when the
6769         charset is empty.
6770
6771 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
6772
6773         * object.c: Added missing null check in
6774           mono_method_return_message_restore.
6775
6776 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6777
6778         * reflection.c (mono_image_get_method_info): Handle the case when
6779         dllentry is empty.
6780
6781 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
6782
6783         * object.c: When creating the vtable for a proxy, take into account
6784         all inherited interfaces, not only the ones registered in
6785         iclass->interfaces. This fixs bug #74996.
6786         Also, in mono_method_return_message_restore, verify that the array
6787         of out args has the expected lengh.
6788
6789 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6790
6791         * socket-io.c: update the timeout in Poll when the call is interrupte.
6792
6793 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6794
6795         * socket-io.c: support abort/suspend in Select_internal after last
6796         change.
6797
6798 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6799
6800         * threadpool.c: remove warning.
6801
6802 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6803
6804         * icall.c:
6805         * socket-io.[ch]: Select_internal uses poll() now when available, thus
6806         removing the 1024 limit from select(). Runtime part of the fix for
6807         bug #71203.
6808
6809 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6810
6811         * socket-io.c: when resolving the addresses for the same
6812         host returned by gethostname(), get the local IPs from the interface
6813         list. Loopback addresses are discarded if the are interfaces up with
6814         non-loopback ones. Fixes bug #63265.
6815
6816 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
6817
6818         * appdomain.c, verify.c, object-internals.h, reflection.c:
6819         bumped corlib number to 36, and added new extra_flags field
6820         to ReflectionMethodBuilder and friends.  Fixes #75060.
6821
6822 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
6823
6824         * gc.c: register a new weak link only if the object is non-null
6825         (fixes bug#75047).
6826
6827 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6828
6829         * culture-info.h : short time pattern too.
6830
6831 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6832
6833         * culture-info.h : expand long time pattern string length.
6834
6835 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6836
6837         * culture-info-table.h : update (more French date format; #72788).
6838
6839 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
6840
6841         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
6842         the method is static. Fixes #75029.
6843
6844 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
6845
6846         * reflection.c: Update the table_idx field of method builders after
6847         saving the module, since it can change. This is a workaround for
6848         bug #74914. 
6849
6850 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6851
6852         * culture-info-table.h : update (additional French date format).
6853
6854 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
6855
6856         * icall.c (ves_icall_type_Equals): Revert last change.
6857         
6858         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
6859
6860         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
6861
6862 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
6863
6864         * class-internals.h: Added executioncontext_class field to 
6865         MonoDefaults structure.
6866         * domain.c: Cache System.Threading.ExecutionContext class in 
6867         mono_defaults.
6868         * object.c: Capture the ExecutionContext for asynchroneous calls in
6869          mono_async_result_new.
6870         * object-internals.h: Added execution_context and original_context 
6871         fields to MonoAsyncResult. Added execution_context to MonoThread.
6872         * security-manager.c|.h: Added mono_get_context_capture_method to 
6873         return the capture method (if required by the security manager or by
6874         the framework version used).
6875         * threadpool.c: Apply capture (if present) ExecutionContext in 
6876         mono_async_invoke and revert to original context after it completes.
6877
6878 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
6879
6880         * culture-info-table.h : updated (real hacky solution for zh-CHT).
6881
6882 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
6883
6884         * culture-info-table.h : zh-CHT related workaround.
6885
6886 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6887
6888         * marshal.c (emit_marshal_custom): Add some error checking and call the
6889         methods in the ICustomMarshaler interface. Fixes #74875.
6890         
6891         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
6892         native->managed wrappers.
6893
6894 2005-05-12  Martin Baulig  <martin@ximian.com>
6895
6896         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
6897         here and use the loader lock.
6898
6899         * mono-debug.c: Properly lock when the debugger is not attached.
6900         (mono_debug_init): Release the initial lock if we're not running
6901         in the debugger.
6902
6903 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6904
6905         * marshal.c (emit_marshal_custom): Pass through NULL values without
6906         calling the custom marshalling routines.
6907
6908         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
6909         conversion in structures. Fixes #74882.
6910
6911 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
6912
6913         * culture-info-table.h : zh-* cultures were missing.
6914
6915 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
6916
6917         * threads.c: Added a new event background_change_event which is signaled
6918         when a thread changes its background mode.
6919         Moved here several checks previously done in managed code. The checks
6920         require the thread lock, and using the thread lock in managed code
6921         can result in deadlocks.
6922         Merged Start_internal and Thread_internal into a single method. Now 
6923         Thread_internal does all work of creating and starting a thread.
6924         Added icalls for setting and getting the state of the object. Moved from
6925         managed code to avoid locking there.
6926         Added wait_for_tids_or_state_change() which is called instad of
6927         wait_for_tids when waiting for non-backround threads to end. This method
6928         will return if one of the threads ends or the background_change_event
6929         is signaled.
6930         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
6931         the background mode. This method signals the background_change_event
6932         event.
6933         * icall.c:
6934         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
6935         removed Start_internal.
6936         
6937 2005-05-11  Martin Baulig  <martin@ximian.com>
6938
6939         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
6940         to order of some fields to get proper alignment on 64-bit machines.
6941
6942 2005-05-11  Martin Baulig  <martin@ximian.com>
6943
6944         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
6945         changes as they're broken and completely fuck up the debugger.
6946
6947         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
6948
6949 2005-05-10  Martin Baulig  <martin@ximian.com>
6950
6951         * reflection.c (mono_reflection_generic_class_initialize): Don't
6952         call mono_class_setup_parent() here.
6953
6954 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6955
6956         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
6957         send/receive timeout use an integer in milliseconds. We were using a
6958         struct timeval.
6959
6960 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6961
6962         * locales.c:
6963         (internal_get_cultures): reserve the first slot of the array for the
6964         InvariantCulture, which will be filled in managed code.
6965
6966 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
6967
6968         * reflection.c (mono_image_fill_module_table): Initialize the
6969         GENERATION field as well.
6970
6971 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6972
6973         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
6974         Monitor.Enter on the object.
6975
6976 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
6977
6978         * threads.c: Enable the wait for running threads when exiting.
6979         * icall.c: Suspend all threads before exiting.
6980
6981 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
6982
6983         * assembly.c (mono_assembly_load_reference): Fix warning.
6984
6985 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6986
6987         * threadpool.c: changed the default number of threads per cpu. From now
6988         on, the default will be 20 + (5 * number of cpus) instead of 50.
6989
6990 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
6991
6992         * loader.c (mono_method_get_signature_full): Add locking here.
6993
6994 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
6995
6996         * appdomain.c: Moved methods for parsing and freeing assembly
6997         names to assembly.c.
6998         * assembly.c, domain-internals.h: Created public methods for parsing
6999         assembly names. Fixed mono_assembly_load_with_partial_name:
7000         it now finds the best match, taking into account the version,
7001         token and culture specified in the partial name. Also return
7002         the latest version if no version information is specified.
7003
7004 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
7005
7006         * threadpool.c: replace check for SocketAsyncCall class.
7007
7008 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7009
7010         * threadpool-internals.h:
7011         * Makefile.am: added threadpool-internals.h
7012
7013         * threadpool.c: call mono_unhandled_exception on exceptions not handled
7014         that happen in threadpool threads (tested on MS).
7015         (mono_thread_pool_remove_socket): new function that dispatch any pending
7016         AIO call on a socket that is closing. By now only epoll really needs it,
7017         as select/poll wake up when the socket closes.
7018
7019
7020         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
7021
7022 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
7023
7024         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
7025
7026 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
7027
7028         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
7029
7030 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
7031
7032         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
7033         has an abort request, convert it into a suspend request.
7034
7035 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
7036
7037         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
7038         warning for the usage of `UnmanagedFunctionPointerAttribute' which
7039         is not supported yet.
7040
7041 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7042
7043         * image.c: register assemblies loaded from data (bundles) in the loaded
7044         assemblies hash. Fixes bug #74772.
7045
7046 2005-04-29  Martin Baulig  <martin@ximian.com>
7047
7048         * class.c (mono_type_get_name_recurse): Update to the new naming
7049         schema from the latest .NET 2.x beta2.
7050         (mono_class_setup_vtable_general): If we're a generic instance,
7051         copy the vtable from our generic type definition and inflate all
7052         the methods in it.
7053
7054         * loader.c (find_method): Update to the new naming schema from the
7055         latest .NET 2.x beta2.
7056
7057 2005-04-29  Raja R Harinath  <harinath@gmail.com>
7058
7059         * class.c (mono_class_init): Add a mono_loader_unlock to the
7060         #74734 fix.
7061
7062 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
7063
7064         * icall.c (ves_icall_System_Environment_Exit): Remove the 
7065         suspend_all_other_threads () call for the time being, since it can hang.
7066
7067         * threads.c (mono_thread_manage): Similarly, disable the waiting for
7068         the background threads to exit, since it can also hang.
7069
7070         * class.c (mono_class_init): Applied patch from Ankit Jain 
7071         (radical@gmail.com). Avoid pending init errors when a field refers
7072         to a nested class using a typeref. Fixes #74734.
7073
7074         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
7075         this for dynamic modules.
7076
7077 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7078
7079         * threads.c: don't wait for threads that are in the process of aborting
7080         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
7081         and waiting for background threads to finish. This makes xsp and
7082         mod-mono-server exit without random length delays and/or hangs.
7083
7084 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7085
7086         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
7087
7088 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
7089
7090         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
7091         dynamic types to prevent infinite loops. Fixes #74727.
7092
7093         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
7094         ..._is_assignable_to.
7095
7096 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
7097
7098         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
7099
7100 2005-04-25  Martin Baulig  <martin@ximian.com>
7101
7102         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
7103
7104         * domain.c
7105         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
7106
7107         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
7108
7109         * reflection.c (build_compressed_metadata): Set metadata header
7110         version to 2.0.
7111
7112 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
7113
7114         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
7115         number into an integral and a decimal part. Fixes #70473.
7116
7117         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
7118
7119 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
7120
7121         * culture-info-table.h : reflected the latest locale-builder output.
7122
7123 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7124
7125         * threadpool.c: check for SuspendRequested too when deciding if
7126         mono_thread_interruption_checkpoint should be called.
7127
7128 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7129
7130         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
7131         * threads.c: remove interruption_mutex and use Interlocked instead. When
7132         suspending all the threads, wait for all the suspended events at once.
7133         If we're shutting down and get an APC that is going to be queued,
7134         call mono_thread_execute_interruption immediately, as the thread might
7135         be sleeping on a pthread condition or mutex.
7136
7137         * icall.c: call mono_runtime_set_shutting_down before suspending the
7138         threads.
7139
7140         Fixes bug #74693. And now xsp is happier when exiting.
7141
7142 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
7143
7144         * loader.c (mono_stack_walk): Fix #74690.
7145
7146 2005-04-22  Martin Baulig  <martin@ximian.com>
7147
7148         * mono-debug.h (MonoDebugMethodJitInfo): Added
7149         `MonoDebugMethodJitInfo *jit'.
7150
7151         * mono-debug.c (mono_debug_read_method): Cache the
7152         MonoDebugMethodJitInfo in `address->jit'.
7153         (mono_debug_free_method_jit_info): New public method.
7154
7155 2005-04-22  Martin Baulig  <martin@ximian.com>
7156
7157         * class.c (mono_class_is_assignable_from): Disallow
7158         type parameter -> interface.
7159
7160 2005-04-21  Dick Porter  <dick@ximian.com>
7161
7162         * threads.c (mono_thread_create): Turn an assertion into an error.
7163
7164 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
7165
7166         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
7167         
7168         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
7169         Fix some gcc 4.0 warnings.
7170
7171 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
7172
7173         * file-io.c: fix alt dir separator char on unix systems
7174         and cleanup (fixes bug #71214).
7175
7176 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
7177
7178         * marshal.c: Use CALLVIRT instead of CALL when dispatching
7179         a call to a remote domain, since the method may be an
7180         interface method in the client domain. This fixes bug #74192.
7181
7182 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7183
7184         * threadpool.c: recv/send are now performed before going back to managed
7185         code to save one transition.
7186
7187 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7188
7189         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
7190
7191         * metadata/threadpool.c: removed hack to workaround the bug above.
7192
7193         Fixes bug #74618.
7194
7195 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
7196
7197         * reflection.c reflection.h: Fix handling of parameter defaults in
7198         dynamic methods. Also fixes handling of parameter attributes.
7199         Fixes #74609.
7200
7201         * mono-debug.c (mono_debug_close_image): Fix warning.
7202
7203 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7204
7205         * socket-io.h: replaced old unused field with new 'blocking'.
7206         * threadpool.c: restore socket blocking state on windows(tm).
7207
7208 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
7209
7210         * icall.c: don't return the codebase in the AssemblyName[] returned by
7211         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
7212         * object-internals.h: Removed FIXME (fields were presents) and fixed
7213         versioncompat declaration.
7214
7215 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7216
7217         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
7218         not closed, so don't cleanup when it happens.
7219
7220 2005-04-13  Chris Toshok  <toshok@ximian.com>
7221
7222         * mono-debug-debugger.h: change prototype for
7223         mono_debugger_lookup_type.
7224
7225         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
7226         this function, although it should probably be named
7227         mono_debugger_init_type.
7228
7229 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7230
7231         * threadpool.c: fix non-AIO case.
7232
7233 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
7234
7235         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
7236         the built-in profiler to measure just JIT compilation times.
7237
7238 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7239
7240         * threadpool.c: the epollfd might be closed by another thread at
7241         any time, so ignore EBADF at treat it as a "we're closing" sign.
7242
7243 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7244
7245         * threadpool.c: release the semaphores with a count equals to the number
7246         of working threads in both IO and regular pools. Fixed typo that messed
7247         up the count of IO pool threads. Don't initialize the pipe handles if
7248         we're using epoll.
7249
7250 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7251
7252         * threadpool.c: some systems don't like a NULL when deleting the socket
7253         from epoll.
7254
7255 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7256
7257         * threadpool.c: fix semaphore allocation.
7258
7259 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7260
7261         * threadpool.c: added epoll() based implementation for asynchronous IO
7262         that is used instead of the default poll() when available.
7263         It can be disabled by setting MONO_DISABLE_AIO.
7264
7265 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7266
7267         * threadpool.c: windows needs 'closesocket' and instead of returning
7268         0 when the stream is closed while in select, it returns -1. Fixes bug
7269         #74573.
7270
7271 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
7272
7273         * class.c (class_compute_field_layout): Fix the regression caused by
7274         the previous try.
7275
7276 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7277
7278         * threadpool.c: separate pool for socket async. IO.
7279         * threadpool.h: mono_max_worker_threads is not a global any more.
7280
7281 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
7282
7283         * class.c (class_compute_field_layout): Fix #74549.
7284
7285 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7286
7287         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
7288         use 2 connected sockets instead.
7289
7290 2005-04-08  Miguel de Icaza  <miguel@novell.com>
7291
7292         * mono-config.c: Add new entry point for mkbundle
7293         mono_config_parse_memory. 
7294
7295 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7296
7297         * threadpool.c: removed another unused function.
7298
7299 2005-04-08  Ankit Jain  <radical@corewars.org>
7300
7301         * reflection.c (get_default_param_value_blobs): Add 'types'
7302         parameter to get the types encoded in the constant table.
7303         (mono_param_get_objects): Use the type from the constant table,
7304         not the type of the parameter, when creating default values.
7305         Handle null default values correctly.
7306
7307 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7308
7309         * file-io.c:
7310         * file-io.h:
7311         * threadpool.c:
7312         * threadpool.h:
7313         * icall.c:
7314         * socket-io.c: removed dead code for async IO.
7315
7316 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7317
7318         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
7319
7320         * threadpool.c: intercept socket async. calls and pass them to a thread
7321         that is polling and dispatching the job items to the threadpool as
7322         socket become ready. Fixes bugs #71217, #71933.
7323
7324         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
7325         between char and short/ushort arrays.
7326
7327         * socket-io.c: remove dead code.
7328
7329 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7330
7331         * locales.c,
7332           icall.c : removed InternalToUpper_Comp() and
7333           InternalToLower_Comp().
7334
7335 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7336
7337         * char-conversions.h : The tables were incorrectly generated. Should
7338           be generated against invariant culture.
7339
7340 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
7341
7342         * object.c (mono_runtime_invoke_array): Fix return value when 
7343         passing pre-created valuetype objects to ctors.
7344
7345         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
7346         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
7347         Fixes #74338.
7348
7349 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
7350
7351         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
7352         only used with --security and hides the wrong corlib version error.
7353
7354 2005-03-30  Joshua Tauberer  <tauberer@for.net>
7355
7356         * class.c: Changed mono_class_name_from_token so that types
7357         outside of a namespace don't have an initial period.  Improved
7358         the g_warning message used in _mono_class_get when loading
7359         fails.
7360         * assembly.c: In mono_assembly_load_reference, when an assembly
7361         can't be found, "No such file or directory" is misleading and
7362         unhelpful because a few paths were checked for the presence of
7363         the assembly.  When that happens (ENOENT), display a nicer
7364         message indicating the directories that were searched.  In all
7365         cases, the warning is made easier to read for non-hackers.
7366
7367 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
7368
7369         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
7370         project/solution.
7371         * appdomain.h|domain.c: Removed inline from functions.
7372         * appdomain.c: Reduced warnings when compiling on windows.
7373         * icall.c: Fixed output_debug declaration to gunichar2*.
7374         * mono-config.c: Reduced warnings when compiling on windows.
7375         * rand.c: Added missing "windows.h". Added missing return value.
7376         * rawbuffer.c: Added missing winsock2.h for windows.
7377         * sysmath.h: Added mono-compiler.h header to allow/ease 
7378         compilation with non-GCC compilers.
7379         * threads.c: Fixed declarations to compile with VS.NET C compiler.
7380         Removed cast warnings.
7381
7382         Adapted from the work of J Lothian (for VC6).
7383
7384 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
7385
7386         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
7387         from default_path.
7388
7389 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
7390
7391         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
7392         the 2.0 profile.
7393
7394 2005-03-27  Raja R Harinath  <harinath@gmail.com>
7395
7396         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
7397         has to be in $(exec_prefix).  $(prefix) is for arch-independent
7398         stuff, and it would probably use $(prefix)/share rather than
7399         $(prefix)/lib.
7400
7401 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7402
7403         * console-io.c: added 2 includes that might be missing.
7404
7405 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
7406
7407         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
7408         profile.
7409
7410         * reflection.c (create_custom_attr): Allocate the params array using
7411         alloca so it gets GC tracking.
7412
7413 2005-03-23  Chris Toshok  <toshok@ximian.com>
7414
7415         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
7416         out some spew.
7417
7418 2005-03-24  Raja R Harinath  <rharinath@novell.com>
7419
7420         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
7421         changes to pick up any changes in prefix, etc.
7422
7423 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
7424
7425         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
7426         
7427         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
7428         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
7429
7430 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
7431
7432         * class-internals.h object-internals.h class.c reflection.c: Extend the
7433         mono_lookup_dynamic_token () function to return the class of the
7434         token as well. 
7435
7436         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
7437         well. Fixes #73848.
7438
7439 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
7440
7441         * security-manager.c: Skip inheritance checks for intra-corlib
7442         class inheritance and method overrides. This skips a lot of checks
7443         and (anyway) permissions cannot work until corlib is loaded.
7444
7445 2005-03-23  Martin Baulig  <martin@ximian.com>
7446
7447         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
7448         MONO_TYPE_GENERICINST.  
7449
7450 2005-03-23  Martin Baulig  <martin@ximian.com>
7451
7452         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
7453
7454 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7455
7456         * class.c: added locking comments to some functions.
7457         Cache the interface offsets arrays (saves about 20 KB
7458         of runtime memory in a typical app).
7459         Reduce the time overhead in mono_class_setup_supertypes ().
7460
7461 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
7462
7463         * icall.c: speedup and fix leaks in GetMethodsByName and
7464         GetPropertiesByName.
7465
7466 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7467
7468         * reflection.c: some locking fixes.
7469
7470 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7471
7472         * metadata.c: added missing break in case statement.
7473
7474 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
7475
7476         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7477         typedbyref return values. Fixes #73941.
7478
7479 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7480
7481         * security-manager.c|h: Added demandunmanaged method and 
7482         suppressunmanagedcodesecurity class to MonoSecurityManager.
7483         Renamed aptc class to allowpartiallytrustedcallers.
7484
7485 2005-03-17  Martin Baulig  <martin@ximian.com>
7486
7487         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
7488
7489 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7490
7491         * file-io.c: disabled file async. IO using aio_*. It uses the
7492         threadpool now. Workaround for bug #73718.
7493
7494 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7495
7496         * assembly.h, mono-config.c: added code to deal with bundled configs
7497         for bundled assemblies.
7498
7499 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
7500
7501         * *.c, private.h: cleanup, removing old private.h header file.
7502
7503 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
7504
7505         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
7506         and throw_on_unmappable_char attributes.
7507
7508 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
7509
7510         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
7511         _ProcessName_internal.
7512
7513 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
7514
7515         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
7516         #73631.
7517
7518         * icall.c threads.c threads-types.h: Remove slothash icalls as they
7519         are no longer used.
7520
7521 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
7522
7523         * object.c (compute_class_bitmap): Add support for generics. Fixes
7524         #73527.
7525
7526 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
7527
7528         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
7529
7530 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7531
7532         * filewatcher.c: commented out the code for windows watcher, as we don't
7533         use it (we use the managed implementation instead).
7534
7535 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
7536
7537         * object-internals.h (MonoThread): Remove 'unused1' field.
7538
7539         * appdomain.c: Bump corlib version.
7540
7541         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
7542
7543         * reflection.c (mono_reflection_create_runtime_class): Remove the
7544         AssemblyBuilder.Save optimization since it causes too many problems.
7545
7546 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
7547
7548         * exception.c|h: Added mono_get_exception_reflection_type_load to
7549         create a ReflectionTypeLoadException object.
7550         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
7551         to return NULL is a InheritanceDemand fails during reflection. Updated
7552         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
7553         ReflectionTypeLoadException if an InheritanceDemand fails during 
7554         reflection. Added icall mapping for GetLinkDemandSecurity.
7555         * security-manager.c|h: Added ves_icall_System_Security_
7556         SecurityManager_GetLinkDemandSecurity internal call to return the
7557         class and methods permissions set for a LinkDemand. Removed unused
7558         fields in MonoSecurityManager.
7559
7560 2005-03-10  Martin Baulig  <martin@ximian.com>
7561
7562         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
7563         it's a generic instance.
7564
7565 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
7566
7567         * reflection.c (mono_get_object_from_blob): Applied patch from
7568         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
7569
7570         * class.c (mono_class_is_assignable_from): Another try at fixing 
7571         #73469 without breaking anything.
7572
7573 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
7574
7575         * class.c: (mono_class_is_assignable_from): Revert the last changes
7576         since they don't work with generics.
7577         
7578         * class.c (mono_class_is_assignable_from): Fix build bustage.
7579
7580         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
7581         the managed IsAssignableFrom method. Fixes #73469.
7582
7583         * reflection.c (mono_reflection_call_is_assignable_from): New helper
7584         function.
7585
7586 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
7587
7588         * object.c (mono_load_remote_field_new): Fix returning uninitialized
7589         memory when the remoting callback does not sets the out arguments.
7590         Fixes #73007.
7591
7592         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
7593         by mistake.
7594
7595         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
7596
7597         * object-internals.h (MonoStackFrame): Sync with managed object layout.
7598
7599         * appdomain.c: Bump corlib version.
7600
7601 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
7602
7603         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
7604         function.
7605
7606         * threads.c (mono_thread_attach): Detect threads which are not started
7607         by the GC pthread wrappers.
7608
7609 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
7610
7611         * icall.c: Added new icall for RNG.
7612         * rand.c|h: Added new icall to open the RNG. This allows to share a 
7613         single handle on Linux to access /dev/urandom and fix #73183.
7614
7615 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
7616
7617         * object.c: setting the new vtable in a transparent proxy object must
7618         not change the GC descriptor.
7619
7620 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7621
7622         * object.c: fixed compilation without GCJ support.
7623         * reflection.c: for runtime-created types ensure klass->has_references
7624         is correct (bug #73215).
7625
7626 2005-03-02  Martin Baulig  <martin@ximian.com>
7627
7628         * class.c (mono_class_is_assignable_from): Make this work if
7629         `oklass' is a generic instance; fixes #72831.
7630
7631 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
7632
7633         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
7634         with hasthis set.
7635         
7636         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
7637
7638         * marshal.c: Reorganize native->managed marshalling code to also use
7639         the emit_marshal_... functions.
7640
7641 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
7642
7643         * object.c: typed allocs have issues with bitmap sizes > 30,
7644         so check for max_set >= 30.
7645
7646 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
7647
7648         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
7649         managed code. Fixes #73012.
7650
7651         * metadata.h (MonoMarshalSpec): Add elem_mult field.
7652
7653         * metadata.c reflection.c: Load/Emit elem_mult as well.
7654         
7655         * metadata.h (MonoMarshalSpec): Add comment.
7656
7657         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
7658
7659         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
7660         num_elem to -1 if not given.
7661
7662         * object-internals.h (MonoReflectionMarshal): Add has_size field.
7663
7664         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
7665         given values.
7666
7667 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
7668
7669         * null-gc.c (mono_gc_free_fixed): Was not compilable.
7670
7671 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
7672
7673         * reflection.c (encode_marshal_blob): Encode param_num field as well.
7674
7675         * object-internals.h (MonoReflectionMarshal): Add param_num field.
7676
7677 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
7678
7679         * object.c: generalized the reference bitmap creation
7680         and added hooks for the new GC.
7681         * class-internals.c: removed the gc_bitmap field from MonoClass.
7682
7683 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7684
7685         * domain.c: help the compiler to produce better code
7686         in mono_jit_info_table_find ().
7687
7688 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7689
7690         * object.c: make all allocations look typed.
7691
7692 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7693
7694         * socket-io.c: load Mono.Posix if it's not loaded already
7695         (fixes bug#73033).
7696
7697 2005-02-24  Martin Baulig  <martin@ximian.com>
7698
7699         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
7700         * reflection.c (dup_type): Likewise.
7701
7702 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
7703
7704         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
7705         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
7706
7707 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7708
7709         * domain.c, threads.c, object-internals.h: make the critical thread
7710         local vars use the fast access mode (even when we're compiled in
7711         a lib). Provide accessors to be used by the jit during codegen.
7712
7713 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7714
7715         * appdomain.c: Changed hook functios behavior to include
7716         support for the reflection only assemblies. Some icalls were changed
7717         to support the mentioned assemblies too. Signatures of static methods
7718         try_assembly_resolve and real_load now have an additional parameter:
7719         refonly.
7720
7721         * assembly.c: General changes to mono_assembly_ methods to support
7722         reflection only api. Functions mono_assembly_open, mono_assembly_load,
7723         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
7724         suffix, to support an additional gbool parameter to specify whether
7725         the assembli is reflection only or not. Created some new hook functions 
7726         to add support for reflection only assemblies. Signatures of static 
7727         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
7728         have now an additional parameter: refonly.
7729
7730         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
7731         indicating whether the assembly is reflection only or not.
7732
7733         * exception.c: Add mono_get_exception_invalid_operation.
7734
7735         * icall.c: Throw an InvalidOperationException when trying to invoke
7736         a property/method/event, or trying to set/get the value of a field.
7737         Also add an icall to retrieve the ref_only flag to the
7738         MonoReflectionAssembly.
7739
7740 2005-02-23  Chris Toshok  <toshok@ximian.com>
7741
7742         Part of fix for #72827.
7743         * mono-debug.c (mono_debug_add_method): add lexical block data to
7744         the info we write.  Kind of a hack at the moment - we copy the
7745         lexical block info from the MonoDebugMethodInfo to the
7746         MonoDebugMethodJitInfo here, before writing it.
7747         (mono_debug_read_method): read the lexical block info.
7748
7749         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
7750
7751         * debug-mono-symfile.h: add lexical block support.
7752
7753         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
7754         support.
7755
7756 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7757
7758         * loader.c (mono_lookup_pinvoke_call): Fix warning.
7759
7760         * object.c (mono_runtime_free_method): Call mono_free_method () and
7761         put the TODOs there.
7762
7763         * loader.c (mono_free_method): Free up most memory allocated for 
7764         dynamic methods.
7765
7766 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7767
7768         * reflection.c: properly flag a Type argument to a
7769         named custom attr value (bug #72248).
7770
7771 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7772
7773         * reflection.c: reduce code duplication in named custom
7774         attribute encoding.
7775
7776 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
7777
7778         * reflection.c: properly encode custom attrs of type object
7779         (bug #72649).
7780
7781 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7782
7783         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
7784
7785 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
7786
7787         * socket-io.c: load System.dll if it's not loaded already
7788         (bug #72850 and #70477).
7789
7790 2005-02-21  Martin Baulig  <martin@ximian.com>
7791
7792         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7793         generic instances.
7794
7795 2005-02-21  Martin Baulig  <martin@ximian.com>
7796
7797         * reflection.c (mono_image_build_metadata): We also need to
7798         "fixup" the MethodImpl table after we computed the final method
7799         indices.  Call fixup_methodimpl() to do that.
7800         (fixup_methodimpl): New private method.
7801
7802 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7803
7804         * assembly.c: special case mscorlib.dll (bug#72536),
7805         patch from Carlos Alberto Cortez.
7806
7807 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
7808
7809         * threads-types.h threads.c: Fix build bustage.
7810
7811         * threads.c: Use a union for long<->double conversions.
7812
7813         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
7814         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
7815
7816         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
7817         containing the checkpoint call with NOT_TAKEN.
7818         
7819         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
7820         checkpoint before pushing the arguments, so they won't have to be
7821         spilled to stack.
7822
7823 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7824
7825         * domain.c, assembly.c, domain-internals.h: make some data
7826         const and relocation-free.
7827
7828 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
7829
7830         * object.c, appdomain.c, class-internals.h: introduce the
7831         MonoClassRuntimeInfo structure to hold the info needed to
7832         use a class at runtime. Made mono_class_vtable() lock-free
7833         for all the appdomains.
7834
7835 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
7836
7837         * metadata-internals.h, image.c: introduce a per-image mempool to
7838         be used for memory that has the same lifetime as the image.
7839
7840 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
7841
7842         * domain.c: In mono_init_internal(), instead of selecting the first
7843         runtime version supported by an executable, get a list of all
7844         supported versions and select the one for which an mscorlib exists
7845         (since even if the runtime supports a given version, it doesn't mean
7846         that the framework for that version is installed).
7847         Modified get_runtimes_from_exe to support this behavior.
7848         In supported_runtimes, added information about additional system
7849         assembly versions.
7850         
7851         * assembly.c: Added support for more than one system assembly version
7852         per runtime version. Updated the assembly list.
7853         In mono_assembly_remap_version, removed the initial version check,
7854         since we don't know to which version we need to compare until we
7855         get the version set on which the assembly is based.
7856         Moved the code for loading corlib into the new method
7857         mono_assembly_load_corlib(), so it can be used by the initialization
7858         code.
7859         
7860         * domain-internals.h: Updated data structures and added declaration
7861         for mono_assembly_load_corlib.
7862
7863 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7864
7865         * reflection.c (resolve_object): Fix the creation of the signature in 
7866         the SignatureHelper case.
7867
7868         * assembly.c (mono_assembly_remap_version): Fix binary search.
7869         
7870 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
7871  
7872         * class.c: Added inheritance check when a method is overloaded (from a
7873         virtual method or when implementing an interface) and when a class is
7874         inherited. Added functions to set a failure for a class and to 
7875         retreive the exception from a failure.
7876         * class-internals.h: Added fields to MonoClass to keep the exception
7877         information status for inheritance (or other exceptions) to be thrown
7878         later (i.e. not at load time).
7879         * object.c: Throw the inheritance SecurityException when a type is to 
7880         be created with either class or method inheritance violations.
7881         * reflection.c|h: Fix when getting declsec from a class. Removed 
7882         unrequired code for class. Improved sanity in parameter naming.
7883         * security-manager.c|h: Added functions to check for class and method
7884         inheritance.
7885
7886 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7887
7888         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
7889         and has_finalize in dynamic types as well.
7890
7891 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
7892
7893         * culture-info-table.h : fixed currency format for en-GB (and so on).
7894
7895 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
7896
7897         * gc.c: ensure the GC handles never have 0 as a value.
7898
7899 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7900
7901         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
7902         a pointer to a struct to unmanaged code. Fixes #72625.
7903
7904 2005-02-16  Martin Baulig  <martin@ximian.com>
7905
7906         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
7907
7908 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7909
7910         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
7911
7912 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7913
7914         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
7915
7916         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
7917         UnmanagedFunctionPointerAttribute, use it for determining calling convention
7918         etc. Fixes #71471.
7919
7920         * reflection.c (mono_custom_attrs_get_attr): New helper function.
7921
7922         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
7923
7924 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
7925
7926         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
7927         changes to make the current context a field in MonoThread.
7928
7929 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7930
7931         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
7932         the last change.
7933         
7934         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
7935         extracted from mono_marshal_get_native_wrapper.
7936
7937         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
7938         to create wrappers around native functions.
7939
7940         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
7941         delegates for arbitrary function pointers. Fixes #71472.
7942
7943 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7944
7945         * threads.c: cleaned up the code a little.
7946
7947 2005-02-15  Martin Baulig  <martin@ximian.com>
7948
7949         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
7950         the data table.
7951
7952         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
7953         allocate larger chunks if needed.
7954
7955 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7956
7957         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
7958         in by mistake.
7959
7960 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
7961
7962         * domain.c: keep the domains in an array and ensure the domain ids
7963         are kept small, so they can be used as indexes to domain-specific data
7964         with a small memory overhead.
7965
7966 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7967
7968         * icall.c: Handle byref types in Type icalls. Fixes #72544.
7969
7970 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
7971
7972         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
7973
7974 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
7975
7976         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
7977
7978         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
7979         values.
7980
7981         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
7982         
7983 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
7984
7985         * domain-internals.h: add the hashtable here.
7986
7987         * class-internals.h: Remove `info' from MonoMethod
7988
7989         * domain.c: Add a new hashtable, jit_trampoline_hash
7990
7991 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7992
7993         * object.c: don't set the value of static fields
7994         (fixes bug#72494).
7995
7996 2005-02-11  Martin Baulig  <martin@ximian.com>
7997
7998         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
7999         (mono_debug_add_method): Silently ignore the method if it's too big.
8000         (mono_debug_add_type): Likewise.
8001
8002 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
8003
8004         * threads.c, appdomain.c: remove #ifdefs from the code.
8005
8006 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
8007
8008         * metadata-internals.h: Added flags to MonoAssembly to cache the most
8009         common security informations. This allows us to stay in unmanaged code
8010         when doing LinkDemand and it's special cases (except for the first 
8011         time for initialization). The flags a very much used with --security.
8012         * reflection.c|h: Added code to get declarative security attributes 
8013         for LinkDemand and InheritanceDemand. This required to refactor the
8014         existing code for Demand.
8015         * security-manager.c|h: Added new method fields for the special cases
8016         of LinkDemand.
8017
8018 2005-02-10  Martin Baulig  <martin@ximian.com>
8019
8020         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
8021         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
8022
8023 2005-02-10  Martin Baulig  <martin@ximian.com>
8024
8025         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
8026         debugging code; this is almost a complete rewrite.
8027
8028         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
8029
8030 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8031
8032         * domain.c, object.h: expose mono_string_equal () and 
8033         mono_string_hash ().
8034         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
8035         it's implemented in managed code.
8036
8037 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8038
8039         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
8040         lo leak objects between appdomains.
8041
8042 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8043
8044         * assembly.c: old compilers compilation fix from 
8045         robertj@gmx.net (Robert Jordan).
8046
8047 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
8048
8049         * class-internals.h: Little reminder for the future.
8050
8051         * debug-helpers.c: Fix up wrapper_type_names
8052
8053 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8054
8055         * image.c, metadata-internals.h: when loading an image from a file,
8056         mmap all of it and use the same codepaths as when using a
8057         in-memory image: the code is simpler and we use less memory
8058         (both writable and readonly).
8059
8060 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8061
8062         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
8063         API to alloc runtime data structures that need to be tracked by the
8064         GC and contain pointers.
8065         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
8066         make the code more readable and eventually use a different GC.
8067
8068 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
8069
8070         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
8071         for out arguments.
8072         
8073 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
8074
8075         * object.c: In release_type_locks(), don't release the cctor lock
8076         if it has already been released. This fixes a crash in the
8077         thread5 test.
8078
8079 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8080
8081         * gc.c, marshal.c, icall.c: register a delegate for finalization
8082         only when the native function pointer has been allocated for it.
8083
8084 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8085
8086         * object.c: cleaned up some code, allocate objects that are
8087         pointer free with the atomic malloc variant. Allocate memory
8088         for static data from the mempool if it's pointer-free.
8089         Allocate the bounds array at the end of the array data, when needed.
8090         * object-internals.h, object.h: move a private function in a private
8091         header.
8092         * class.c: handle missing case in tracking references in fields.
8093
8094 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8095
8096         * class.c, class-internals.h: keep track if a type has
8097         reference fields in either the instance or static fields.
8098
8099 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
8100
8101         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
8102         and renamed to MonoRuntimeInfo. Added fields to store the expected
8103         framework assembly version. Changed mono_get_framework_version and
8104         mono_get_runtime_version for a single mono_get_runtime_info method.
8105         
8106         * assembly.c: Added method to remap system assembly versions to the
8107         current executing runtime version. Removed old mapping code.
8108         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
8109         
8110         * icall.c, reflection.c: Track api changes.
8111
8112 2005-02-06  Miguel de Icaza  <miguel@novell.com>
8113
8114         * loader.c (method_from_memberref): Improve error reporting,
8115         produce the class name instead of the typeref/typedef index. 
8116
8117 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
8118
8119         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
8120
8121 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8122
8123         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
8124         stdcall and charset name mangling.  Reorganize the code and add
8125         some tracing stuff.
8126
8127 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8128
8129         * monodiet.c: More iters!
8130
8131         * marshal.c: Iter usage.
8132
8133         * icall.c: Iter usage.
8134
8135         * object.c: Use iters.
8136
8137         * debug-helpers.c: More iters
8138
8139 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8140
8141         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
8142         under win32.
8143
8144 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8145
8146         * mono-debug-debugger.c: use iters
8147
8148         * class.c, class-internals.h: mono_class_setup_events is static
8149         now
8150
8151         * All callers: use iters
8152
8153 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8154
8155         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
8156         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
8157
8158 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8159
8160         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
8161
8162         * marshal.h: Add prototypes for ldfld/stfld_remote.
8163
8164         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
8165         this is called during startup.
8166         
8167 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
8168
8169         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
8170         MonoThreadsSync struct private in monitor.c. Changed the way
8171         MonoThreadsSync is allocated so it's faster and there is no
8172         need to keep track of it with a finalizer and it uses less memory.
8173         This also finally allows us to allocate mono objects as ptrfree when
8174         there are no reference fields.
8175
8176 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
8177
8178         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
8179         disappearing link to the GC interface and use them to simplify
8180         the gchandles code.
8181
8182 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8183
8184         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
8185         stfld_remote which call mono_load/store_field_new. This allows methods
8186         calling ldfld/stfld wrappers to be AOTed.
8187
8188         * console-io.c: Include sys/filio.h under solaris.
8189         
8190         * console-io.c: Include curses.h if needed correctly.
8191
8192 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8193         
8194         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
8195         method->klass as well.
8196
8197         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
8198
8199         * class.c (mono_class_init): Switch on lazy initialization of 
8200         methods.
8201
8202         * class.c (mono_class_get_finalizer): Handle the case when the 
8203         finalizer is inherited.
8204
8205 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8206
8207         * console-io.c: <curses.h> is needed by term.h on solaris.
8208
8209 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
8210
8211         * icall.c, class-internals.h, monodiet.c, class.c: Remove
8212         mono_class_setup_properties where possible. Remove this ftn from
8213         the header file, and make it static.
8214
8215 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8216
8217         * loader.c: Add missing setup_... call.
8218
8219         * class.c: Add missing setup_... calls.
8220
8221         * class.c (mono_class_init): Switch on lazy initialization of 
8222         the generic vtable.
8223         
8224         * class.c (mono_class_init): Fix generics broken by the recent changes.
8225
8226         * monodiet.c (handle_type): Add missing setup_... calls.
8227
8228         * class.c: Back out garbage in previous patch.
8229         
8230         * class.c: Add missing setup_... calls.
8231
8232         * class.c (mono_class_get_method_from_name_flags): Avoid calling
8233         mono_class_setup_methods () if possible.
8234
8235         * class-internals.h (MonoClass): Add 'has_cctor' flag.
8236
8237         * class-internals.h (MonoCachedClassInfo): New structure.
8238
8239         * class.c: Initialize properties and events fields of MonoClass lazily.
8240
8241         * class.c: Add infrastructure for lazily initializing the methods and
8242         vtable fields of MonoClass. Not yet used.
8243
8244         * class.c (mono_class_get_finalizer): New helper function.
8245
8246         * class.c: Add infrastructure for loading some class related data from
8247         an AOT file.
8248
8249         * object.c: Add infrastructure for initializing the vtable from data
8250         in the AOT file.
8251
8252         * gc.c (run_finalize): Use mono_class_get_finalizer ().
8253
8254         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
8255         appropriate initialization function before accessing parts of the
8256         MonoClass structure.
8257
8258         * marshal.c: Fix warnings.
8259         
8260         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
8261
8262         * mono-debug-debugger.c (get_exception_message): Use 
8263         mono_class_get_method_from_name_flags ().
8264
8265 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
8266
8267         * reflection.c, appdomain.c: Replace a few manual searches that
8268         Zoltan missed. (Paolo approved this part of my initial patch).
8269
8270 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
8271
8272         * profiler.c: disable recording statistical events at report time.
8273
8274 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8275
8276         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
8277         to byteswap arrays of enum values, too (bug #72080).
8278
8279 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
8280
8281         * appdomain.c (set_domain_search_path): Allow this to be called if
8282         domain->setup is not yet set.
8283
8284         * loader.c (mono_method_get_index): New helper function.
8285
8286         * loader.c reflection.c: Use mono_method_get_index ().
8287
8288         * class.c (mono_class_get_method_from_name_flags): New helper method.
8289
8290         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
8291         this.
8292
8293         * class.c (mono_class_get_cctor): New helper method.
8294
8295         * string-icalls.c object.c class.c marshal.c reflection.c: Use
8296         mono_class_get_method () to look up methods.
8297
8298 2005-02-01  Miguel de Icaza  <miguel@novell.com>
8299
8300         * console-io.c: Fix the build, this should work on Windows.
8301
8302 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
8303
8304         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
8305         be set to null to keep things valid
8306
8307 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8308
8309         * icall.c: added Console 2.0 icalls.
8310         * Makefile.am: added console-io.[ch]
8311         * console-io.[ch]: internal calls for Console 2.0 API.
8312
8313 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8314
8315         * class.c: make sure we consider all the interfaces
8316         when calculating max_interface_id (bug found by
8317         Jeroen Frijters running ikvm).
8318
8319 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
8320
8321         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
8322         valuetype fields to null.
8323
8324         * object.c (set_value): Ditto. Fixes #71669.    
8325
8326 2005-01-31  Martin Baulig  <martin@ximian.com>
8327
8328         * metadata.c (mono_metadata_has_generic_params): New public
8329         function; checks whether something is a generic method.
8330
8331 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
8332
8333         * appdomain.c: fix infinite recursion when adding assemblies.
8334
8335 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
8336
8337         * object.c: Fix small typo to return all items for Environment.
8338         GetCommandLineArgs.
8339
8340 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8341
8342         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
8343         reflection.c: more domain and assembly-unload related fixes
8344         and memory leaks plugs.
8345
8346 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
8347
8348         * 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.
8349
8350 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
8351
8352         * loader.c (mono_method_signature): Make this method lazy
8353         (mono_get_method_from_token): Don't computate the signature here.
8354
8355         Doing this saves quite a bit of memory. I got 90 kb on starting up
8356         monodoc. It should also save some disk reads on startup.
8357
8358         * *: MonoMethod->signature might be NULL now. You *MUST* use
8359         mono_method_signature.
8360
8361 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
8362
8363         * object.c (mono_runtime_get_main_args): Return an array from the
8364         current domain here. Fixes #71938.
8365
8366 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
8367
8368         * monitor.c: formatting changes to comply with the
8369         mono coding style and remove #ifdefs from the code.
8370
8371 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8372
8373         * metadata.c, private.h: remove some unneeded data
8374         and use a more compact representation for table schemas.
8375
8376 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
8377
8378         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
8379         to get a better distribution in hash tables.
8380         * *.c: use mono_aligned_addr_hash() where appropriate.
8381         * assembly.c: make var static.
8382
8383 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
8384
8385         * domain-internals.h: Put MonoJitInfo on a diet.
8386
8387         * domain.c: Fix a warning.
8388
8389 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8390
8391         * gc.c: rework the gc handles code to reuse handles
8392         when freed.
8393
8394 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8395
8396         * domain.c: fixed long standing bug in mono_string_equal() which
8397         was brought to light with the ldstr changes.
8398
8399 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
8400
8401         * reflection.c: Remove warning by adding missing include for marshal.h
8402
8403 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8404
8405         * domain.c, object.c: change the ldstr_table to hold
8406         MonoString* as keys: makes the runtime isinterned lookup
8407         faster and simplifies memory management.
8408
8409 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
8410  
8411         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
8412         possible to add imperative security checks before calling the icall.
8413         * reflection.c: Return security attributes on the original MonoMethod
8414         (and not the wrapped one). This fix permissions on icalls.
8415
8416 2005-01-25  Dick Porter  <dick@ximian.com>
8417
8418         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
8419         the check for mktime() support actually test the mktime() return
8420         value.  "Fixes" bug 71682, though the output is still different to
8421         MS.
8422
8423 2005-01-25  Martin Baulig  <martin@ximian.com>
8424
8425         * class.c (mono_class_is_assignable_from): Make this work for
8426         generic instances.
8427
8428 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
8429
8430         * marshal.c (mono_string_utf8_to_builder)
8431         (mono_string_builder_to_utf16): We might not have ownership of the
8432         string. In thise case, we need to create a new buffer.
8433
8434         * object-internals.h (mono_stringbuilder_capacity): sb->str might
8435         be null, in which case, use the default capacity.
8436
8437 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8438
8439         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
8440         GC events to the profiler.
8441
8442 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8443
8444         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
8445         if you don't want the GC to run.
8446
8447 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
8448
8449         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
8450         start providing a GC API and keeping different implementations in
8451         their own file.
8452         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
8453
8454 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
8455
8456         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
8457         mmap rather than allocating a huge buffer.
8458         (mono_debug_close_mono_symbol_file): Free the buffer allocated
8459         above.
8460
8461 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
8462
8463         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
8464         and CheckExecutionRights.
8465         * reflection.c|h: Keep the index of the declarative security to be 
8466         used, instead of the pointer, when AOT compiler is used. Also add 
8467         class initialization when requesting demands.
8468         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
8469         CheckExecutionRights. Both properties are now FALSE by default, and
8470         unmodifiable, unless the --security option is used.
8471
8472 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8473
8474         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
8475         reflection.c: properly refcount images and assemblies, many leaks fixed.
8476
8477 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8478
8479         * threadpool.c: increase the timeout for threads in the thread pool to
8480         10s.  Fixes bug #67159.
8481
8482 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
8483
8484         * class-internals.h: Sun's compiler insists on explicit
8485         signed on bit fields to handle then correctly.
8486
8487 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
8488
8489         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
8490         Make the size of the array fit only the number of invalid path
8491         chars that we have.
8492
8493         * class.c (_mono_class_get): Improve the error reporting when a
8494         class referenced is not found, to assist debugging. 
8495
8496 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
8497
8498         * threads.c: fix off-by-one error.
8499         * domain.c: free data allocated in the domain.
8500
8501 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
8502
8503         * reflection.c (mono_method_body_get_object): Fill out exception info
8504         as well.
8505
8506         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
8507         structure.
8508         
8509 2005-01-19  Martin Baulig  <martin@ximian.com>
8510
8511         * loader.c (mono_get_method_constrained): Make this work again.
8512
8513 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
8514
8515         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
8516         guint16 to match the managed side.
8517
8518         * reflection.c (mono_reflection_body_get_object): Fill out local
8519         variables array.
8520
8521         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
8522         as well.
8523
8524         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
8525         'local_var_sig_token'.
8526
8527 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
8528
8529         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
8530         System.Drawing.
8531
8532         * reflection.c (mono_method_body_get_object): Handle abstract and
8533         runtime methods.
8534
8535 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
8536
8537         * marshal.c, loader.c, class-internals.h, reflection.c:
8538         store the emthod data for a wrapper in an array instead of a list.
8539
8540 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
8541
8542         * marshal.c: change the code to allocate memory more
8543         conservatively for method wrappers.
8544
8545 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
8546
8547         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
8548         fields from MonoClass to the marshal info structure where they belong.
8549
8550 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8551
8552         * class.c, object.c, class-internals.h, marshal.c: rearrange
8553         some fields and tweak some types to lower memory usage.
8554
8555 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
8556
8557         * threads.c (signal_thread_state_change): Handle the case when the
8558         target thread is the current thread.
8559
8560         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
8561
8562         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
8563         emit_ptr_to_object_conv. 
8564
8565         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
8566         marshalling. Fixes #71352.
8567
8568 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8569
8570         * metadata.h, blob.h: move table enum to blob.h so it can be included
8571         in any header.
8572         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
8573         cut the size of MonoImage/MonoDynamicImage.
8574
8575 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
8576
8577         * profiler.c (mono_profiler_install_simple): Fix default arguments.
8578
8579 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
8580
8581         * reflection.c, reflection.h, icall.c: add a function to check
8582         if an attribute type is defined for a metadata object.
8583
8584 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
8585
8586         * object-internals.h: Added some needed fields from StringBuilder class.
8587         * marshal.c: Set the maxCapacity when creating a StringBuilder.
8588
8589 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
8590
8591         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
8592         threads before shutting down the runtime.
8593
8594         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
8595
8596 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8597
8598         * object-internal.h, threads.c: implement stacksize and 
8599         parameterized thread start functionality (requires
8600         matching corlib). Marked broken code for later removal.
8601
8602 2005-01-12  Martin Baulig  <martin@ximian.com>
8603
8604         * class-internals.h (MonoGenericClass): Moved the `initialized'
8605         flag to MonoDynamicGenericClass, removed `init_pending'.
8606         (MonoGenericInst): Added `is_reference' flag.
8607
8608 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
8609
8610         * reflection.c (mono_image_create_pefile): Only set the pe_offset
8611         inside the MSDOS header. Fixes #71201.
8612
8613         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
8614         gc thread.
8615         (mono_domain_finalize): Ditto.
8616
8617 2005-01-12  Martin Baulig  <martin@ximian.com>
8618
8619         * class.c (mono_get_shared_generic_class): Use the cache for
8620         non-dynamic generic classes.
8621
8622         * class-internals.h (mono_class_create_generic_2): Removed
8623         function prototype, this function is now static inside class.c.
8624
8625         * class.c (mono_class_create_generic_2): Made this static, only
8626         call it from mono_class_init() and mono_class_setup_parent().
8627         (collect_implemented_interfaces_aux): Call mono_class_init() on
8628         the interfaces we collect.
8629         (mono_class_setup_vtable): Call mono_class_init (class->parent).
8630
8631 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
8632
8633         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
8634         it a real thread handle.
8635
8636         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
8637         MonoJitExceptionInfo, since each catch clause needs its own variable.
8638         
8639 2005-01-11  Dick Porter  <dick@ximian.com>
8640
8641         * image.c (mono_pe_file_open): New variant on mono_image_open()
8642         that does not set up the CLI metadata; used for FileVersionInfo so
8643         it can get the data for windows binaries too.
8644         
8645         * process.c (process_read_string_block): Don't read off the end of
8646         the StringTable block.
8647
8648         These both fix bug 70766.
8649
8650 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
8651
8652         * gc.c: set some fields to NULL at GC cleanup time.
8653         * threads.c: if we quit the main thread, call exit ().
8654
8655 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
8656
8657         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
8658
8659 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
8660
8661         * threads.h, threads.c, object.c: added accessor and settor for
8662         main_thread. Handle it specially when exiting from it: wait
8663         for other foreground threads to exit.
8664
8665 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
8666
8667         * process.c, verify.c: remove some bloat.
8668
8669 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
8670
8671         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
8672         the calling convention to cdecl under win32.
8673
8674 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
8675
8676         * object.c (mono_object_get_size): New function to get the size of
8677         an object instance.
8678
8679         * profiler.c (simple_allocation): Use above.
8680
8681 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
8682
8683         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
8684         ves_icall_System_AppDomain_getRootDomain (as it's not required to
8685         get an appdomain by it's id and we can't assume the root's id is 0).
8686         * domain-internals.h: Change the function prototype to match.
8687         * icall.c: Change the icall table for AppDomain.
8688
8689 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
8690
8691         * locales.c (string_invariant_compare_char): Only compute
8692         GUnicodeTypes in the case where we need them.  Test for ordinality
8693         first and return if so.
8694
8695         From the commit:
8696
8697                 /*
8698                  * FIXME: here we must use the information from c1type and c2type
8699                  * to find out the proper collation, even on the InvariantCulture, the
8700                  * sorting is not done by computing the unicode values, but their
8701                  * actual sort order.
8702                  */
8703
8704 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8705
8706         * loader.c: for P/Invoke methods, allow the "Internal" shared
8707         library name to refer to the calling process symbol namespace.
8708
8709 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
8710
8711         * Makefile.am: Add the security manager to the build.
8712         * security-manager.c|h: New. Initialization of the security manager.
8713
8714 2005-01-07  Dick Porter  <dick@ximian.com>
8715
8716         * threads.c: 
8717         * monitor.c: Update thread state during Monitor and WaitHandle
8718         waits.  Fixes bug 71031.
8719
8720 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
8721
8722         * reflection.c (property_encode_signature): Correctly handle when the
8723         property has no methods.
8724
8725 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
8726
8727         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
8728         
8729         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
8730         fields from mb, not rmb. Fixes #71017.
8731
8732         * marshal.c (emit_ptr_to_str_conv): Add support for 
8733         ByValTStr -> string conversion. Fixes #71015.
8734
8735         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
8736
8737         * mempool.c (mono_mempool_contains_addr): New helper function.
8738
8739 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8740
8741         * metadata.c (mono_metadata_compute_size): Fix size calculation of
8742         HasSematics encoded fields.
8743         
8744         * metadata.c (mono_type_to_unmanaged): Improve error message for 
8745         invalid string marshalling.
8746
8747         * metadata.c: Fix warnings.
8748         
8749 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8750
8751         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
8752         profiler support.
8753
8754 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8755
8756         * domain.c object.c domain-internals.h: Revert part of r38077 since the
8757         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
8758         tests.
8759
8760 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
8761
8762         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
8763         so methods containing these can be AOTed.
8764
8765 2005-01-03  Martin Baulig  <martin@ximian.com>
8766
8767         * loader.c (find_method): Removed the hack for generic instances.
8768         (method_from_memberref): If our parent is a generic instance, pass
8769         its generic type definition to find_method() and then inflate the
8770         method.
8771         (mono_get_method_constrained): Pass the generic type definition to
8772         find_method() and inflate the method later.
8773
8774         * class-internals.h (MonoStats): Added `generic_class_count'.
8775
8776         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
8777         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
8778
8779         * reflection.c (mono_custom_attrs_from_params): Don't ignore
8780         generic type definitions.
8781
8782 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
8783
8784         * loader.c icall.c: Fix warnings.
8785
8786 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
8787
8788         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
8789         blittable types. Fixes #70864.
8790
8791 2004-12-29  Martin Baulig  <martin@ximian.com>
8792
8793         * icall.c
8794         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
8795
8796         * reflection.c (mono_method_get_object): Create a
8797         "System.Reflection.MonoGenericMethod" for inflated methods; don't
8798         call mono_get_inflated_method().
8799
8800         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
8801
8802 2004-12-27  Martin Baulig  <martin@ximian.com>
8803
8804         * class-internals.h (MonoMethod): Added `is_inflated' flag.
8805         (MonoMethodInflated): Added `inflated' field.
8806
8807         * class.c (mono_class_inflate_generic_method): Don't really
8808         inflate the method here; just set the `is_inflated' flag in the
8809         MonoMethod.
8810         (mono_class_get_inflated_method): Actually inflate the method here
8811         if it's not already inflated; we use the MonoMethodInflated's new
8812         `inflated' field as a cache.
8813
8814 2004-12-26  Martin Baulig  <martin@ximian.com>
8815
8816         * class.c
8817         (inflate_generic_class): Moved some code out of inflate_generic_type().
8818         (mono_class_inflate_generic_method): If we're already inflated,
8819         inflate the context and use the declaring method; ie. make sure
8820         the declaring method of an inflated method is always the generic
8821         method definition.
8822         (mono_class_create_from_typedef): Create
8823         `class->generic_container->context->gclass'.
8824
8825 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
8826
8827         * metadata-internals.h, marshal.c, reflection.c: More
8828         MonoGHashTable->GHashTable.
8829
8830         * domain-internals.h, class.c: Change MonoGHashTable's into
8831         GHashTables for some cases where no gc stuff is used
8832
8833         All users: update apis
8834
8835 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
8836
8837         * metadata.c (builtin_types): Make this `const'. Makes this get
8838         put into the shareable section.
8839         (mono_metadata_init): Casts to make gcc happy.
8840
8841 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
8842
8843         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
8844
8845 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
8846
8847         * icall.c: Added an internal call to retrieve the position and length
8848         of assembly-level declarative security attributes (RequestMinimum, 
8849         RequestOptional and RequestRefuse). This is used by the Assembly class
8850         to re-create the corresponding permission sets.
8851
8852 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
8853
8854         * marshal.c: fix the stelemref wrapper to be type correct
8855         (and faster).
8856
8857 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
8858
8859         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
8860         to do key & 0x7fffffff. Hashtable already does this. It just
8861         results in longer code.
8862
8863 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
8864
8865         * appdomain.c: Bump corlib version.
8866         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
8867         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
8868         * reflection.c|h: Add functions to get declarative security infos
8869         (blob position and length) for assemblies, classes and methods.
8870
8871 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
8872
8873         * reflection.c: sort the constant table (bug #70693).
8874
8875 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
8876
8877         * object-internals.h, threads.c, domain.c: add accessors for
8878         the MonoThread and MonoDomain tls keys.
8879
8880 2004-12-18  Martin Baulig  <martin@ximian.com>
8881
8882         * class.c (inflate_generic_type): If we're inflating a generic
8883         instance, set `ngclass->context->container = context->container';
8884         ie. the container we inflated into.
8885
8886         * metadata.c (mono_metadata_parse_generic_param): Reflect above
8887         inflate_generic_type() changes.
8888
8889 2004-12-17  Martin Baulig  <martin@ximian.com>
8890
8891         * class-internals.h
8892         (MonoGenericClass): Replaced `MonoType *generic_type' with
8893         `MonoClass *generic_class'.  Removed `dynamic_info'; if
8894         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
8895         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
8896
8897 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
8898
8899         * exception.c (mono_exception_from_token): New helper function.
8900
8901 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
8902
8903         * assembly.c (mono_assembly_load_with_partial_name): Call 
8904         mono_assembly_loaded before invoking the preload hooks. Fixes
8905         #70564.
8906
8907         * object-internals.h (MonoThread): Change culture_info and 
8908         ui_culture_info into an array.
8909
8910         * threads.c: Cache culture info objects from more than one appdomain.
8911
8912         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
8913         current UI culture.
8914
8915 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
8916
8917         * threads.h threads.c appdomain.c: Clear the culture_info field of
8918         all threads during unloading if they point to an object in the dying
8919         appdomain.
8920
8921 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
8922
8923         * culture-info.h (TextInfoEntry): New struct
8924         * object-internals.h: sync with managed
8925         * locales.c: fill the `text_info_data' field
8926         * culture-info-tables.h: update
8927
8928 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
8929
8930         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
8931         collector.
8932
8933 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
8934
8935         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
8936         (ves_icall_ModuleBuilder_getMethodToken): Ditto
8937
8938 2004-12-12  Martin Baulig  <martin@ximian.com>
8939
8940         * mono-debug-debugger.c (write_type): If we're an enum and the
8941         builtin types have already been initialized, call mono_class_init().
8942
8943 2004-12-11  Martin Baulig  <martin@ximian.com>
8944
8945         * metadata.c (mono_metadata_load_generic_params): Added
8946         `MonoGenericContainer *parent_container' argument; automatically
8947         compute `container->is_method'; pass the correct owner to
8948         get_constraints().      
8949
8950         * reflection.c (compare_genericparam): Sort the GenericParam table
8951         according to increasing owners. 
8952
8953 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
8954
8955         * profiler.c: allow disabling the default profiler.
8956
8957 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
8958
8959         * decimal.c, icall.c: allow disabling System.Decimal support.
8960
8961 2004-12-09  Marek Safar <marek.safar@seznam.cz>
8962
8963         * reflection.c: Add support for null attribute arguments.
8964
8965 2004-12-09  Martin Baulig  <martin@ximian.com>
8966
8967         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
8968         names to get rid of compiler warnings.
8969
8970 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8971
8972         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
8973         mono_marshal_load_type_info (). Fixes #69625.
8974         (mono_marshal_get_ptr_to_struct): Likewise.
8975
8976 2004-12-08  Martin Baulig  <martin@ximian.com>
8977
8978         * mono-debug.h: Bumped version number to 47.
8979
8980         * mono-debug-debugger.c
8981         (mono_debugger_event_handler, mono_debugger_event): Take two
8982         guint64 arguments insteed of a gpointer and a guint32.  
8983
8984 2004-12-08  Martin Baulig  <martin@ximian.com>
8985
8986         * debug-mono-symfile.h
8987         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
8988         `address' to `native_offset'.
8989
8990 2004-12-08  Martin Baulig  <martin@ximian.com>
8991
8992         * class.c (mono_class_create_from_typespec): Only inflate if we
8993         either have `context->gclass' or `context->gmethod'.
8994
8995 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8996
8997         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
8998
8999         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
9000
9001         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
9002
9003         * reflection.c (mono_assembly_get_object): Remove the workaround put
9004         in for the release.
9005         
9006         * appdomain.c: Use the corlib_internal field from MonoAssembly.
9007
9008         * appdomain.c: Bump corlib version.
9009
9010         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
9011         be visible in other appdomains.
9012
9013 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
9014
9015         * threads.c: Interlocked inc and dec for longs were messed up,
9016         use a KISS based impl for this. Fixes 70234
9017
9018 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
9019
9020         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
9021
9022 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
9023
9024         * icall.c: fix to follow policy not to allow struct
9025         arguments in icalls.
9026
9027 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9028
9029         * process.c: make the patch that handles spaces in file paths work
9030         on mono/windows too.
9031
9032 2004-12-06  Martin Baulig  <martin@ximian.com>
9033
9034         * class.c (mono_class_create_generic): Call
9035         mono_class_setup_supertypes() if we're dynamic.
9036         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
9037
9038 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
9039
9040         * object-internals.h: Add new fields to MonoThread.
9041
9042         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9043
9044         * icall.c threads-types.h threads.c: Add new icalls.
9045
9046         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
9047
9048         * object-internals.h (MonoReflectionAssembly): Sync object layout with
9049         managed side.
9050
9051         * appdomain.c: Bump corlib version.
9052
9053         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
9054         internal assemblies. Fixes #69181.
9055
9056 2004-12-05  Martin Baulig  <martin@ximian.com>
9057
9058         * class.c (mono_class_inflate_generic_signature): Make this a
9059         no-op if `context' is NULL or we don't have any type parameters;
9060         also copy `sentinelpos'.        
9061
9062 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
9063
9064         * image.c: Add unbox_wrapper_cache.
9065
9066         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
9067
9068         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
9069         function generator.
9070         
9071         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
9072         Fixes #70173.
9073
9074         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
9075         
9076 2004-12-04  Martin Baulig  <martin@ximian.com>
9077
9078         * loader.c (mono_method_get_signature_full): New public function;
9079         like mono_method_get_signature(), but with an additional
9080         `MonoGenericContext *' argument.
9081
9082         * class.c (mono_class_inflate_generic_signature): Formerly known
9083         as inflate_generic_signature(); make this public.
9084
9085 2004-12-04  Martin Baulig  <martin@ximian.com>
9086
9087         * metadata.c
9088         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
9089         instead of a `MonoGenericContainer *'.  
9090         (mono_metadata_parse_array_full): Likewise.
9091         (mono_metadata_parse_signature_full): Likewise.
9092         (mono_metadata_parse_method_signature_full): Likewise.
9093         (mono_metadata_parse_generic_inst): Likewise.
9094         (mono_metadata_parse_generic_param): Likewise.
9095         (mono_metadata_parse_mh_full): Likewise.
9096         (mono_type_create_from_typespec_full): Likewise.
9097
9098 2004-12-03  Martin Baulig  <martin@ximian.com>
9099
9100         * class-internals.h (MonoGenericContainer): Replaced the
9101         `MonoGenericContext * pointer with a `MonoGenericContext'
9102         structure and made it the first element.
9103
9104 2004-12-03  Martin Baulig  <martin@ximian.com>
9105
9106         * class.c
9107         (inflate_generic_type): Set the `context->container' when creating
9108         a new MonoGenericContext.
9109         (mono_class_inflate_generic_method): Likewise.
9110         (mono_class_create_from_typespec): Just use `context->container'
9111         to get the container.
9112
9113         * loader.c (method_from_methodspec): Set `context->parent' from
9114         `context->container' - and if that's a method container, use its
9115         parent.  Also set the `context->container' when creating a new
9116         MonoGenericContext.
9117         (mono_get_method_from_token): Use just `context->container' to get
9118         the container.
9119
9120         * metadata.c (do_mono_metadata_parse_generic_class): Also set
9121         `gclass->context->container'.
9122
9123         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
9124         the `context->container' when creating a new MonoGenericContext.
9125
9126 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
9127
9128         * reflection.c (compare_genericparam): Sort params with identical
9129         owner by their number. Fixes gen-111 on sparc.
9130
9131 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9132
9133         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
9134         around the domain changes.
9135
9136         * appdomain.c (mono_domain_unload): Handle the case when the thread
9137         calling Unload is itself being aborted during unloading. Fixes #70022.
9138
9139         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
9140
9141         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
9142         checkpoint_func as an icall so it gets a wrapper.
9143         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
9144         in the cross-appdomain wrappers too.
9145
9146         * threads.c (mono_thread_has_appdomain_ref): Make this public.
9147
9148         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
9149
9150         * reflection.c: Fix some memory leaks.
9151         
9152 2004-12-02  Martin Baulig  <martin@ximian.com>
9153
9154         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
9155
9156         * metadata.c (generic_class_cache): New static hashtable.
9157         (mono_metadata_lookup_generic_class): New public method.
9158
9159 2004-12-02  Martin Baulig  <martin@ximian.com>
9160
9161         * class.c (mono_class_create_from_typedef): Call
9162         mono_class_setup_parent() and mono_class_create_mono_type() before
9163         parsing the interfaces.
9164
9165 2004-12-02  Martin Baulig  <martin@ximian.com>
9166
9167         * metadata.c (generic_inst_cache): New static hashtable.
9168         (mono_metadata_lookup_generic_inst): New public function.
9169         (mono_metadata_inflate_generic_inst): New public function.
9170         (mono_metadata_parse_generic_inst): New public function.
9171         (do_mono_metadata_parse_generic_class): Use the new
9172         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
9173         since this'll also use the cache.
9174
9175         * reflection.c (mono_reflection_bind_generic_method_parameters):
9176         Use mono_metadata_lookup_generic_inst() to use the new cache.
9177
9178         * class.c (inflate_mono_type): Use
9179         mono_metadata_inflate_generic_inst() to inflate a generic
9180         instance; this'll also use the new cache.
9181
9182         * loader.c (method_from_methodspec): Use
9183         mono_metadata_parse_generic_inst() and
9184         mono_metadata_inflate_generic_inst() rather than parsing it
9185         manually, so we can use the new cache.
9186
9187 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9188
9189         * threads.c (wait_for_tids): Do not incorrectly free threads when 
9190         the wait times out.
9191
9192 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
9193
9194         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
9195         iter->args based on whether parameters are passed in registers (i.e.
9196         MONO_ARCH_REGPARMS is defined)
9197
9198 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
9199
9200         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
9201         the exception message. Fixes #70070.
9202         (method_from_methodspec): Fix warnings.
9203
9204 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9205
9206         * process.c: (complete_path) return the path quoted
9207
9208 2004-12-01  Martin Baulig  <martin@ximian.com>
9209
9210         * class-internals.h (MonoGenericInst): New structure.
9211         (MonoGenericClass): Replaced `type_argc', `type_argv' and
9212         `is_open' with `MonoGenericInst *inst'.
9213         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
9214         `is_open' with `MonoGenericInst *inst'.
9215
9216 2004-11-30  Martin Baulig  <martin@ximian.com>
9217
9218         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
9219
9220         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
9221         to `generic_class_cache'.
9222
9223         * metadata.c
9224         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
9225         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
9226         (mono_generic_inst_is_valuetype): Renamed to
9227         mono_generic_class_is_valuetype().
9228
9229         * class-internals.h
9230         (MonoGenericInst): Renamed to MonoGenericClass.
9231         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
9232         (MonoClass): Renamed `generic_inst' to `generic_class'.
9233         (MonoGenericContext): Renamed `ginst' to `gclass'.
9234
9235         * object-internals.h
9236         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
9237
9238         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
9239         mono_reflection_generic_class_initialize().
9240
9241         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
9242         now known as "System.Reflection.MonoGenericClass".
9243         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
9244
9245 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
9246
9247         * class-internals.h: Added a flag field to MonoClass to cache the
9248         declarative security attributes actions associated with the class.
9249         * domain-internals.h: Added booleans to MonoJitInfo to cache the
9250         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
9251         applicable to the JITted method.
9252         * reflection.c|h: Added functions to extract (as flags) which security
9253         actions are available (declaratively) for a method, class or assembly.
9254         * metadata.c|h: Added functions to search the declarative security
9255         table in the metadata.
9256         
9257 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
9258
9259         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
9260         EXPORTEDTYPES are already in the class name cache, so there is no
9261         need to add extra code here to look at them. Just removes a bit of
9262         cruft.
9263
9264         (ves_icall_System_Environment_get_TickCount): No need for #if
9265         WINDOWS. We already have the code in io-layer.
9266
9267 2004-11-28  Martin Baulig  <martin@ximian.com>
9268
9269         * loader.c
9270         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
9271         Fixes gen-112.cs.
9272
9273 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
9274
9275         * assembly.c (do_mono_assembly_open): Instead of having a
9276         conditional WITH_BUNDLE, incorporate support for bundles here, by
9277         having a global `bundles' variable holding a pointer to the actual
9278         bundles. 
9279
9280         (mono_register_bundled_assemblies): New API call used by the
9281         bundle code. 
9282
9283         See mkbundle.1 for details.
9284         
9285 2004-11-27  Martin Baulig  <martin@ximian.com>
9286
9287         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
9288         the vtable for generic methods.
9289
9290 2004-11-26  Martin Baulig  <martin@ximian.com>
9291
9292         * metadata.c
9293         (mono_metadata_generic_method_hash): New public function.
9294         (mono_metadata_generic_method_equal): Likewise.
9295
9296         * class-internals.h
9297         (MonoGenericContainer): Added `GHashTable *method_hash'.
9298
9299         * reflection.c (ReflectionMethodBuilder): Added
9300         `MonoGenericContainer *generic_container'.
9301         (reflection_methodbuilder_to_mono_method): Don't create a new
9302         MonoGenericContainer each time we're called.
9303         (mono_reflection_bind_generic_method_parameters): Use
9304         `container->method_hash' to cache the results so we don't create a
9305         different method if we're called several times with the same
9306         arguments.
9307
9308         * loader.c (method_from_methodspec): Use the new
9309         `container->method_hash' here, too.
9310
9311 2004-11-26  Martin Baulig  <martin@ximian.com>
9312
9313         * class.c (inflate_generic_signature): Correctly compute
9314         `res->has_type_parameters'.
9315         (mono_class_vtable): Use the `has_type_parameters' flag to
9316         determine whether we're a generic method.
9317
9318         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
9319
9320 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
9321
9322         * object.c (mono_runtime_run_main): Fix a small memory leak.
9323
9324 2004-11-25  Martin Baulig  <martin@ximian.com>
9325
9326         * class.c (set_generic_param_owner): Fixed the loop.
9327
9328 2004-11-25  Martin Baulig  <martin@ximian.com>
9329
9330         * object.c (mono_class_vtable): Don't create any JIT wrappers for
9331         generic methods.
9332
9333 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
9334
9335         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
9336         names. Fixes #69787.
9337
9338 2004-11-24  Martin Baulig  <martin@ximian.com>
9339
9340         * class.c (mono_class_create_generic_2): If we don't have a
9341         `ginst->parent', inflate `gklass->parent' to get our parent.
9342
9343 2004-11-24  Martin Baulig  <martin@ximian.com>
9344
9345         * reflection.c (compare_genericparam): Correctly sort the
9346         GenericParam table; fixes #69779.
9347
9348 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
9349
9350         * reflection.c: When writing a PE file, don't create a huge
9351         buffer in memory. Just write the arrays we have to the file.
9352         This reduces memory usage.
9353
9354         * metadata-internals.h: MonoDynamicStream pefile is no longer used
9355         globally.
9356
9357 2004-11-17  Martin Baulig  <martin@ximian.com>
9358
9359         * class.c (mono_class_init): Don't setup `class->parent' for
9360         dynamic instances; moved this to mono_class_generic_2().
9361         (mono_class_create_generic): Also set `klass->inited' for dynamic
9362         generic instances.
9363         (mono_class_create_generic_2): Don't do anything for dynamic
9364         generic instances.  Set `klass->parent' here and also call
9365         mono_class_setup_parent() here. 
9366
9367         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
9368         `MonoType *parent' argument; set `ginst->parent' before calling
9369         mono_class_create_generic_2(), so we set the correct parent.
9370
9371 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
9372
9373         * reflection.c: allow getting attributes from ModuleBuilder
9374         (used by ikvm).
9375
9376 2004-11-17  Martin Baulig  <martin@ximian.com>
9377
9378         * class.c (mono_class_create_from_typedef): If a type parameter is
9379         inherited from an outer class, set its owner to that class.
9380
9381 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
9382
9383         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
9384           for (int*) written size. This fixes bug #69592.
9385
9386 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
9387
9388         * icall.c: Added IsAuthenticodePresnet internal call.
9389         * image.c|h: New function that check a MonoImage for an Authenticode
9390         signature in the certificate PE data directory.
9391         * security.c|h: New internal call to ask the runtime if an 
9392         Authenticode signature seems referenced in the PE header.
9393
9394 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
9395
9396         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
9397
9398         * reflection.c (mono_image_create_pefile): Free the assembly streams
9399         after writing out the assembly file.
9400
9401         * object.c (mono_runtime_run_main): Fix small memory leak.
9402
9403         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
9404         property access modifiers. Fixes #69389.
9405
9406 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
9407
9408         * domain.c, object.c, object-internals.h, domain-internals.h,
9409         object.h, marshal.c: keep dynamic code info per domain.
9410
9411 2004-11-15  Martin Baulig  <martin@ximian.com>
9412
9413         * class.c (mono_type_get_name_recurse): Put type arguments in
9414         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
9415         see bug #68387.
9416
9417 2004-11-15  Martin Baulig  <martin@ximian.com>
9418
9419         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
9420         (mono_class_setup_vtable): When computing `the_cname' for a
9421         generic instance, don't include the namespace since we'd otherwise
9422         add it twice.
9423
9424 2004-11-15  Martin Baulig  <martin@ximian.com>
9425
9426         * class.c (mono_class_create_generic): Changed return type to void.
9427         (mono_class_create_generic_2): New public function; setup
9428         `class->method', `class->field' and `class->interfaces' here
9429         instead of in mono_class_init().
9430
9431         * class.h (mono_class_create_generic): Moved to class-internals.h.
9432
9433 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
9434
9435         * reflection.c (mono_image_create_pefile): take a file HANDLE.
9436         rather than writing to memory, write to this file. Right now,
9437         we are just writting into a buffer, and copying that. However
9438         we can avoid the buffer later.
9439
9440         (mono_dynamic_stream_reset): new function
9441
9442         * icall.c, object-internals.h: update for the above.
9443
9444 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
9445
9446         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
9447         have been using gc'd memory. First it is slower, unlikely
9448         the comment in the source code said, secondly, it increases
9449         our footprint to do it in the gc.
9450
9451         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
9452         the method so that it does not have to copy to managed code.
9453
9454 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
9455
9456         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
9457
9458 2004-11-12  Martin Baulig  <martin@localhost>
9459
9460         * reflection.c (mono_image_create_token): Allow generic method
9461         definitions here, since they may appear in an `.override'; see
9462         gen-98/gen-99 for an example.
9463
9464 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
9465
9466         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
9467         #69365.
9468
9469         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
9470         descriptive.
9471
9472 2004-11-11  Martin Baulig  <martin@ximian.com>
9473
9474         * class.c (mono_class_setup_vtable): In an explicit interface
9475         implementation, the method name now includes the arity.
9476
9477 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
9478
9479         * object.c (mono_array_full_copy): Fix warning.
9480
9481 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
9482
9483         * appdomain.c: Removed look_for_method_by_name(). Use the new method
9484         mono_class_get_method_from_name() instead.
9485         
9486         * class-internals.h: Added two new types of wrappers. 
9487         Added MonoRemotingTarget enum. Added new trampoline function type, which
9488         takes an additional MonoRemotingTarget value as parameter, so it is
9489         possible to request a trampoline for a specific target.
9490         
9491         * class.c: Added new mono_class_get_method_from_name() method.
9492         
9493         * class.h: In MonoRemoteClass, we can have now to vtables, one for
9494         general remoting sinks and one specific for cross domain calls.
9495         
9496         * debug-helpers.c: Added new wrapper names.
9497         
9498         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
9499         of a remote class.
9500         
9501         * image.c: Porperly delete value objects form the remoting invoke hashtable.
9502         
9503         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
9504         with several other methods (mono_marshal_get_xappdomain_dispatch,
9505         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
9506         and others) can generate a fast remoting wrapper for cross domain calls.
9507         More information can be found in docs/remoting.
9508         Other changes: Removed mono_find_method_by_name, and used
9509         mono_class_get_method_from_name instead.
9510         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
9511         is stored in the remoting invoke hashtable.
9512         
9513         * marshal.h: published the new method for getting the xdomain wrapper,
9514         and also added a method for getting the adequate wrapper for a given
9515         method and target.
9516         
9517         * object-internals.h, object.c: Added a couple of methods for capying and
9518         cloning arrays.
9519         Modified mono_install_remoting_trampoline, which takes the new remoting
9520         trampoline that has a remoting target as parameter.
9521         mono_class_proxy_vtable now also takes a remoting target as parameter, and
9522         will return the most suitable vtable for the target.
9523         Added mono_remote_class_vtable, which returns the vtable of a remote class
9524         (which can be the normal remoting vtable or the xdomain vtable).
9525         
9526         * threads.c: the xdomain invoke and dispatch wrappers must also be
9527         protected against interruptions.
9528
9529 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9530
9531         * icall.c: use memmove in BlockCopyInternal when the source and
9532         destination arrays are the same.
9533
9534 2004-11-09  Martin Baulig  <martin@ximian.com>
9535
9536         * class-internals.h (MonoGenericContainer): Removed `method' and
9537         `signature', replaced them with `is_method' and `is_signature'
9538         flags.  Added `context'.
9539
9540         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
9541         instead of a `MonoGenericContainer *'.
9542
9543         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
9544         for dynamic type parameters.
9545         (mono_metadata_load_generic_params): Setup `container->context'.
9546
9547         * reflection.c (mono_reflection_setup_generic_class): Setup
9548         `tb->generic_container->context'.
9549         (do_mono_reflection_bind_generic_parameters): Use
9550         mono_class_inflate_generic_type() to correctly inflate types,
9551         rather than using our own hack just for MONO_TYPE_VAR.
9552
9553 2004-11-09  Martin Baulig  <martin@ximian.com>
9554
9555         * class.c (mono_class_inflate_generic_method): Small fix; don't
9556         crash here.
9557
9558         * icall.c
9559         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
9560         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
9561         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
9562         (ves_icall_Type_BindGenericParameters): Likewise.
9563         (ves_icall_Type_get_IsGenericInstance): Likewise.
9564         (ves_icall_Type_GetGenericParameterPosition): Likewise.
9565         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
9566         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
9567         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
9568
9569 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
9570
9571         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
9572         assembly versions and public key tokens. Fixes #69113.
9573
9574 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
9575
9576         * metadata.c: fix bug introduced with the type cache changes
9577         on 2004-11-06.
9578
9579 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
9580
9581         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
9582         the MonoClass pointer instead of the token in exception clauses.
9583         * reflection.c: updates for the above and make the code not depend
9584         on the structure of MonoExceptionClause.
9585
9586 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
9587
9588         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9589         Add support for dynamic assemblies. Fixes #69114.
9590
9591         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
9592
9593 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
9594
9595         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
9596         since most only those methods use it. the code member of
9597         MonoMethodPInvoke was dead, so that can be removed too. Also,
9598         remove inline_count (again, not used), and move slot so that it
9599         can share bits with some other flags. This saves 8 bytes in the
9600         structure and gives us about 50 kb back for mcs helloworld.cs
9601
9602         * *.[ch]: Do naming changes for the above.
9603
9604         * loader.c (mono_method_get_header): Lazily init the header
9605         on first access.
9606         (mono_get_method_from_token): don't init the header here
9607         (mono_free_method): the header may never be allocated
9608
9609         Overall, this saves 150 kb of unmanaged allocations
9610         for mcs helloworld.cs. That accounts for 10% of the unmanaged
9611         memory at runtime.
9612         
9613         * loader.c, loader.h (mono_method_get_header): new accessor.
9614
9615         * *.[ch]: use the above method. Prepares us to lazily load
9616         the header.
9617
9618         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
9619         three warnings, which are actual bugs (see 69206).
9620
9621         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
9622         unused. Saves a cool 4 bytes / method.
9623
9624 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
9625
9626         * metadata.c (builtin_types): Add types for System.Object here.
9627         (mono_metadata_parse_type_full): Cache MonoType*'s that are
9628         for a class or valuetype from klass->this_arg or klass->byval_arg.
9629
9630         On mcs for a hello world, this gets us down from 21836 MonoType's
9631         to 14560.
9632
9633         (mono_metadata_free_type): Account for the above change.
9634
9635 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
9636
9637         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
9638         exception instead of asserting if name is null.
9639         (ves_icall_System_AppDomain_GetData): Ditto.
9640
9641 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
9642
9643         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
9644         EnumBuilder.
9645
9646         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
9647         Return NULL when the domain does not have entry_assembly set.
9648
9649         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
9650         Add a 'resource_modules' argument.
9651         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
9652
9653         * reflection.c (mono_reflection_create_runtime_class): Move setting
9654         of wastypebuilder here, so mono_get_type_object () returns a MonoType
9655         for enums too.
9656
9657         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
9658         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
9659         Throw an ArgumentNullException if 'ptr' is null.
9660
9661         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
9662         assemblies here. Fixes #69020.
9663
9664 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
9665
9666         * reflection.c (build_compressed_metadata): Fix the previous patch for
9667         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
9668         the stack.
9669
9670 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
9671
9672         * assembly.c (mono_assembly_names_equal): Allow a match if one of
9673         the cultures is false. Fixes #69090.
9674
9675         * reflection.c (build_compressed_metadata): Fix invalid memory read 
9676         detected by valgrind.
9677         
9678         * reflection.c (mono_reflection_get_type): Avoid triggering a 
9679         TypeResolve multiple times for the same type. Fixes #65577.
9680
9681 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
9682
9683         * marshal.c: Avoid using ldftn to call managed functions. It is
9684         much slower than just a call.
9685
9686         * reflection.c (mono_module_get_object): free the basename we
9687         allocate here from glib.
9688         
9689         * reflection.c (ensure_runtime_vtable): make sure to free
9690         overrides.  Also, we were allocating an array of MonoMethod not an
9691         array of MonoMethod*.
9692
9693         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
9694
9695         * image.c (mono_image_close): free image->guid here.
9696
9697 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
9698
9699         * reflection.c: Fix some spec conformance issues with the PE file
9700         structures so mcs compiled apps run on the Net 2.0 beta.
9701
9702 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
9703
9704         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
9705         Implement this. Fixes #67264.
9706
9707         * debug-helpers.h debug-helpers.c marshal.c: Move 
9708         mono_find_method_by_name to debug-helpers.c.
9709
9710 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
9711
9712         * object.c (mono_release_type_locks): type_initialization_hash is
9713         a GHashTable.
9714
9715         * reflection.c object.c object-internals.h: Fix warnings.
9716
9717         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
9718         without accessors. Fixes #61561.
9719
9720         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
9721         application base from the root domain if not set. Fixes #65641.
9722         (mono_runtime_init): Fix warning.
9723
9724 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9725
9726         * appdomain.c: call mono_thread_pool_init.
9727         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
9728         of worker threads based on the number of CPUs and the environment
9729         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
9730         for non-windows (windows) systems.
9731
9732 2004-10-27  Chris Toshok  <toshok@ximian.com>
9733
9734         * mono-debug-debugger.c (write_class): don't call mono_class_init
9735         here, as even with the check for (!klass->init_pending), we get
9736         into a situation where we're hitting cycles in class
9737         initialization.  Fixes #68816.
9738
9739 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
9740
9741         * image.c: Avoid overwriting values in the loaded_images_hash when an
9742         assembly is loaded multiple times. Fixes #61152.
9743
9744         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
9745         so multiple satellite assemblies for the same name can be loaded.
9746         Fixes #68259.
9747
9748         * mono_domain_assembly_preload: Actually return the loaded assembly, 
9749         not NULL.
9750
9751         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
9752         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
9753
9754         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
9755         pending finalizers are not invoked after the appdomain has been 
9756         unloaded. Fixes #67862.
9757
9758 2004-10-22  Martin Baulig  <martin@ximian.com>
9759
9760         * mono-debug-debugger.c
9761         (mono_debugger_runtime_invoke): Don't box valuetypes.
9762
9763 2004-10-22  Chris Toshok  <toshok@ximian.com>
9764
9765         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
9766         don't hide private methods.
9767
9768 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
9769
9770         * icall.c: Allows the runtime to "share" (when known) the public key
9771         token of an assembly. This avoid the need to recalculate the token 
9772         (from the public key) in managed code.
9773
9774 2004-10-21  Chris Toshok  <toshok@ximian.com>
9775
9776         * debug-helpers.c (append_class_name): argh, revert last patch.
9777         
9778 2004-10-21  Chris Toshok  <toshok@ximian.com>
9779
9780         * debug-helpers.c (append_class_name): use '+' as the delimiter,
9781         not '/', so that it matches what the debugger uses to look up
9782         methods.
9783
9784 2004-10-21  Martin Baulig  <martin@ximian.com>
9785
9786         * mono-debug-debugger.c (mono_debugger_throw_exception): New
9787         public method; this is called each time an exception is thrown and
9788         allows the debugger to use exception catch points.
9789
9790 2004-10-21  Martin Baulig  <martin@ximian.com>
9791
9792         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
9793         the stack pointer and the exception object in some struct and pass
9794         that to the debugger.
9795
9796 2004-10-21  Chris Toshok  <toshok@ximian.com>
9797
9798         * mono-debug-debugger.c (do_write_class): add instance/static
9799         event support.  We don't expose "raise" or "other" yet.
9800         (event_is_static): new method.
9801
9802 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
9803
9804         * mono-debug-debugger.c
9805         (mono_debugger_handle_exception): Remove
9806         bogus return value for fussy compilers.
9807
9808 2004-10-20  Martin Baulig  <martin@ximian.com>
9809
9810         * mono-debug-debugger.c
9811         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
9812         (mono_debugger_handled_exception): Likewise.
9813
9814 2004-10-20  Martin Baulig  <martin@ximian.com>
9815
9816         * mono-debug-debugger.h (MonoDebuggerEvent): Added
9817         MONO_DEBUGGER_EVENT_EXCEPTION.
9818
9819         * mono-debug-debugger.c (mono_debugger_handle_exception): New
9820         public function to send the debugger a notification for an
9821         exception and inform it about a catch/finally clause.
9822
9823 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
9824
9825         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
9826         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
9827         fix 2.95 build. 
9828
9829         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
9830
9831 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
9832
9833         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
9834         marshalled as [In,Out]. Fixes #58325.
9835
9836 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
9837
9838         * reflection.c (mono_method_body_get_object): Implement some fields.
9839
9840 2004-10-12  Martin Baulig  <martin@ximian.com>
9841
9842         * reflection.c (mono_reflection_bind_generic_parameters): Small
9843         fix, correctly retrieve our parent from a generic instance.
9844
9845 2004-10-12  Martin Baulig  <martin@ximian.com>
9846
9847         * metadata.c (mono_metadata_generic_param_equal): We always have
9848         an owner.
9849
9850         * class.c
9851         (mono_class_from_generic_parameter): We need to have an owner.
9852         (my_mono_class_from_generic_parameter): Likewise.
9853
9854         * reflection.c (mono_reflection_setup_generic_class): Renamed to
9855         mono_reflection_create_generic_class() and added a new
9856         mono_reflection_setup_generic_class().  
9857         (mono_reflection_initialize_generic_param): If we're a nested
9858         generic type and inherited from the containing class, set our
9859         owner to the outer class.
9860
9861 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
9862
9863         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
9864
9865         * reflection.c (mono_method_body_get_object): New function to create
9866         a MethodBody object.
9867
9868         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
9869
9870 2004-10-11  Martin Baulig  <martin@ximian.com>
9871
9872         * metadata.c (_mono_metadata_type_equal): Renamed to
9873         do_mono_metadata_type_equal() and made static.
9874
9875 2004-10-11  Martin Baulig  <martin@ximian.com>
9876
9877         * appdomain.c: Bump corlib version number to 28.
9878
9879 2004-10-10  Martin Baulig  <martin@ximian.com>
9880
9881         * class-internals.h
9882         (MonoGenericInst): Added `MonoGenericContainer *container'.
9883         (MonoGenericMethod): Likewise.
9884         (MonoGenericContext): Likewise.
9885         (MonoGenericParam): Added `MonoGenericContainer *owner'.
9886
9887         * metadata.c
9888         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
9889         (do_mono_metadata_parse_generic_inst): Likewise.
9890         (mono_metadata_parse_type_full): New public method.  This is the actual
9891         mono_metadata_parse_type() implementation - with an additional
9892         `MonoGenericContainer *' argument.
9893         (mono_metadata_parse_array_full): Likewise.
9894         (mono_metadata_parse_signature_full): Likewise.
9895         (mono_metadata_parse_method_signature_full): Likewise.
9896         (mono_metadata_parse_mh_full): Likewise.
9897         (mono_type_create_from_typespec): Likewise.
9898         (mono_metadata_interfaces_from_typedef_full): New public method;
9899         this is similar to the other _full() methods, but we take a
9900         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
9901         (mono_metadata_parse_generic_param): Take an additional
9902         `MonoGenericContainer *' argument and lookup the MonoGenericParam
9903         from that container.
9904         (mono_metadata_generic_param_equal): New static method to compare
9905         two type parameters.
9906         (_mono_metadata_type_equal): New static method; takes an
9907         additional `gboolean signature_only' argument - if true, we don't
9908         compare the owners of generic parameters.
9909         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
9910         with a TRUE argument - do a signature-only comparision.
9911
9912         * loader.c: Use the new _full() methods and pass the
9913         MonoGenericContainer to them.
9914
9915         * object-internals.h (MonoReflectionTypeBuilder): Added
9916         `MonoGenericContainer *generic_container' field.
9917         (MonoReflectionMethodBuilder): Likewise.
9918
9919 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
9920
9921         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
9922         case initial images of dynamic assemblies.
9923
9924         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
9925
9926         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
9927
9928         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
9929         length of event->other array.
9930         (typebuilder_setup_events): Ditto.
9931
9932         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
9933         'assembly_by_name' and add an 'assemblies' list.
9934
9935         * assembly.h assembly.c: Add a new search hook for determining whenever
9936         an assembly is already loaded. Use this instead of searching in the
9937         loaded_assemblies list.
9938
9939         * domain.c appdomain.c: Implement the new search hook so loaded 
9940         assemblies are now scoped by appdomain. Fixes #67727.
9941
9942 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
9943
9944         * threads.c (mono_thread_attach): Initialize synch_lock field so
9945         mono_thread_detach works again.
9946
9947         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
9948         'lib' too. Fixes #63130.
9949
9950 2004-10-06  Jackson Harper  <jackson@ximian.com>
9951
9952         * culture-info-tables.h: regenerated.
9953
9954 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
9955
9956         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
9957         implemented by other interfaces in the result. Fixes #65764.
9958         
9959         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9960         Handle unloadable modules without crashing.
9961
9962         * image.c (load_modules): Revert the previous patch since modules must
9963         have a fixed index inside the array.
9964         
9965         * image.c (load_modules): Don't include native modules in the modules
9966         array.
9967
9968 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
9969
9970         * reflection.h: Add param_defaults field.
9971
9972         * reflection.c: Add support for parameter defaults in dynamic methods.
9973         Fixes #64595.
9974
9975         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
9976         an empty string when a type has no namespace. Fixes #64230.
9977
9978 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
9979
9980         * tabledefs.h: Added "internal" security actions to support non-CAS
9981         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
9982         Note: they do not seems to be used anymore in 2.0 (new metadata format)
9983
9984 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
9985
9986         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
9987         constructor of abstract class. Fixes #61689.
9988
9989 2004-10-04  Martin Baulig  <martin@ximian.com>
9990
9991         * class-internals.h (MonoGenericContainer): New type.
9992         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
9993         `MonoGenericContainer *generic_container'.
9994         (MonoClass): Replaced `gen_params' and `num_gen_params' with
9995         `MonoGenericContainer *generic_container'.
9996
9997         * metadata.c (mono_metadata_load_generic_params): Return a
9998         `MonoGenericContainer *' instead of a `MonoGenericParam *';
9999         removed the `num' argument.
10000
10001 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
10002
10003         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
10004         for dynamic images.
10005
10006         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
10007         machine fields.
10008
10009         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
10010
10011         * reflection.c: Save pe_kind and machine values into the generated
10012         image file.
10013
10014         * appdomain.c: Bump corlib version number.
10015
10016         * object-internals.h: Reorganize layout of LocalBuilder.
10017
10018         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
10019         New helper function.
10020
10021         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
10022         created MonoType for dynamic types. Fixes #66180.
10023
10024 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
10025
10026         * threadpool.c: the ares hashtable needs a critical section around it.
10027         this prevents some nasty segfaults
10028
10029 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
10030
10031         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
10032         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
10033         bug 67324).
10034         
10035 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10036
10037         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
10038         
10039 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
10040
10041         * image.c: Always canonicalize image file names, to avoid loading
10042         the same assembly twice when referenced using a relative path.
10043
10044 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10045
10046         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
10047
10048         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
10049
10050         * marshal.c: Fix warnings.
10051
10052 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
10053
10054         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
10055         attempting to marshal the delegate_trampoline as the method_addr.
10056         This patch has a static hashtable of marshalled delegates so that 
10057         we can map delegate_trampoline addresses back to delegates.  This
10058         allows a delegate passed to managed code to be passed back into native
10059         code.  Fixes #67039
10060
10061 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10062
10063         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
10064
10065         * reflection.c (method_encode_code): Align method headers properly.
10066         Fixes #66025.
10067
10068 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10069
10070         * marshal.c: In the runtime invoke wrapper, reset the abort
10071         exception if it is cached. This avoids the automatic rethrowal of 
10072         the exception after the catch of the wrapper. Also check for pending
10073         interruptions before calling the managed method. This is done using
10074         the new method emit_thread_force_interrupt_checkpoint, since the
10075         normal checkpoint method is ignored when running the invoke wrapper.
10076         * object.c: If the abort exception is rethrown, set the abort_exc
10077         field of the thread, so it will be rethrown aftere every catch.
10078         * threadpool.c: Only run an interruption checkpoint if what has been
10079         requested is a stop of the thread (aborts will be ignored).
10080         * threads.c: By default, a thread will now never be interrumped while
10081         running the runtime invoke wrapper (this ensures that runtime_invoke
10082         will always return to the caller if an exception pointer is provided).
10083         There is a new special method mono_thread_force_interruption_checkpoint()
10084         to force an interruption checkpoint even if running a protected
10085         wrapper, which is used by the same runtime invoke wrapper to do a check
10086         at a safe point.
10087
10088 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10089
10090         * object.c, object-internals.h: Implemented mono_release_type_locks,
10091         which releases the cctor locks held by a thread.
10092         * threads.c, threads.h: In thread_cleanup, release cctor locks held
10093         by a thread. Added mono_thread_exit() method to be used to safely stop
10094         a thread.
10095
10096 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10097
10098         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10099         Move null check before dereference.  Avoid indexing beyond the end
10100         of the 'modules' array.
10101
10102 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10103
10104         * metadata-internals.h (MonoImage): Add module_count field.
10105         * image.c (load_modules): Set image->module_count.
10106         (mono_image_load_file_for_image): Use image->module_count.
10107         * reflection.c (mono_image_load_module): Append to image->modules array 
10108         of dynamic assembly.
10109         (mono_module_get_object): Fix loop to actually increment index.
10110         Use image->module_count.
10111         * assembly.c (mono_assembly_load_references): Use image->module_count.
10112         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
10113         Likewise.
10114
10115 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10116
10117         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
10118         Avoid assert on generic types.
10119
10120 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
10121
10122         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
10123
10124         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
10125
10126         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
10127         function to convert a MarshalSpec structure to its managed counterpart.
10128
10129         * reflection.c: Fix warnings.
10130         
10131         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
10132         field.
10133
10134         * icall.c (mono_create_icall_signature): Fix build.
10135
10136 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
10137
10138         * icall.c: Add MakePointType icall.
10139
10140         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
10141         warnings.
10142
10143 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10144
10145         * threadpool.c: reuse allocated slots in the queue.
10146
10147 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
10148
10149         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
10150
10151         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
10152
10153         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
10154         previous change.
10155
10156         * tabledefs.h: Add constants for pinvoke attributes BestFit and
10157         ThrowOnUnmappableChar.
10158
10159         * icall.c (ves_icall_Type_GetPacking): New icall.
10160
10161 2004-09-24  Martin Baulig  <martin@ximian.com>
10162
10163         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
10164
10165 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10166
10167         * appdomain.c:
10168         (mono_domain_set): allow setting a domain that is being unloaded.
10169         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
10170         being unloaded.
10171
10172 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10173
10174         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
10175         the GetCustomAttributes icall.
10176
10177 2004-09-23  Martin Baulig  <martin@ximian.com>
10178
10179         * object-internals.h (MonoReflectionGenericParam): Replaced
10180         'has_ctor_constraint', `has_reference_type' and `has_value_type'
10181         with `guint32 attrs'.
10182
10183 2004-09-23  Martin Baulig  <martin@ximian.com>
10184
10185         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
10186
10187 2004-09-23  Martin Baulig  <martin@ximian.com>
10188
10189         * object-internals.h (GenericParameterAttributes): New enum.
10190
10191 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10192
10193         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
10194         
10195         * class.c (init_events): Fill out event->other field.
10196
10197         * class.c: Fix warnings.
10198
10199         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
10200
10201 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
10202
10203         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
10204         walk which doesn't supply the IL offset.
10205
10206 2004-09-22  Martin Baulig  <martin@ximian.com>
10207
10208         * reflection.c (mono_reflection_setup_internal_class): If we're
10209         System.ValueType, System.Object or System.Enum, set
10210         `klass->instance_size' and create the vtable.
10211         (mono_reflection_create_internal_class): If we're an enum type,
10212         get the base class from our current corlib.
10213
10214 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
10215
10216         * reflection.h (MonoResolveTokenError): New type.
10217
10218         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
10219         icall.
10220
10221         * icall.c: Add an 'error' argument to the ResolveToken icalls.
10222
10223 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
10224
10225         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
10226         Support also calling constructors, but only for already allocated objects.
10227
10228 2004-09-17  Geoff Norton <gnorton@customerdna.com>
10229
10230         * reflection.c (type_get_qualified_name): If the klass is null
10231         return the typename to avoid a NullRefEx.
10232         (encode_cattr_value): Get the qualified name of the boxed type,
10233         not the underlying enumtype.  Fixes #62984.
10234
10235 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
10236
10237         * marshal.c: Fix problems with previous checkin.
10238
10239 2004-09-21    <vargaz@freemail.hu>
10240
10241         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
10242         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
10243
10244         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
10245
10246 2004-09-21  Geoff Norton <gnorton@customerdna.com>
10247
10248         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
10249         should only return a type for pointers, arrays, and passbyref types.
10250         Fixes bug #63841.
10251
10252 2004-09-21  Martin Baulig  <martin@ximian.com>
10253
10254         * domain.c (mono_debugger_check_runtime_version): New public
10255         function.
10256
10257         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
10258
10259 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
10260
10261         * reflection.c: Added missing sort to the declarative security 
10262         attributes table. MS implementation stops seeing the attributes if the
10263         token number regress in the table (as shown by ildasm and permview).
10264
10265 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
10266
10267         * object-internals.h (MonoReflectionModule): Add 'token' field.
10268         
10269         * reflection.c (mono_reflection_get_token): Add support for Module
10270         and Assembly.
10271         (mono_module_get_object): Set 'token' field.
10272         (mono_module_file_get_object): Set 'token' field.
10273
10274         * icall.c: Add new Assembly and Module icalls.
10275
10276         * appdomain.c: Bump corlib version.
10277
10278 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
10279
10280         * loader.h loader.c class.h class.c: Add helper functions for obtaining
10281         tokens of metadata objects.
10282
10283         * reflection.h reflection.c (mono_reflection_get_token): New function
10284         to obtain the token of a metadata object.
10285
10286         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
10287
10288 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
10289
10290         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
10291         
10292         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
10293
10294 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
10295
10296         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
10297         * object-internals.h: Added 3 MonoArray* members to MonoReflection
10298         AssemblyBuilder to access the permissions set in the class lib.
10299         * reflection.c: Added security attributes encoding step in 
10300         mono_image_build_metadata.
10301         * tabledefs.h: Added new security actions defined in 2.0:
10302         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
10303
10304 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10305
10306         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
10307         macro parameter.
10308
10309 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10310  
10311         * locales.c: nullify the ICU_collator member of CompareInfo when it is
10312           finalized. There where random SIGSEVs at program termination, when
10313           an object being finalized was trying to do a string comparison and
10314           the current culture was already finalized.
10315  
10316 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10317
10318         * threads.c: call thread_cleanup before finishing the thread if we get
10319         there.
10320
10321 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
10322
10323         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
10324         assemblies from the parent. Fixes #65665.
10325
10326 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
10327
10328         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
10329         modifiers.
10330
10331 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
10332
10333         * reflection.h: add prototype for mono_get_dbnull_object
10334         * reflection.c: add prototypes for get_default_param_value_blobs 
10335         and mono_get_object_from_blob for fussier compilers
10336
10337 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
10338  
10339         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
10340         false deadlock checks in class initialization.
10341  
10342 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
10343
10344         * image.c (mono_image_addref): Fix comment.
10345
10346         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
10347         possible.
10348
10349 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
10350
10351         * reflection.c (mono_param_get_objects): Modified to return
10352         ParameterInfo.DefaultValue object.
10353
10354         (get_default_param_value_blobs):
10355         (mono_get_object_from_blob):
10356         (mono_get_dbnull_object): New helper routines. 
10357
10358         * object.c (mono_get_constant_value_from_blob): New helper routine
10359         carved out from get_default_field_value ()
10360
10361         * object-internals.h (mono_get_constant_value_from_blob): Added
10362         function declaration.
10363
10364 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
10365
10366         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
10367         referenced assemblies. Fixes #62135.
10368
10369         * exception.h exception.c (mono_get_exception_file_not_found2): New
10370         helper function.
10371
10372 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
10373
10374         * class.h class.c: Add mono_type_get_underlying_type ().
10375
10376 2004-09-09  Geoff Norton <gnorton@customerndna.com>
10377
10378         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
10379         Fix GetTypes() to support dynamically created assemblies.
10380
10381 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
10382
10383         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
10384         
10385         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
10386         previous patch.
10387
10388         * reflection.h reflection.c loader.c: Allow dynamic construction of
10389         pinvoke methods. Fixes #65571.
10390         
10391         * reflection.c (mono_reflection_get_type): Revert previous change since
10392         it causes regressions.
10393
10394 2004-09-08  Martin Baulig  <martin@ximian.com>
10395
10396         * class.c (class_compute_field_layout): Don't call
10397         mono_class_layout_fields() for open generic instances.
10398
10399 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
10400         * threads.c appdomain.c: fix typo in GC macro
10401
10402 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10403
10404         * threads.c: don't call mono_thread_detach() in start_wrapper(),
10405         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
10406
10407 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
10408
10409         * image.c (mono_image_close): Applied patch from 
10410         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
10411         assembly is loaded multiple times from data.
10412         
10413         * image.c (mono_image_open): Fix warning.
10414
10415 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10416
10417         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
10418         once. Fixes #58334.
10419         
10420         * reflection.c (mono_reflection_create_runtime_class): Initialize
10421         klass->nested_classes. Fixes #61224.
10422
10423 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
10424
10425         * threads.c: sched_yield() on exit, to allow threads to quit.
10426
10427 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10428
10429         * object.c (mono_unhandled_exception): Remove leftover debug code.
10430
10431 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
10432
10433         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
10434
10435 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10436
10437         * marshal.c (emit_marshal_array): Really null terminate string arrays.
10438         
10439         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
10440
10441 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10442
10443         * marshal.c (emit_marshal_array): Null terminate string arrays.
10444         
10445         * marshal.c (raise_auto_layout_exception): Fix warning.
10446
10447         * reflection.c (mono_param_get_objects): Initialize the default value
10448         with DBNull.Value, not null. Fixes #62123.
10449
10450 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
10451
10452         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
10453         throw an exception with a cute explanation.
10454
10455 2004-09-06  Dick Porter  <dick@ximian.com>
10456
10457         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
10458         Close the new process's thread handle, as we don't use it.  The
10459         handle stays around forever otherwise.
10460
10461 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10462
10463         * object.c (arith_overflow): Fix warning.
10464
10465         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
10466         calling conventions in method refs. Fixes #65352.
10467
10468         * reflection.c: Fix warnings.
10469
10470 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
10471
10472         * icall.c: Add a new icall for Array.Clear
10473
10474 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
10475
10476         * object.c: When allocating an array, we have to throw
10477         an overflow exception if any of the lengths are < 0.
10478
10479 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10480
10481         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
10482         properly. Also move implementation of string array marshalling to 
10483         managed code. Fixes #42316.
10484
10485 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10486
10487         * assembly.c: provide more information when loading an assembly fails.
10488
10489 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10490
10491         * filewatcher.c: don't expect the development fam package to be
10492         installed.
10493
10494 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
10495
10496         * marshal.c: Make a copy of the signature cookie since it will be
10497         freed by the caller.
10498         
10499         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
10500
10501         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
10502
10503         * metadata.c (mono_metadata_free_marshal_spec): New function to free
10504         marshal specs.
10505
10506         * marshal.c: More refactoring.
10507         
10508         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
10509         smaller functions.
10510
10511 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
10512
10513         * object.c: In mono_message_invoke, fill the output parameter array after
10514           calling the managed method (it was done before the call). This fixes
10515           bug #59299.
10516
10517 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
10518
10519         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
10520         as well.
10521
10522 2004-09-02  Martin Baulig  <martin@ximian.com>
10523
10524         * class.c (mono_class_instance_size): Don't allow generic type
10525         definitions or open generic instances.
10526         (mono_class_array_element_size): If we're a value type, call
10527         mono_class_instance_size() on the original class.
10528
10529         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
10530         handle generic instances.
10531
10532         * mono-debug-debugger.c (write_type): Handle generic instances
10533         like classes.
10534
10535 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
10536
10537         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
10538         the allocation request fails. Fixes #65089.
10539
10540         * object.c (mono_runtime_free_method): Do not call mono_free_method.
10541         
10542         * object.c (mono_runtime_free_method): New function to free a dynamic
10543         method.
10544
10545         * marshal.c (mono_delegate_free_ftnptr): New function to free the
10546         delegate trampoline.
10547
10548         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
10549         with hasthis as dynamic,
10550
10551         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
10552
10553         * domain.c (mono_jit_info_table_remove): New function to remove an
10554         entry from the jit info table.
10555
10556         * class-internals.h (MonoMethod): Add 'dynamic' field.
10557
10558         * loader.c: Fix warnings.
10559
10560 2004-09-01  Martin Baulig  <martin@ximian.com>
10561
10562         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
10563         instead of mono_debugger_lock() because the latter one is a no-op
10564         unless running in the debugger.
10565
10566 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
10567
10568         * class.c (class_compute_field_layout): Classes with auto-layout or
10569         reference fields are not blittable.
10570         
10571 2004-09-01  Dick Porter  <dick@ximian.com>
10572
10573         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
10574         mono_image_get_filename() to get the assembly location.
10575
10576         * icall.c:
10577         * metadata.h: Fix compile warnings
10578
10579 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
10580
10581         * class.c (class_compute_field_layout): System.Object is blittable.
10582
10583         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
10584         as in/out. Fixes #59909.
10585
10586 2004-09-01  Martin Baulig  <martin@ximian.com>
10587
10588         * metadata.h (MONO_TYPE_ISREFERENCE): Call
10589         mono_metadata_generic_inst_is_valuetype() if we're a generic
10590         instance to check whether our underlying type is a reference type.
10591
10592 2004-09-01  Martin Baulig  <martin@ximian.com>
10593
10594         * metadata.c (mono_type_size): If we're a generic instance, call
10595         mono_class_value_size() for value types.
10596
10597 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
10598
10599         * marshal.c: Implement more custom marshalling functionality. Fixes
10600         #64915.
10601
10602 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
10603
10604         * mono-debug.c, debug-mono-symfile.c: add some locking love.
10605
10606 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
10607
10608         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
10609
10610         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
10611
10612         * icall.c: Fix some warnings.
10613
10614         * threads.c (abort_appdomain_thread): Fix unref errors.
10615         (mono_thread_current): Fix THREAD_DEBUG define.
10616
10617 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
10618
10619         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
10620
10621         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
10622
10623 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
10624
10625         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
10626         string arrays.
10627
10628 2004-08-28  Martin Baulig  <martin@ximian.com>
10629
10630         * metadata.c
10631         (mono_metadata_generic_inst_is_valuetype): New public function.
10632
10633         * metadata.h (MONO_TYPE_ISSTRUCT): Call
10634         mono_metadata_generic_inst_is_valuetype() if we're a generic
10635         instance to check whether our underlying type is a valuetype.
10636
10637 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
10638
10639         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
10640         #63768.
10641
10642 2004-08-25  Martin Baulig  <martin@ximian.com>
10643
10644         * loader.c (mono_get_method_from_token): Abstract methods can also
10645         be generic and thus have type parameters.
10646
10647         * metadata-internals.h
10648         (MonoDynamicImage): Added `GPtrArray *gen_params'.
10649
10650         * reflection.c (mono_image_get_generic_param_info): Don't create a
10651         metadata row, just add an entry to the `gen_params' array.
10652         (build_compressed_metadata): Sort the `gen_params' array and then
10653         actually create the metadata.
10654
10655 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10656
10657         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
10658
10659 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
10660
10661         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
10662
10663 2004-08-24  Martin Baulig  <martin@ximian.com>
10664
10665         * class.cs (mono_class_is_subclass_of): Like an interface, a
10666         generic instance also derives from System.Object.
10667
10668 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
10669
10670         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
10671         custom modifiers to be in any order. Fixes #61990.
10672
10673 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
10674
10675         * object.c: Register mono_object_new_fast icall.
10676         
10677         * object.c (mono_class_get_allocation_ftn): Return to calling
10678         mono_object_new_fast, since it seems faster to compute the object 
10679         size in unmanaged code than passing it as a parameter.
10680
10681         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
10682
10683         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
10684         this function with Boehm as the oom handler, so we don't have to check
10685         the result of GC_malloc.
10686
10687         * object.c: Remove checks for oom.
10688
10689         * object.h object.c (mono_class_get_allocation_ftn): New function to
10690         return the icall which can be used to allocate an instance of a given
10691         class. 
10692
10693         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
10694
10695         * class-internals.h: Add 'enabled' field.
10696
10697 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
10698
10699         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
10700
10701 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
10702         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
10703         value 0x0010.
10704
10705 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
10706
10707         * appdomain.c: use the Tls function for appdomain too,
10708         at Zoltan's request. Actually return in mono_context_get
10709
10710         * appdomain.c, profiler.c, threads.c: use __thread
10711
10712 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
10713
10714         * appdomain.c threads.c: Call GC_CreateThread on windows.
10715
10716         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
10717         multiple libraries since this don't work on windows.
10718
10719 2004-08-18  Martin Baulig  <martin@ximian.com>
10720
10721         * class-internals.h
10722         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
10723         MonoMethodHeader.
10724
10725         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
10726         MonoMethodNormal since we also need it for abstract and interface
10727         methods.
10728
10729         * reflection.c
10730         (build_compressed_metadata): Sort the GenericParam table.
10731         (mono_image_create_token): Added `gboolean create_methodspec'
10732         argument; this is false when generating a MethodImpl token.
10733         (reflection_methodbuilder_to_mono_method): Abstract and interface
10734         methods may also have generic parameters.
10735
10736 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
10737
10738         * appdomain.c: thread local alloc
10739
10740 2004-08-17  Martin Baulig  <martin@ximian.com>
10741
10742         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
10743
10744         * icall.c
10745         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
10746         argument.
10747
10748         * class.c (mono_type_get_full_name): New public function.
10749         (mono_type_get_name): Don't include the type arguments.
10750
10751 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
10752
10753         * Makefile.am: Build static versions of libmetadata and libmonoruntime
10754         for inclusion into the mono executable.
10755
10756 2004-08-16  Martin Baulig  <martin@ximian.com>
10757
10758         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
10759         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
10760
10761 2004-08-14  Martin Baulig  <martin@ximian.com>
10762
10763         * class.c (dup_type): Also copy the `byref' field.
10764
10765 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
10766
10767         * reflection.c (create_dynamic_mono_image): Revert the last change 
10768         since it breaks bootstrap.
10769
10770 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
10771
10772         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
10773
10774         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
10775         not free them with g_free.
10776
10777 2004-08-11  Martin Baulig  <martin@ximian.com>
10778
10779         * reflection.c (mono_reflection_setup_internal_class): Also call
10780         mono_class_setup_mono_type() if we already have a `tb->type.type'.
10781
10782 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
10783
10784         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
10785         called during default (first) AppDomain creation. Keep track of
10786         Evidence when loading assemblies.
10787
10788 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10789
10790         * opcodes.c, opcodes.h: reduce runtime relocations.
10791
10792 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
10793
10794         * culture-info.h, locales.c: fixes and chages to sue the new
10795         optimized format of the locale data.
10796         * culture-info-tables.h: regenerated.
10797
10798 2004-08-06  Geoff Norton <gnorton@customerdna.com>
10799         
10800         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
10801
10802 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
10803
10804         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
10805         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
10806         * domain-internals.h: icall declaration.
10807         * icall.c: icall registration.
10808         * object-internals.h: New fields in MonoAssembly for CAS.
10809
10810 2004-08-05  Duncan Mak  <duncan@ximian.com>
10811
10812         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
10813         CEE_LDELEM_ANY.
10814
10815 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10816
10817         * reflection.c: fix to deal with object[] arrays in custom ctors
10818         (bug #62550).
10819
10820 2004-08-05  Martin Baulig  <martin@ximian.com>
10821
10822         * class.c (mono_class_array_element_size): Added support for
10823         generic instances and correctly handle "recursive" types.
10824
10825 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
10826
10827         * assembly.c: Fix warnings.
10828
10829 2004-08-04  Martin Baulig  <martin@ximian.com>
10830
10831         * class.c
10832         (mono_type_get_name_recurse): Added `gboolean include_arity'
10833         argument specifying whether or not we should include the generic
10834         arity in the type name.
10835         (_mono_type_get_name): New static function.
10836         (mono_class_setup_vtable): If we're a generic instance, don't
10837         include the generic arity in the names of explicit method
10838         implementations.        
10839
10840 2004-08-03  Martin Baulig  <martin@ximian.com>
10841
10842         * class.c (mono_type_get_name_recurse): Enclose the generic type
10843         arguments in `<', '>'.
10844
10845 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10846
10847         * gc.c: make GC warning messages use the trace API, they are just
10848         noise to most of the users.
10849
10850 2004-08-03  Martin Baulig  <martin@ximian.com>
10851
10852         * debug-mono-symfile.c (read_string): Correctly read the string.
10853
10854 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
10855
10856         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
10857         
10858         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
10859         icalls.
10860         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
10861
10862 2004-07-30  Martin Baulig  <martin@ximian.com>
10863
10864         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
10865         Reflect latest symbol writer changes.   
10866
10867 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10868
10869         * object.c: always create an object if null is passed
10870         to Invoke() where a valuetype is expected.
10871
10872 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
10873
10874         * marshal.c (mono_marshal_init): make managed
10875         signatures match native ones better for 64bits.
10876
10877 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10878
10879         * appdomain.c: hack to build correctly the private bin path on windows.
10880         Fixes bug #61991.
10881
10882 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
10883
10884         * assembly.c: Load mscorlib from the correct framework directory
10885           (mono/<version>/mscorlib.dll).
10886         * appdomain.h: Added prototypes for new functions.
10887         * internals.h: Added some prototypes.
10888         * domain.c: When initializing the runtime, get from the executable and
10889           the configuration files the runtime version that the app supports.
10890           Added support methods for reading app.exe.config. Added list of versions
10891           supported by the JIT. Added two new methods: mono_init_from_assembly,
10892           which initializes the runtime and determines the required version from
10893           the provided exe file, and mono_init_version, which initializes
10894           the runtime using the provided version.
10895         * icall.c: Get machine.config from version-specific directory.
10896         * reflection.c: When generating an image, embed the version number
10897           of the current runtime.
10898
10899 2004-07-28  Dick Porter  <dick@ximian.com>
10900
10901         * socket-io.c
10902         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
10903         returned sockaddr size before creating the remote address object.
10904         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
10905         61608.
10906
10907 2004-07-28  Dick Porter  <dick@ximian.com>
10908
10909         * locales.c (string_invariant_compare_char): Fix invariant char
10910         compares between upper and lower cases.  Fixes bug 61458.
10911
10912 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
10913         
10914         * marshal.c: actually cache stelem.ref wrappers.
10915         
10916 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
10917
10918         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
10919         sections and remove the mono_cli_rva_map () function.
10920
10921 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10922
10923         * debug-mono-symfile.c: fix one more endianess issue, from a patch
10924         by Geoff Norton (<gnorton@customerdna.com>).
10925
10926 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10927
10928         * class.c: fix class loads for pointer types (typeof(int) !=
10929         typeof(int*)).
10930
10931 2004-07-27  Martin Baulig  <martin@ximian.com>
10932
10933         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
10934         reading the debugging information from an external ".mdb" file.
10935
10936 2004-07-24  Martin Baulig  <martin@ximian.com>
10937
10938         * reflection.c (mono_image_get_type_info): Only write a class
10939         layout entry if we actually have a size or a packing size.
10940
10941 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10942
10943         * reflection.c (type_get_fully_qualified_name): 
10944         insert cast to get type checking of ?: with non-gcc compilers
10945
10946 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10947
10948         * rand.c: use g_getenv for both lookups of
10949         MONO_EGD_SOCKET
10950
10951 2004-07-17  Martin Baulig  <martin@ximian.com>
10952
10953         * reflection.c (mono_reflection_bind_generic_method_parameters):
10954         Set `gmethod->reflection_info'.
10955
10956 2004-07-17  Martin Baulig  <martin@ximian.com>
10957
10958         * class.c (mono_class_create_from_typedef): Insert the newly
10959         created class into the hash table before computing the interfaces
10960         since we could be called recursively.
10961
10962 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
10963
10964         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
10965         function to implement stelem.ref in managed code
10966         * class-internals.h, debug-helpers.c: a new wrapper type
10967         for the above.
10968
10969 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10970
10971         * gc.c: allow GC handles to work even when no GC is compiled in.
10972         Fix part of bug #61134 (GetAddrOfPinnedObject).
10973
10974 2004-07-13  Peter Williams  <peter@newton.cx>
10975  
10976         * process.c (complete_path): Make sure we don't attempt to execute
10977         directories.
10978  
10979 2004-07-12  Geoff Norton <gnorton@customerdna.com>
10980
10981         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
10982           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
10983           and will add/subtract the hour if needed
10984
10985 2004-07-12  Martin Baulig  <martin@ximian.com>
10986
10987         * reflection.c (mono_field_get_object): If we have
10988         `field->generic_info', take the attributes from
10989         `field->generic_info->generic_type'.    
10990
10991 2004-07-12  Martin Baulig  <martin@ximian.com>
10992
10993         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
10994         This function must be called before initializing the runtime.
10995         (mono_debug_init_1): New function; call this after initializing
10996         the runtime, but before loading the assembly.  It tells the
10997         debugger to load corlib and the builtin types.
10998
10999         * mono-debug-debugger.c: Did some larger changes in the debugging
11000         code; support recursive class declarations, make sure we actually
11001         add all classes.
11002
11003 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11004
11005         * debug-helpers.c: undo my previous patch and fixed the real issue in
11006         ../mini/exceptions-x86.c
11007
11008 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11009
11010         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
11011         when no HOME env. variable was set and a NullRef was thrown in a .cctor
11012         called from other .cctors.
11013
11014 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
11015
11016         * loader.c: Removed the mono_loader_wine_init hack now that we are
11017         doing a managed version of Windows.Forms.
11018
11019 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
11020
11021         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
11022         threadpool.c, threads.c: remove static data from rootset.
11023
11024 2004-07-09  Dick Porter  <dick@ximian.com>
11025
11026         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
11027         Don't do any more processing if the matched length was 0.  It was
11028         increasing the size of the string before.  Fixes bug 61167.
11029
11030 2004-07-09  Dick Porter  <dick@ximian.com>
11031
11032         * socket-io.h:
11033         * socket-io.c
11034         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11035         Add support for SO_PEERCRED if its available.
11036
11037 2004-07-09  Peter Bartok <pbartok@novell.com>
11038         * loader.c: winelib.exe.so error message is now only displayed if
11039         MONO_DEBUG is set. To help us avoid questions when people are trying
11040         out the new Managed.Windows.Forms.
11041
11042 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
11043
11044         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
11045         for isinst and castclass wrappers.
11046
11047         * class-internals.h icall.c: Move registration and lookup of JIT icalls
11048         to libmetadata from the JIT, so they could be used by the marshalling
11049         code and the interpreter.
11050
11051         * marshal.c: Register marshalling related JIT icalls here instead of
11052         in mini.c. Use CEE_MONO_ICALL instead of the family of 
11053         CEE_MONO_PROC<x> opcodes to call marshalling functions.
11054
11055         * metadata.h: Remove unneeded marshalling conversions.
11056
11057         * opcodes.c: Update for new opcodes.
11058         
11059 2004-07-08  Martin Baulig  <martin@ximian.com>
11060
11061         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
11062         (mono_debug_get_domain_data): Make this function static.
11063
11064 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11065
11066         * gc.c, object.h: add nice GC handle API for embedders.
11067
11068 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
11069
11070         * reflection.c: more changes for the new api
11071
11072         * object.c: When we reflect on a field w/ a constant value, it
11073         will not have a memory location, so we must access metadata. Also,
11074         allow easier reading of strings so that we can read them from
11075         the constant data.
11076
11077         * class.c (mono_class_layout_fields): no need for literal fields here.
11078
11079         * class-internals.h: api changes for const fields
11080
11081         * icall.c (ves_icall_get_enum_info): use new apis for const fields
11082
11083 2004-07-06  Martin Baulig  <martin@ximian.com>
11084
11085         * mono-debug.h: Increment version number to 44.
11086
11087         * mono-debug.c (mono_debug_add_wrapper): The second argument is
11088         now a gpointer, rewrote this whole method.
11089
11090         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
11091         function.  Add information about the wrapper in a new "misc table".
11092
11093         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
11094         for the new misc table.
11095
11096 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
11097
11098         * metadata-internals.h image.c: Add a cache for helper signatures.
11099
11100         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
11101
11102 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
11103
11104         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
11105         delegates from a delegate. Fixes #61033.
11106         
11107         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
11108         marshalling of stringbuilder arrays. Fixes #59900.
11109
11110 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
11111
11112         * icall.c: Add EnumBuilder:setup_enum_type icall.
11113
11114 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
11115
11116         * icall.c: Added a new icall for the property version of
11117         OffsetOfStringData.
11118
11119 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
11120
11121         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
11122         it has a constant size across platforms.
11123
11124         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
11125         stack trace.
11126
11127 2004-06-29  Martin Baulig  <martin@ximian.com>
11128
11129         * mono-debug.c (mono_debug_add_method): Protect the whole function
11130         in mono_debugger_lock(), not just parts of it.
11131
11132 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11133
11134         * reflection.c: make sure padding bytes in heaps are zeroed.
11135
11136 2004-06-24  David Waite  <mass@akuma.org>
11137
11138         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
11139         image.c, loader.c, locales.c, marshal.c, metadata.c,
11140         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
11141         string-icalls.c, threads.c: change to C90-style comments from C99 /
11142         C++ -style
11143
11144 2004-06-24  Dick Porter  <dick@ximian.com>
11145
11146         * threads.c
11147         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
11148         return createdNew.  Fixes bug 60412.
11149
11150         * threads-types.h: 
11151         * icall.c: Add createdNew parameter to CreateMutex icall
11152
11153 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11154
11155         * reflection.c, object-internals.h: save default value in params.
11156
11157 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11158
11159         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
11160         no need to build a new path combining that with the application base.
11161         Fixes bug #60442.
11162
11163 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
11164
11165         * reflection.c: fixed minor standard compliance issues.
11166
11167 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11168
11169         * reflection.c: fixed issue with encoding some custom attributes
11170         (arrays in properties and fields, bug #60411).
11171
11172 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11173
11174         * reflection.c: fix start address when copying the public key token.
11175
11176 2004-06-23  Martin Baulig  <martin@ximian.com>
11177
11178         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
11179         the `exc' object in a static object to put it into the GC's root set.
11180
11181 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
11182
11183         * reflection.c: make mono_reflection_setup_internal_class ()
11184         callable a second time to setup a new parent class.
11185
11186 2004-06-23  Dick Porter  <dick@ximian.com>
11187
11188         * threads.c: Check for WAIT_IO_COMPLETION return values.
11189
11190 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
11191
11192         * appdomain.c: Removed the g_free on the public key token. Now copy 
11193         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
11194         * assembly.c: Added public key token string value when loading 
11195         assemblies. Fix bug #60439.
11196         * icall.c: Added missing informations (like public key) in 
11197         GetReferencedAssemblies. Fix #60519.
11198         * image.h: Changed definition for public key token from const char*
11199         public_tok_value to guchar public_key_token [17];
11200         * reflection.c: Updated for changes to public key token.
11201
11202 2004-06-22  Lluis Sanchez Gual
11203
11204         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
11205         for the field in base classes.
11206
11207 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11208
11209         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
11210         mark headers as not supported, they are installed only for use by the
11211         debugger.
11212
11213 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
11214
11215         * *.c, *.h: avoid namespace pollution in public headers.
11216
11217 2004-06-21  Martin Baulig  <martin@ximian.com>
11218
11219         * exception.c (mono_get_exception_security): It's in
11220         "System.Security", not in "System".
11221
11222         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
11223         the exception classes.
11224
11225 2004-06-21  Martin Baulig  <martin@ximian.com>
11226
11227         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
11228         Protect the exception object from being finalized.
11229
11230 2004-06-21  Martin Baulig  <martin@ximian.com>
11231
11232         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
11233         public function.
11234
11235 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
11236
11237         * reflection.c: Load the assembly in mono_reflection_type_from_name,
11238         if it was not loaded before. Fix parts of #60439.
11239
11240 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
11241
11242         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
11243         code that was broken since Ben's change: wrappers are now
11244         dependent on the method signature only again.
11245
11246 2004-06-21  Martin Baulig  <martin@ximian.com>
11247
11248         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
11249         added interface support.
11250
11251 2004-06-21  Martin Baulig  <martin@ximian.com>
11252
11253         * class.c (mono_vtable_get_static_field_data): New public method.
11254
11255 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
11256
11257         * filewatcher.c : Windows build fix to be compliant with API changes.
11258
11259 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11260
11261         * class.h, class.c: more accessors.
11262         * metadata.h, metadata.c: prepare for hiding MonoType and
11263         MonoMethodSignature: people should use the accessors from now on
11264         outside of the tree.
11265
11266 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11267
11268         * *.c, *.h: more API cleanups.
11269
11270 2004-06-18  Jackson Harper  <jackson@ximian.com>
11271
11272         * assembly.c: Trace loading assemblies.
11273         * loader.c: Trace loading native libraries.
11274         * mono-config.c: Trace loading config files.
11275         
11276 2004-06-18  Dick Porter  <dick@ximian.com>
11277
11278         * locales.c: Tell ICU the lengths of strings, it can cope with
11279         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
11280
11281 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
11282
11283         * image.c: swapped name/filename;
11284
11285 2004-06-18  Martin Baulig  <martin@ximian.com>
11286
11287         * mono-debug-debugger.c (write_class): Write the parent class at
11288         the end of the header.
11289
11290 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11291
11292         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
11293
11294 2004-06-17  Raja R Harinath  <rharinath@novell.com>
11295
11296         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
11297         (bundle_obj): New conditional define.
11298         (BUILT_SOURCES): Remove.
11299         ($(bundle_srcs)): Make parallel-make safe.
11300         (libmonoruntime_la_LIBADD): Make unconditional.
11301         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
11302         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
11303
11304 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
11305
11306         * culture-info-tables.h: It was inconsistent with the latest
11307           supp info files.
11308
11309 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
11310
11311         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
11312         be loaded.
11313
11314         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
11315         with gcc 2.95.
11316
11317 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11318
11319         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
11320         cleaned up public header threads.h.
11321
11322 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11323
11324         * Makefile.am, *.c, *.h: more API cleanups.
11325
11326 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
11327
11328         * Makefile.am: removed monosn from compilation.
11329         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
11330         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
11331         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
11332         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
11333         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
11334         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
11335
11336 2004-06-15  Jackson Harper  <jackson@ximian.com>
11337
11338         * assembly.c: Make locales lower case when searching the GAC for
11339         assemblies. gacutil will always make locales lowercase when
11340         installing so this effectively makes them case insensitive.
11341         
11342 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
11343
11344         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
11345         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
11346           parameter which allows to choose whether the wait can be interrupted or 
11347           not. Also added the method mono_monitor_enter(), which locks the monitor
11348           using an infinite wait and without allowing interruption.
11349           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
11350           interrupted.
11351         * object.h: Added new fields in MonoThread. suspend_event holds the event
11352           used to susped/resume the thread. synch_lock is the lock object to use for
11353           modifying the thread state.
11354         * threads.c: Use the new synch_lock object for locking, instead of "this",
11355           which can generate deadlocks.
11356           Moved thread state change in Thread.Sleep and Thread.Join from managed
11357           to unmanaged code. This avoids a deadlock when the thread was suspended
11358           just after acquiring the thread lock.
11359           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
11360           Implemented Thread.Suspend using an event instead of ThreadSuspend,
11361           which is not fully implemented in the io-layer.
11362         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
11363
11364 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
11365
11366         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
11367         threads-types.h: more API cleanups.
11368
11369 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11370
11371         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
11372         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
11373         threadpool.c, threads.c: first pass at the exported API cleanup.
11374
11375 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
11376
11377         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
11378
11379 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11380
11381         * icall.c: added internalGetHome.
11382
11383 2004-06-14  Dick Porter  <dick@ximian.com>
11384
11385         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
11386         possible to return successfully when '.' or '..' were the only
11387         entries in a directory, but were skipped.  The MonoIOStat was not
11388         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
11389         Fixes bug 59574.
11390
11391 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
11392
11393         * reflection.c: make binaries run on .Net 1.1 by default.
11394
11395 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
11396
11397         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
11398
11399 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
11400
11401         * marshal.c: keep track of struct size with explicit layout
11402         (bug #59979).
11403
11404 2004-06-12  Martin Baulig  <martin@ximian.com>
11405
11406         * mono-debug-debugger.c: Comment out a debugging g_message().
11407
11408 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11409
11410         * reflection.c, reflection.h: do not free custom attrs that are cached.
11411         * icall.c: use braces to make code clearer.
11412
11413 2004-06-11  Martin Baulig  <martin@ximian.com>
11414
11415         * class.h (MonoInflatedField): New type.
11416         (MonoClassField): Replaced `MonoType *generic_type' with
11417         `MonoInflatedField *generic_info'.
11418
11419         * icall.c
11420         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
11421
11422 2004-06-11  Martin Baulig  <martin@ximian.com>
11423
11424         * reflection.c (mono_image_create_method_token): Correctly encode
11425         varargs methods.
11426
11427 2004-06-11  Martin Baulig  <martin@ximian.com>
11428
11429         * metadata.c (mono_metadata_parse_method_signature): When parsing
11430         a MethodDef which has VarArgs, also set sentinelpos if we don't
11431         have any parameters.
11432
11433 2004-06-11  Martin Baulig  <martin@ximian.com>
11434
11435         * verify.c (mono_method_verify): In CEE_CALL, use
11436         mono_method_get_signature() to get the method's signature, unless
11437         we're a PInvoke method.
11438
11439 2004-06-10  Jackson Harper  <jackson@ximian.com>
11440
11441         * assembly.c: Use <path>/lib/mono/gac for the extra paths
11442         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
11443         logical name as the supplied path is just a prefix to the gac not
11444         the direct path to it.
11445         
11446 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
11447
11448         * reflection.c: make the token for a created method match
11449         the token of the MethodBuilder it was created from
11450         (IKVM requires this behaviour now).
11451
11452 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
11453
11454         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
11455         reflection.c, socket-io.c: leak fixes.
11456
11457 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
11458
11459         * icall.c: handle sentinel pos in vararg methods in position different
11460         from 0.
11461
11462 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11463
11464         * culture-info-tables.h: freshly generated.
11465
11466 2004-06-09  Martin Baulig  <martin@ximian.com>
11467
11468         * loader.c (mono_get_method_constrained): Call `mono_class_init
11469         (constrained_class)'.   
11470
11471 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
11472
11473         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
11474         any methods. Fixes #59629.
11475
11476 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11477
11478         * culture-info-tables.h: reflecting locale-builder updates.
11479
11480 2004-06-08  Dick Porter  <dick@ximian.com>
11481
11482         * object.h:
11483         * locales.c: Fixed compile warnings, including a real bug in
11484         CompareInfo_internal_compare.
11485         
11486 2004-06-08  Dick Porter  <dick@ximian.com>
11487
11488         * locales.c
11489         (ves_icall_System_Globalization_CompareInfo_internal_index):
11490         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
11491         Double-check the resuls of usearches, because ICU currently
11492         ignores most of the collator settings here.  Fixes bug 59720.
11493         
11494 2004-06-08  Dick Porter  <dick@ximian.com>
11495
11496         * locales.c
11497         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
11498         Fix memory leak and segfault-causing typo.  No idea how this one
11499         lasted so long without being noticed.
11500
11501 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
11502
11503         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
11504         any methods. Fixes #59629.
11505
11506 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11507
11508         * assembly.c:
11509         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
11510         own the critical section before). Removed dead code (that's done
11511         in the preload hook).
11512
11513         (mono_assembly_load_with_partial_name): call the preload hook.
11514
11515 2004-06-08  Martin Baulig  <martin@ximian.com>
11516
11517         * metadata.c (mono_metadata_signature_alloc): Default
11518         `sentinelpos' to -1.
11519
11520         * reflection.c (mono_image_get_array_token): Likewise.
11521
11522 2004-06-08  Martin Baulig  <martin@ximian.com>
11523
11524         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
11525
11526         * metadata.c (mono_metadata_parse_method_signature): When parsing
11527         a MethodDef which has VarArgs, set sentinelpos.
11528
11529         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
11530         `gint16' since we're using -1 for non-varargs methods.
11531
11532         * reflection.c
11533         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
11534         (method_encode_signature): Added varargs support.
11535         (method_builder_encode_signature): Likewise.
11536         (mono_image_get_varargs_method_token): New static method.
11537         (mono_image_create_method_token): New public method; this is
11538         called via an icall instead of mono_image_create_token() when
11539         calling a varargs method.       
11540
11541 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
11542
11543         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
11544
11545 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11546
11547         * culture-info-tables.h : Reflecting the latest locale-builder that
11548           fixed empty array representation ({} to {0}).
11549
11550 2004-06-07  Jackson Harper  <jackson@ximian.com>
11551
11552         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
11553         looking up extra gac paths. This allows MONO_GAC_PATH to act
11554         exactly like a prefix.
11555         
11556 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
11557
11558         * reflection.c (mono_reflection_type_from_name): Make a copy of the
11559         type name before modifying it. Fixes #59405.
11560
11561 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11562
11563         * culture-info.h: added fields for "all datetime patterns".
11564         * locales.c: (  ves_icall_System_Globalization_CultureInfo
11565           _construct_datetime_format ()): fill xxx_patterns fields.
11566         * object.h: added fields for "all datetime patterns" to
11567           MonoDateTimeFormatInfo.
11568         * culture-info-tables.h: reflecting locale-builder updates.
11569
11570 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
11571
11572         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
11573         the event has no add and remove methods. Fixes #59629.
11574
11575 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
11576
11577         * object.c: Fixed possible integer overflow when allocating large
11578         strings.
11579
11580 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
11581
11582         * culture-info-tables.h: reflecting locale-builder updates.
11583
11584 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
11585
11586         * culture-info-tables.h: reflecting locale-builder updates.
11587
11588 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
11589
11590         * culture-info-tables.h: reflecting locale-builder updates.
11591
11592 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
11593
11594         * threads.c: Made Thread.Sleep abortable.
11595
11596 2004-06-02  Martin Baulig  <martin@ximian.com>
11597
11598         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
11599
11600         * debug-mono-symfile.h: Bumped symbol file version number to 37.
11601
11602 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
11603
11604         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
11605
11606 2004-05-30  Jackson Harper  <jackson@ximian.com>
11607
11608         * reflection.c: Do not hardcode assembly versions or public key
11609         tokens anymore. All of this except the corlib section was dead
11610         code anyways.
11611         
11612 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
11613
11614         * object.c (mono_runtime_invoke_array): Automatically create boxed
11615         objects for byref valuetypes if needed. Fixes #59300.
11616         
11617         * object.c (mono_method_return_message_restore): Handle 
11618         MONO_TYPE_OBJECT as well.
11619
11620 2004-05-28  Jackson Harper  <jackson@ximian.com>
11621
11622         * reflection.c: The modified type encoding was causing build
11623         problems. Reverted for now.
11624         
11625 2004-05-28  Jackson Harper  <jackson@ximian.com>
11626
11627         * reflection.c/h: Take an assembly ref so that we dont create
11628         fully qualified names when encoding types in the same assembly as
11629         the custom attribute being emitted.
11630         * appdomain.c: Increment version number.
11631         
11632 2004-05-26  Duncan Mak  <duncan@ximian.com>
11633
11634         * icall.c
11635         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
11636         Set the full version number (major, minor, build, revision).
11637
11638 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
11639
11640         * marshal.c (emit_struct_conv): increment src/dst after blit
11641         (mono_marshal_get_managed_wrapper,
11642         mono_marshal_get_native_wrapper): make sure we have marshalling
11643         info before marshalling params (info computation affects
11644         blittable)
11645
11646         * class.c (class_compute_field_layout): correctly deal with
11647         blittable
11648         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
11649         value types (as per what windows dows by default)
11650         (mono_class_setup_mono_type): System.ValueType is blittable
11651         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
11652         blittable
11653
11654         * marshal.c (mono_marshal_load_type_info): flag types  as
11655         non-blittable if the native layout doesn't match the managed
11656         layout
11657
11658 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11659
11660         * appdomain.c: don't add stuff in the private search path that is
11661         above the application base. If application base is not set, there's
11662         no private search path.
11663
11664 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
11665
11666         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
11667         byref struct arguments in native->managed marshalling.
11668
11669 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
11670
11671         * marshal.c (mono_marshal_get_runtime_invoke): correctly
11672         cache methods using signature (special case for methods
11673         that are value type or string class)
11674         
11675         * image.c (mono_image_close): clean up allocated GSList's
11676         in runtime_invoke_cache.
11677
11678 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11679
11680         * mono-config.c: set the correct path for mono_cfg_dir on windows when
11681         there's no MONO_CFG_DIR environment variable defined.
11682
11683 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11684
11685         * threads.c: windows version must be >= 0x0500 to include OpenThread.
11686
11687 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
11688
11689         * threadpool.c: Really wait for 500ms after the async call, even if the wait
11690           is interrumped.
11691         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
11692           before waiting for it, and call CloseHandle after the wait to unref it.
11693           This will make sure that handles are not disposed too early.
11694
11695 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11696
11697         * appdomain.c:
11698         * appdomain.h:
11699         * icall.c: removed
11700         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
11701         needed now.
11702
11703         * object.c: se the application_base only for the domain that runs
11704         Main. Fixes bug #59216,
11705
11706 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11707
11708         * appdomain.c:
11709         * object.c: only the domain in which Main is run have
11710         SetupInformation.ConfigurationFile set, so moved a few lines from
11711         appdomain.c to object.c.
11712
11713 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11714
11715         * appdomain.c: we tried to load [name].(dll|exe), but according
11716         to bug #57710, we must also try [culture]/[name].(dll|exe) and
11717         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
11718         There's a test case attached to bug #58922.
11719
11720 2004-05-27  Dick Porter  <dick@ximian.com>
11721
11722         * icall.c:
11723         * file-io.c: Implemented icalls for locking and unlocking regions
11724         in a file.
11725         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
11726         FALSE on error (fixes both compiler warning and real bug.)
11727
11728 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
11729
11730         * culture-info-tables.h: reflecting locale-builder updates.
11731
11732           (Added missing ChangeLog entry for 05/26)
11733
11734 2004-05-27  Jackson Harper  <jackson@ximian.com>
11735
11736         * locales.c: Fix some cut and paste errors.
11737         
11738 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11739
11740         * mono-config.c: set the correct path for config. directory on windows.
11741
11742 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11743
11744         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
11745           on win32.
11746
11747 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11748
11749         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
11750         from pinvoke functions.
11751         
11752         * marshal.c (mono_ftnptr_to_delegate): Implement this.
11753
11754 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11755
11756         * culture-info-tables.h: reflecting locale-builder updates.
11757
11758 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11759
11760         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
11761         #59086.
11762
11763 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
11764
11765         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
11766         * icall.c: Modified icalls for RNG.
11767         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
11768         Windows (CryptoAPI).
11769
11770 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11771
11772         * locales.c: Fix build.
11773
11774 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
11775
11776         * culture-info-tables.h: reflecting locale-builder updates.
11777
11778 2004-05-25  Jackson Harper  <jackson@ximian.com>
11779
11780         * locales.c: When creating the current culture use the $LANGs
11781         specific culture. So DateTimeFormat and NumberFormat entries are created.
11782         
11783 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11784
11785         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
11786         a char array as parameter.
11787
11788 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
11789
11790         * image.c: In mono_image_open(), always use an absolute path name to
11791           look for already loaded images.
11792
11793 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
11794
11795         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
11796         missing in the windows build (like older cygwin include files).
11797
11798 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
11799
11800         * icall.c: Fixed check for possible integer overflow in Buffer_
11801         BlockCopy icall. Replaced comments style // by /* */.
11802
11803 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
11804
11805         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
11806         
11807         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
11808         check after MONO_VTADDR. Fixes pinvoke2.exe.
11809
11810         * marshal.h marshal.c metadata.h: Add beginnings of support for
11811         ftnptr -> delegate marshalling.
11812
11813 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
11814
11815         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
11816         * threads.c: Fix warnings.
11817
11818 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
11819
11820         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
11821         * icall.c: Registered icalls for Suspend and Resume.
11822         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
11823           Thread.Abort.
11824         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
11825         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
11826         * process.c: Use WaitForSingleObjectEx.
11827         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
11828           checkpoints.
11829         * threads.c, threads.h: Make use of new Ex wait methods. Improved
11830           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
11831           for Suspend and Resume. Added new mono_thread_stop, used for stoping
11832           background threads. Added basic support for Abort in Windows.
11833           Start new threads using a managed delegate invoke wrapper. This wrapper
11834           has an interruption checkpoint that is needed since an interruption
11835           can be requested before the thread leaves the unmanaged code that starts 
11836           the thread.
11837         * marshal.c: Added interruption checkpoint after every native call, and
11838           also before managed calls for wrappers called from unmanaged code to
11839           go into managed code.
11840         * object.h: Added new field in MonoThread to keep track of interruption
11841           requests.
11842
11843 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
11844
11845         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
11846         calls.
11847
11848 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11849
11850         * appdomain.c:
11851         * assembly.c:
11852         * gc.c:
11853         * locales.c:
11854         * mono-config.c:
11855         * rand.c: getenv -> g_getenv (windows!)
11856
11857         * process.c: complete_path is also used on non-windows platforms.
11858
11859 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11860
11861         * icall.c: new signature for Process_Start.
11862
11863         * process.[ch]: new signature for Process_Start. If we're on windows
11864         and UseShellExecute is false, we have to search for the program by
11865         ourselves if we don't get a full path.
11866
11867 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
11868
11869         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
11870         marshalling and call CleanUpNativeData if needed. Fixes #58646.
11871
11872 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11873
11874         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
11875         Fixes bug #58373.
11876
11877 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11878
11879         * process.c: use double quotes to quote program name and arguments on
11880         windows. Fixes bug #58575.
11881
11882 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11883
11884         * file-io.c: don't return "." and ".." when using windows Find*File.
11885
11886 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
11887
11888         * marshal.c: Don't pass wrappers to message init because method 
11889         addressed used to lookup metadata. part of remoting[2|3] fix.
11890
11891 2004-05-15  Jackson Harper  <jackson@ximian.com>
11892
11893         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
11894         path is essentially the same as MONO_PATH except that it points to
11895         GACs instead of lib directories.
11896         * loader.h: The user gac is gone so we dont need function to
11897         enable/disable it.
11898         * mono-config.c: user gac option is now gone.
11899         
11900 2004-05-15  Jackson Harper  <jackson@ximian.com>
11901
11902         * culture-info.h: Make defines more consistent, add calendar data
11903         to the culture info table.
11904         * culture-info-tables.h: Add basic calendar data. Basically
11905         everyone gets default gregorian until all the data is
11906         updated.
11907         * locales.c: Use the new consistent defines. Set calendar data for
11908         culture info objects.
11909         * object.h: add a field for calendar data to CultureInfo
11910         
11911 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
11912
11913         * image.c: image->runtime_invoke_cache is keyed on signatures now.
11914         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
11915         a signature.
11916         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
11917         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
11918         an extra param that is the pointer of the method to invoke. The IL for
11919         the invoke method is no longer specific to the method, but to the
11920         signature of the method. Thus, we can share the same code for multiple
11921         methods. This reduces the number of methods that have to be compiled.
11922
11923 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
11924
11925         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
11926
11927         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11928
11929         * icall.c: Optimize Buffer.BlockCopy.
11930
11931 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11932
11933         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
11934         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
11935         quote). Changed them to "MMMM yyyy".
11936
11937 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
11938
11939         * rand.c
11940         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
11941
11942 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
11943
11944         * reflection.h: Updated after changes to managed structures.
11945
11946         * appdomain.c: Bump corlib version.
11947
11948 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11949
11950         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
11951         windows.
11952
11953 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11954
11955         * Makefile.am: link to ../os/libmonoos.la on windows.
11956
11957         * assembly.c:
11958                 -If MONO_DEBUG, warn about non-existing directories in
11959                 MONO_PATH.
11960                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
11961                 compile time variable.
11962                 -Removed init_default_path and call mono_set_rootdir from
11963                 libmonoos.a instead (windows only).
11964
11965         * assembly.h: declare mono_assembly_getrootdir().
11966
11967         * domain.c:
11968         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
11969
11970         * loader.c: s/getenv/g_getenv/
11971
11972 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
11973
11974         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
11975
11976         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
11977
11978         * metadata.h: Add new marshalling conversions.
11979
11980         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
11981         function.
11982
11983         * reflection.c (mono_reflection_get_type): Lookup the type in all
11984         modules of a multi-module assembly. Fixes #58291.
11985
11986 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
11987
11988         * threads.c: Before aborting a background, set the StopRequested
11989         state.  This avoids throwing the Abort exception.
11990         In mono_thread_manage, don't continue with the shutdown until all
11991         aborted threads have actually stopped.
11992
11993 2004-05-10  Jackson Harper  <jackson@ximian.com>
11994
11995         * locales.c: Remove the modifier from culture names.
11996         
11997 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11998
11999         * Makefile.am: monosn is not installed any more. It has been deprecated
12000         in favor of sn.
12001
12002 2004-05-07  Jackson Harper  <jackson@ximian.com>
12003
12004         * locales.c
12005         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
12006         Fix array construction, add bailout if the length is 0.
12007
12008 2004-05-07  Dick Porter  <dick@ximian.com>
12009
12010         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
12011         machine doesn't have a DNS entry.  Patch by Urs Muff
12012         (umuff@quark.com), fixes bug 57928.
12013
12014 2004-05-06  Jackson Harper  <jackson@ximian.com>
12015
12016         * reflection.c: Handle null PublicTokens properly. alloc mem for
12017         assembly names culture so we dont crash when freeing it.
12018         
12019 2004-05-06  Jackson Harper  <jackson@ximian.com>
12020
12021         * assembly.c: Check the usergac when loading with partial names.
12022         
12023 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12024
12025         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
12026         does nothing for now (not required for Linux/Windows) but the class
12027         library can call it (and a newer or modified runtime could need it).
12028         * icall.c: Registred icall.
12029
12030 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12031
12032         * loader.c: prints a message on module loading error we set MONO_DEBUG
12033         environment variable.
12034
12035 2004-05-05  Jackson Harper  <jackson@ximian.com>
12036
12037         * appdomain.c: Handle PublicKeyToken=null properly.
12038         
12039 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12040
12041         * environment.c|h: Added icall ves_icall_System_Environment_
12042         GetOSVersionString to get the current OS version as a string.
12043         * icall.c: Registred icall.
12044
12045 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
12046
12047         * object.c: in mono_object_get_virtual_method(), take into account that
12048         non-virtual methods don't have a slot in the vtable. Check needed when
12049         the object is a proxy.
12050
12051 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
12052
12053         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
12054         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
12055
12056         * object.c (mono_class_compute_gc_descriptor): Fix warning.
12057
12058         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
12059         passed when a valuetype is expected.
12060
12061         * object.c (mono_unhandled_exception): Only set the exit code if the
12062         exception happens in the main thread. Fixes thread5.exe.
12063
12064         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
12065         invalid names. Fixes #58047.
12066
12067 2004-05-03  Jackson Harper  <jackson@ximian.com>
12068
12069         * assembly.c: This line was committed accidently and is unneeded.
12070         
12071 2004-05-03  Jackson Harper  <jackson@ximian.com>
12072
12073         * icall.c: Add new icall for Assembly::LoadWithPartialName
12074         * assembly.c/.h: new function that probes the GAC to load partial
12075         assembly names by Paolo Molaro.
12076         
12077 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12078
12079         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
12080         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
12081         (type_get_fully_qualified_name): Added PublicKeyToken when building a
12082         full type name.
12083
12084 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12085
12086         * appdomain.c: fixed check for 'neutral' culture and removed warning.
12087         * reflection.c: fix bug when parsing a full type name and Version is not
12088         the last thing in the string.
12089
12090 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
12091
12092         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
12093         crashes when it is freed.
12094
12095 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12096
12097         * assembly.c: print the compat warning to stderr.
12098
12099 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
12100
12101         * assembly.c (mono_assembly_load_references): Add a compatibility
12102         hack to run old applications that might be still referencing the
12103         3300-based assemblies, only do this for System.xxx.
12104
12105 2004-05-01  Jackson Harper  <jackson@ximian.com>
12106
12107         * appdomain.c: If the culture is neutral we set it to "".
12108         
12109 2004-04-29  Jackson Harper  <jackson@ximian.com>
12110
12111         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
12112
12113 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
12114  
12115         * string-icalls.c: added low overhead function for copying chars
12116         * icall.c: added needed icall for the above function
12117  
12118 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12119
12120         * icall.c: fix return value of get_global_assembly_cache.  Implemented
12121         Environment.GetLogicalDrives.
12122
12123 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
12124
12125         * rand.c: try and talk to egd or prngd
12126         for random bytes if opening devices fail.
12127
12128 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
12129
12130         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
12131         alignment for the type using the native alignment of its members 
12132         instead of using klass->min_align.
12133
12134         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
12135
12136 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12137
12138         * file-io.c:
12139         * socket-io.c: added check for sys/aio.h.
12140
12141 2004-04-28  Dick Porter  <dick@ximian.com>
12142
12143         * threads.c: Don't abort a thread thats already aborting, when
12144         terminating everything.
12145
12146 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12147
12148         * icall.c: added 2 new async calls for Socket.
12149
12150         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
12151         IO on *nix systems.
12152
12153         * threadpool.c: removed unused variable.
12154
12155 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
12156
12157         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
12158
12159 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
12160
12161         * locales.c: put back string_invariant_tolower () and
12162         string_invariant_toupper ().
12163
12164 2004-04-26 David Waite <mass@akuma.org>
12165
12166         * file-io.h:
12167         * socket-io.h:
12168         * threads.h:
12169         * unicode.h: remove comma from end of enumeration declarations
12170
12171 2004-04-26 David Waite <mass@akuma.org>
12172
12173         * debug-mono-symfile.h:
12174         * decimal.c:
12175         * mono_debug.h:
12176         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
12177
12178
12179 2004-04-26  Jackson Harper  <jackson@ximian.com>
12180
12181         * appdomain.c: Increment version number.
12182         
12183 2004-04-26  Jackson Harper  <jackson@ximian.com>
12184
12185         * appdomain.c: Set assembly references public token value when
12186         PublicKeyToken is specified, not the hash_value. Free public token
12187         values when free assembly name data. Previously the public key
12188         token was hex decoded, however we are using hex encoded public key
12189         tokens, so this is not neccasary.
12190         * assembly.c: Lookup assemblies in the gac if their public token
12191         value is set. Add function to allow enabling user gac
12192         lookups. Specify whether or not the assembly was loaded from the
12193         GAC. Compare full assembly names when checking the cache for
12194         assemblies (Temporarily disabled see comment in code). Remove
12195         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
12196         specifies trace-loader they get extra info to stdout on the
12197         loading of assemblies.
12198         * image.h: Add a field for an assembly references public token
12199         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
12200         whether an assembly has been loaded from the GAC.
12201         * image.c: Remove a corlib -> mscorlib name mapping.
12202         * loader.h: Add function to enable/disable the user gac.
12203         * mono-config.c: Check if the usergac is enabled in the config
12204         file.
12205         * icall.c: New icall to determine whether or not an assembly has
12206         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
12207         * tabldefs.h: Add constant for assemblyref flag that specifies a
12208         full public key is used instead of a public token.
12209         * reflection.c: Remove mscorlib -> corlib mappings. Set
12210         PublicTokenValue instead of hash value. This value is a hex
12211         string so it does not need to be expanded.
12212
12213 2004-04-26  Martin Baulig  <martin@ximian.com>
12214
12215         * mono-debug-debugger.c (mono_debugger_initialize): Set
12216         `mono_debugger_initialized' before calling mono_debug_lock().
12217
12218 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
12219
12220         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
12221           InternalToUpper/InternalToLower.
12222         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
12223           removed invariant culture shortcut.  This is now done in managed code.
12224         * locales.c: (string_invariant_toupper/tolower) removed.
12225
12226 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12227
12228         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
12229         Added Poll internal call.
12230
12231         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
12232         call for Poll. Select was too heavy for polling a single socket.
12233
12234         * threadpool.[ch]: added mono_threadpool_cleanup.
12235         * threads.c: use it. Don't use Thread_Abort on windows.
12236
12237 2004-04-23  Martin Baulig  <martin@ximian.com>
12238
12239         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
12240
12241 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
12242
12243         * icall.c: Registred new icalls for key pair protection and added an
12244         icall for Environment.GetFolderPath on Windows.
12245         * security.c|h: Added new icalls for key pair protection.
12246
12247 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12248
12249         * socket-io.c: don't display the non-supported family warning for known
12250         families. Now this is not displayed on windows when checking support
12251         for IPv4/IPv6.
12252
12253 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12254
12255         * class.c: don't display the layout warning for static fields.
12256
12257 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
12258
12259         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
12260         * locales.c, locales.h: Added new icalls for culture-specific
12261         Char.ToLower and Char.ToUpper.
12262
12263 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12264
12265         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
12266         by David Waite.
12267
12268 2004-04-20  Martin Baulig  <martin@ximian.com>
12269
12270         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
12271         of the type name before passing it to mono_reflection_type_from_name().
12272
12273 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
12274
12275         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
12276         encodings here. Fixes #56965.
12277
12278 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
12279
12280         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12281         fix test on strstr result not that I can see anything that
12282         relies on the result.
12283
12284 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
12285
12286         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
12287         Fixes #57081.
12288
12289         * marshal.c (mono_marshal_get_string_encoding): New helper function.
12290
12291         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
12292         function to determine which marshalling to use for strings. Fixes
12293         #56965.
12294
12295         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
12296
12297         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
12298
12299 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
12300
12301         * icall.c: #include mono-config.h
12302
12303 2004-04-15  Jackson Harper  <jackson@ximian.com>
12304
12305         * culture-info-tables.h: Fix date formats for en-US culture.
12306         
12307 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
12308
12309         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
12310         ThreadPool.SetMinThreads.
12311         * threadpool.c: Implemented ThreadPool.GetMinThreads and
12312         ThreadPool.SetMinThreads.
12313
12314 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
12315
12316         * mono-config.c: also load the .config file in the directory
12317         where the assembly was found.
12318
12319 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
12320
12321         * assembly.c: load per-assembly config files.
12322         * icall.c: decrapified code to get the config dir and moved to
12323         mono-config.c.
12324         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
12325         per-assembly config files. When doing a dll map lookup give precedence
12326         to the per-assembly data.
12327
12328 2004-04-14  Martin Baulig  <martin@ximian.com>
12329
12330         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
12331         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
12332         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
12333
12334         * mono-debugger-debugger.c: While the debugger is locked, remember
12335         whether the symbol tables have changes and send one single
12336         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
12337
12338 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
12339
12340         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
12341
12342         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
12343         function.
12344
12345         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
12346         account when marshalling string arrays. Fixes #56965.
12347
12348 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
12349
12350         * icall.c: Add new icalls mapping for security.
12351         * security.c|h: Add internal calls for WindowsIdentity,
12352         WindowsImpersonationContext and WindowsPrincipal.
12353
12354 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
12355
12356         * class.c: Added comment to ensure the System.MonoDummy class
12357         is removed when no longer necessary
12358
12359 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
12360
12361         * appdomain.c: Pass arguments to the bootstraping exceptions to
12362         minimize JITed methods at boot
12363
12364         * metadata.c (mono_exception_from_name_two_strings): Allow for the
12365         second string to be null.
12366
12367         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12368         Change the protocol to minimize the JIT methods at startup.  Now
12369         it Returns the internal codepage, if the value of "int_code_page"
12370         is 1 at entry, and we can not compute a suitable code page
12371         number, returns the code page as a string.
12372
12373 2004-04-13  Jackson Harper  <jackson@ximian.com>
12374
12375         * culture-info-tables.h: Fix number of decimal digits for all
12376         english locales.
12377
12378 2004-04-13  Jackson Harper  <jackson@ximian.com>
12379
12380         * icall.c: Clairfy out of sync error message. It is not always
12381         your corlib that is out of sync.
12382
12383 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
12384
12385         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
12386         properties when only the set accessor is overriden. Fixes #55874.
12387
12388 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
12389
12390         * assembly.c (mono_assembly_load_references): Make this thread safe.
12391         Fixes #56327.
12392
12393 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
12394
12395         * monosn.c: Add missing initialization calls.
12396
12397 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
12398
12399         * locales.c:
12400         ves_icall_System_Globalization_CultureInfo_construct_number_format
12401         Fix g_assert so it compiles on fussier compilers re int/ptr
12402         mismatch
12403
12404 2004-04-08  Dick Porter  <dick@ximian.com>
12405
12406         * socket-io.h:
12407         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
12408         53992.  Also rearrange the code so that the internal calls return
12409         an error value and exceptions are thrown from managed code.
12410
12411         * icall.c: Add type info to the socket icalls.
12412
12413 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12414
12415         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
12416         owes me a beer.
12417
12418 2004-04-07  Martin Baulig  <martin@ximian.com>
12419
12420         * class.c (mono_class_from_generic_parameter): Don't default
12421         `klass->parent' to `mono_defaults.object_type'.
12422
12423 2004-04-07  Martin Baulig  <martin@ximian.com>
12424
12425         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12426         `param->pklass->reflection_info'.       
12427
12428 2004-04-07  Jackson Harper  <jackson@ximian.com>
12429
12430         * culture-info-tables.h: Fix date separator symbol.
12431         
12432 2004-04-07  Martin Baulig  <martin@ximian.com>
12433
12434         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
12435         from System.Type to System.MonoType.
12436
12437 2004-04-07  Martin Baulig  <martin@ximian.com>
12438
12439         * reflection.h
12440         (MonoReflectionGenericParam): Added `has_reference_type' and
12441         `has_value_type' fields.
12442
12443         * reflection.c (mono_image_get_generic_param_info): Encode the
12444         correct flags if we have the `class' or `struct' constraint.
12445
12446 2004-04-07  Martin Baulig  <martin@ximian.com>
12447
12448         * reflection.h
12449         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
12450
12451 2004-04-07  Jackson Harper  <jackson@ximian.com>
12452
12453         * appdomain.c: Revert extra patches, just wanted to bump the
12454         version number.
12455         
12456 2004-04-07  Jackson Harper  <jackson@ximian.com>
12457
12458         * Makefile.am: Add culture-info private headers.
12459         * icall.c: Add new icalls for contructing locales.
12460         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
12461         * locales.h: Declare new culture info construction methods.
12462         * object.h: Add new fields used to avoid the CultureMap to
12463         MonoCultureInfo.
12464         * culture-info.h: Definition of structs used in the culture info
12465         tables.
12466         * culture-info-tables.h: Autogenerated tables that contain culture
12467         info data. This file was generated with the locale-builder tool.
12468         * appdomain.c: Incement corlib version number.
12469         
12470 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
12471
12472         * appdomain.c: (mono_runtime_init) move mono_thread_init
12473         to before mono_object_new calls so critical sections
12474         are initialized before use.
12475
12476 2004-04-07  Martin Baulig  <martin@ximian.com>
12477
12478         * icall.c
12479         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
12480         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
12481         (ves_icall_MonoGenericParam_initialize): Removed.
12482         (monogenericparam_icalls): Removed.
12483         (generictypeparambuilder_icalls): Added new table for
12484         System.Reflection.Emit.GenericTypeParameterBuilder.
12485
12486         * reflection.c
12487         (mono_reflection_define_generic_parameter): Removed.
12488         (mono_reflection_initialize_generic_parameter): This is now called
12489         from GenericTypeParameterBuilder's .ctor.
12490
12491 2004-04-06  Martin Baulig  <martin@ximian.com>
12492
12493         * class.c (mono_class_init): Don't inflate nested classes in a
12494         generic instance.
12495         (mono_type_get_name_recurse): Include the generic arguments for
12496         generic instances and generic type declarations.
12497         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
12498         (_mono_class_get_instantiation_name): Removed.
12499         (mono_class_create_generic): Always use `gklass->name' as our name.
12500
12501         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
12502
12503         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
12504         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
12505         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
12506         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
12507         closed generic methods here.
12508
12509         * reflection.c
12510         (mono_reflection_generic_inst_get_nested_types): Removed.
12511         (inflate_mono_method): Copy the generic parameters from the
12512         MonoMethodHeader into out MonoGenericMethod.
12513
12514 2004-04-06  Martin Baulig  <martin@ximian.com>
12515
12516         * row-indexes.h
12517         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
12518
12519         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
12520
12521         * reflection.c (build_compressed_metadata): If we have any entries
12522         in the GenericParam, MethodSpec or GenericParamConstraint tables,
12523         set the header version to 1.1.
12524
12525 2004-04-06  Martin Baulig  <martin@ximian.com>
12526
12527         * class.c (mono_class_init): If we're a generic instance,
12528         initialize our nested classes, too.
12529         (_mono_class_get_instantiation_name): Deal with the new `!%d'
12530         suffix. 
12531
12532 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12533
12534         * process.c: quote the argument passed to the shell on windows.
12535
12536 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
12537
12538         * threads.c (mono_alloc_special_static_data): Allow this to be
12539         called during startup.
12540
12541 2004-04-02  Martin Baulig  <martin@ximian.com>
12542
12543         * icall.c
12544         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
12545
12546 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
12547
12548         * icall.c: Fix build.
12549
12550 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
12551
12552         * Makefile.am: Added security.c|h.
12553         * icall.c: Added icall for get_UserName;
12554         * security.c: New file for security related icalls. Added function
12555         get_UserName for System.Environment (fix #56144).
12556         * security.h: New. Header file for security.c
12557
12558 2004-04-02  Dick Porter  <dick@ximian.com>
12559
12560         * icall.c: Deleted the icalls that were obsoleted some time ago
12561         by the ICU string code, and which were mixed into the icall
12562         rearranging.  Fixes bug 55969.
12563
12564         * string-icalls.h: 
12565         * string-icalls.c: Deleted the code that those icalls reference.
12566
12567 2004-04-01  Martin Baulig  <martin@ximian.com>
12568
12569         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
12570
12571         * class.c (mono_class_from_generic_parameter): Don't set 
12572         TYPE_ATTRIBUTE_INTERFACE.
12573         (my_mono_class_from_generic_parameter): Likewise.
12574
12575 2004-04-01  Martin Baulig  <martin@ximian.com>
12576
12577         * loader.c (find_method): Added an optional `MonoClass *ic'
12578         argument to search in a specific interface.
12579         (mono_get_method_constrained): New public function.
12580
12581 2004-04-01  Martin Baulig  <martin@ximian.com>
12582
12583         * reflection.c (mono_image_get_generic_field_token): Use the
12584         `handleref' cache here.
12585
12586 2004-04-01  Martin Baulig  <martin@ximian.com>
12587
12588         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
12589
12590         * reflection.c (create_generic_typespec): Use the `typespec' hash
12591         here, not the `typeref' one.    
12592
12593 2004-04-01  Martin Baulig  <martin@ximian.com>
12594
12595         * class.c (mono_class_inflate_generic_type): Moved the
12596         functionality into a new static inflate_generic_type() which
12597         returns NULL if it didn't do anything.  Only increment the
12598         `mono_stats.inflated_type_count' if we actually inflated
12599         something.
12600         (mono_class_get_full): Check the classes type to see whether we
12601         need to inflate it; also inflate MONO_TYPE_(M)VAR.
12602
12603 2004-04-01  Jackson Harper  <jackson@ximian.com>
12604
12605         * reflection.c: Set culture for assembly references.
12606         
12607 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
12608
12609         * reflection.[ch], icall.[ch], Fix support for pinning variables.
12610
12611 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12612
12613         * assembly.c:
12614         (do_mono_assembly_open): the critical section also covers
12615         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
12616
12617 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12618
12619         * threads.c:
12620         (mono_manage_threads): abort the background threads when finishing.
12621         Fixes bug #47232.
12622
12623 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12624
12625         * gc.c: only close the done_event handle if there was no timeout.
12626         C-ified comments.
12627
12628 2004-03-30  Martin Baulig  <martin@ximian.com>
12629
12630         * icall.c (icall_entries): It's called "System.Activator", not
12631         "System.Activation".    
12632
12633 2004-03-30  Martin Baulig  <martin@ximian.com>
12634
12635         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
12636         (mono_class_create_from_typespec): Likewise.
12637
12638 2004-03-30  Martin Baulig  <martin@ximian.com>
12639
12640         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
12641         `has_ctor_constraint' and `initialized'.
12642
12643 2004-03-30  Martin Baulig  <martin@ximian.com>
12644
12645         * reflection.c (encode_new_constraint): New static function to add
12646         the constructor constraint attribute to a type parameter.
12647         (encode_constraints): Call encode_new_constraint() if necessary.
12648
12649         * reflection.h
12650         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
12651
12652         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
12653         
12654 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
12655
12656         * reflection.c, icall.c: add support for pinning variables. 
12657
12658 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
12659
12660         * marshal.c (mono_marshal_get_managed_wrapper):
12661         init bool local with zero rather than null.
12662
12663 2004-03-29  Martin Baulig  <martin@ximian.com>
12664
12665         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
12666         the "official" behavior here.
12667         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
12668
12669 2004-03-29  Martin Baulig  <martin@ximian.com>
12670
12671         * icall.c: Reflect latest API changes.
12672
12673 2004-03-29  Martin Baulig  <martin@ximian.com>
12674
12675         * loader.c (mono_get_method_from_token): Also call
12676         mono_metadata_load_generic_params () for abstract and interface
12677         methods; replace the type arguments in the method signature with
12678         the ones which are loaded from the metadata.
12679
12680 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
12681
12682         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
12683         of the lock is not the current thread. MS.NET don't do it, in spite of
12684         what the documentation says. See bug #56157.
12685
12686 2004-03-28  Martin Baulig  <martin@ximian.com>
12687
12688         * class.c (mono_class_init): Don't call init_properties() and
12689         init_events() for generic instances; set `prop->parent' when
12690         inflating properties.
12691
12692         * reflection.c (mono_generic_inst_get_object): Call
12693         `mono_class_init (ginst->klass)'.
12694         (mono_type_get_object): Only create a MonoGenericInst if your
12695         generic type is a TypeBuilder.
12696         (do_mono_reflection_bind_generic_parameters): Only set
12697         `ginst->is_dynamic' if our generic type is a TypeBuilder.
12698
12699 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
12700
12701         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
12702         Fixes #56091.
12703
12704 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12705
12706         * icall.c: added Kill_internal icall.
12707         * process.[ch]: added Kill_internal icall.
12708
12709 2004-03-25  Martin Baulig  <martin@ximian.com>
12710
12711         * class.h (MonoStats): Added `generic_instance_count',
12712         `inflated_method_count', `inflated_type_count' and
12713         `generics_metadata_size'.       
12714
12715 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12716
12717         * reflection.c: no warnings now.
12718
12719 2004-03-25  Martin Baulig  <martin@ximian.com>
12720
12721         * class.c (mono_class_get_full): New public function; does a
12722         mono_class_get(), but also takes a `MonoGenericContext *'.
12723
12724         * loader.c (mono_field_from_memberref): Renamed to
12725         `field_from_memberref', made static and added `MonoGenericContext *'
12726         argument.
12727         (mono_field_from_token): Added `MonoGenericInst *' argument.
12728         (method_from_memberef): Likewise.
12729         (mono_get_method_from_token): Likewise.
12730         (mono_get_method_full): New public function; does a
12731         mono_get_method(), but also takes a `MonoGenericContext *'.
12732
12733         * verify.c (mono_method_verify): Get the method's generic context
12734         and pass it to mono_field_from_token(), mono_get_method_full() and
12735         mono_class_get_full().
12736
12737 2004-03-25  Martin Baulig  <martin@ximian.com>
12738
12739         * class.c (mono_class_inflate_generic_type): Take a
12740         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
12741         `MonoGenericMethod *'.
12742
12743 2004-03-25  Martin Baulig  <martin@ximian.com>
12744
12745         * loader.h (MonoMethodInflated): Store the MonoGenericContext
12746         instead of the MonoGenericMethod here.
12747
12748 2004-03-25  Martin Baulig  <martin@ximian.com>
12749
12750         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
12751         each time we create a new MonoGenericInst, we also create a new
12752         context which points back to us.
12753
12754         * class.c (inflate_method): Use `ginst->context' instead of
12755         creating a new context.
12756
12757         * loader.c (method_from_memberref): Use
12758         `klass->generic_inst->context' instead of creating a new context.
12759
12760 2004-03-25  Martin Baulig  <martin@ximian.com>
12761
12762         * class.h (MonoGenericContext): New struct.
12763         (MonoGenericMethod): Removed `generic_inst'.
12764
12765         * class.c (mono_class_inflate_generic_method): Take a
12766         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
12767
12768 2004-03-25  Martin Baulig  <martin@ximian.com>
12769
12770         * loader.h (MonoMethodInflated): New typedef.
12771
12772         * metadata.h (MonoMethodSignature): Removed `gen_method', make
12773         `generic_param_count' consume just 30 bits, added `is_inflated'
12774         and `has_type_parameters' flags (one bit each).
12775
12776         * class.c (mono_class_inflate_generic_method): Create a
12777         MonoMethodInflated instead of a MonoMethodNormal and set
12778         `is_inflated' in the method signature.
12779
12780         * class.h (MonoGenericMethod): Removed `generic_method'.
12781
12782 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
12783
12784         * image.c: Make sure the name of a MonoImage is always an absolute path.
12785           This fixes bug #54415.
12786
12787 2004-03-24  Martin Baulig  <martin@ximian.com>
12788
12789         * class.c (mono_class_setup_vtable): If we're a generic instance,
12790         use our generic type's vtable size.
12791
12792 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
12793
12794         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
12795         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
12796         problems.
12797
12798 2004-03-23  Martin Baulig  <martin@ximian.com>
12799
12800         * class.h (MonoDynamicGenericInst): Added `int count_events' and
12801         `MonoEvent *events'.
12802
12803         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
12804         (typebuilder_icalls): Added "get_event_info"; calls
12805         mono_reflection_event_builder_get_event_info(). 
12806
12807         * reflection.c (mono_reflection_generic_inst_initialize): Added
12808         `MonoArray *events'.
12809         (mono_reflection_event_builder_get_event_info): New function.
12810
12811 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
12812
12813         * object.h: add mono_type_initialization_init
12814
12815         * object.c (mono_runtime_class_init): 
12816         implement class constructor synchronization rules
12817         to cope with threading issues.  
12818         add mono_type_initialization_init
12819
12820         * appdomain.c (mono_runtime_init): call 
12821         mono_type_initialization_init
12822
12823         * class.h: removing initializing field from MonoVTable
12824
12825 2004-03-23  Martin Baulig  <martin@ximian.com>
12826
12827         * class.c (my_mono_class_from_generic_parameter): Use
12828         `param->name' if it's not NULL. 
12829
12830 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
12831
12832         * class.c: do not insert non-virtual methods in the vtable.
12833         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
12834         that means the method is non-virtual. This never would have
12835         happened before.
12836
12837 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
12838
12839         * profiler.c: Added lock for accessing coverage_hash.
12840
12841 2004-03-22  Martin Baulig  <martin@ximian.com>
12842
12843         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
12844         `method->method->signature->generic_param_count != 0' to make it
12845         work for interface methods.
12846
12847 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12848
12849         * process.c: quote the string passed to the shell using g_shell_quote.
12850
12851 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12852
12853         * threads.c:
12854         (mono_threads_manage): don't remove the finalizer thread and self
12855         from the threads hash table so that mono_thread_manage can be called
12856         more than once.
12857
12858 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12859
12860         * process.c: quote the arguments when UseShellExecute is true. Fixes
12861         bug #55790.
12862
12863 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12864
12865         * threads.c: set mono_thread_detach as a cleanup routine for every
12866         thread. This way it's always executed upon thread termination, either
12867         aborted or finished normally. No more xsp hangs!
12868
12869 2004-03-17  Martin Baulig  <martin@ximian.com>
12870
12871         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
12872         `int count_nested' and a `MonoType **nested'.
12873
12874         * reflection.c (mono_reflection_bind_generic_parameters): Moved
12875         most of the functionality into a new static
12876         do_mono_reflection_bind_generic_parameters() and don't take a
12877         `MonoType *nested_in' argument any more.  Don't compute nested
12878         types here.
12879         (mono_reflection_generic_inst_get_nested_types): New public method
12880         to get nested types.
12881
12882         * class.c (mono_class_create_generic): Set `klass->nested_in' if
12883         we're a nested class.
12884
12885         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
12886         mono_reflection_generic_inst_get_nested_types() to compute the
12887         nested types.
12888
12889 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12890
12891         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
12892         descriptive error message under windows.
12893         
12894 2004-03-17  Martin Baulig  <martin@ximian.com>
12895
12896         * class.c (dup_type): Added `const MonoType *original' argument;
12897         copy the attrs from the original type.
12898
12899 2004-03-17  Martin Baulig  <martin@ximian.com>
12900
12901         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
12902         `m->generic_inst_cache' here.
12903
12904 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12905
12906         * exception.h exception.c: Add stack_overflow_exception.
12907
12908 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12909
12910         * threadpool.c:
12911         (overlapped_callback): call SetEvent *after* invoking the callback.
12912         No need to call CloseHandle.
12913
12914 2004-03-16  Martin Baulig  <martin@ximian.com>
12915
12916         * reflection.c (mono_image_get_fieldref_token): Take a
12917         `MonoReflectionField *' instead of a `MonoClassField *' and a
12918         `MonoClass *'; store the `MonoReflectionField *' in the hash.
12919
12920 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12921
12922         * appdomain.c: don't add the culture to the filename we're looking for
12923         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
12924
12925 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12926
12927         * locales.c: don't ignore symbols when doing case insensitive compares.
12928         Thanks Dick! Fixes bug #54046.
12929
12930         * threads.c: surround 'threads' usage with enter/leave in
12931         mono_thread_manage.
12932
12933 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
12934
12935         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
12936         implicitly marshalled as [Out]. Fixes #55450.
12937
12938         (mono_marshal_get_runtime_invoke): Zero out the result if there is
12939         an exception.
12940
12941 2004-03-16  Martin Baulig  <martin@ximian.com>
12942
12943         * class.c (mono_class_from_generic_parameter): Use the actual
12944         parameter name. 
12945
12946 2004-03-16  Martin Baulig  <martin@ximian.com>
12947
12948         * reflection.c (type_get_signature_size): New static function.
12949         Compues the size of the type in a method signature.
12950         (method_get_signature_size): New static function; calls
12951         type_get_signature_size() to compute the actual size of the
12952         method's signature.
12953         (method_encode_signature): Use method_get_signature_size() to get
12954         the signature's size rather than using `nparams * 10'.
12955
12956 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12957
12958         * file-io.h: define here WapiOverlapped on windows. I don't want the
12959         regular OVERLAPPED one.
12960
12961         * file-io.c:
12962         * threadpool.c: somehow, BindIoCompletionCallback is not found.
12963         Disabling AIO on windows.
12964
12965 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12966
12967         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
12968         bug #55385.
12969
12970 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12971
12972         * appdomain.c: upgraded corlib version.
12973
12974         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
12975         and BeginWrite. Allow opening files for asynchrnous operations.
12976
12977         * file-io.h: new struct that maps FileStreamAsyncResult.
12978         * icall.c: added new icalls.
12979         * process.[ch]: support setting child process environment variables
12980         and use the SHELL or COMSPEC when UseShellExecute is true.
12981
12982         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
12983         callback for async. IO is here and also BindHandle.
12984
12985         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
12986         from here.
12987
12988 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
12989
12990         * reflection.c (create_custom_attr): Allow len == 0.
12991
12992         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
12993         computation on big-endian machines.
12994
12995 2004-03-13  Martin Baulig  <martin@ximian.com>
12996
12997         * class.h (MonoGenericInst): Added `int count_ifaces'.
12998
12999         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
13000         `ginst->count_ifaces' instead `klass->interface_count' since we
13001         may get called before the vtable is created.
13002
13003         * loader.c (mono_method_get_param_names): If we're a generic
13004         instance, return and don't initialize the class.
13005
13006         * reflection.c (mono_reflection_setup_generic_class): Don't call
13007         ensure_runtime_vtable().
13008         (mono_reflection_bind_generic_parameters): Set
13009         `ginst->count_ifaces'.
13010
13011 2004-03-11  Jackson Harper <jackson@ximian.com>
13012
13013         * icall.c:
13014         * unicode.c:
13015         * unicode.h: Remove unused System.Char icalls.
13016         
13017 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
13018
13019         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
13020         code when we P/Invoke the first library in Windows.Forms, instead
13021         of when we first open the assembly.
13022
13023         * assembly.c: Drop the lookup from here.
13024
13025 2004-03-10  Martin Baulig  <martin@ximian.com>
13026
13027         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
13028         class for properties, fields and events.  Finally fixes #54945.
13029
13030 2004-03-10  Martin Baulig  <martin@ximian.com>
13031
13032         * metadata.c (mono_metadata_class_equal): New static function;
13033         checks whether two generic instances or two generic parameters are
13034         equal.
13035         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
13036         compare classes.        
13037
13038 2004-03-10  Martin Baulig  <martin@ximian.com>
13039
13040         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
13041
13042         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
13043         argument and write it into the `reflection_info' field.
13044
13045         * icall.c
13046         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
13047         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
13048
13049 2004-03-09  Jackson Harper  <jackson@ximian.com>
13050
13051         * char-conversions.h: use 8 bits for numeric data its all we need
13052         * icall.c: numeric data is only 8 bits now.
13053
13054 2004-03-09  Martin Baulig  <martin@ximian.com>
13055
13056         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
13057
13058         * class.c (init_properties, init_events): Initialize the new
13059         `parent' field.
13060
13061         * reflection.c (typebuilder_setup_properties): Likewise.
13062         (typebuilder_setup_events): Likewise.
13063
13064         * reflection.h (MonoEventInfo): Replaced `parent with
13065         `declaring_type' and `reflected_type'.
13066
13067         * icall.c (ves_icall_get_property_info): Distinguish between
13068         declaring and reflected type.
13069         (ves_icall_get_event_info): Likewise.
13070
13071 2004-03-09  Martin Baulig  <martin@ximian.com>
13072
13073         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
13074         (ves_icall_Type_GetField): Correctly set field->klass.
13075
13076 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
13077
13078         * loader.h: Fix warning.
13079
13080 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
13081
13082         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
13083         library routine if present.  Notice that it will still continue
13084         executing even if its missing, for those working on the Gtk#
13085         edition of Windows.Forms.
13086
13087         * assembly.c (do_mono_assembly_open): If loading the
13088         System.Windows.Forms call mono_loader_wini_init.
13089
13090 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
13091
13092         * class.h: Added MonoRemoteClass struct.
13093         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
13094         function for MonoStrings.
13095         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
13096         Added internal call for getting the proxy type.
13097         * marshal.c: Get the type of transparent proxies from its remote_class.
13098         Added methods that generate the IL for type checks and casts:
13099         mono_marshal_get_isinst, mono_marshal_get_castclass, 
13100         mono_marshal_get_proxy_cancast.
13101         * marshal.h: Declaration of the previous new methods.
13102         * object.c: Added new moethods for creating and updating MonoRemoteClass
13103         instances: mono_remote_class, mono_upgrade_remote_class, 
13104         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
13105         * verify.c: FIx transparent_proxy_fields layout.
13106         * appdomain.c: Bump corlib version.
13107
13108 2004-03-04  Jackson Harper  <jackson@ximian.com>
13109
13110         * icall.c: Add icall to access char conversion tables.
13111         * char-conversions.h: Character conversion tables.
13112         * Makefile.am: Add char-conversions.h private header file.
13113         
13114 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
13115
13116         * appdomain.c (unload_thread_main): Increase unloading timeout to
13117         10 sec as a temporary workaround for Nant problems.
13118
13119 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
13120
13121         * gc.c: Add checks for GC_enable and GC_disable.
13122
13123         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
13124         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
13125         (bug #54988).
13126         
13127 2004-02-27  Martin Baulig  <martin@ximian.com>
13128
13129         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13130         `MonoReflectionType *' instead of a `MonoType *'.
13131
13132 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
13133
13134         * gc.c (run_finalize): Avoid finalizing the object representing the
13135         finalizer thread.
13136         (finalizer_thread): Fix warning.
13137
13138 2004-02-25  Martin Baulig  <martin@ximian.com>
13139
13140         * class.c (_mono_class_get_instantiation_name): Added `int offset'
13141         argument for nested types.
13142         (mono_class_create_generic): Added support for nested generictypes.
13143
13144         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
13145         `GList *nested'.
13146
13147         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
13148
13149         * reflection.c (method_encode_signature): Increase the minimum
13150         value of `size' from 10 to 11.
13151         (mono_reflection_bind_generic_parameters): Take `int type_argc'
13152         and `MonoType **types' arguments instead of the `MonoArray
13153         *types'; added `MonoType *nested_in'.  Recursively instantiate
13154         nested classes. 
13155
13156 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
13157
13158         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
13159         stack_overflow_ex members which are used by exception handling.
13160
13161         * appdomain.c (mono_runtime_init): Initialize the new members.
13162
13163         * gc.c (mono_gc_enable): New helper function.
13164         * gc.c (mono_gc_disable): New helper function.
13165
13166 2004-02-23  Martin Baulig  <martin@ximian.com>
13167
13168         * icall.c: I must have been really stupid - make it actually work
13169         this time ;-)
13170
13171 2004-02-23  Martin Baulig  <martin@ximian.com>
13172
13173         * loader.c (method_from_memberref): Only inflate the method if
13174         it's in another klass.
13175
13176 2004-02-23  Martin Baulig  <martin@ximian.com>
13177
13178         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
13179         (mono_class_init): If we're a generic instance and an interface,
13180         compute `class->interface_id'; also create `class->interfaces'
13181         here and inflate them.
13182
13183         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
13184         `ginst->is_open'.
13185         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
13186
13187         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
13188
13189 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
13190
13191         * reflection.c (method_encode_code): Improved the error message
13192         generated by the exception.
13193
13194 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13195
13196         * icall.c: Martin did not do what he said in the ChangeLog for
13197         2004-02-18, but put back the changes for properties and events.
13198         Commenting those changes out again and adding comment to bug #54518.
13199         
13200         * process.c: removed warning.
13201
13202 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
13203
13204         * marshal.c (emit_struct_conv): Print an error message instead of
13205         asserting when a type does not have the StructLayout attribute.
13206
13207 2004-02-20  Martin Baulig  <martin@ximian.com>
13208
13209         * reflection.c (mono_type_get_object): Also use the cache for
13210         generic instances.
13211         (mono_reflection_bind_generic_parameters): Always compute
13212         `ginst->ifaces'.        
13213
13214 2004-02-20  Martin Baulig  <martin@ximian.com>
13215
13216         * class.h (MonoGenericMethod): Removed `klass'.
13217
13218         * class.c (mono_class_inflate_generic_method): Added `MonoClass
13219         *klass' argument.
13220
13221 2004-02-20  Martin Baulig  <martin@ximian.com>
13222
13223         * reflection.c (method_encode_methodspec): Actually use the
13224         uninflated signature for the memberref.
13225
13226 2004-02-20  Martin Baulig  <martin@ximian.com>
13227
13228         * class.h (MonoGenericMethod): Removed `declaring'.
13229
13230         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
13231         is NULL, compute it here.
13232
13233 2004-02-20  Martin Baulig  <martin@ximian.com>
13234
13235         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
13236
13237         * metadata.c (mono_metadata_generic_inst_hash): New method.
13238         (mono_metadata_generic_inst_equal): New method.
13239
13240         * reflection.c (mono_reflection_bind_generic_parameters): Use the
13241         `klass->image->generic_inst_cache' cache to avoid creating
13242         duplicate MonoGenericInst's.
13243
13244         * class.c (mono_class_inflate_generic_type): Use the cache.
13245
13246 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
13247
13248         * object.c: fixed gc descriptor calculation for embedded valuetypes.
13249
13250 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13251
13252         * icall.c: added Socket.WSAIoctl icall.
13253
13254         * socket-io.[ch]: implemented
13255         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
13256
13257 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
13258
13259         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
13260
13261 2004-02-18  Urs C Muff  <umuff@quark.com>
13262
13263         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
13264         this work on PPC and other big-endian architectures.
13265
13266         * debug-mono-symfile.h: Prepended the names of all the `guint32'
13267         fields with an underscore to make sure they're only accessed by
13268         the read32() macro.
13269
13270 2004-02-18  Martin Baulig  <martin@ximian.com>
13271
13272         * icall.c: Put the klass->refclass changes back for methods and
13273         fields, but not for properties and events.  We're currently not
13274         distinguishing between DeclaringType and ReflectedType for
13275         properties and events, that's what caused the regressions.
13276
13277 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13278
13279         * object.c:
13280         (mono_async_result_new): the handle can be NULL.
13281
13282         * threadpool.c: Use an event instead of a semaphore, don't initialize
13283         it until needed. This saves quite a few semaphores from being created
13284         when using the threadpool.
13285
13286 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
13287
13288         * object.c (mono_string_is_interned_lookup): Fix interning of long
13289         strings. Fixes #54473.
13290
13291         * domain.c (ldstr_equal): Optimize if the two strings are equal.
13292
13293         * icall.c: Revert the klass->refclass changes since they introduce
13294         regressions (bug #54518).
13295
13296 2004-02-18  Martin Baulig  <martin@ximian.com>
13297
13298         * class.c (mono_class_init): If we're a generic instance and don't
13299         come from a TypeBuilder, inflate our members here.
13300         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
13301         (mono_class_create_generic): New public method.
13302         (mono_class_initialize_generic): Removed.
13303         (get_instantiation_name): Renamed to
13304         _mono_class_get_instantiation_name() and made it public.
13305
13306 2004-02-18  Martin Baulig  <martin@ximian.com>
13307
13308         * class.c (mono_class_inflate_generic_type): Clear the new
13309         instance's `nginst->klass' when inflating a generic instance.
13310         (mono_class_is_subclass_of): Added (basic) support for generic
13311         instances.
13312
13313 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
13314
13315         * appdomain.h, domain.c: use a MonoCodeManager instead of a
13316         MonoMempool to hold compiled native code.
13317
13318 2004-02-17  Martin Baulig  <martin@ximian.com>
13319
13320         * class.h (MonoDynamicGenericInst): Added `count_properties' and
13321         `properties'.
13322
13323         * reflection.c (mono_reflection_generic_inst_initialize): Added
13324         `MonoArray *properties' argument.
13325
13326         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
13327
13328 2004-02-17  Martin Baulig  <martin@ximian.com>
13329
13330         * icall.c (ves_icall_Type_GetFields): Renamed to
13331         ves_icall_Type_GetFields_internal() and added a
13332         `MonoReflectionType *rtype' argument; pass it to
13333         mono_field_get_object() to set the field's "reflected" type.
13334         (ves_icall_Type_GetConstructors): Likewise.
13335         (ves_icall_Type_GetEvents): Likewise.
13336         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
13337         argument; pass it to mono_method_get_object() to set the method's
13338         "reflected" type.       
13339
13340 2004-02-17  Martin Baulig  <martin@ximian.com>
13341
13342         * class.h (MonoDynamicGenericInst): New type.
13343         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
13344
13345         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
13346         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
13347         (ves_icall_MonoGenericInst_GetFields): New interncall.
13348
13349         * class.c (mono_class_from_generic): Don't call
13350         mono_class_initialize_generic() if this is a dynamic instance;
13351         ie. it's being created from a TypeBuilder.
13352         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
13353         `class->byval_arg.type'.
13354
13355         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
13356         to `inflate_method' and made static.
13357         (mono_reflection_inflate_field): Removed.
13358         (mono_reflection_generic_inst_initialize): New public method.
13359
13360         * reflection.h (MonoReflectionGenericInst): Removed `methods',
13361         `ctors' and `fields'; added `initialized'.
13362
13363 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
13364
13365         * debug-helpers.c (mono_method_full_name): Fix output for empty
13366         namespaces.
13367
13368 2004-02-12  Martin Baulig  <martin@ximian.com>
13369
13370         * class.h (MonoClassField): Added `MonoType *generic_type'.
13371
13372         * reflection.c (mono_image_get_fieldref_token): Added support for
13373         instantiated generic types.
13374         (field_encode_inflated_field): Removed.
13375         (mono_image_get_inflated_field_token): Removed.
13376         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
13377
13378         * reflection.h (MonoReflectionInflatedField): Removed.
13379
13380 2004-02-12  Martin Baulig  <martin@ximian.com>
13381
13382         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
13383         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
13384
13385         * reflection.c (mono_image_get_methodspec_token): Take a
13386         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
13387         (mono_image_create_token): Check whether we have a
13388         `method->signature->gen_method' and call
13389         mono_image_get_methodspec_token() if appropriate.
13390         (inflated_method_get_object): Removed.
13391         (mono_reflection_bind_generic_method_parameters): Return a
13392         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
13393         (mono_reflection_inflate_method_or_ctor): Likewise.
13394
13395         * reflection.h (MonoReflectionInflatedMethod): Removed.
13396
13397 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
13398
13399         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
13400         for custom valuetype marshalling.
13401
13402         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
13403
13404 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13405
13406         * icall.c: fixed WSAGetLastError_internal name.
13407
13408 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
13409
13410         * threads.c (mono_thread_attach): Allow this to be called multiple
13411         times for a thread.
13412         
13413         * threads.c (build_wait_tids): Do not wait for ourselves.
13414
13415         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
13416         appdomain list is empty.
13417
13418         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
13419         memory returned by mono_string_builder_to_utf16, since it points into
13420         managed memory. Thanks to Bernie Solomon for noticing this.
13421
13422         * icall.c: Add AppDomainSetup icalls.
13423
13424         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
13425
13426         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
13427         types.
13428
13429         * reflection.c (reflection_methodbuilder_to_mono_method): Save
13430         custom attributes to the method_aux struct. Also fix array indexes etc.
13431
13432         * loader.c (mono_method_get_param_names): Make dynamic case work again.
13433         
13434 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
13435
13436         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
13437         (both static and runtime) and reduce startup time.
13438
13439 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
13440
13441         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
13442         AsAny marshalling conversion instead of crashing.
13443
13444         * marshal.c: Fix warnings.
13445
13446 2004-02-09  Martin Baulig  <martin@ximian.com>
13447
13448         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
13449
13450         * reflection.h (MonoReflectionInflatedMethod): Removed the
13451         `declaring' field, it's now in the unmanaged MonoGenericMethod.
13452
13453         * reflection.c (method_encode_methodspec): Removed the `method'
13454         argument; we get it from `gmethod->declaring'.
13455         (inflated_method_get_object): Removed the `declaring' argument.
13456
13457 2004-02-09  Martin Baulig  <martin@ximian.com>
13458
13459         * class.h (MonoGenericMethod): New type.
13460         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
13461         `generic_method'.
13462
13463         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
13464         a `MonoGenericMethod *gen_method' one.
13465
13466         * class.c (mono_class_inflate_generic_type): Take an additional
13467         `MonoGenericMethod * argument.  This is only non-NULL if we're
13468         inflating types for a generic method.   
13469         (mono_class_inflate_generic_signature): Renamed to
13470         inflate_generic_signature() and made static; take a
13471         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
13472         (inflate_generic_header): Take a `MonoGenericMethod *' argument
13473         instead of a `MonoGenericInst *' one.
13474         (mono_class_inflate_generic_method): Likewise.
13475
13476         * reflection.c (encode_generic_method_sig): Take a
13477         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
13478         (method_encode_methodspec): Likewise.
13479         (inflated_method_get_object): Likewise. 
13480
13481         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
13482         field with a `MonoGenericMethod *gmethod' one.  
13483
13484 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
13485
13486         * class.h (mono_class_has_parent): add parens to expansion
13487         so you can ! this.
13488
13489 2004-02-08  Martin Baulig  <martin@ximian.com>
13490
13491         * image.h (MonoImage): Removed `generics_cache'.
13492
13493         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
13494         instead of a `MonoType *' argument; removed the `inflate_methods'
13495         argument.  Don't inflate methods here.
13496
13497         * loader.c (find_method): If it's a generic instance, call
13498         mono_class_init() on the `sclass->generic_inst->generic_type'.
13499
13500         * metadata.c (mono_type_size): Make this work on uninitialized
13501         generic instances; call it on the `ginst->generic_type's class.
13502
13503         * reflection.c (mono_reflection_bind_generic_parameters): Call
13504         mono_class_from_generic() to create the `ginst->klass'.
13505
13506 2004-02-08  Martin Baulig  <martin@ximian.com>
13507
13508         * class.h (MonoClass): Changed type of `generic_inst' from
13509         `MonoType *' to `MonoGenericInst *'.
13510
13511 2004-02-08  Martin Baulig  <martin@ximian.com>
13512
13513         * icall.c (ves_icall_Type_BindGenericParameters): Just call
13514         mono_type_get_object(), this is now creating a `MonoGenericInst'
13515         for MONO_TYPE_GENERICINST.
13516         (ves_icall_MonoGenericInst_GetParentType): Likewise.
13517         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
13518
13519         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
13520         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
13521         (inflated_method_get_object): Added `MonoClass *refclass' argument.
13522         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
13523         and reflected type.
13524
13525         * reflection.h (MonoReflectionInflatedMethod): Removed
13526         `declaring_type' and `reflected_type'.
13527
13528 2004-02-08  Martin Baulig  <martin@ximian.com>
13529
13530         * class.h (MonoGenericInst): Added `MonoType *parent' and
13531         `MonoType **ifaces'.
13532
13533         * reflection.h (MonoReflectionGenericInst): Removed `klass',
13534         `parent' and `interfaces'.
13535
13536         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13537         `MonoType *' argument and return a `MonoType *'.
13538
13539         * icall.c
13540         (ves_icall_MonoGenericInst_GetParentType): New interncall.
13541         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
13542
13543 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
13544
13545         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
13546         valuetype marshalling.
13547
13548 2004-02-06  Martin Baulig  <martin@ximian.com>
13549
13550         * class.c
13551         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
13552         (my_mono_class_from_generic_parameter): Likewise.
13553
13554 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
13555
13556         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
13557         contents of the symbol files lazily.
13558
13559         * object.h (MonoThread): Add 'name' and 'name_len' fields.
13560
13561         * threads.h threads.c icall.c: New icalls for getting and setting the
13562         threads name.
13563
13564 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
13565
13566         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
13567         Raise an exception when the domain is not found.
13568
13569 2004-02-03  Martin Baulig  <martin@ximian.com>
13570
13571         * reflection.c (mono_image_get_methodspec_token): Use the
13572         uninflated signature; fixes gen-33.
13573
13574 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
13575
13576         * gc.c threads.c: Make the finalizer thread a normal managed thread so
13577         the finalizer code can use thread functionality.
13578
13579         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
13580         the finalizer thread.
13581
13582         * threads.c: Make some functions more robust.
13583
13584         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
13585
13586         * metadata.h: Add new marshalling conventions.
13587
13588         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
13589         stringbuilder marshalling. Fixes #53700.
13590
13591         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
13592
13593         * reflection.c (mono_image_get_type_info): Save declarative security
13594         info.
13595
13596         * reflection.c (mono_image_get_field_info): Handle uninitialized 
13597         unmanaged fields as well.
13598
13599         * appdomain.c: Bump corlib version.
13600
13601 2004-02-01  Martin Baulig  <martin@ximian.com>
13602
13603         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
13604         method type arguments.  
13605
13606 2004-01-30  Duncan Mak  <duncan@ximian.com>
13607
13608         * marshal.h: Add prototype for
13609         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
13610         and
13611         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
13612         fix the build.
13613
13614 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
13615
13616         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
13617         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
13618
13619 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
13620
13621         * marshal.c (mono_marshal_get_native_wrapper): Add support for
13622         custom marshalling of valuetypes.
13623
13624         * marshal.c: Fix some warnings.
13625
13626 2004-01-29  Martin Baulig  <martin@ximian.com>
13627
13628         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
13629         for generic method parameters.
13630
13631         * reflection.c (method_encode_methodspec): Write the uninflated
13632         signature into the methodspec table.
13633         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
13634         is always the uninflated method.
13635         (reflection_methodbuilder_to_mono_method): Copy the generic
13636         parameters from the MethodBuilder into `header->gen_params'.
13637
13638 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
13639
13640         * class.c (mono_class_from_generic_parameter): Fix warning.
13641
13642 2004-01-27  Martin Baulig  <martin@ximian.com>
13643
13644         * class.c (mono_class_from_generic_parameter): Don't create
13645         `klass->methods' here.  
13646
13647 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
13648
13649         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
13650         extension since it does not work with libraries named lib<FOO>.dll.so.
13651
13652 2004-01-25  Martin Baulig  <martin@ximian.com>
13653
13654         * class.c (mono_class_inflate_generic_type): Added support for
13655         MONO_TYPE_GENERICINST.
13656
13657         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
13658         inflate methods on open constructed types.      
13659
13660 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13661
13662         * object.c: fire ProcessExit event in the root AppDomain after running
13663         Main. Fixes bug #53299.
13664
13665 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
13666
13667         * socket-io.c: include the new socket-wrappers.h header.
13668         Use the wrappers instead of the unix socket functions to make the code
13669         more clear.
13670
13671 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
13672
13673         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
13674
13675         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13676         Fixes #22532.
13677
13678 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
13679
13680         * reflection.c (mono_image_create_pefile): Handle the case when the
13681         entry point is not a MethodBuilder.
13682
13683         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13684         field to ReflectionMethod since it is not allways a builder.
13685
13686         * reflection.c (type_get_fully_qualified_name): New helper function to
13687         return the fully qualified name of a type.
13688
13689         * reflection.c (encode_marshal_blob): Always emit the fully qualified
13690         type name for custom marshallers.
13691
13692         * reflection.c (mono_marshal_spec_from_builder): Ditto.
13693
13694         * class.c (mono_class_setup_vtable): If a parent class already 
13695         implements an interface, use the implementing methods from that class.
13696         Fixes #53148.
13697
13698 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13699
13700         * threadpool.c: just return instead of ExitThread to allow for thread
13701         clean up earlier.
13702
13703 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
13704
13705         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
13706         when closing resource modules.
13707
13708         * reflection.c (mono_image_create_pefile): Handle the case when the
13709         entry point is not a MethodBuilder.
13710
13711         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13712         field to ReflectionMethod since it is not allways a builder.
13713
13714 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
13715
13716         * marshal.c (mono_marshal_get_managed_wrapper): 
13717         mono_marshal_alloc takes native int so CONV_I
13718         the arg for 64bits.
13719
13720 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
13721
13722         * reflection.c (fixup_cattrs): New function to fixup the methoddef
13723         tokens in the cattr table. Fixes #53108.
13724
13725 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13726
13727         * loader.c: don't trim ".dll" before looking up in the config file.
13728         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
13729
13730 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
13731
13732         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
13733         Return the module which contains the resource as well.
13734         (ves_icall_System_Reflection_Module_Close): New icall.
13735
13736         * appdomain.c: Bump corlib version number.
13737
13738         * image.c (mono_image_addref): New public function.
13739
13740         * assembly.c: Call mono_image_addref.
13741
13742         * reflection.c (mono_module_get_object): Increase reference count of 
13743         the image.
13744
13745         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13746         Fixes #22532.
13747
13748         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
13749         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
13750         proper exceptions on DllImport problems.
13751
13752 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
13753
13754         * class.c, metadata.c: eliminate CSIZE macro.
13755
13756 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
13757
13758         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
13759         * object.h: Added async_callback field in MonoAsyncResult.
13760         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
13761         * verify.c: Added async_callback in MonoAsyncResult layout.
13762
13763 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
13764
13765         * reflection.c (mono_reflection_get_custom_attrs): Add support
13766         for Modules.
13767
13768 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13769
13770         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
13771         marshalling.
13772         (mono_marshal_method_from_wrapper): Add null pointer check.
13773
13774 2004-01-16  Martin Baulig  <martin@ximian.com>
13775
13776         * debug-mono-symfile.h: Set version number to 36 and reflect
13777         latest symbol writer changes.
13778
13779 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13780
13781         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
13782         multi-dimensional arrays.
13783         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
13784         (mono_class_from_mono_type): Use bounded_array_class_get.
13785         
13786         * class.c (mono_bounded_array_class_get): New function which takes
13787         a 'bounded' bool argument to distinguish vectors from one dimensional
13788         arrays.
13789
13790         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
13791         bounded_array_class_get if the array has bounds.
13792
13793         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13794         Search modules loaded using AssemblyBuilder:AddModule as well.
13795
13796 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13797
13798         * appdomain.c: increased corlib version.
13799         * filewatcher.c: removed g_print.
13800         * icall.c:
13801         (get_property_info): only allocate what is actually requested.
13802         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
13803
13804 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13805
13806         * Makefile.am: added filewatcher.[ch]
13807         * filewatcher.[ch]: FileSystemWatcher runtime support.
13808         * icall.c: added new FSW icalls.
13809
13810 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
13811
13812         * string-icalls.c: fix stringbuilder regression as suggested by
13813         Iain McCoy <iain@mccoy.id.au>.
13814
13815 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
13816
13817         * process.c (process_read_stringtable_block): Recognize '007f' as
13818         a language neutral stringtable block.
13819
13820 2004-01-12  Patrik Torstensson
13821
13822         * object.h (MonoStringBuilder) : Changed layout to support our
13823         new stringbuilder class.
13824         * marshal.c: Change marshalling to support the new layout of 
13825         string builder.
13826         * appdomain.c: increased version number because new layout of
13827         string builder.
13828
13829 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
13830
13831         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
13832         assembly name as an string instead of an AssemblyName, since it is
13833         easier to extract info from it.
13834
13835         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
13836         the culture subdirectories too. Fixes #52231.
13837
13838 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13839
13840         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
13841         It takes 2 new parameters with an optional name for the method to look
13842         for and case ignoring info.
13843
13844         * threadpool.c: removed unused variable.
13845
13846 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13847
13848         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
13849         It takes 2 new parameters with an optional name for the property to look
13850         for and case ignoring info.
13851         Fixes bug #52753.
13852
13853 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
13854
13855         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
13856         Fix #52451.
13857
13858 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13859
13860         * appdomain.c:
13861         * assembly.c: escape the uri before passing it to g_filename_from_uri.
13862         Fixes bug #52630.
13863
13864 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
13865
13866         * reflection.c: Add support for more than one unmanaged resource.
13867
13868         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
13869         in field->def_value, as done in all other cases.
13870
13871         * reflection.c (mono_reflection_get_custom_attrs): Add support for
13872         TypeBuilders.
13873
13874         * reflection.c (mono_reflection_create_runtime_class): Remove 
13875         errorneous assignment to klass->element_class, since it is already
13876         done in mono_reflection_setup_internal_class.
13877
13878 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13879
13880         * gc.c: added missing LeaveCriticalSection.
13881         * icall.c: indented a couple of lines.
13882         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
13883         if we call EndInvoke inside a callback. Fixes bug #52601.
13884
13885 2004-01-07  Martin Baulig  <martin@ximian.com>
13886
13887         * mono-debug-debugger.h
13888         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
13889
13890 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
13891
13892         * appdomain.c: Use messages in NotImplementedException.
13893
13894         * exception.c (mono_get_exception_not_implemented): Now this takes
13895         a message argument.
13896
13897         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
13898         exception instead of g_asserting an aborting when something is not
13899         implemented.
13900
13901         Add some inline docs.
13902
13903 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
13904
13905         * reflection.h: Update after changes to object layout.
13906
13907         * reflection.c: Implement saving of unmanaged aka win32 resources.
13908
13909         * appdomain.c: Bump version number.
13910
13911         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
13912         Handle missing domains gracefully.
13913
13914 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
13915
13916         * file-io.c : On Windows, there are much more invalid_path_chars.
13917
13918 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
13919
13920         * class.h, object.c: prepare for GetType () speedup.
13921
13922 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
13923
13924         * profiler.c: workaround for --profile null reference exception on
13925           cygwin. Patch by Patrik Torstensson.
13926
13927 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
13928
13929         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
13930         make work for unaligned access.
13931
13932 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
13933
13934         * class.c: small cleanup (class->fields [i] -> field).
13935         * image.c: check address of metadata is valid.
13936
13937 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
13938
13939         * assembly.h assembly.c (mono_assembly_loaded): New public function to
13940         search the list of loaded assemblies.
13941
13942         * reflection.c (mono_reflection_type_from_name): Use 
13943         mono_assembly_loaded instead of mono_image_loaded.
13944
13945         * reflection.c: Fix warnings.
13946
13947 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
13948
13949         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
13950         is dynamic. This is needed since an assembly can contain both dynamic and
13951         non-dynamic images.
13952
13953         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
13954         assembly->dynamic.
13955
13956         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
13957
13958         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
13959         to store modules loaded using AddModule.
13960
13961         * reflection.c (mono_image_fill_file_table): Generalize this so it works
13962         on Modules.
13963
13964         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
13965
13966         * reflection.c (mono_image_fill_export_table_from_module): New function to
13967         fill out the EXPORTEDTYPES table from a module.
13968
13969         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
13970         into a separate function. Also handle loaded non-dynamic modules.
13971
13972         * reflection.c (mono_image_basic_init): Fix memory allocation.
13973
13974         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13975
13976         * assembly.c (mono_assembly_load_references): Make this public.
13977
13978 2003-12-19  Martin Baulig  <martin@ximian.com>
13979
13980         * class.c (mono_class_initialize_generic): Made this static, take
13981         a `MonoGenericInst *' instead of a `MonoClass *'.
13982         (mono_class_from_generic): Call mono_class_initialize_generic()
13983         unless we're already initialized or being called from
13984         do_mono_metadata_parse_generic_inst().
13985
13986         * class.h (MonoGenericInst): Added `initialized' and
13987         `init_pending' flags.
13988
13989         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
13990         `mono_class_init (gklass)' or mono_class_initialize_generic()
13991         here; set `generic_inst->init_pending' while parsing the
13992         `type_argv'.
13993
13994 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
13995
13996         * locales.c: include string.h for memxxx prototypes
13997
13998 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
13999
14000         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
14001         constructor when accessing literal fields.
14002
14003 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
14004
14005         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14006
14007         * reflection.c (assembly_add_resource_manifest): New function to fill
14008         the MANIFESTRESOURCE table.
14009
14010         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
14011
14012         * reflection.h: Update to changes in class layout.
14013
14014         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
14015         Reenable call to mono_runtime_is_shutting_down ().
14016
14017         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
14018         determine if the runtime is shutting down.
14019
14020 2003-12-16  Jackson Harper <jackson@ximian.com>
14021
14022         * icall.c: comment out call to mono_runtime_is_shutting_down to
14023         fix build.
14024         
14025 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
14026
14027         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
14028         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
14029
14030 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
14031
14032         * reflection.c: move definition of swap_with_size
14033         to before its first call
14034
14035 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
14036
14037         * appdomain.c (mono_runtime_is_shutting_down): New public function.
14038
14039         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
14040         icall.
14041
14042         * object.c: Fix warnings.
14043
14044         * icall.c (ves_icall_Type_Get...): Only consider inherited static
14045         members if FlattenHierarchy is set.
14046
14047         * reflection.c (mono_image_add_decl_security): New function to emit
14048         declarative security.
14049
14050         * reflection.h reflection.c: Add support for declarative security.
14051
14052         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14053         
14054 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
14055
14056         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14057         
14058         * appdomain.c verify.c: Moved corlib version checking into its own
14059         function in appdomain.c since it needs to create vtables etc.
14060
14061 2003-12-13  Patrik Torstensson <p@rxc.se>
14062
14063         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
14064         instead of unwrapped server.
14065
14066 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
14067
14068         * verify.c (check_corlib): Fix field index.
14069
14070 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
14071
14072         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
14073         GetGacPath icall.
14074
14075 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
14076
14077         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
14078         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
14079         cope with sizeof(size_t) != sizeof(guint32).
14080
14081 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14082
14083         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
14084         in case of failure.
14085
14086 2003-12-10  Mark Crichton <crichton@gimp.org>
14087
14088         * icall.c: removed the GetNonZeroBytes.  We now handle this case
14089         in managed code.
14090
14091         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
14092
14093 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
14094
14095         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
14096         marked as deleted.
14097
14098 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
14099
14100         * verify.c (check_corlib): Handle the case when the version field is 
14101         initialized by a static constructor.
14102
14103 2003-12-08  Patrik Torstensson  <p@rxc.se>
14104
14105     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
14106
14107 2003-12-08  Martin Baulig  <martin@ximian.com>
14108
14109         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
14110         a MonoReflectionGenericParameter, also take the parameter index
14111         and name as arguments.
14112         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
14113         (ves_icall_MonoGenericParam_initialize): New interncall.
14114         (ves_icall_Type_make_byref_type): New interncall.
14115
14116         * reflection.h (MonoReflectionGenericParam): Derive from
14117         MonoReflectionType, not just from MonoObject.  Added `refobj' and
14118         `index' fields.
14119
14120         * reflection.c (mono_reflection_define_generic_parameter): Create
14121         and return a new MonoReflectionGenericParam; don't initialize the
14122         constraints here.
14123         (mono_reflection_initialize_generic_parameter): New public method;
14124         initializes the constraints and creates the `param->pklass'.
14125
14126 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
14127
14128         * reflection.h reflection.c: Use the new fields 'num_types', 
14129         'num_fields' and 'num_methods' to track the number of types etc.
14130
14131         * verify.c (check_corlib): Check corlib version number.
14132
14133 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
14134
14135         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
14136         function works on all methods.
14137
14138 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
14139
14140         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
14141         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
14142         the custom_type_info flag of the transparent proxy.
14143         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
14144         objects that supports IRemotingTypeInfo.
14145         * object.h: Added custom_type_info field in transparent proxy.
14146
14147 2003-12-06  Martin Baulig  <martin@ximian.com>
14148
14149         * class.c (mono_class_create_from_generic): Removed.
14150         (mono_class_from_generic): Check `ginst->klass' before doing
14151         anything else.  This is important to fully support "recursive"
14152         generic types.
14153
14154         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
14155         empty `generic_inst->klass' before doing anything else.
14156
14157 2003-12-06  Dick Porter  <dick@ximian.com>
14158
14159         * verify.c: 
14160         * object.h:
14161         * icall.c:
14162         * locales.c: Use C structs to access class fields.  Don't do a
14163         conversion between MonoString and UChar because both are
14164         platform-endian UTF-16.  Compare now takes startindex and count
14165         parameters.  Add a char overload for IndexOf.  Speed up the
14166         invariant string IndexOf.
14167
14168 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
14169
14170         * Makefile.am (monosn_LDADD): Fix parallel build.
14171
14172 2003-12-04  Martin Baulig  <martin@ximian.com>
14173
14174         * icall.c
14175         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14176         (ves_icall_Type_make_array_type): New interncall.       
14177
14178 2003-12-04  Martin Baulig  <martin@ximian.com>
14179
14180         * locales.c: also change it in the !HAVE_ICU case.
14181
14182 2003-12-04  Dick Porter  <dick@ximian.com>
14183
14184         * icall.c:
14185         * locales.c: construct_compareinfo is now in CompareInfo, not
14186         CultureInfo.
14187
14188 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
14189
14190         * image.c (mono_image_load_file_for_image): Cache loaded images in the
14191         image->files array.
14192
14193         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
14194         table as well.
14195
14196         * assembly.c (mono_assembly_load_references): Only load references
14197         once.
14198
14199         * class.c (mono_class_from_name): Avoid linear search of the 
14200         EXPORTEDTYPE table.
14201
14202         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
14203
14204 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
14205
14206         * image.h (MonoImage): Add 'field_cache' field.
14207
14208         * loader.c (mono_field_from_token): Cache field lookups.
14209         
14210         * reflection.c (mono_module_get_object): Fix name property.
14211
14212         * icall.c (ves_icall_get_enum_info): Update after changes to 
14213         mono_metadata_get_constant_index ().
14214
14215         * icall.c: Get rid of get_type_info icall, use a separate icall for
14216         each type property to avoid needless memory allocations. Fixes #51514.
14217
14218         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
14219         to avoid needless binary searches.
14220
14221         * class.c (class_compute_field_layout): Move the initialization of
14222         field->def_value to mono_class_vtable ().
14223
14224         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
14225         non-corlib types.
14226
14227         * object.c (mono_object_allocate): Make it inline.
14228
14229         * object.c (mono_object_allocate_spec): Make it inline.
14230         
14231 2003-12-02  Dick Porter  <dick@ximian.com>
14232
14233         * locales.c (create_NumberFormat): NumberFormatInfo construction.
14234         Patch by Mohammad DAMT (mdamt@cdl2000.com).
14235
14236 2003-12-01  Dick Porter  <dick@ximian.com>
14237
14238         * threads.c: Fix signature and call in CreateMutex and
14239         CreateEvent.
14240
14241 2003-12-01  Dick Porter  <dick@ximian.com>
14242
14243         * icall.c: 
14244         * locales.c: Implement string compares and searching
14245
14246         * object.h: Add extra Thread field
14247
14248 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
14249
14250         * reflection.c (fixup_method): Add support for MonoCMethod.
14251
14252 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
14253
14254         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
14255
14256         * reflection.c (assembly_name_to_aname): Allow extra characters in
14257         assembly names. Fixes #51468.
14258
14259 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
14260
14261         * exception.c (mono_exception_from_name_domain): New helper function.
14262
14263         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
14264         exception object in the correct domain.
14265
14266         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
14267         formatting + make a copy a the input data.
14268
14269         * loader.c (mono_get_method_from_token): Methods which contain
14270         native code do not have entries in the ImplMap.
14271
14272         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
14273         Thanks to Gonzalo for spotting this.
14274         
14275         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
14276         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
14277
14278         * assembly.h (mono_assembly_load_from): Split the second part of 
14279         assembly loading into a new public function.
14280
14281         * exception.h (mono_get_exception_bad_image_format): New function.
14282
14283 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
14284
14285         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14286         Enumerate all modules inside a dynamic assembly. Fixes #51293.
14287         
14288         * icall.c: Add new icall for creating dynamic methods.
14289
14290         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
14291
14292         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
14293
14294         * reflection.c (mono_reflection_create_dynamic_method): New icall to
14295         create a dynamic method.
14296
14297         * reflection.c (resolve_object): New helper function.
14298
14299         * reflection.c: Generalize ReflectionMethodBuilder and the functions
14300         which manipulate it so they can also work on dynamic methods.
14301
14302         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
14303         creating the MonoReflectionMethodAux structure if it is not needed.
14304         
14305         * reflection.h verify.c: Update after changes to object layout.
14306
14307         * reflection.c (method_builder_encode_signature): Fix compilation on
14308         gcc 2.95.x.
14309
14310 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
14311
14312         * appdomain.h: Added support for context static fields. Added static_data
14313           field to MonoAppContext and renamed thread_static_fields to a more
14314           generic special_static_fields in MonoAppDomain, since it can now contain
14315           context static fields.
14316         * domain.c: Updated hashtable name.
14317         * object.c: Replaced field_is_thread_static() for a more generic
14318           field_is_special_static() which also checks for context static attribute.
14319           In mono_class_vtable(), added support for static context fields.
14320         * threads.c: Changed methods that manage thread static fields to more
14321           generic methods so they can be reused both for thread and context static
14322           data.
14323         * threads.h: Declared some new methods.
14324
14325 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
14326
14327         * reflection.h: Update after changes to the managed types.
14328
14329         * reflection.c (encode_custom_modifiers): New helper function.
14330
14331         * reflection.c (method_encode_signature): Emit custom modifiers.
14332
14333         * reflection.c (field_encode_signature): Emit custom modifiers.
14334
14335 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
14336
14337         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
14338
14339         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
14340         implementation.
14341
14342         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
14343         icall.
14344
14345         * object.c (mono_field_get_value_object): New function.
14346
14347         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
14348         specific.
14349
14350 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
14351
14352         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
14353         return a preallocated out-of-memory exception instance.
14354
14355         * object.c (out_of_memory): Use the new function.
14356
14357         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
14358         flag is before the custom modifiers. Fixes #49802.
14359
14360 2003-11-16  Martin Baulig  <martin@ximian.com>
14361
14362         * class.c (mono_class_is_open_constructed_type): Implemented the
14363         MONO_TYPE_GENERICINST case.
14364
14365 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
14366
14367         * assembly.c (mono_assembly_fill_assembly_name): New function to
14368         fill out the MonoAssemblyName structure.
14369         (mono_assembly_open): Use the new function.
14370
14371         * icall.c (fill_reflection_assembly_name): New helper function.
14372
14373         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
14374         new function.
14375
14376         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
14377
14378 2003-11-15  Martin Baulig  <martin@ximian.com>
14379
14380         * class.c (mono_class_is_open_constructed_type): New public
14381         function; checks whether a type is an open constructed type,
14382         ie. whether it still contains type parameters.
14383         (mono_class_inflate_generic_type): If we're a type parameter and
14384         the inflated type is also a MONO_TYPE_(M)VAR, return the original
14385         type.
14386
14387         * class.h (MonoGenericInst): Added `guint32 is_open'.
14388
14389         * loader.c (method_from_methodspec): Check whether we're an open
14390         or closed constructed type and set `ginst->is_open'.
14391
14392         * reflection.c (mono_reflection_bind_generic_parameters): Check
14393         whether we're an open or closed constructed type and set
14394         `ginst->is_open'.
14395         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
14396         from open constructed types.
14397
14398 2003-11-15  Martin Baulig  <martin@ximian.com>
14399
14400         * reflection.c (mono_reflection_bind_generic_parameters): If we're
14401         a generic instance (instead of a generic type declaration) with
14402         unbound generic parameters, bind them to our actual types.
14403
14404 2003-11-14  Martin Baulig  <martin@ximian.com>
14405
14406         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
14407
14408         * reflection.c (mono_reflection_bind_generic_parameters): If we're
14409         an interface type, populate `res->interfaces' with instantiated
14410         versions of all the interfaces we inherit.
14411
14412 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
14413
14414         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
14415         when MONO_PATH is set but doesn't contain the install dir.
14416
14417 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14418
14419         * icall.c:
14420         (ves_icall_Type_GetInterfaces): don't return an interface twice when
14421         it's also implemented in base classes. Fixes bug #50927.
14422
14423 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
14424
14425         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
14426         if this method is called from a finalizer. Fixes #50913.
14427
14428 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
14429
14430         * threads.c: Implement VolatileRead/VolatileWrite
14431
14432         * icall.c: Add new icalls for VolatileRead/VolatileWrite
14433
14434 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14435
14436         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
14437         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
14438         2.95.3.
14439
14440         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
14441         from Peter Ross (pro@missioncriticalit.com).
14442         
14443 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
14444
14445         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
14446
14447 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14448
14449         * assembly.c (mono_assembly_load_references): Disable check because it
14450         triggers on older corlibs which lots of people have.
14451
14452 2003-11-12  Jackson Harper  <jackson@ximian.com>
14453
14454         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
14455         load corlib.dll if mscorlib.dll is not found.
14456         * assembly.h: Remove corlib name define.
14457         * class.c:
14458         * domain.c:
14459         * image.c: Change corlib name to mscorlib.
14460         
14461 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14462
14463         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
14464
14465 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
14466
14467         * appdomain.h: Added loader_optimization here to sync with the C#
14468         code, and add disallow_binding_redirects field.
14469
14470 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
14471
14472         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
14473
14474         * reflection.c (mono_image_build_metadata): Fix crash on modules
14475         with no types.
14476
14477         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
14478
14479         * icall.c (ves_icall_get_method_info): Return callingConvention as
14480         well.
14481
14482         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
14483         namespaces from the EXPORTEDTYPE table as well.
14484
14485         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
14486         from all modules inside the assembly.
14487         
14488 2003-11-11  Martin Baulig  <martin@ximian.com>
14489
14490         * reflection.c (mono_reflection_bind_generic_parameters): Make
14491         this work for interfaces.
14492
14493 2003-11-11  Martin Baulig  <martin@ximian.com>
14494
14495         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
14496
14497 2003-11-11  Martin Baulig  <martin@ximian.com>
14498
14499         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
14500         "MonoInflatedMethod" and "MonoInflatedCtor".
14501
14502 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
14503
14504         * reflection.c (resolution_scope_from_image): Use the assembly table
14505         from the manifest module, since other modules don't have it.
14506
14507         * debug-helpers.c (mono_type_full_name): New helper function.
14508
14509         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
14510
14511         * image.c (mono_image_load_file_for_image): New public function which
14512         is a replacement for the load_file_for_image in class.c.
14513
14514         * assembly.c (mono_assembly_load_module): A wrapper for the function
14515         above which does assembly association and reference loading too.
14516
14517         * class.c (mono_class_from_name): Call mono_assembly_load_module.
14518
14519 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14520
14521         * appdomain.c: not all of the attributes for the full assembly name
14522         are required and the order doesn't matter. Fixes bug #50787.
14523
14524 2003-11-10  Dick Porter  <dick@ximian.com>
14525
14526         * locales.c: Use platform-endian UTF16
14527
14528 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
14529
14530         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
14531         
14532 2003-11-10  Martin Baulig  <martin@ximian.com>
14533
14534         * metadata.c
14535         (mono_metadata_load_generic_params): Make this actually work.
14536
14537         * reflection.c (mono_reflection_bind_generic_parameters): If our
14538         parent is a generic instance, pass all the `types' to it, no
14539         matter whether it has the same number of type parameters or not.
14540
14541 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
14542
14543         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
14544
14545         * assembly.c (mono_assembly_load_references): Move the image<->assembly
14546         assignment code to this function so it gets called recursively for all
14547         modules.
14548
14549         * image.c (load_modules): Remove the assembly assignment since it is
14550         now done by mono_assembly_load_references.
14551         
14552         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14553         Add 'module' argument.
14554         (mono_module_get_types): New helper function.
14555         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
14556
14557 2003-11-08  Martin Baulig  <martin@ximian.com>
14558
14559         * class.c (mono_class_inflate_generic_method): Interface method
14560         don't have a header.
14561
14562         * reflection.c (mono_image_get_methodspec_token): Take an
14563         additional `MonoGenericInst *' argument instead of reading it from
14564         the header; this is necessary to support interfaces.
14565         (mono_image_create_token): Pass the `MonoGenericInst *' from the
14566         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
14567         (inflated_method_get_object): Take an additional `MonoGenericInst *'
14568         argument.
14569
14570         * reflection.h (MonoReflectionInflatedMethod): Added
14571         `MonoGenericInst *ginst'.
14572
14573 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
14574
14575         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
14576
14577 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
14578
14579         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
14580
14581 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
14582
14583         * reflection.c 
14584         (reflection_methodbuilder_from_method_builder):
14585         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
14586         initialize a ReflectionMethodBuilder structure.
14587         (mono_image_get_methodbuilder_token):
14588         (mono_image_get_ctorbuilder_token): New functions to emit memberref
14589         tokens which point to types in another module inside the same assembly.
14590
14591         * reflection.c: Use the new helper functions.
14592         
14593         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
14594
14595         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
14596         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
14597
14598         * reflection.c (resolution_scope_from_image): Emit a moduleref if
14599         neccesary.
14600
14601         * reflection.c (mono_image_build_metadata): Emit metadata only for the
14602         current module. Emit the manifest only for the main module.
14603
14604         * reflection.c (mono_image_create_token): Add assertion when a 
14605         memberref needs to be created.
14606
14607         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
14608
14609         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
14610         larger buffer for the custom attribute blob. Fixes #50637.
14611         
14612 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14613
14614         * threadpool.c: notify listener on async processing handles after
14615         invoking the async callback. Thanks to Zoltan.
14616
14617 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14618
14619         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
14620         avoid code duplication.
14621
14622         * reflection.h (MonoDynamicImage): New type which is currently unused,
14623         but will be used through the ref.emit code in place of 
14624         MonoDynamicAssembly.
14625
14626         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
14627         object layout.
14628
14629         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
14630         a MonoDynamicImage instead of just a MonoImage.
14631         
14632         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
14633         icalls to ModuleBuilder but keep their semantics, so they will work
14634         with moduleb->assemblyb. This will change later.
14635         
14636 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14637
14638         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
14639         object layout.
14640
14641         * reflection.c (mono_image_build_metadata): Avoid creation of a default
14642         main module, since it is now done by the managed code.
14643
14644 2003-11-03  Martin Baulig  <martin@ximian.com>
14645
14646         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
14647         `ginst->klass' here.
14648         (method_encode_methodspec): Don't use the `ginst->generic_method's
14649         klass if it's a generic instance, use `ginst->klass' in this case.
14650
14651 2003-11-03  Martin Baulig  <martin@ximian.com>
14652
14653         * reflection.c (mono_image_get_generic_method_param_info):
14654         Removed, use mono_image_get_generic_param_info() instead.
14655         (mono_image_get_type_info): Write the GenericParam table before
14656         the Method table.  This is neccessary because in the GenericParam
14657         table, type parameters of the class (ie. '!0' etc.) must come
14658         before the ones from its generic methods (ie. '!!0' etc).
14659
14660 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14661
14662         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
14663
14664 2003-11-02  Martin Baulig  <martin@ximian.com>
14665
14666         * reflection.c (create_generic_typespec): Take a
14667         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
14668         the generic parameters from it.
14669
14670 2003-11-02  Martin Baulig  <martin@ximian.com>
14671
14672         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
14673         instead of a `MonoClassField *' since we just need the type.
14674         (create_generic_typespec): New static function.  Creates a
14675         TypeSpec token for a generic type declaration.
14676         (mono_image_get_generic_field_token): New static function.
14677         (mono_image_create_token): If we're a FieldBuilder in a generic
14678         type declaration, call mono_image_get_generic_field_token() to get
14679         the token.
14680
14681 2003-11-02  Martin Baulig  <martin@ximian.com>
14682
14683         * reflection.h
14684         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
14685         `MonoReflectionGenericInst *declaring_type' and
14686         `MonoReflectionGenericInst *reflected_type' fields.
14687
14688         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
14689         `MonoReflectionGenericInst *declaring_type' and a
14690         `MonoReflectionGenericInst *reflected_type' argument instead of a
14691         single `MonoReflectionGenericInst *type' one.  Set
14692         `res->declaring_type' and `res->reflected_type' from them.
14693         (mono_reflection_inflate_field): Likewise.      
14694
14695 2003-11-02  Martin Baulig  <martin@ximian.com>
14696
14697         * class.c (mono_class_setup_vtable): Don't store generic methods
14698         in the vtable.  
14699
14700 2003-11-02  Martin Baulig  <martin@ximian.com>
14701
14702         * reflection.h (MonoReflectionGenericInst): Added
14703         `MonoReflectionType *declaring_type'.
14704
14705         * reflection.c (mono_reflection_bind_generic_parameters): Use
14706         `if (tb->parent)' instead of `klass->parent'.
14707
14708 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
14709
14710         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
14711         with an empty ASSEMBLY table.
14712
14713         * reflection.c (mono_image_build_metadata): Avoid using the same loop
14714         variable in the inner and outer loops.
14715
14716 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
14717
14718         * metadata.h (mono_metadata_make_token): Put parentheses around macro
14719         argument.
14720
14721         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
14722         
14723         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
14724         icalls. Instead, do everything in managed code. This is needed since
14725         it is hard to restore the original domain etc. in unmanaged code in the
14726         presence of undeniable exceptions.
14727
14728         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
14729         New icalls to push and pop appdomain refs.
14730
14731 2003-10-31  Martin Baulig  <martin@ximian.com>
14732
14733         * class.c (inflate_generic_type): Renamed to
14734         mono_class_inflate_generic_type() and made it public.
14735
14736         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
14737         New interncall.
14738
14739         * loader.c (mono_field_from_memberref): Also set the retklass for
14740         typespecs.
14741
14742         * fielder.c (mono_image_get_inflated_field_token): New static
14743         method; creates a metadata token for an inflated field.
14744         (mono_image_create_token, fixup_method): Added support for
14745         "MonoInflatedField".
14746         (fieldbuilder_to_mono_class_field): New static function.
14747         (mono_reflection_inflate_field): New public function.
14748
14749         * reflection.h
14750         (MonoReflectionGenericInst): Added `MonoArray *fields'.
14751         (MonoReflectionInflatedField): New typedef.     
14752
14753 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
14754
14755         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
14756         for Solaris and other platforms without s6_addr16
14757
14758 2003-10-30  Martin Baulig  <martin@ximian.com>
14759
14760         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
14761         argument instead of two.
14762         (mono_class_inflate_generic_signature): Likewise.
14763         (inflate_generic_header): Likewise.
14764         (mono_class_inflate_generic_method): Likewise.  In addition, if
14765         `ginst->klass' is set, it becomes the new `method->klass'.
14766
14767         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
14768         field.
14769
14770         * reflection.c (encode_generic_method_sig): Write a 0xa as the
14771         first byte. [FIXME]
14772         (method_encode_methodspec): If we have generic parameters, create
14773         a MethodSpec instead of a MethodRef.
14774         (fixup_method): Added support for "MonoInflatedMethod" and
14775         "MonoInflatedCtor".
14776         (mono_image_create_token): Added support for "MonoInflatedMethod"
14777         and "MonoInflatedCtor".
14778         (inflated_method_get_object): New static function; returns a
14779         managed "System.Reflection.MonoInflatedMethod" object.
14780         (mono_reflection_bind_generic_method_parameters): Return a
14781         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
14782         (mono_reflection_inflate_method_or_ctor): Likewise.
14783         (mono_image_get_generic_method_param_info): Initialize unused
14784         fields to zero.
14785         (mono_image_get_generic_param_info): Likewise.
14786
14787         * reflection.h (MonoReflectionInflatedMethod): New public
14788         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
14789         "S.R.MonoInflatedCtor" classes.
14790
14791         * loader.c (method_from_memberref): If we're a TypeSpec and it
14792         resolves to a generic instance, inflate the method.
14793
14794 2003-10-28  Dick Porter  <dick@ximian.com>
14795
14796         * object.c (mono_runtime_run_main): Convert command-line arguments
14797         into utf8, falling back to the user's locale encoding to do so.
14798
14799 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
14800
14801         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
14802         at this time.
14803
14804         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
14805
14806         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
14807         up icalls at method definition time. Partially fixes #33569.
14808
14809 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
14810
14811         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
14812         marshalling of arrays. Fixes #50116.
14813
14814         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
14815
14816         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
14817         points to a vtable in the dying appdomain.
14818
14819         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
14820         listeners into unmanaged code inside the lock.
14821
14822         * object.c (mono_class_vtable): Turn off typed allocation in non-root
14823         domains and add some comments.
14824
14825 2003-10-25  Martin Baulig  <martin@ximian.com>
14826
14827         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
14828
14829         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
14830
14831         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
14832         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
14833         currently parsing.  Create the generic class and store it in
14834         `generic_inst->klass' before parsing the type arguments.  This is
14835         required to support "recursive" definitions; see mcs/tests/gen-23.cs
14836         for an example.
14837         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
14838         to support recursive typespec entries.
14839
14840         * class.c (mono_class_setup_parent): If our parent is a generic
14841         instance, we may get called before it has its name set.
14842         (mono_class_from_generic): Splitted into
14843         mono_class_create_from_generic() and mono_class_initialize_generic().
14844
14845 2003-10-25  Martin Baulig  <martin@ximian.com>
14846
14847         * icall.c (ves_icall_Type_BindGenericParameters): Return a
14848         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
14849         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
14850         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
14851
14852         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
14853         (create_typespec): Likewise.
14854         (mono_reflection_bind_generic_parameters): Return a
14855         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
14856         (mono_reflection_inflate_method_or_ctor): New public function.
14857
14858         * reflection.h (MonoReflectionGenericInst): New typedef.        
14859
14860 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
14861
14862         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
14863         inside the domain lock. Fixes #49993.
14864         
14865         * object.c (mono_class_vtable): When typed allocation is used, 
14866         allocate vtables in the GC heap instead of in the mempool, since the
14867         vtables contain GC descriptors which are used by the collector even
14868         after the domain owning the mempool is unloaded.
14869
14870         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
14871
14872         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
14873         reflect what it does. Also invalidate mempools instead of freeing
14874         them if a define is set.
14875
14876         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
14877         of the appdomain.
14878         
14879         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
14880         hold the finalizable objects in this domain.
14881
14882         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
14883         appdomain.
14884
14885         * appdomain.c (mono_domain_set): New function to set the current
14886         appdomain, but only if it is not being unloaded.
14887
14888         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
14889         appdomain which is being unloaded.
14890         
14891         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
14892         unloading of the root appdomain.
14893
14894         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
14895         icall to execute a method in another appdomain. Intended as a 
14896         replacement for InternalSetDomain, which can confuse the code 
14897         generation in the JIT.
14898
14899         * appdomain.c (mono_domain_is_unloading): New function to determine
14900         whenever an appdomain is unloading.
14901
14902         * appdomain.c (mono_domain_unload): New function to correctly unload
14903         an appdomain.
14904
14905         * assembly.c (mono_assembly_load_references): Check that an assembly
14906         does not references itself.
14907
14908         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
14909         domain manually, it asks the finalizer thread to do it, then waits for
14910         the result. Also added a timeout.
14911
14912         * icall.c: Register the new icalls.
14913
14914         * threads.h threads.c: Export the mono_gc_stop_world and 
14915         mono_gc_start_world functions.
14916         
14917         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
14918         function to fill out the mempool with 0x2a.
14919
14920 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
14921
14922         * reflection.h (MonoReflectionMethodAux): New structure to store
14923         information which is rarely used, thus is not in the MonoMethod
14924         structure.
14925
14926         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
14927         store the aux info.
14928
14929         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
14930         and marshalling info into the aux structure.
14931
14932         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
14933         from the aux structure.
14934
14935         * loader.c (mono_method_get_param_names): Retrieve the param names from
14936         the aux structure.
14937         
14938 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
14939
14940         * exception.h exception.c: Add AppDomainUnloadedException && fix 
14941         warning.
14942
14943 2003-10-21  Dick Porter  <dick@ximian.com>
14944
14945         * socket-io.c
14946         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
14947         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
14948
14949 2003-10-21  Martin Baulig  <martin@ximian.com>
14950
14951         * reflection.c (mono_reflection_bind_generic_parameters):
14952         `klass->parent' is NULL for interfaces.
14953
14954 2003-10-21  Martin Baulig  <martin@ximian.com>
14955
14956         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14957
14958 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
14959
14960         * exception.c (mono_exception_from_name_msg): New helper function for
14961         creating exceptions and initializing their message field.
14962
14963         * exception.c: Simplify functions using the new helper.
14964
14965         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
14966         New function.
14967
14968         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
14969         mono_raise_exception, since otherwise gcc doesn't generate the function
14970         epilog for raise_exception, confusing the stack unwinding in the JIT.
14971         Fixes #45043.
14972
14973         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
14974         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
14975         Fixes #49499.
14976
14977 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14978
14979         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
14980         utf8.
14981
14982 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
14983
14984         * icall.c: Removed GetUninitializedObject method because
14985           AllocateUninitializedClassInstance does the same.
14986
14987 2003-10-18  Martin Baulig  <martin@ximian.com>
14988
14989         * class.c (inflate_generic_signature): Renamed to
14990         mono_class_inflate_generic_signature() and made it public.
14991         (my_mono_class_from_generic_parameter): New static function; if we
14992         don't already have the generic parameter's MonoClass, create a
14993         very simple one which is just used internally in the runtime and
14994         not passed back to managed code.
14995
14996         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
14997
14998         * metadata.h (MonoMethodSignature): Moved the
14999         `MonoGenericParam *gen_params' to the MonoMethodHeader.
15000         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
15001
15002         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
15003         ves_icall_MonoMethod_GetGenericArguments(); this is now an
15004         interncall on the MonoMethod class, not on MethodInfo.
15005         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
15006         calling mono_reflection_bind_generic_method_parameters() directly.
15007
15008         * loader.c (mono_method_get_signature): If this is a MethodSpec;
15009         return the already computed `method->signature'.
15010         (method_from_methodspec): New static function to load a method
15011         from a MethodSpec entry.
15012         (mono_get_method_from_token): Call the new method_from_methodspec()
15013         for MethodSpec tokens.  
15014         (mono_get_method_from_token): If we're a generic method, load the
15015         type parameters.
15016
15017         * reflection.c (mono_image_get_memberref_token): Allow
15018         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
15019         table.
15020         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
15021         (mono_image_create_token): First check whether it's a generic
15022         method (so we'd need to create a MethodSpec), then do the other
15023         two alternatives.
15024         (mono_reflection_bind_generic_method_parameters): Return a
15025         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
15026         called directly from the interncall.
15027
15028 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
15029
15030         * reflection.c (load_public_key): Move loading of the public key
15031         into managed code.
15032
15033         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
15034
15035         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
15036         fields.
15037
15038         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
15039         culture, hash_alg and public_key. Fixes #49555.
15040
15041 2003-10-17  Martin Baulig  <martin@ximian.com>
15042
15043         * class.h (MonoGenericInst): Moved this declaration here and added
15044         `MonoMethod *generic_method'.
15045
15046         * icall.c
15047         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
15048         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
15049
15050         * metadata.c (mono_metadata_type_equal): Two types of
15051         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
15052         index; ie. don't compare the address of the `MonoGenericParam'
15053         structure.
15054         (mono_metadata_load_generic_params): Removed the `MonoMethod
15055         *method' argument.
15056
15057         * metadata.h (MonoGenericInst): Moved declaration to class.h.
15058         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
15059
15060         * reflection.c (method_encode_signature): Encode the number of
15061         generic parameters.
15062         (encode_generic_method_sig): New static function.
15063         (method_encode_methodspec): New static function; creates an entry
15064         in the MethodSpec table for a generic method.
15065         (mono_image_get_methodspec_token): New static function.
15066         (mono_image_create_token): Call mono_image_get_methodspec_token()
15067         for generic methods.
15068         (mono_reflection_bind_generic_method_parameters): New public
15069         function.  Instantiates a generic method.
15070
15071 2003-10-16  Martin Baulig  <martin@ximian.com>
15072
15073         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
15074         *gen_params' here from MonoMethodHeader.
15075
15076         * metadata.c (mono_metadata_parse_method_signature): If we have
15077         generic parameters, initialize `method->gen_params' and then set
15078         the correct `type->data.generic_param' in all the parameters.
15079
15080 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
15081
15082         * threads.c (mono_threads_get_default_stacksize): New function to 
15083         return the default stacksize.
15084
15085         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
15086         termination of the finalizer thread, since the previous method had
15087         race conditions. Fixes #49628.
15088
15089         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
15090         as for the other managed threads.
15091
15092 2003-10-16  Martin Baulig  <martin@ximian.com>
15093
15094         * class.c (inflate_generic_signature): Copy `generic_param_count'
15095         and `gen_params'.
15096
15097         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
15098         New interncall.
15099
15100         * metadata.c (mono_metadata_parse_method_signature): Actually set
15101         the `method->generic_param_count' here.
15102         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
15103
15104 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
15105
15106         * object.h: Add a new field to TypedRef to simplify the implementation
15107         of the REFANY opcodes in the JIT.
15108
15109         * icall.c: Make use of the new field.
15110
15111         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
15112         dynamically.
15113
15114 2003-10-15  Martin Baulig  <martin@ximian.com>
15115
15116         * class.c (mono_class_from_gen_param): Renamed to
15117         mono_class_from_generic_parameter() and moved most of the
15118         functionality from mono_reflection_define_generic_parameter()
15119         here; ie. we create a "real" class here.
15120         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
15121         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
15122         previously been called.
15123
15124         * class.h (MonoGenericParam): Moved the declaration of this struct
15125         here from metadata.h and added `MonoMethod *method'.
15126
15127         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
15128         interncall.
15129
15130         * loader.c (mono_get_method_from_token): If we have any generic
15131         parameters, call mono_metadata_load_generic_params() to read them
15132         from the MONO_TABLE_GENERICPAR.
15133
15134         * metadata.c (mono_metadata_load_generic_params): Added
15135         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
15136
15137         * metadata.h (MonoMethodSignature): Replaced
15138         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
15139         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
15140
15141         * reflection.c (mono_reflection_define_generic_parameter): Moved
15142         most of the functionality into the new
15143         mono_class_from_generic_parameter(); set the `method' field if
15144         we're a method parameter.       
15145
15146 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
15147
15148         * marshal.c (emit_struct_conv): if native size is 0
15149         emit no code.
15150
15151 2003-10-14  Martin Baulig  <martin@ximian.com>
15152
15153         * icall.c: The generics API has changed in the spec since it was
15154         added to System.Type; these modifications make it match the spec
15155         again.
15156         (ves_icall_Type_GetGenericParameters): Renamed to
15157         `ves_icall_Type_GetGenericArguments'.
15158         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
15159         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
15160         `ves_icall_MonoType_get_HasGenericArguments'.
15161         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
15162         `ves_icall_MonoType_get_IsGenericParameter'.
15163         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
15164         this is no interncall anymore.
15165         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
15166         `ves_icall_TypeBuilder_get_IsGenericParameter'.
15167
15168 2003-10-14  Martin Baulig  <martin@ximian.com>
15169
15170         * reflection.c (mono_reflection_bind_generic_parameters): Also
15171         inflate generic methods if we're reading the class from IL.
15172
15173 2003-10-13  Martin Baulig  <martin@ximian.com>
15174
15175         * reflection.c (mono_reflection_define_generic_parameter): This
15176         method isn't called directly from the icall anymore; take a
15177         `MonoReflectionAssemblyBuilder *' so we can use this for type and
15178         method generic parameters.
15179         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
15180         (method_builder_encode_signature): Encode generic parameters.
15181         (mono_image_get_method_info): Write generic params to the
15182         MONO_TABLE_GENERICPARAM table.
15183
15184         * reflection.h (MonoReflectionMethodBuilder): Added
15185         `MonoArray *generic_params'.
15186
15187         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
15188
15189         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
15190         wrapper for mono_reflection_define_generic_parameter().
15191         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
15192
15193 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
15194
15195         * marshal.h: Add missing function to fix build.
15196
15197         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
15198         the SetLastError pinvoke attribute.
15199
15200         * marshal.c (mono_marshal_set_last_error): New helper function called
15201         by the generated code.
15202         
15203         * marshal.c (mono_mb_emit_branch): New helper function.
15204
15205         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
15206
15207         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15208         classes as parameters and return values of delegates. Fixes #29256. 
15209
15210 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
15211
15212         * locales.c: use gint32 in non HAVE_ICU case
15213
15214 2003-10-11  Martin Baulig  <martin@ximian.com>
15215
15216         * mono-debug.c (mono_debug_add_method): Added a workaround for
15217         bug #48591.
15218
15219 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
15220
15221         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
15222         delegates passed to native code must use the STDCALL calling 
15223         convention. Fixes #35987.
15224
15225 2003-10-10  Martin Baulig  <martin@ximian.com>
15226
15227         * class.c (inflate_generic_type): If we're inflating for a generic
15228         type instance (and not for a generic method), return
15229         MONO_TYPE_MVAR unchanged.
15230
15231 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15232
15233         * string-icalls.c: Join ignores null strings in the source array.
15234         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
15235         * threads.c: GetAvailableTheads is slightly more accurate.
15236
15237 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
15238
15239         * threads.h threads.c : add mono_threads_set_default_stacksize
15240         and pass default to CreateThread calls.
15241
15242 2003-10-09  Dick Porter  <dick@ximian.com>
15243
15244         * icall.c:
15245         * locales.h:
15246         * locales.c: Internal calls for constructing CultureInfo and
15247         related objects from libicu (if its available.)
15248
15249 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
15250
15251         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
15252
15253 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15254
15255         * threadpool.c: added an argument to async_invoke_thread that is the
15256         item to process, pass the MonoAsyncResult to the thread start function
15257         when creating a new thread. This way we don't need to acquire any lock
15258         when we're creating a new thread. Readded a semaphore for faster
15259         response times (instead of that Sleep i added).
15260
15261 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
15262
15263         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
15264         get daylight change dates better on Windows, fix handling
15265         of platforms without tm_gmtoff.
15266
15267 2003-10-06  Martin Baulig  <martin@ximian.com>
15268
15269         * class.c (inflate_generic_method): Renamed to
15270         mono_class_inflate_generic_method() and made public.
15271         (mono_class_init): Don't inflate the generic methods here.
15272         (mono_class_from_generic): Added `gboolean inflate_methods'
15273         argument.  Inflate the methods here.
15274
15275         * loader.c (mono_method_get_param_names): Ignore instances of
15276         generic types for the moment.
15277
15278         * reflection.c (fixup_method): Added support for inflated methods.
15279         (mono_image_create_token): Use mono_image_get_methodref_token()
15280         for inflated methods.
15281         (mono_custom_attrs_from_param): Ignore instances of generic types
15282         for the moment.
15283         (mono_reflection_bind_generic_parameters): New public function.
15284         Moved all the functionality from
15285         ves_icall_Type_BindGenericParameters() here and added support for
15286         dynamic types.
15287         (mono_reflection_define_generic_parameter): Initialize
15288         `klass->methods' here.
15289
15290         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
15291         functionality into mono_reflection_define_generic_parameter().
15292         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
15293         TypeBuilder, return that TypeBuilder.
15294
15295 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15296
15297         * appdomain.c: removed mono_delegate_semaphore.
15298
15299         * threadpool.c:
15300         (mono_thread_pool_add): moved hash table creation inside and the thread 
15301         creation outside of the critical region.
15302         (mono_thread_pool_finish): removed obsolete code.
15303         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
15304         continue or exit the thread depending on the queue.
15305
15306 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
15307
15308         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
15309         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
15310         handle more bool marshalling options
15311
15312 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
15313
15314         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
15315         arrays of structs. Also add a more descriptive error message when
15316         a structure member is marshalled as LPArray.
15317
15318 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
15319
15320         * marshal.c (mono_marshal_get_native_wrapper): Add support for
15321         marshalling arrays of complex types. Fixes #29098. Also remove an
15322         usused and incomplete function.
15323
15324 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
15325
15326         * gc.c: report heap_size - free_bytes as total memory allocated
15327         (bug#49362).
15328
15329 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
15330
15331         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
15332         fix timezone handling problems on Windows.
15333         
15334         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
15335         asserts when the year is outside the range handled by ms the functions.
15336
15337         * class.c (setup_interface_offsets): If the class is an interface,
15338         fill out its interface_offsets slot.
15339
15340 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15341
15342         * threadpool.c: mark threadpool threads as background.
15343
15344 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
15345
15346         * decimal.c - define DECINLINE to nothing if not using GCC
15347
15348 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
15349
15350         * assembly.c: More refcount fixes.
15351
15352 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15353
15354         * string-icalls.c: if we're not trimming, return the same string.
15355         When not splitting, don't create a new string.
15356
15357 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15358
15359         * image.c:
15360         (mono_image_open): increment the ref_count inside the critical section.
15361
15362 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
15363
15364         * image.c (mono_image_open): Fix reference counting bug.
15365
15366 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
15367
15368         * marshal.c (mono_marshal_type_size) struct alignment changed for 
15369         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
15370         64bits. Avoid leak in mono_marshal_get_native_wrapper when
15371         mono_lookup_pinvoke_call throws.        
15372
15373 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
15374
15375         * reflection.c (mono_reflection_parse_type): Fix #49114.
15376
15377         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
15378         temporary workaround for cygwin header problem.
15379
15380         * object.c (mono_object_isinst): Synchronize this with the code
15381         generated by the JIT for casts.
15382
15383 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
15384
15385         * reflection.c (encode_type): Fix #38332.
15386
15387 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
15388
15389         * marshal.c (mono_marshal_method_from_wrapper): New function to return
15390         the original method from the wrapper method.
15391
15392 2003-09-25  Martin Baulig  <martin@ximian.com>
15393
15394         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
15395         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
15396         (ves_icall_Type_get_IsGenericInstance): New interncall.
15397
15398 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
15399
15400         * object.c: fix cast warning in big endian code.
15401
15402 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
15403
15404         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
15405         
15406 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15407
15408         * assembly.c: don't call check_env from mono_assembly_load. It's
15409         already done once in mono_assemblies_init and may cause headaches when
15410         multiple threads are loading assemblies.
15411
15412 2003-09-19  Martin Baulig  <martin@ximian.com>
15413
15414         * reflection.c (mono_reflection_define_generic_parameter): Don't
15415         allocate `klass->methods', set `klass->flags' to
15416         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
15417
15418 2003-09-18  Martin Baulig  <martin@ximian.com>
15419
15420         * class.c (mono_class_init): Don't create `class->methods' if it's
15421         already initialized.
15422
15423         * metadata.c (mono_metadata_load_generic_params): Make this
15424         actually work.
15425
15426         * reflection.c (mono_reflection_define_generic_parameter): Set
15427         parent class and interfaces from the constraints.
15428
15429         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
15430         to keep this struct in sync with the declaration in TypeBuilder.cs.
15431
15432 2003-09-17  Martin Baulig  <martin@ximian.com>
15433
15434         * metadata.h (MonoType): Replaced the data's `int type_param'
15435         field with `MonoGenericParam *generic_param'.
15436         (MonoGenericParam): Added `MonoClass *klass'.
15437
15438         * class.c (mono_class_from_gen_param): Removed the
15439         `MonoImage *image' and `int type_num' arguments.
15440
15441         * metadata.c (mono_metadata_parse_generic_param): New static
15442         method; creates a MonoGenericParam which just contains the index.
15443         (do_mono_metadata_parse_type): Call
15444         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
15445         MONO_TYPE_MVAR.
15446
15447         * reflection.c (mono_image_typedef_or_ref): Generic type
15448         parameters may be in the same assembly, but never use a typedef
15449         for them.
15450         (mono_reflection_define_generic_parameter): We're now creating a
15451         "real" class for the type parameter; it's now safe to call
15452         mono_class_from_mono_type() on the class'es type, it'll do the
15453         right thing.
15454
15455 2003-09-16  Martin Baulig  <martin@ximian.com>
15456
15457         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
15458         `symfile->range_entry_size' and `symfile->class_entry_size' here;
15459         the `symfile' data structure must be fully initialized before it
15460         gets added to the table.
15461
15462 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
15463
15464         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
15465
15466         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
15467         class init trampolines.
15468
15469 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
15470
15471         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
15472         to the built-in profiler to turn off time and allocation profiling
15473         respectively.
15474
15475 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
15476
15477         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
15478         g_direct_equal.
15479
15480         * debug-helpers.c (mono_method_full_name): Print the wrapper type
15481         in human readable form.
15482
15483 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
15484
15485         * reflection.c icall.c: Fixed warnings.
15486
15487         * image.c (load_class_names): Use a temporary hash table to hold the
15488         namespaces in order to avoid doing many string comparisons.
15489
15490         * image.h: Fix typo.
15491
15492         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
15493         Pass NULL instead of g_direct_equal to the GHashTable constructor 
15494         since the NULL case is short-circuited inside g_hash_table_lookup, 
15495         leading to better performance.  
15496
15497         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
15498         obtain the first custom attribute for a given index. Depends on the
15499         CustomAttribute table being sorted by the parent field.
15500
15501         * reflection.c (mono_custom_attrs_from_index): Use the new function 
15502         for better performance.
15503
15504 2003-09-07  Martin Baulig  <martin@ximian.com>
15505
15506         * class.c (mono_class_init): If we're a generic instance, inflate
15507         all our methods instead of loading them from the image.
15508         (mono_class_from_generic): Set `class->methods = gklass->methods'.
15509
15510 2003-09-07  Martin Baulig  <martin@ximian.com>
15511
15512         * mono-debug-debugger.c: Added support for constructors.
15513
15514 2003-09-06  Martin Baulig  <martin@ximian.com>
15515
15516         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
15517         New interncall.
15518
15519         * reflection.c (mono_reflection_setup_generic_class): Call
15520         ensure_runtime_vtable() to create the vtable.
15521
15522 2003-09-05  Martin Baulig  <martin@ximian.com>
15523
15524         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
15525         MONO_TYPE_MVAR.
15526
15527 2003-09-04  Martin Baulig  <martin@ximian.com>
15528
15529         * reflection.c (mono_reflection_define_generic_parameter): Generic
15530         parameters start with zero.
15531
15532 2003-09-04  Martin Baulig  <martin@ximian.com>
15533
15534         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15535
15536         * reflection.h (MonoReflectionGenericParam): New typedef.
15537         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
15538         the generic parameters from the managed TypeBuilder.
15539
15540         * reflection.c (mono_reflection_define_generic_parameter): New function.
15541         (mono_reflection_create_runtime_class): Encode generic parameters.
15542         (mono_reflection_setup_generic_class): New function; this is
15543         called after adding adding all generic params to the TypeBuilder.
15544         (encode_type): Added MONO_TYPE_VAR.
15545
15546 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
15547
15548         * class.h class.c (mono_class_needs_cctor_run): Moved this method
15549         here from the JIT.
15550
15551         * assembly.h assembly.c: Moved the AOT loading code into an assembly
15552         load hook.
15553
15554 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
15555
15556         * reflection.h reflection.c class.h class.c: Delete duplicate 
15557         definition of mono_type_get_name () from reflection.c and export the
15558         one in class.c.
15559
15560         * class.c: Class loading fixes from Bernie Solomon 
15561         (bernard@ugsolutions.com).
15562
15563         * reflection.c: Endianness fixes from Bernie Solomon 
15564         (bernard@ugsolutions.com).
15565         
15566 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
15567
15568         * assembly.h assembly.c: Define a file format version for AOT
15569         libraries.
15570         
15571         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
15572
15573         * appdomain.h (MonoJitInfo): New field to determine whenever the
15574         code is domain neutral.
15575         
15576 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
15577
15578         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
15579
15580 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
15581
15582         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
15583         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
15584         Avoid caching the result since strings must be domain specific. Fixes
15585         #48050.
15586
15587 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
15588
15589         * marshal.c (mono_marshal_init): Make this callable multiple times
15590         since it is hard to find a correct place to call it.
15591
15592         * object.c (mono_runtime_class_init): Execute static constructors in
15593         the correct appdomain.
15594
15595         * image.c (build_guid_table): Handle the case when multiple images have
15596         the same GUID.
15597
15598 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15599
15600         * icall.c: added a couple of icalls for System.Web.
15601
15602 2003-08-28  Martin Baulig  <martin@ximian.com>
15603
15604         * icall.c (ves_icall_Type_BindGenericParameters): Use
15605         `klass->generic_inst' instead of `&klass->byval_arg' in the
15606         mono_type_get_object() call.  The returned type must be
15607         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
15608
15609 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
15610
15611         * NOTES: New file.
15612
15613         * object.c (mono_class_proxy_vtable): Make it thread safe.
15614
15615         * pedump.c: Fix warning.
15616
15617         * object.c appdomain.h: Get rid of metadata_section. 
15618         It is no longer needed and it was causing deadlocks with domain->lock.
15619
15620         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
15621
15622 2003-08-26  Martin Baulig  <martin@ximian.com>
15623
15624         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
15625
15626 2003-08-26  Martin Baulig  <martin@ximian.com>
15627
15628         * pedump.c (main): Call mono_metadata_init(),
15629         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
15630         and mono_loader_init().
15631
15632 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
15633
15634         * loader.h: Add missing include to fix build.
15635
15636         * image.h: mono_image_load_references is no more.
15637
15638         * assembly.c: Reworked assembly loading to make it really thread safe.
15639         After these changes, the assembly returned by mono_assembly_open is
15640         fully initialized, i.e. all its references assemblies are loaded.
15641
15642         * assembly.c (mono_image_load_references): Renamed to 
15643         mono_assembly_load_references, and made private, since clients no
15644         longer need to call it.
15645
15646         * class.c: Removed calls to mono_assembly_load_references, since it was
15647         a source of deadlocks.
15648
15649         * loader.h loader.c class.h class.c: Protect data structures using a 
15650         new lock, the loader lock.
15651
15652         * class.c (mono_class_setup_vtable): Create temporary hash tables and
15653         GPtrArrays only when needed.
15654
15655         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
15656         into empty structures by mcs. Fixes pinvoke7.cs.
15657         
15658         * domain.c (mono_init): Call a new initialization function.
15659
15660         * appdomain.c (mono_runtime_init): Call the new initializer function
15661         of the marshal module.
15662
15663         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
15664         inserted into empty structures by mcs. Fixes pinvoke7.cs.
15665
15666         * marshal.h marshal.c: Added locks around the wrapper caches to make
15667         this module thread safe.
15668
15669         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
15670         this argument. Fixes pinvoke1.exe.
15671
15672 2003-08-25  Lluis Sanchez <lluis@ximian.com>
15673
15674         * object.h: Added call_type field to MonoMethodMessage and the corresponding
15675         enumeration of values. Removed fields to store remote call output values in
15676         MonoAsyncResult. Not needed any more.
15677         * object.c: Initialize call_type and async_result fields in mono_message_init.
15678         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
15679         dispatching the message.
15680         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
15681         async call to finish. To do it use a message with EndInvoke call type.
15682
15683 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
15684
15685         * loader.h loader.c (mono_method_hash_marhal_info): New function which
15686         determines whenever a method has marshalling info.
15687
15688 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15689
15690         * assembly.c: fix the build on windows.
15691
15692 2003-08-22 Lluis Sanchez <lluis@ximian.com>
15693
15694         * object.cs: Fixed bug #47785.
15695
15696 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
15697
15698         * string-icalls.c (StringReplace): If their are no occurances of
15699         the old string found return a reference to the supplied
15700         string. This saves some memory and matches MS behavoir.
15701         
15702 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15703
15704         * socket-io.c: fixed compilation for systems that define AF_INET6
15705         and don't define SOL_IP/SOL_IPV6.
15706
15707 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
15708
15709         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
15710         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
15711
15712         * rawbuffer.c rawbuffer.h: Make this module thread safe.
15713
15714         * domain.c: Make this module thread safe.
15715
15716         * domain.c (mono_init): Call new initialization function.
15717
15718         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
15719         reference types too. Fixes #38812.
15720
15721         * image.c (mono_image_init): Fixed warnings.
15722
15723         * class.c (mono_class_from_typeref): Handle assembly load failure
15724         correctly.
15725
15726         * appdomain.c (add_assemblies_to_domain): Handle the case when
15727         the references of an assembly are not yet loaded.
15728
15729         * metadata.c image.c assembly.c: Moved initialization of global
15730         variables to a separate function called at startup since lazy 
15731         initialization of these variables is not thread safe.
15732         
15733         * image.c assembly.c: Made this module thread safe by adding locks in 
15734         the appropriate places.
15735
15736         * domain.c (mono_init): Call the new initialization functions of the
15737         three modules.
15738
15739 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
15740
15741         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
15742           make a direct call. It is proxy's work to make the call asynchronous.
15743           mono_delegate_end_invoke(): If the targe is a proxy, just collect
15744           the return values.
15745         * object.cs: mono_method_call_message_new(): read AsyncResult and
15746           state object from parameters list, if this info is requested.
15747         * object.h: Added fields to store remote call output values in
15748           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
15749
15750 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15751
15752         * object.h: add needed fields to MonoThread.
15753         * threads.c, threads.h: allow registering a function to cleanup data
15754         allocated per thread by the JIT.
15755
15756 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15757
15758         * loader.h: portability fix by Bernie Solomon
15759         * <bernard@ugsolutions.com>.
15760
15761 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
15762
15763         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
15764         return a MonoArray. This simplifies the code and also ensures that
15765         the cache allways contains an object reference as a value.
15766
15767         * icall.c (ves_icall_get_parameter_info): Simplified using the new
15768         function.
15769
15770 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15771
15772         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
15773         fixes a problem with byte ordering when getting the address family for
15774         a socket.
15775
15776 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
15777
15778         * .cvsignore: Added monosn.
15779
15780         * reflection.h reflection.c loader.c: Added support for parameter
15781         marshalling to dynamically created types. Fixes #47295.
15782
15783 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
15784
15785         * rand.c: remove useless warnings.
15786
15787 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15788
15789         * class.c: implemented ldtoken for methods and fieldrefs.
15790
15791 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15792
15793         * threadpool.c: when mono_async_invoke was called, no one took care of
15794         monitoring the queue. So if the method invoked took some time and we
15795         got new async invoke requests after 500 ms (the thread created waited
15796         that long in WaitForSingleObject), the new async invoke was not called
15797         until the previous one finished.
15798
15799         This is fixed now. Thanks to Totte for helping with it.
15800
15801 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15802
15803         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
15804
15805 2003-08-11  Martin Baulig  <martin@ximian.com>
15806
15807         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
15808
15809 2003-08-06  Martin Baulig  <martin@ximian.com>
15810
15811         * mono-debug-debugger.c: Added support for static fields,
15812         properties and methods.
15813
15814 2003-08-06  Martin Baulig  <martin@ximian.com>
15815
15816         * mono-debug-debugger.c: Don't store the MonoString's vtable to
15817         make this work for applications with multiple application domains.
15818
15819 2003-08-04  Martin Baulig  <martin@ximian.com>
15820
15821         * mono-debug-debugger.c: Completely reworked the type support; the
15822         most important thing is that we're now just using one single
15823         `MonoType' instance per type.
15824
15825 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
15826
15827         * mono-endian.h, mono-endian.c, icall.c: Added icall
15828         ves_icall_System_Double_AssertEndianity to assert double word endianity
15829         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
15830
15831 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15832
15833         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
15834         support, icalls and fixes.
15835
15836 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
15837
15838         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
15839         classes that are a punctuation character in .NET is not the same a
15840         g_unichar_ispunct.
15841
15842 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15843
15844         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
15845
15846 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
15847
15848         * icall.c: Add new MemCopy internalcall.
15849         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
15850         Simplified code; It is not necessary to handle all the cases here,
15851         as the C# code takes care of it.  Only handle the case of the name
15852         resource embedded into the assembly.
15853
15854         Changed signature to return the data pointer and the size of the
15855         data. 
15856
15857 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
15858
15859         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
15860         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
15861
15862 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15863
15864         * socket-io.c: ignore EINTR error in select.
15865
15866 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15867
15868         * class.h, class.c: removed unused subclasses field in MonoClass.
15869
15870 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15871
15872         * icall.c: improve fix of get_base_definition(). If the parent class
15873           doesn't have the mehod, look at the parent of the parent.
15874         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
15875           to check if a parameter is an in or out parameter
15876           (PARAM_ATTRIBUTE_IN is not set by default).
15877           mono_method_return_message_restore(): Use mono_class_value_size to
15878           get the size of a value type. mono_type_stack_size (parameterType)
15879           does not return the correct value if parameterType is byRef.
15880           mono_load_remote_field(), mono_load_remote_field_new(),
15881           mono_store_remote_field(), mono_store_remote_field_new():
15882           raise exception if the remote call returns an exception.
15883
15884 2003-07-28  Martin Baulig  <martin@ximian.com>
15885
15886         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
15887         method.  This is a wrapper around mono_runtime_invoke() which
15888         boxes the instance object if neccessary.
15889
15890 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15891
15892         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
15893         metadata.h, row-indexes.h, verify.c: first cut of generics support.
15894
15895 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15896
15897         * icall.c: disable mcs bug workaround.
15898
15899 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
15900
15901         * object.c (mono_runtime_class_init): Take the metadata_section
15902         mutex before obtaining the domain mutex.
15903
15904         * appdomain.h: Added definition of metadata_section mutex here. 
15905
15906         * object.c: define metadata_mutex here.
15907
15908 2003-07-24  Ravi Pratap  <ravi@ximian.com>
15909
15910         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
15911         fixed.
15912
15913 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
15914
15915         * reflection.c: Fix bug #46669
15916
15917 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15918
15919         * exception.c:
15920         * exception.h:
15921         * icall.c:
15922         * object.h: fill in the type name for TypeLoadException.
15923
15924 2003-07-23  Ravi Pratap  <ravi@ximian.com>
15925
15926         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
15927         relationship between TypeBuilders while compiling corlib) and bug
15928         45993 (Array types returned from the runtime while compiling
15929         corlib were from the loaded corlib).
15930
15931 2003-07-22  Martin Baulig  <martin@ximian.com>
15932
15933         * mono-debug-debugger.c: Reworked the type support a bit more;
15934         distinguish between types and classes.
15935
15936 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
15937
15938         * icall.c: add IsArrayImpl icall.
15939
15940 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
15941
15942         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
15943         initializing real_size only once. Also fix bug #46602.
15944
15945 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
15946
15947         * object.c: Renamed mono_metadata_section to metadata_section.
15948
15949 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
15950
15951         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
15952           empty array if the type is an array. Fixed.
15953           ves_icall_MonoMethod_get_base_definition: if the base method
15954           is abstract, get the MethodInfo from the list of methods of
15955           the class.
15956         * reflection.c: ParameterInfo.PositionImpl should be zero-based
15957           and it was 1-based. Fixed in mono_param_get_objects.
15958
15959 2003-07-20  Martin Baulig  <martin@ximian.com>
15960
15961         * mono-debug.h: Set version number to 31.
15962         (mono_debug_init): Added `MonoDomain *' argument.
15963
15964         * mono-debug-debugger.c: Reworked the type support; explicitly
15965         tell the debugger about builtin types; pass the `klass' address to
15966         the debugger.
15967
15968 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
15969
15970         * image.c: Allow new metadata tables to be loaded without a
15971         warning. Also update the warning message to give the new constant value.
15972                 
15973 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
15974
15975         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
15976         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
15977         array type representation changes.
15978
15979 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
15980
15981         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
15982         on Environment.Exit () call.
15983
15984 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15985
15986         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
15987         requires a matching corlib.
15988
15989 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15990
15991         * Changelog: My editor decided to add a CR to each line. Sorry about that.
15992           Committed again without the CRs.
15993         
15994 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15995
15996         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
15997           getting it from the "this" socket instance. Did not work
15998           if the socket is a subclass of Socket.
15999           Also fixed bug #35371.
16000
16001 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16002
16003         * metadata.c: fixed size for TypedByRef.
16004         * loader.c: when searching for a method, consider the vararg amrker.
16005         * unicode.c, decimal.c: constify some arrays.
16006
16007 2003-07-15  Dick Porter  <dick@ximian.com>
16008
16009         * socket-io.c: Fixed compilation for gcc < 3.2.
16010
16011         Fixed compilation for machines that don't have AF_INET6 (thanks to
16012         Bernie Solomon <bernard@ugsolutions.com> for that part.)
16013
16014         Fixed compile warnings.
16015         
16016         Fixed formatting and line endings.
16017
16018 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
16019
16020         * socket-io.h:
16021         * socket-io.c: Added IPv6 support.
16022
16023 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
16024
16025         * class.c (mono_class_is_assignable_from): New function to implement
16026         the is_assignable_from logic. Used by mono_object_isinst, 
16027         Type::IsAssignableFrom () and the interpreter.
16028
16029         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
16030         Object, even interfaces.
16031         
16032         * object.c (mono_object_isinst): Implement in terms of 
16033         is_assignable_from.
16034
16035         * icall.c (ves_icall_type_is_assignable_from): New icall.
16036
16037 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
16038
16039         * domain.c (foreach_domain): fix compiler warning.
16040
16041 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
16042
16043         * image.c (load_metadata_ptrs): use g_strndup because strndup is
16044         not available on all plattforms
16045
16046 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
16047
16048         * image.h image.c: Store the metadata version string in MonoImage.
16049         * icall.c: New icall to retrieve the image version.
16050         * reflection.c (create_dynamic_image): Fill in the image version field
16051         * reflection.c (build_compressed_metadata): Use the image version
16052         from the image structure.
16053
16054 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16055
16056         * appdomain.c: modified comment.
16057         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
16058         That will be its last iteration when mono_gc_cleanup is called from
16059         mono_runtime_cleanup and before the domain is unloaded.
16060
16061         Fixes bug #45962.
16062
16063 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
16064
16065         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
16066         attributes.
16067
16068 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16069
16070         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
16071         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
16072         Bernie Solomon <bernard@ugsolutions.com>.
16073
16074 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16075
16076         * object.c, object.h: provide mono_object_new_fast() for faster
16077         allocation in some special cases.
16078
16079 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
16080
16081         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
16082         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
16083
16084 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
16085
16086         * threadpool.c: fix leaks.
16087
16088 2003-07-01  Dick Porter  <dick@ximian.com>
16089
16090         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
16091         using MonoGHashTables.  Fixes threadpool bug posted to list.
16092
16093 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
16094
16095         * image.h, image.c: added support to load an assembly from a byte array.
16096         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
16097         assembly bundle support.
16098
16099 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
16100
16101         * threadpool.c (mono_thread_pool_add): keep a reference to the
16102         AsyncResult to prevent GC
16103
16104 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16105
16106         * class.c: leak fix.
16107
16108 2003-06-25  Dick Porter  <dick@ximian.com>
16109
16110         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
16111         for the async object, the WaitHandle object will close the handle.
16112         Fixes bug 45321.
16113
16114 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16115
16116         * class.c: in mono_array_class_get (), lookup from the hash with the
16117         same type we insert: this works around a bug in
16118         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
16119         lluis. The real fix will have to wait for after the release.
16120
16121 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16122
16123         * icall.c: fix memory leak when getting type members.
16124
16125 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16126
16127         * reflection.c: added more pubtoken special cases.
16128
16129 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
16130
16131         * class.c: handle field offset correctly when class size
16132         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
16133
16134 2003-06-20  Martin Baulig  <martin@ximian.com>
16135
16136         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
16137         *image' field.
16138
16139 2003-06-20  Martin Baulig  <martin@ximian.com>
16140
16141         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
16142
16143 2003-06-20  Martin Baulig  <martin@ximian.com>
16144
16145         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
16146         just distinguish between variables in registers and variables at
16147         an offset relative to a register.
16148
16149 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16150
16151         * icall.c: #ifdef out latest changes until mcs is fixed.
16152
16153 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16154
16155         * icall.c: return members in metadata order.
16156
16157 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16158
16159         * icall.c: avoid infinite loop in GetTimeZoneData.
16160
16161 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
16162
16163         * icall.c: added Marshal.Prelink/All icalls.
16164
16165 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16166
16167         * object.c, object.h: fix warnings and do some overflow checking
16168         when creating arrays.
16169
16170 2003-06-17  Dick Porter  <dick@ximian.com>
16171
16172         * file-io.h:
16173         * file-io.c: File attributes need to be tweaked slightly when
16174         passed from the managed to the w32 world.
16175
16176 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16177         * profiler.h profiler-private.h profiler.c: Rework last patch
16178         based on suggestion by Paolo.
16179         
16180 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16181
16182         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
16183         instruction level coverage data collection.
16184         * profiler.h profiler.c (: Added new callback function which can be
16185         used by the profiler to limit which functions should have coverage
16186         instrumentation.
16187         * profiler.c (mono_profiler_load): Call g_module_build_path to
16188         generate the file name of the profiler library.
16189
16190 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16191
16192         * profiler.c, profiler.h, profiler-private.h: added basic block 
16193         coverage profiling API.
16194
16195 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
16196
16197         * reflection.c (mono_reflection_create_runtime_class): Add support
16198         for events in dynamically generated code.
16199
16200         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
16201         not allocated.
16202
16203 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16204
16205         * icall.c: when getting timezone info, return reasonable values if we
16206         can't get the actual data.
16207
16208 2003-06-14  Dick Porter  <dick@ximian.com>
16209
16210         * threads.c (start_wrapper): Remove the reference to the thread
16211         object in the TLS data, so the thread object can be finalized.
16212         This won't be reached if the thread threw an uncaught exception,
16213         so those thread handles will stay referenced :-( (This is due to
16214         missing support for scanning thread-specific data in the Boehm GC
16215         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
16216
16217 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
16218
16219         * reflection.c: ensure streams and tables are first allocated with
16220         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
16221
16222 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16223
16224         * icall.c: fixed GetElementType for byrefs (bug# 44792).
16225
16226 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
16227
16228         * reflection.c (mono_reflection_create_runtime_class): Add support for
16229         properties to dynamically created classes.
16230         * reflection.c: Fix a few places where non-MonoObjects were inserted
16231         into the tokens hashtable.
16232
16233 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16234
16235         * object.c: some support to handle out of memory exceptions.
16236
16237 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
16238
16239         * marshal.c (mono_marshal_get_native_wrapper): support reference
16240         return types
16241
16242 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16243
16244         * object.h, object.c: more portability stuff from Bernie Solomon.
16245         Unexport mono_object_allocate(). Added mono_object_unbox ().
16246         Set exitcode when an unhandled exception is thrown.
16247
16248 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
16249
16250         * marshal.c (mono_marshal_get_native_wrapper): use custom
16251         marshaler for return types.
16252
16253 2003-06-10  Dick Porter  <dick@ximian.com>
16254
16255         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
16256         ip_mreq is available
16257
16258 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
16259
16260         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
16261         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
16262         by Bernie Solomon <bernard@ugsolutions.com>.
16263
16264 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
16265
16266         * gc.c (mono_gc_init): Avoid error message on shutdown when
16267         GC_DONT_GC=1 is used.
16268
16269         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
16270         New icall to return the GUID of a module.
16271
16272 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16273
16274         * class.c: ensure instance size always includes the parent's size
16275         even whem class size is set explicitly (fixes bug#44294).
16276
16277 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
16278
16279         * profiler.h, profiler.c: made the simple profiler thread-safe,
16280         get more accurate timing info. Allow the loading of an
16281         externally-developed profiler module.
16282
16283 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
16284
16285         * marshal.c (mono_marshal_get_native_wrapper): improved
16286         class/byref arguments.
16287         (mono_marshal_get_native_wrapper): better string marshaling support.
16288
16289 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
16290
16291         * class.c: ensure .pack and .size are handled correctly and
16292         simplified layout of static fields.
16293
16294 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
16295
16296         * appdomain.c
16297         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
16298
16299         * loader.c (mono_lookup_pinvoke_call): look for modules in the
16300         current directory (fix bug 44008)
16301
16302 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
16303
16304         * marshal.c (mono_marshal_get_native_wrapper): started support for
16305         custom marshalers.
16306         (mono_delegate_to_ftnptr): consider marshalling specifications
16307
16308 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
16309
16310         * reflection.c, reflection.h: emit custom marshal info.
16311
16312 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16313
16314         * object.c: free the GError.
16315         * icall.c: added CloseEvent_internal.
16316         * threads.[ch]:
16317         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
16318         call.
16319
16320 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
16321
16322         * loader.c (mono_method_get_signature): Add support for dynamic
16323         assemblies.
16324
16325 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
16326
16327         * reflection.c: fixed bug #43905.
16328
16329 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16330
16331         * class.c, domain.c, icall.c, metadata.h, object.h: support for
16332         handling TypedReference and ArgIterator.
16333         * loader.c, loader.h: added function to get signature at call site.
16334
16335 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16336
16337         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
16338         data readonly. Buglets and warning fixes. Some MethodSpec support.
16339
16340 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16341
16342         * class.h, class.c, object.c: remove relative numbering support.
16343
16344 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
16345
16346         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
16347         free the string, until we get a chance to fix Gtk#
16348
16349 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16350
16351         * marshal.c: revert last patch.
16352
16353 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
16354
16355         * icall.c: updates for new mono_class_vtable() not calling
16356         the type constructor anymore.
16357
16358 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16359
16360         * object.h, object.c: separate vtable creation from type
16361         initialization. Make running the .cctor thread safe.
16362
16363 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
16364
16365         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
16366
16367 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
16368
16369         * loader.c (mono_get_method): consider calling convention
16370
16371 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
16372
16373         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
16374         to return the invisible global type for a module.
16375
16376         * reflection.c (mono_image_build_metadata): Emit global fields too.
16377
16378 2003-05-20  Peter Williams  <peterw@ximian.com>
16379
16380         * loader.c (mono_lookup_internal_call): Add a few newlines.
16381
16382 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
16383
16384         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
16385         literal strings.
16386
16387         * appdomain.c (set_domain_search_path): Recalculate search path when
16388         AppDomainSetup.PrivateBinPath changes.
16389
16390         * object.c (mono_class_compute_gc_descriptor): It turns out some
16391         parts of the class libs (like System.Thread) holds pointers to
16392         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
16393         to treat native int a pointer type here.
16394         
16395 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
16396
16397         * appdomain.h, domain.c: add hashtable for jump target resolution.
16398
16399 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
16400
16401         * reflection.h reflection.c icall.c: Added new icalls 
16402         GetManifestResourceInfoInternal, GetModulesInternal and support
16403         infrastructure.
16404
16405 2003-05-16  Dick Porter  <dick@ximian.com>
16406
16407         * icall.c:
16408         * file-io.h:
16409         * file-io.c: Implement System.IO.MonoIO::GetTempPath
16410
16411 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
16412
16413         * object.c: mono_store_remote_field: little fix to previous patch.
16414
16415 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16416
16417         * class.c: add constructors to array classes.
16418         * icall.c: special case array construction for InternalInvoke (),
16419
16420 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
16421
16422         * class.h class.c reflection.c object.c: Added support for field
16423         defaults in dynamically generated classes.
16424
16425 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
16426
16427         * reflection.c: properly encode charset for ddlimport.
16428
16429 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
16430
16431         * threads.c: allow compiling without GC.
16432
16433 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
16434
16435         * appdomain.h, object.c, object.h, threads.c, threads.h: added
16436         handling of thread static data.
16437
16438 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16439
16440         * reflection.h, reflection.c: added mono_custom_attrs_free ().
16441
16442 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
16443
16444         * class.c (mono_array_class_get): always set the serializable flags
16445         (mono_array_class_get): always set the SEALED attribute for array types
16446
16447 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
16448
16449         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
16450         attributes (fix for bug 42021).
16451
16452 2003-05-12  Dick Porter  <dick@ximian.com>
16453
16454         * gc.c: Don't run finalizers when the finalizer thread is
16455         finishing up, because the default domain has already been
16456         destroyed.
16457
16458 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
16459
16460         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
16461         value is null, we should throw an exception.   This is slightly
16462         different than the other conventions used for the constructor.
16463
16464 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16465
16466         * socket-io.c: fixed windows build.
16467
16468 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16469
16470         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
16471
16472 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
16473
16474         * object.c (mono_string_new_wrapper): Compatibility fix for MS
16475         compilers.
16476
16477 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
16478
16479         * class.c (mono_class_layout_fields): Add experimental GC aware
16480         auto layout facility. Requires class library changes to work correctly.
16481
16482         (mono_class_setup_vtable): Avoid overriding explicit interface
16483         method implementations. Fixes iface3.exe test.
16484
16485         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
16486         object reference.
16487         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
16488         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
16489
16490         * metadata.h: Add new type classification macro which determines
16491         whenever the type holds an object reference.
16492
16493 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
16494
16495         * marshal.c (mono_marshal_get_native_wrapper): cleanups
16496
16497 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
16498
16499         * gc.c (finalizer_thread): Work around a GC bug.
16500
16501 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
16502
16503         * marshal.c (emit_struct_conv): allow unions
16504
16505         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
16506
16507 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
16508
16509         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
16510
16511 2003-05-06  Martin Baulig  <martin@ximian.com>
16512
16513         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
16514
16515 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16516
16517         * socket-io.c:
16518         (Select_internal): allow NULLs, don't create arrays if not needed.
16519         Coupled with Socket.cs changes.
16520
16521         * threadpool.c:
16522         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
16523         register a finalizer for it that will close the semaphore handle. This
16524         fixes the leak and make Lupus' test run with > 4080 loops.
16525
16526 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
16527
16528         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
16529         Jerome Laban (bug #42287)
16530
16531 2003-05-02  Martin Baulig  <martin@ximian.com>
16532
16533         * debug-mono-symfile.h
16534         (MonoSymbolFile): Moved declaration into mono-debug.h.
16535         (MonoDebugMethodJitInfo): Likewise.
16536         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
16537         argument.
16538         (_mono_debug_address_from_il_offset): Take a
16539         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
16540
16541         * mono-debug.h
16542         (MonoDebugDomainData): New struct.
16543         (mono_debug_get_domain_data): New function.
16544         (mono_debug_add_method): Take an additional `MonoDomain *'
16545         argument.
16546         (mono_debug_source_location_from_address): Likewise.
16547         (mono_debug_il_offset_from_address): Likewise.
16548         (mono_debug_address_from_il_offset): Likewise.
16549
16550 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
16551
16552         * reflection.c: one more check for null type in custom attrs.
16553
16554 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16555
16556         * reflection.c: avoid warning (comparison is always false due to limited
16557         range of data type).
16558
16559 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16560
16561         * icall.c: throw an exception in Type.GetField if the argument 'name'
16562         is NULL.
16563
16564 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
16565
16566         * reflection.c: fixed handling of enums in named arguments to custom
16567         attributes (bug #42123).
16568
16569 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
16570
16571         * reflection.c: use the right array element type and handle
16572         a null for a Type argument, too.
16573
16574 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
16575
16576         * reflection.c: handle arrays as arguments to custom attributes.
16577
16578 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
16579
16580         * reflection.c: handle a string value in a custom attr
16581         ctor that takes an object.
16582
16583 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
16584
16585         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
16586         (fix bug #42063)
16587
16588 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
16589
16590         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
16591
16592 2003-04-27  Martin Baulig  <martin@ximian.com>
16593
16594         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
16595         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
16596         MONO_DEBUGGER_EVENT_BREAKPOINT.
16597         (mono_breakpoint_trampoline_code): Removed.
16598         (mono_debugger_event_handler): The last argument is now a
16599         `guint32'.
16600         (mono_debugger_insert_breakpoint_full): Removed the
16601         `use_trampoline' argument.
16602         (mono_debugger_method_has_breakpoint): Likewise.
16603         (mono_debugger_trampoline_breakpoint_callback): Renamed to
16604         mono_debugger_breakpoint_callback(); take the method and
16605         breakpoint number as arguments.
16606
16607 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
16608
16609         * metadata.c: fix off by one when loading parameters attributes.
16610
16611 2003-04-24  Martin Baulig  <martin@ximian.com>
16612
16613         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
16614
16615 2003-04-24  Martin Baulig  <martin@ximian.com>
16616
16617         * mono-debug-debugger.c: Moved all code which interacts with the
16618         Mono Debugger here.
16619
16620         * debug-mono-symfile.c: This code now just deals with the symbol
16621         file itself, the debugger code is now in mono-debug-debugger.c.
16622
16623 2003-04-23  Martin Baulig  <martin@ximian.com>
16624
16625         * mono-debug.c (mono_debug_source_location_from_il_offset):
16626         New method; like mono_debug_source_location_from_address(), but
16627         takes an IL offset instead of a machine address.
16628
16629 2003-04-23  Martin Baulig  <martin@ximian.com>
16630
16631         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
16632         `line' field; this is now computed by the debugger.
16633
16634 2003-04-23  Martin Baulig  <martin@ximian.com>
16635
16636         * mono-debug.[ch]: New files.  This is the new debugging interface.
16637
16638         * mono-debug-debugger.[ch]: New files.  Moved all code which
16639         interacts with the Mono Debugger here.
16640
16641 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
16642
16643         * domain.c (mono_init): initialize mono_defaults.monitor_class
16644
16645 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
16646
16647         * reflection.c (method_encode_code): Add a spicy exception to help
16648         future compiler authors.
16649
16650 2003-04-21  Martin Baulig  <martin@ximian.com>
16651
16652         * icall.c
16653         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16654         Make this work with relative pathnames; g_filename_to_uri() needs
16655         an absolute filename.
16656
16657 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
16658
16659         * icall.c: Track name changes in Object and ValueType.
16660
16661 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
16662
16663         * metadata.c (mono_type_stack_size): size should be a multiple of
16664         sizeof (gpointer)
16665
16666 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16667
16668         * gc.c:
16669         (internal_domain_finalize): moved into mono_domain_finalize. No need
16670         to create another thread because the finalizers will be run in the
16671         finalizer thread.
16672         
16673         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
16674         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
16675         to be run (MS does this too).
16676
16677 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
16678
16679         * object.c (mono_class_compute_gc_descriptor): Update comment.
16680
16681         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
16682
16683         * image.h: Add synchronized wrapper cache.
16684
16685         * image.c (do_mono_image_open): Initialize cache.
16686
16687         * reflection.c (create_dynamic_mono_image): Initialize cache.
16688
16689 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16690
16691         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
16692         ves_icall_System_Buffer_ByteLengthInternal.
16693
16694 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16695
16696         * reflection.c: setup klass->nested_in earlier. Allow
16697         a dash in the assembly name.
16698
16699 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
16700
16701         * metadata.c (mono_type_to_unmanaged): dont access
16702         type->data.klass for MONO_TYPE_OBJECT
16703         (mono_type_to_unmanaged): consider System.Delegate class
16704
16705 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
16706
16707         * class.c: just setup supertypes in the proper place instead of
16708         initializing the full element class for arrays.
16709
16710 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16711
16712         * class.c: ensure the element class of arrays is initialized.
16713         Setup the supertype info for array classes, too.
16714
16715 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
16716
16717         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
16718
16719 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16720
16721         * Makefile.am: re-added -m option when running cygpath. This way,
16722         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
16723         separator.
16724         * mono-config.c: same codepath for locating mono config file for WIN32
16725         and the rest.
16726         * assembly.c: if mono_assembly_setrootdir is called, don't override
16727         the value set.
16728
16729 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16730
16731         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
16732         MONO_ASSEMBLIES variable.
16733
16734 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
16735
16736         * icall.c: added Assembly::GetNamespaces() icall.
16737
16738 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16739
16740         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
16741
16742 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
16743
16744         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
16745         * object.c: fixed bug in the construction of vtable for proxies
16746
16747 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
16748
16749         * object.c (mono_array_new): Mark mono_array_new as an icall.
16750
16751 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16752
16753         * class.c: fixed test for public method when overriding interfaces.
16754         Closes bug #40970.
16755
16756 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16757
16758         * appdomain.h, domain.c: added mono_domain_foreach() to
16759         be able to access the currently loaded appdomains.
16760         * object.c: make string interning work across sppdomains.
16761         Mark some functions for use as icalls.
16762
16763 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
16764
16765         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
16766
16767         * reflection.h reflection.c: Allocate long living data using 
16768         GC_MALLOC_ATOMIC so the collector does not need to scan it.
16769
16770         * reflection.c: Double the allocation size in streams instead of
16771         increasing it, to prevent unneccesary copying on large assemblies.
16772         
16773         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
16774         creation if the assembly does not have the Run flag set.
16775
16776 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
16777
16778         * class.h: avoid the C++ keywords in header files (Jerome Laban
16779         spotted and fixed this).
16780
16781 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16782
16783         * object.c:
16784         (mono_unhandled_exception): fill in the arguments for the
16785         UnhandledException event. Only trigger that event for the default
16786         domain (as MS does).
16787
16788 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
16789
16790         * object.c: Improve typed allocation stuff based on suggestions from
16791         Paolo. Also turn it on if the GC library supports it.
16792
16793 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16794
16795         * object.c object.h class.h: Added experimental typed allocation
16796         facility using the interfaces in gc_gcj.h.
16797
16798         * os/gc_wrapper.h: Added new include files.
16799         
16800 2003-04-03  Martin Baulig  <martin@ximian.com>
16801
16802         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
16803         which is not yet enabled by default.
16804
16805         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
16806         functions.
16807         (mono_gc_lock, mono_gc_unlock): New static functions.
16808
16809         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
16810         functions; stop/start the world for the garbage collector.  This
16811         is using the windows API; we need to complete the SuspendThread()/
16812         ResumeThread() implementation in the io-layer to make this work on Unix.
16813         (mono_gc_push_all_stacks): New public function; tells the garbage
16814         collector about the stack pointers from all managed threads.
16815
16816 2003-04-03  Martin Baulig  <martin@ximian.com>
16817
16818         * object.h (MonoThread): Added `gpointer stack_ptr'.
16819
16820         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
16821
16822 2003-04-03  Martin Baulig  <martin@ximian.com>
16823
16824         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
16825
16826 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16827
16828         * reflection.c (typebuilder_setup_fields): Initialize field.first and
16829         field.last.
16830
16831 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
16832
16833         * loader.c (mono_lookup_internal_call): Report the corlib that is
16834         out of sync.
16835
16836 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
16837
16838         * icall.c (ves_icall_type_GetTypeCode): fixed check for
16839         System.DBNull (it's class not valuetype).
16840
16841 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16842
16843         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
16844         if the array method was already assigned a token (fixes bug#40646).
16845
16846 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
16847
16848         * reflection.c (mono_reflection_get_type): Attempt type resolve even
16849         if no assembly is given.
16850
16851 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
16852
16853         * metadata.h: Added the new tables.
16854
16855         * row-indexes.h: Added definitions for new tables.
16856
16857         * metadata.c: Add schemas for new tables, and add support for
16858         computing the sizes of them.
16859
16860         * class.c: Update for handling the new type cases.
16861
16862 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
16863
16864         * metadata.h (MONO_TYPE_IS_VOID): new macro
16865
16866 2003-03-31  Martin Baulig  <martin@ximian.com>
16867
16868         * threads.h (MonoThreadCallbacks): Added `thread_created'.
16869
16870         * threads.c (mono_thread_new_init): Call `thread_created' in the
16871         mono_thread_callbacks.
16872
16873 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
16874
16875         * loader.h: added marshalbyrefobject_class to mono_defaults
16876         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
16877         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
16878           generation of output parameters.
16879           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
16880         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
16881           contextbound and the target object belongs to the context of the caller.
16882         * object.h: added context and unwrapped_server variables in MonoRealProxy.
16883         * object.c: Implemented support for interfaces and abstract classes
16884           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
16885           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
16886
16887 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
16888
16889         * class.h class.c (mono_class_is_subclass_of): New function.
16890         
16891         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
16892         routines for most common case (calls from ArrayList::ToArray).
16893
16894         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
16895         routine so programs which call Environment::Exit() can be profiled.
16896
16897         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
16898         Added MONO_ARCH_SAVE_REGS.
16899
16900         * icall.c (ves_icall_type_is_subtype_of): Use new function.
16901
16902 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
16903
16904         * blob.h: Add a couple of new MonoType types definitions.
16905
16906         * tabledefs.h: Add a couple of new call convs.
16907
16908 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
16909
16910         * reflection.h (MonoReflectionDynamicAssembly): track changes in
16911         the layout of the class.
16912
16913         * reflection.c (alloc_table): double the size on overflow to avoid
16914         unnecessary copying.
16915
16916         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
16917         avoid filling out metadata tables and blobs. Also set mb->ilgen to
16918         null so it can be garbage collected.
16919         
16920 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
16921
16922         * reflection.c (mono_reflection_get_type): Return the resolved type
16923         only if it is in the assembly we searched.
16924
16925         * reflection.c (ensure_runtime_vtable): Initialize method slots.
16926
16927         * class.c (mono_class_setup_vtable): Set the slot of the overriding
16928         method.
16929
16930 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16931
16932         * appdomain.c:
16933         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
16934         the right one is 'file:///blah', but MS allows it.
16935         * assembly.c:
16936         (mono_assembly_open): allow 'file://blah'
16937
16938         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
16939
16940 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
16941
16942         * socket-io.c: fixes bug #40310.
16943
16944 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
16945
16946         * reflection.c (mono_reflection_parse_type): handle deeply nested
16947         types correctly.
16948
16949         * reflection.c (mono_image_create_token): Use unique token values
16950         since they will be put into a hash table.
16951
16952         * class.c (mono_class_setup_vtable): If a method occurs in more than
16953         one place in the vtable, and it gets overriden, then change the
16954         other occurances too.
16955
16956         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
16957         object as return type.
16958
16959 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16960
16961         * icall.c: Deleted "ToString" implementation for double and float
16962         because they are full implemented in managed code.
16963
16964 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16965
16966         * reflection.c, reflection.h: implemented and exported functions
16967         to retrieve info about custom attributes.
16968
16969 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16970
16971         * appdomain.c: moved Uri handling to assembly.c
16972         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
16973         work when using a file Uri in *nix and windows.
16974
16975         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
16976         GetReferencedAssemblies.
16977
16978 2003-03-18  Dick Porter  <dick@ximian.com>
16979
16980         * icall.c: Rename a couple of internal calls
16981
16982         * threads.c: Set the thread state to Stopped when a thread exits.
16983         Fixes bug 39377.
16984
16985 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
16986
16987         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
16988         New icall.
16989
16990         * object.c (mono_class_vtable): fix warning.
16991
16992 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
16993
16994         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
16995
16996         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
16997         memory.
16998         (method_encode_clauses): Create exception info structures in the right
16999         order.
17000         (mono_reflection_setup_internal_class): Initialize supertypes field.
17001
17002         * class.c object.c: Handle interfaces which implement other interfaces 
17003         correctly.
17004
17005         * class.h class.c: Move the supertypes array initialization code into 
17006         a separate function so it can be used for dynamic types too. Also call
17007         it earlier, in mono_class_init(), since it can be used before the
17008         type is initialized.
17009
17010 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17011
17012         * Makefile.am:
17013         * assembly.c:
17014         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
17015
17016         * appdomain.c:
17017         * appdomain.h:
17018         * marshal.c:
17019         * object.c: remove warnings.
17020
17021 2003-03-13  Martin Baulig  <martin@ximian.com>
17022
17023         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
17024         (MonoDebugLexicalBlockEntry): New types.
17025
17026         * debug-mono-symfile.c
17027         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
17028
17029 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17030
17031         * process.c: ret can be any non-zero value accroding to MS doc.
17032
17033 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
17034
17035         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
17036         fixing a warning for a miss-used prototype, would have cause
17037         random memory corruption.
17038
17039 2003-03-07  Martin Baulig  <martin@ximian.com>
17040
17041         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
17042         getting really annoying ....
17043
17044 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
17045
17046         * reflection.c (fixup_method): added support for array methods.
17047
17048 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
17049
17050         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
17051         (pointed out by Michael Adams).
17052
17053 2003-03-04  Dick Porter  <dick@ximian.com>
17054
17055         * icall.c: Temporarily reverted the Double and Single ToString()
17056         change, because it broke nunit.
17057
17058 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
17059
17060         * object.h, threads.h: make include files compatible with C++
17061         (patch by Jerome Laban <jlaban@wanadoo.fr>).
17062
17063 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17064
17065         * icall.c: Erased ToString helper functions for Double and Single.
17066         Now, that implementations ar all in managed code (Double and Single
17067         Formatters).
17068
17069 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
17070
17071         * appdomain.c: Added method for initializing the default context of
17072         a domain. Added internal call for getting the default context.
17073         * appdomain.h: Added context variable in MonoDomain struct.
17074         * domain.c: mono_domain_set also sets the default context of the domain
17075         * icall.c: Mapped internal method InternalGetDefaultContext.
17076         * object.c: mono_object_get_virtual_method returns always a remoting
17077         wrapper if the object is a transparent proxy.
17078         mono_runtime_invoke_array: when creating an object by calling the
17079         constructor, if the created object is a proxy, then the constructor should
17080         be called using the a remoting wrapper.
17081
17082 2003-03-03  Dick Porter  <dick@ximian.com>
17083
17084         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
17085         variable so it compiles on solaris.  Problem spotted by
17086         Christopher Taylor <ct@cs.clemson.edu>
17087
17088 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17089
17090         * appdomain.c:
17091         (get_info_from_assembly_name): don't leak value.
17092
17093         * icall.c:
17094         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
17095         result.
17096
17097 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
17098
17099         * assembly.c: export mono_image_load_references ().
17100         * class.c: handle function pointers. mono_class_from_name() now
17101         supports nested type names directly.
17102
17103 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
17104
17105         * reflection.h reflection.c: Encode already created dynamic methods 
17106         and fields correctly as a DEF instead of a REF.
17107
17108         * reflection.c: Get rid of the force_ref argument to 
17109         mono_image_typedef_or_ref since it was wrong in the first place.
17110
17111         * string-icalls.c: add error checking to string constructors according
17112         to the MSDN docs.
17113
17114         * reflection.c: Emit types in the order their TypeBuilders were 
17115         created. Previously, a new table index was assigned to each type before
17116         the tables were emitted. This was wrong because the signature blob
17117         might already refer to a type by its original table index.
17118
17119 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
17120
17121         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
17122         change.
17123         
17124 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17125
17126         * Makefile.am: make assemblies dir have \ instead of / on windows.
17127
17128 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
17129
17130         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
17131         iterate over the NESTEDCLASS table using a linear search since the
17132         table is not guaranteed to be sorted by the secondary key.
17133
17134         * class.c (mono_class_create_from_typedef): fixed up call to
17135         mono_metadata_nesting_typedef.
17136         
17137 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
17138
17139         * marshal.c (mono_string_to_byvalstr): clear the memory as
17140         suggested by Jerome Laban <jlaban@wanadoo.fr>
17141
17142 2003-02-26  Dick Porter  <dick@ximian.com>
17143
17144         * process.c: Cope with padding in .rsrc blocks
17145
17146 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17147
17148         * metadata.h: reverted the filter_len change, it breaks reflection
17149         
17150 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17151
17152         * metadata.h: added a new field to store the filter_len
17153         
17154
17155 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
17156
17157         * reflection.c: handle custom attributes for types and members
17158         created with Reflection.Emit (bug#38422).
17159
17160 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
17161
17162         * reflection.c: define RTSpecialName automatically for constructors for
17163         compatibility with MS.NET.
17164
17165         * reflection.c (mono_reflection_create_runtime_class): initialize
17166         nested_in field of dynamically created classes.
17167
17168 2003-02-22  Martin Baulig  <martin@ximian.com>
17169
17170         * debug-mono-symfile.h: Incremented version number.
17171
17172 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17173
17174         * object.h icall.c process.c: fix warnings.
17175
17176 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17177
17178         * appdomain.h appdomain.c:
17179         (mono_domain_try_type_resolve): split the 
17180         name_or_tb argument into a name and a tb argument.
17181         (mono_domain_has_type_resolve): new function to check whenever the
17182         application has registered a TypeResolve event handler.
17183         
17184         * icall.c reflection.h reflection.c: move the type resolve logic into
17185         mono_reflection_get_type () so it will be invoked when 
17186         Assembly::GetType () is called.
17187
17188         * reflection.c:
17189         (mono_reflection_get_type): renamed to get_type_internal.
17190         (mono_reflection_get_type): fixed type name generation so it works 
17191         for nested types too.
17192         (mono_reflection_get_type): call has_type_resolve () to avoid the 
17193         costly type name generation if there is no resolve event handler.
17194
17195 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17196
17197         * class.c, image.c: load exported types from file references.
17198
17199 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
17200
17201         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
17202           used to cache the managed methods used to create proxies and make 
17203           remote invocation of methods.
17204         * class.h: Added in MonoVTable a flag to indicate that a class needs 
17205           to be remotely created.
17206         * object.c: Modified the method mono_class_vtable(). It now initializes 
17207           the remote flag of the vtable. Modified mono_object_new_specific(), 
17208           so now it checks the remote flag.
17209         * icall.c: Added a couple of internal methods, one for enabling instance 
17210           creation interception for a type, and one for creating objects bypassing
17211           the remote check.
17212
17213 2003-02-18  Martin Baulig  <martin@ximian.com>
17214
17215         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
17216         New interncall to get a method's metadata token.
17217
17218         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
17219         New interncall for the debugger.
17220
17221 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
17222
17223         * class.c (mono_class_setup_vtable): allocate supertype array
17224
17225 2003-02-18  Martin Baulig  <martin@ximian.com>
17226
17227         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
17228
17229 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17230
17231         * reflection.c:
17232         (assembly_name_to_aname): jump over unknown properties (i've found
17233         something like: 'type, assembly, version=xxx, custom=null, public...',
17234         so now will ignore custom=null and still get the rest of the values).
17235
17236 2003-02-17  Dick Porter  <dick@ximian.com>
17237
17238         * threads.c: Have Thread.Start() wait for a semaphore to signal
17239         that the thread has set up all its local data.  This fixes bug
17240         34323, where Abort() raced the new thread's TLS data.
17241
17242         Also removes the handle_store() call from start_wrapper, because
17243         threads are now always created suspended and there is no longer a
17244         race between the parent and child threads to store the info.
17245
17246 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
17247
17248         * image.c: explain the #- heap issue in a message, hopefully
17249         avoiding FAQs on mono-list.
17250
17251 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17252
17253         * icall.c:
17254         (GetEntryAssembly): if the domain has not invoked
17255         AppDomain.ExecuteAssembly yet, return the assembly of the default
17256         AppDomain.
17257
17258 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
17259
17260         * class.c (mono_ldtoken): make it work in dynamic assemblies.
17261
17262 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
17263
17264         * metadata.c, reflection.c: simple speedup to type hash
17265         and equals code.
17266
17267 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
17268
17269         * image.c, image.h, class.c, assembly.c: move module loading
17270         to MonoImage. When loading metadata, consider alignemnet from
17271         the start of metadata, not from the metadata address in memory.
17272
17273 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
17274
17275         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
17276         AssemblyBuilder objects. Factored out custom attribute creation into
17277         a separate function.
17278         (create_custom_attr): new function to create custom attributes.
17279
17280 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
17281
17282         * Makefile.am: Got tired of typing the full pathname to pedump.
17283         Until there is another option, am installing this.
17284
17285 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
17286
17287         * class.c (class_compute_field_layout): always set field->parent 
17288         (mono_ldtoken): use mono_defaults.fieldhandle_class;
17289
17290 2003-02-11  Dick Porter  <dick@ximian.com>
17291
17292         * threads-types.h:
17293         * monitor.c: Rewrote Monitor, making lock much faster and
17294         Pulse/Wait work as specified.  Also uses much fewer handles, and only
17295         creates them as needed.
17296
17297         * exception.c: Added SynchronizationLockException
17298
17299         * threads.c: Deleted old Monitor implementation.  The new one is
17300         in a new file.
17301
17302 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
17303
17304         * class.c: handled TypedReference type code. Set the correct size for
17305         class data. Setup interface_offsets for interface classes, too.
17306
17307 2003-02-09  Martin Baulig  <martin@ximian.com>
17308
17309         * debug-mono-symfile.h: Reflect latest symbol writer changes.
17310
17311 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
17312
17313         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
17314         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
17315         * object.c: fixed mono_object_get_virtual_method () for interfaces.
17316         * verify.c: check for code that runs after the end of the method.
17317
17318 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17319
17320         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
17321         "System.Math::Round2".
17322         * sysmath.h: Added Floor, Round and Round2 definitions.
17323         * sysmath.c: Modified certain functions that were not 100% compliant
17324         with MS.NET (math precision) and added the implementation of Floor,
17325         Round and Round2.
17326
17327 2003-02-07  Martin Baulig  <martin@ximian.com>
17328
17329         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
17330
17331 2003-02-07  Martin Baulig  <martin@ximian.com>
17332
17333         * debug-mono-symfile.c: Reflected latest symwriter changes.
17334         (mono_debug_create_mono_symbol_file): Removed.
17335         (mono_debug_open_mono_symbol_file): Take an argument which
17336         specifies whether to create a dynamic symbol file.
17337
17338 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
17339
17340         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
17341
17342 2003-02-05  Martin Baulig  <martin@ximian.com>
17343
17344         * reflection.c (mono_image_build_metadata): Make this public,
17345         protect it against being called multiple times, don't create
17346         resources and don't build the compressed metadata here.
17347         (mono_image_create_pefile): Do this here.
17348
17349         * icall.c
17350         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
17351
17352 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17353
17354         * socket-io.c: fixed bug #36322.
17355
17356 2003-02-06  Piers Haken <piersh@friskit.com>
17357
17358         * appdomain.[ch]:
17359         * class.h:
17360         * debug-mono-symfile.c:
17361         * icall.c:
17362         * loader.c:
17363         * mono-config.c:
17364         * monosn.c:
17365         * reflection.c:
17366         * socket-io.c: warning cleanups
17367
17368 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
17369
17370         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
17371         function. works like remoting invoke, but does a check for the Proxy first.
17372
17373 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
17374
17375         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
17376
17377 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
17378
17379         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
17380         array of pointers.
17381         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
17382         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
17383
17384         * object.c (mono_store_remote_field_new): used by the new jit
17385         instead of mono_store_remote_field
17386         (mono_load_remote_field_new): used by the new jit
17387         instead of mono_load_remote_field
17388
17389 2003-02-05  Patrik Torstensson
17390
17391         * appdomain.c: changed unload to take the domain id instead
17392         of domain
17393         
17394         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
17395
17396
17397 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17398
17399         * appdomain.c: don't look for assemblies in ApplicationBase if
17400         PrivateBinPathProbe is set.
17401
17402 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17403
17404         * object.c: make the first argument in main_args contain the absolute
17405         path to the assembly. Fixes bug #37511.
17406
17407 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17408
17409         * icall.c: get correct UTC offset for countries not using daylight
17410         time saving. Fixes bug #30030.
17411
17412 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17413
17414         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
17415         and 1 are the family).
17416
17417 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
17418
17419         * icall.c (ves_icall_InternalExecute): removed wrong assertion
17420
17421         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
17422
17423 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
17424
17425         * reflection.c: added support for SignatureHelper tokens, which is
17426         needed by the Calli opcode.
17427
17428         * reflection.h: track changes to SignatureHelper class.
17429
17430         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
17431
17432 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17433
17434         * appdomain.c: fixed loading assemblies from PrivateBinPath.
17435
17436 2003-02-03  Patrik Torstensson
17437         * appdomain.[c|h], domain.c : 
17438          - Added support for getting a domain via domain id
17439          - Support for setting and getting domain from System.AppDomain 
17440            (used in cross appdomain channel)
17441          - Added support for get/set for a MonoAppContext on a thread 
17442            (Context class in System.Runtime.Remoting.Contexts),
17443          - Removed hack in Get/SetData and ExecuteAssembly.
17444         
17445         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
17446         the managed world to get control when a proxy is created.
17447
17448         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
17449         
17450 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
17451
17452         * icall.c
17453         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17454         Populate the codebase field as well.
17455
17456 2003-02-02  Martin Baulig  <martin@ximian.com>
17457
17458         * debug-mono-symfile.c
17459         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
17460         (mono_debug_symfile_add_method): Allow interncalls.
17461
17462 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17463
17464         * icall.c: throw parse exception if strtod fails or the string is empty.
17465
17466 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
17467
17468         * marshal.c: handle object type separately from defined
17469         class types.
17470
17471 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
17472
17473         * marshal.c: handle NATIVE_LPSTR for strings when it's
17474         explicitly specified.
17475
17476 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
17477
17478         * reflection.c, reflection.h, icall.c: setup the reflection
17479         handle cache for ModuleBuilders and AssemblyBuilders.
17480
17481 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
17482
17483         * reflection.c (reflection_methodbuilder_to_mono_method): set
17484         pinvoke flag
17485
17486 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17487
17488         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
17489
17490 2003-01-29  Dick Porter  <dick@ximian.com>
17491
17492         * threads.c: No need for the fake_thread kludge now that Thread
17493         doesn't run a class constructor
17494         
17495 2003-01-29  Dick Porter  <dick@ximian.com>
17496
17497         * threads.c: Use g_direct_hash instead of the rather bogus
17498         g_int_hash
17499
17500 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
17501
17502         * marshal.c (mono_marshal_get_native_wrapper): add check for null
17503         (fix pinvoke12.exe)
17504         (mono_marshal_get_struct_to_ptr): generate valid IL code
17505         (mono_marshal_get_ptr_to_struct): generate valid IL code
17506         (*): correctly set sig->pinvoke, we need to memdup the signature
17507         to do that
17508
17509 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17510
17511         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
17512         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
17513
17514 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
17515
17516         * profiler.c: provide more callers information.
17517
17518 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
17519
17520         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
17521
17522         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
17523
17524         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
17525
17526 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17527
17528         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
17529         exception instead of going into an infinite loop on dates which it 
17530         can't yet handle.
17531
17532         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
17533         out-of-range exception if needed.
17534
17535         * class.c (mono_class_setup_vtable): allow a virtual method to provide
17536         an implementation for an interface method and to override an inherited
17537         method at the same time. 
17538         Imagine a scenario when a virtual method is used to override a
17539         virtual abstract method in a parent class, and this same method 
17540         provides an implementation for an method inherited from an interface. 
17541         In this case, the interface resolution code will set im->slot, which 
17542         means that the virtual method override pass will skip this method 
17543         which means a pointer to the abstract method inherited from the parent
17544         will remain in the vtable of this non-abstract class.
17545
17546         * class.c: (mono_class_setup_vtable): continue search for a real 
17547         method if only an abstract method is found.     
17548
17549 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
17550
17551         * reflection.c: add size to encoding for ByValStr and ByValArray
17552         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
17553
17554 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17555
17556         * class.c (mono_class_setup_vtable): pass the override info as an
17557         argument.
17558
17559         * class.c (mono_class_setup_vtable): set the slot of overriding methods
17560         correctly.
17561         
17562         * reflection.c (ensure_runtime_vtable); add support for method 
17563         overrides.
17564         
17565 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17566
17567         * reflection.c (resolution_scope_from_image): Hack to work to work with
17568         dynamic assemblies.
17569
17570         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
17571         added a 'force_ref' argument to force this function to allways return 
17572         a TypeRef. This is needed by mono_image_get_memberref_token ().
17573         
17574 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17575
17576         * reflection.c (mono_image_get_type_info): interfaces really don't have
17577         a parent.
17578
17579         * reflection.c (mono_image_basic_init): fill out missing fields of
17580         image structure.
17581
17582         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
17583         dynamic assemblies. This is required so dynamic assemblies show up in
17584         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
17585         Type::GetType() etc. This is consistent with MS behaviour.
17586
17587         * image.c image.h reflection.c: add newly created classes to the name 
17588         cache so mono_class_get () will find them.      
17589
17590 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17591
17592         First part of changes to get IKVM.NET running under mono.
17593         
17594         * appdomain.h, appdomain.c: added new function 
17595         mono_domain_try_type_resolve() which will emit TypeResolve events. 
17596         This function will call AppDomain::DoTypeResolve to do the actual work.
17597
17598         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
17599         moved existing code dealing with dynamic tokens to a new function 
17600         called mono_reflection_lookup_dynamic_token (). This function will 
17601         raise TypeResolve events when appropriate. Since reflection.c is not 
17602         part of libmetadata, a new hook function called 
17603         mono_lookup_dynamic_token() is added to class.c which will call this.
17604
17605         * assembly.h assembly.c: make the invoke_load_hook function public,
17606         so it can be called for dynamic assemblies.
17607
17608         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
17609
17610         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
17611         type isn't found.
17612
17613         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
17614         MonoGHashTable, since it contains pointers to objects which the GC 
17615         needs to track.
17616
17617         * assembly.c (search_loaded): remove unused variable.
17618         
17619 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
17620
17621         * object.c: fixed issue exposed by gcc-generated IL programs
17622         that use RVA data for pointers.
17623
17624 2003-01-25  Martin Baulig  <martin@ximian.com>
17625
17626         * threads.c (start_wrapper): Moved the initialization of
17627         `start_func' above the mono_new_thread_init() call to which we
17628         pass it as argument.
17629
17630 2003-01-24  Martin Baulig  <martin@ximian.com>
17631
17632         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
17633         the MonoThread pointer.
17634
17635 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
17636
17637         * icall.c: Rename `PowImpl' to Pow.
17638
17639 2003-01-23  Dick Porter  <dick@ximian.com>
17640
17641         * threads.c (start_wrapper): Create a Thread object if needed, so
17642         the Main() thread can do the class initialisation in a subthread
17643         that has been set up to allow managed code execution.
17644
17645         Pass the thread ID instead of the MonoThread pointer to the thread
17646         start and attach callbacks.  This change is required, because the
17647         jit thread start callback must be called _before_ the Thread
17648         object can be created.
17649         
17650         (mono_thread_init): Removed much object creation code that is no
17651         longer needed.  No managed code is called from here now.
17652
17653         * object.c (mono_runtime_exec_managed_code): Create a subthread
17654         for Main, and call back to the runtime to use it.
17655         Set the exit code when Main exits.
17656
17657         * gc.c: Make sure domain finalisation happens in a subthread.
17658         Re-enable threaded GC, fixing bug 31333 (again).
17659
17660         * environment.c: System.Environment internall calls (so far just
17661         ExitCode is here, the others are still in icall.c)
17662
17663         * appdomain.c (mono_runtime_cleanup): All threads running managed
17664         code should have finished before mono_runtime_cleanup() is
17665         reached, so no need to clean up threads.
17666
17667 2003-01-22  Martin Baulig  <martin@ximian.com>
17668
17669         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
17670         `gpointer func' arguments.      
17671         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
17672         but added `MonoThread *thread' argument.
17673         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
17674
17675         * threads.c (mono_new_thread_init): Added `gpointer func' argument
17676         and pass it to the mono_thread_start_cb callback.
17677         (mono_install_thread_callbacks): New public function to install a
17678         set of callbacks which are set by the debugger.
17679         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
17680
17681 2003-01-22  Martin Baulig  <martin@ximian.com>
17682
17683         * Makefile.am: Install debug-mono-symfile.h.
17684
17685 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
17686
17687         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
17688
17689 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
17690
17691         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
17692         * class.c (mono_ptr_class_get): correctly set access levels of pointers
17693         (mono_array_class_get): correctly set access levels of arrays
17694
17695 2003-01-20      Patrik Torstensson
17696         * image.h (MonoAssemblyName): changed major, minor, build, revision
17697         from signed to unsigned.
17698
17699 2003-01-20  sean kasun <skasun@azstarnet.com>
17700
17701         * reflection.c (load_cattr_value): Now this handles
17702         MONO_TYPE_SZARRAY.  Fixes bug #35629
17703
17704 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
17705
17706         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
17707         integer value
17708
17709 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17710
17711         * decimal.c: fixed bug #26056.
17712
17713 2003-01-17  Martin Baulig  <martin@ximian.com>
17714
17715         * gc.c: Raise an ExecutionEngineException instead of using g_error().
17716
17717 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17718
17719         * exception.[ch]:
17720         (mono_get_exception_type_initialization): new function.
17721
17722         * object.c: throw a TypeInitializationException when an exception is
17723         thrown invoking the class constructor.
17724
17725 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17726
17727         * reflection.c: fixed attribute reading.
17728
17729 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17730
17731         * icall.c:
17732         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
17733         provided, look for the type in the calling assembly and then in
17734         mscorlib; if the assembly name is provided, only try that one.
17735
17736 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
17737
17738         * object.c: register the vtable before there is a chance it's
17739         queried again recursively.
17740
17741 2003-01-13  Duncan Mak  <duncan@ximian.com>
17742
17743         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
17744         gc-internal.h. 
17745         
17746 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
17747
17748         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
17749
17750 2003-01-11  Martin Baulig  <martin@ximian.com>
17751
17752         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
17753         this to 20 for the release.
17754
17755 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
17756
17757         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
17758
17759         * loader.c (mono_method_get_marshal_info): bug fix
17760
17761         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
17762         structures with explicit layout
17763
17764 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17765
17766         * profiler.c: made the output more readable (and sorted). 
17767         Added caller information for the allocation profiler.
17768
17769 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
17770
17771         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
17772
17773 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17774
17775         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
17776         to get value types.
17777         
17778 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
17779
17780         * object.c, profiler.h, profiler.c, profiler-private.h:
17781         Added object allocation profiler.
17782
17783 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
17784
17785         * reflection.h, reflection.c: handle global methods.
17786         Compress blob entries.
17787
17788 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
17789
17790         * marshal.c: fix compilation.
17791
17792 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
17793
17794         * loader.c (mono_method_get_marshal_info): impl.
17795
17796         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
17797
17798 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17799
17800         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
17801         for reference types.
17802
17803 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
17804
17805         * loader.c: fixed off by one error in loaded parameter names.
17806
17807 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
17808
17809         * marshal.c (mono_marshal_get_icall_wrapper): like
17810         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
17811         instead of a MonoMethod.
17812
17813 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17814
17815         * decimal.c: fixed bug #36537.
17816
17817 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
17818
17819         * marshal.c: throw a missing method exception if a
17820         P/Invoke method is not found.
17821
17822 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17823
17824         * icall.c: allow a null this for constructors.
17825
17826 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
17827
17828         * icall.c: raise the proper exceptions if the arguments to the
17829         internal Invoke are incorrect.
17830
17831 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
17832
17833         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
17834
17835 2003-01-03  Martin Baulig  <martin@ximian.com>
17836
17837         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17838
17839 2002-12-31  Martin Baulig  <martin@ximian.com>
17840
17841         * debug-mono-symfile.c: Completely rewrote the type section.
17842         Instead of using individual malloc()ed fields, we use one big
17843         continuous memory area and offsets into this area.
17844         See the comments in the source code for details.
17845
17846 2002-12-30  Martin Baulig  <martin@ximian.com>
17847
17848         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
17849
17850 2002-12-30  Martin Baulig  <martin@ximian.com>
17851
17852         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
17853         line number table in this data blob instead of using an external
17854         pointer.
17855
17856 2002-12-28  Martin Baulig  <martin@ximian.com>
17857
17858         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17859
17860 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
17861
17862         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
17863         as a boxed return type.
17864
17865 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
17866
17867         * appdomain.c
17868         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
17869         g_build_filename to properly get separators on the filename created.
17870
17871         * object.h: Small change, introduce MonoMarshalByRefObject to
17872         track the layout of that structure in the C# universe as we make
17873         changes there.
17874
17875 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
17876
17877         * object.c: removed assert to allow static fields on interfaces.
17878         * loader.c: a TypeSpec may be used for any type, not just arrays.
17879
17880 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
17881
17882         * class.c, class.h: added mono_class_array_element_size ().
17883         Ignore static methods in interfaces.
17884
17885 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17886
17887         * threads.c: fixed the build under cygwin.
17888
17889 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
17890
17891         * reflection.c: handle nullref constants. Allocate keys for
17892         reflection handles with the GC.
17893
17894 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17895
17896         * threads.c, threads.h: added mono_thread_get_abort_signal()
17897         to get a suitable signal for thread abort.
17898
17899 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17900
17901         * metadata.c: fix handling of ExportedType table.
17902
17903 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17904
17905         * icall.c: added WriteWindowsDebugString internal call.
17906
17907 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17908
17909         * reflection.h: added fields to match C# implementation.
17910
17911 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17912
17913         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
17914
17915 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
17916
17917         * gc.h, gc-internal.h: Rename header for GC internal calls to
17918         gc-internal.h from gc.h as to not clash with Boehm GC having its
17919         header installed as <gc.h> in outside include paths.
17920         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
17921         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
17922
17923 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17924
17925         * icall.c: assign minor, build and revision in FillName.
17926
17927 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
17928
17929         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
17930         Added support for running code generated by Reflection.Emit.
17931
17932 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17933
17934         * appdomain.c: check for NULL argument in LoadFrom.
17935
17936 2002-12-10  Dick Porter  <dick@ximian.com>
17937
17938         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
17939
17940 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17941
17942         * appdomain.c: fix buglet when building exe file name.  Handle full
17943         assembly name (needed after latest changes to AssemblyName).
17944         * image.c:
17945         (mono_image_close): free some hashtables.
17946
17947 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
17948
17949         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
17950         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
17951         on some systems (redhat 7.3) 
17952
17953 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
17954
17955         * threads.c: delete the critical section of a sync block,
17956         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
17957
17958 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
17959
17960         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
17961
17962 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17963
17964         * appdomain.[ch]: handle the assembly preload event to try loading the
17965         assemblies using the paths we have in the current domain.
17966
17967         * assembly.[ch]: created an assembly preload hook that is called to try
17968         loading the assembly by other means that the ones provided here.
17969
17970         * domain.c: initialize the domain search path.
17971
17972         From now on, assemblies (TODO: except corlib and System) are loaded
17973         according to these rules when using mono_assembly_load ():
17974
17975                 1. It tries to load the assembly from the ApplicationBase
17976                 of the current domain appending .dll and .exe (TODO: have to
17977                 try loading from name/name.dll and name/name.exe).
17978
17979                 2. It tries the search path specified in PrivateBinPath for the
17980                 current domain (if any).
17981
17982                 3. Previous behavior.
17983
17984 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
17985
17986         * icall.c: implemented GetInterfaceMap() related icall.
17987         * domain.c, loader.h: load MethodInfo in mono_defaults.
17988
17989 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
17990
17991         * gc.c: disable the finalizer thread for now, untill all the issues
17992         with it are resolved.
17993
17994 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17995
17996         * string-icalls.c: handle embedded nulls in string ctor when the
17997         length is specified.
17998
17999 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
18000
18001         * class.c: look for explicit interface implementation in parent
18002         classes, too.
18003
18004 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
18005
18006         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
18007
18008 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
18009
18010         * gc.c: protect handles with a critical section.
18011
18012 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18013
18014         * icall.c:
18015         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
18016         parameters. If no assembly specified, try getting the type from all
18017         the assemblies in the current domain, else, load the assembly and get
18018         the type from it.
18019
18020 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18021
18022         * marshal.c: applied patch from Aleksey Demakov that fixes
18023         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
18024
18025 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18026
18027         * icall.c: fixed get_location.
18028
18029 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
18030
18031         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
18032         declarations to make it work with older gcc. 
18033
18034         * loader.c (mono_get_method): set signature->pinvoke for native calls
18035
18036 2002-11-20  Dick Porter  <dick@ximian.com>
18037
18038         * threads.c (mono_thread_init): Set the main thread's handle
18039
18040 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
18041
18042         * gc.c: allow compilation without GC support. Changed to match the
18043         mono coding style.
18044
18045 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
18046
18047         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
18048
18049 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
18050
18051         * reflection.c: set a public key token on the core assemblies.
18052
18053 2002-11-18  Dick Porter  <dick@ximian.com>
18054
18055         * threads.c: Split out some thread initialisation so that other
18056         files can set the start callback function.
18057
18058         * gc.c: Run finalisers in a separate thread, to avoid stack
18059         overflow.  Fixes bug 31333.
18060
18061         * appdomain.c: Set up GC finalisation thread.
18062
18063         * reflection.c: 
18064         * object.c: 
18065         * domain.c: Use gc.h macros for GC_malloc
18066         
18067 2002-11-15  Dick Porter  <dick@ximian.com>
18068
18069         * threadpool.c: 
18070         * threads.c:
18071         * appdomain.c: Removed mono_runtime_init_with_attach(),
18072         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
18073         merging the extra parameter with the existing function.  Removed
18074         unneeded code in mono_thread_attach().
18075
18076 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
18077
18078         * image.c (mono_image_loaded_by_guid): a method to get loaded
18079         images by guid. 
18080         (load_metadata_ptrs): we store the guid as string.
18081
18082 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
18083
18084         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
18085
18086         * metadata.c (mono_guid_to_string): imported method form Zoltan
18087         Varga (slightly modified)
18088
18089         * assembly.c (mono_assembly_open): load precompiled code
18090
18091         * loader.h (MonoMethod): we store the method token for use in the
18092         aot compiler. 
18093
18094 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18095
18096         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
18097         the hook function called when an assembly is loaded.
18098         
18099         * domain.c: Modified file.
18100         (mono_domain_assembly_load): removed hash table insertion of assemblies.
18101
18102         Fixes bug #33196.
18103
18104 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
18105
18106         * reflection.c: Map PEFileKind to the value expected by the WinNT
18107         image loader. 
18108
18109 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18110
18111         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
18112         Read until the buffer is filled completely.
18113
18114 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18115
18116         * icall.c: implemented MonoType.InternalGetEvent ().
18117
18118 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18119
18120         * appdomain.c: implemented InitAppDomainSetup. Delayed
18121         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
18122         the entry_assembly.
18123
18124         * assembly.c: base_dir is now an absolute path ending with
18125         G_DIR_SEPARATOR.
18126
18127         * icall.c: modified get_location according to the above changes.
18128
18129         * object.c: init AppDomain.SetupInformation for the default domain after
18130         we have the entry assembly.
18131
18132         * domain.c: when unloading a domain, setup = NULL.
18133
18134 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
18135
18136         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
18137
18138 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
18139
18140         * object.h, object.c: introduced mono_object_get_virtual_method ()
18141         to lookup the method invoked on an object when a callvirt is done on
18142         a method.
18143         * icall.c: make MethodInfo::Invoke() always do a virtual call.
18144
18145 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18146
18147         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
18148         current domain when loaded an assembly and failed to load it.
18149
18150         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
18151
18152 2002-10-31  Dick Porter  <dick@ximian.com>
18153
18154         * icall.c: 
18155         * file-io.h: 
18156         * file-io.c: Return the error status in a parameter, as the
18157         GetLastError() value has long since been blown away if we try and
18158         look it up in a subsequent internal call invocation.  Delete the
18159         GetLastError() internal call, because it's useless.
18160
18161 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
18162
18163         * class.[ch]: added cast_class to fix bug 29517
18164
18165 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
18166
18167         * marshal.c: create valid IL code in the filter clause:
18168         the new JIT is less forgiving:-)
18169
18170 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18171
18172         * icall.c: removed get_property internal call.
18173
18174 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
18175
18176         * appdomain.h domain.c: Added an ID to appdomains.
18177         
18178         * threads.c threads.h icall.c: Implement icall
18179         Thread:GetDomainID(), and remove unused icall 
18180         CurrentThreadDomain_internal.
18181
18182 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18183
18184         * icall.c: Don't recurse through the base types in GetConstructor.
18185         Fixes bug #32063. 
18186
18187 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18188
18189         * mempool.h, mempool.c: added mono_mempool_empty() and
18190         mono_mempool_stats().
18191
18192 2002-10-23  Dick Porter  <dick@ximian.com>
18193
18194         * file-io.c: 
18195         * file-io.h: 
18196         * icall.c: Added MonoIO.GetFileType internal call
18197
18198 2002-10-17  Dick Porter  <dick@ximian.com>
18199
18200         * appdomain.c (mono_runtime_cleanup): Don't signal the async
18201         delegate semaphore before waiting for all threads to finish,
18202         because new threads can also call async delegates.  Fixes bug
18203         32004.
18204
18205         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
18206         of 3 seconds, in case another async job is queued.  (This part is
18207         needed because the bug fix reintroduced the 3s exit lag.)  This
18208         makes the mono_runtime_shutdown flag superfluous.
18209
18210 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18211
18212         * reflection.c: include ehader size in method section headers.
18213         Really check for suplicated modules entries.
18214
18215 2002-10-17  Martin Baulig  <martin@gnome.org>
18216
18217         * debug-mono-symfile.c: Added back support for locals.
18218
18219 2002-10-14  Martin Baulig  <martin@gnome.org>
18220
18221         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
18222         MONO_TYPE_VOID.
18223
18224 2002-10-14  Martin Baulig  <martin@gnome.org>
18225
18226         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
18227         mono_class_get() instead of looking in the class cache. 
18228
18229 2002-10-13  Martin Baulig  <martin@gnome.org>
18230
18231         * debug-mono-symfile.c: Set version number to 28, include the
18232         signature in method names.
18233
18234 2002-10-13  Martin Baulig  <martin@gnome.org>
18235
18236         * debug-mono-symfile.h: Set version number to 27.
18237
18238 2002-10-11  Martin Baulig  <martin@gnome.org>
18239
18240         * gc.c: Don't register/unregister NULL pointers as disappearing links.
18241
18242 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18243
18244         * metadata.c, metadata.h: added helper function to allocate signatures.
18245
18246 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18247
18248         * icall.c: added internal call to get the location of machine.config.
18249
18250 2002-10-08  Martin Baulig  <martin@gnome.org>
18251
18252         * debug-mono-symfile.c: Ignore classes with a pending init for the
18253         moment.
18254
18255 2002-10-03  Dick Porter  <dick@ximian.com>
18256
18257         * threads.c: Freebsd pthread_t is a pointer
18258
18259 2002-10-03  Dick Porter  <dick@ximian.com>
18260
18261         * socket-io.c: Implemented GetHostName_internal
18262
18263 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18264
18265         * mono-config.c:
18266         (mono_config_parse_file): don't leak the text.
18267
18268 2002-10-02  Martin Baulig  <martin@gnome.org>
18269
18270         * debug-mono-symfile.c: Added support for methods.
18271
18272 2002-10-01  Martin Baulig  <martin@gnome.org>
18273
18274         * debug-mono-symfile.c: Don't emit methods and line numbers for
18275         the dynamic symbol file, just write the type table.  We can easily
18276         have an external helper program which creates a symbol file for an
18277         IL file.        
18278
18279 2002-10-01  Dick Porter  <dick@ximian.com>
18280
18281         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
18282         Only add the handle to the cleanup array when we're about to
18283         launch the thread.  Bug 31425 deadlocked when the test was run on
18284         mono under w32.
18285
18286 2002-10-01  Martin Baulig  <martin@gnome.org>
18287
18288         * debug-mono-symfile.c: Added support for properties.
18289
18290 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18291
18292         * reflection.c: unaligned store fix from Mark Crichton
18293         <crichton@gimp.org>.
18294
18295 2002-09-27  Martin Baulig  <martin@gnome.org>
18296
18297         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
18298         New interncall.
18299
18300 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18301
18302         * assembly.h, assembly.c: use a sane API to hook into the assembly
18303         loading process instead of a useless special-purpouse hack
18304         (ngen needs a hook, too, for example).
18305
18306 2002-09-27  Dick Porter  <dick@ximian.com>
18307
18308         * threads.c (mono_thread_init): Call GetCurrentProcess() so
18309         io-layer can set up some process handle info.  Not needed on w32,
18310         but doesn't hurt either.
18311
18312         * process.c: Pass the program name in the second parameter to
18313         CreateProcess, so the path is searched.  Include the working
18314         directory. Implemented process name, process enumeration, and some
18315         process detail internal calls.
18316         
18317         * icall.c: Added internal calls for process lookup, and some
18318         process details
18319
18320 2002-09-26  Martin Baulig  <martin@gnome.org>
18321
18322         * assembly.c (mono_install_open_assembly_hook): New global
18323         function to install a function to be invoked each time a new
18324         assembly is loaded.
18325         (mono_assembly_open): Run this callback function if set.
18326
18327         * debug-mono-symfile.c: Put back line numbers for the dynamic
18328         symbol file and also record the .il file as source file.  This
18329         allows us to install the temporary symbol file as `file.dbg' just
18330         like a compiler-generated one.
18331
18332 2002-09-26  Nick Zigarovich <nick@chemlab.org>
18333
18334         * Corrected typo in gc.c (BOHEM vs BOEHM).
18335
18336 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18337
18338         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
18339         GetProperties. Also avoid calling g_slist_length in GetProperties and
18340         GetMethods.
18341
18342 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18343
18344         * reflection.c: avoid unaligned stores (bug spotted by
18345         Mark Crichton  <crichton@gimp.org>).
18346
18347 2002-09-25  Martin Baulig  <martin@gnome.org>
18348
18349         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
18350         instead of guint64 for addresses and added prologue/epilogue info.
18351
18352 2002-09-25  Martin Baulig  <martin@gnome.org>
18353
18354         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
18355         store line number info.  For the dynamic symbol file, we only need
18356         to provide the JIT generated dynamic line number info for the dynamic
18357         symbol file.
18358
18359 2002-09-25  Martin Baulig  <martin@gnome.org>
18360
18361         * debug-mono-symfile.h: Incremented version number.
18362
18363 2002-09-24  Martin Baulig  <martin@gnome.org>
18364
18365         * class.c (mono_debugger_class_init_func): New global function
18366         pointer variable.
18367         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
18368         call it.
18369
18370         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
18371         function.  This is called via the mono_debugger_class_init_func
18372         hook to add all types to the dynamic type table.
18373         (ves_icall_MonoDebugger_GetType): New interncall to get a class
18374         from its metadata token.
18375
18376         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
18377         New interncall for the debugger.
18378
18379 2002-09-24  Nick Drochak <ndrochak@gol.com>
18380
18381         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
18382         before using it in case it is null.
18383         
18384 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18385
18386         * metadata.c: allow custom modifiers in local var signatures
18387         (bug spotted by Zoltan Varga).
18388
18389 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18390
18391         * class.c: deal with the <Module> class that may have a NULL vtable.
18392         Eliminate warnings.
18393
18394 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18395
18396         * image.c, image.h: more strong name helpers.
18397         * monosn.c: more work: convert pem keys to cryptoapi format.
18398
18399 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18400
18401         * string-icalls.c: speedup IndexOf.
18402
18403 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18404
18405         * icall.c: updates from Zoltan.2.Varga@nokia.com.
18406
18407 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18408
18409         * icall.c: cleanup: use mono_object_domain ().
18410
18411 2002-09-23  Martin Baulig  <martin@gnome.org>
18412
18413         * debug-mono-symfile.c: Improved type support.
18414
18415 2002-09-22  Martin Baulig  <martin@gnome.org>
18416
18417         * debug-mono-symfile.c: Added support for reference types and strings.
18418
18419 2002-09-22  Martin Baulig  <martin@gnome.org>
18420
18421         * debug-mono-symfile.c: Started to work on the type table.
18422
18423 2002-09-21  Martin Baulig  <martin@gnome.org>
18424
18425         * debug-mono-symfile.c: Largely reworked the symbol table format.
18426         The symbol table is now incrementally updated each time a new
18427         method is added.  We're now also using our own magic and version
18428         so that you don't need to recompile all your classes if the
18429         dynamic table changes.
18430         (mono_debug_update_mono_symbol_file): Removed.
18431         (mono_debug_symfile_add_method): New function to add a method.
18432
18433 2002-09-21  Martin Baulig  <martin@gnome.org>
18434
18435         * icall.c
18436         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
18437         New interncall.
18438
18439         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
18440         New interncall to get a method from its metadata token.
18441
18442 2002-09-21  Martin Baulig  <martin@gnome.org>
18443
18444         * debug-mono-symfile.c: Create type table.
18445
18446 2002-09-20  Martin Baulig  <martin@gnome.org>
18447
18448         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
18449
18450 2002-09-20  Martin Baulig  <martin@gnome.org>
18451
18452         * debug-mono-symfile.c: Provide information about params and locals.
18453
18454 2002-09-20  Martin Baulig  <martin@gnome.org>
18455
18456         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
18457         New interncall.
18458
18459         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
18460         interncall to get a method from its metadata token.
18461
18462 2002-09-20  Martin Baulig  <martin@gnome.org>
18463
18464         * debug-mono-symfile.c: Added a few checks for method->header
18465         being non-NULL.  This should never happen, but for the moment
18466         let's use a g_warning() rather than a g_assert().
18467
18468 2002-09-19  Mark Crichton  <crichton@gimp.org>
18469
18470         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
18471         even if support for it isn't present.  Added an #ifdef to fix this.
18472
18473         * socket-io.c: Added checks back for Solaris support.
18474
18475 2002-09-19  Martin Baulig  <martin@gnome.org>
18476
18477         * debug-mono-symfile.c (read_string, write_string): Reflect latest
18478         changes in the symbol file format.
18479
18480 2002-09-18  Martin Baulig  <martin@gnome.org>
18481
18482         * debug-mono-symfile.c: Set version number to 21.
18483
18484 2002-09-18  Dick Porter  <dick@ximian.com>
18485
18486         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
18487         on netbsd.  Fixes bug 30051.
18488
18489 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18490
18491         * reflection.c:
18492         (set_version_from_string): little fix.
18493
18494 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18495
18496         * monosn.c, Makefile.am: added strong name utility.
18497         * reflection.h, reflection.c: implemented delayed signing,
18498         locale, version and hash id assembly attributes.
18499
18500 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18501
18502         * loader.c, metadata.c: load param attributes in signatures.
18503
18504 2002-09-16  Martin Baulig  <martin@gnome.org>
18505
18506         * debug-mono-symfile.c: Added string table with all method names.
18507
18508 2002-09-14  Martin Baulig  <martin@gnome.org>
18509
18510         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
18511         fast method lookup.
18512
18513 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18514
18515         * reflection.c: record the public key token of referenced assemblies.
18516
18517 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18518
18519         * image.c, image.h: added functions to get the strong name and the
18520         public key of an assembly.
18521         * pedump.c: use them.
18522
18523 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
18524
18525         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
18526
18527 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
18528
18529         * marshal.c (mono_marshal_get_managed_wrapper): Added
18530         MONO_TYPE_BOOLEAN 
18531
18532 2002-09-11  Martin Baulig  <martin@gnome.org>
18533
18534         * gc.c: Call GC_unregister_disappearing_link() on all links when
18535         finalizing them, this is necessary to aviod a crash in boehm's
18536         finalize handler.
18537
18538 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18539
18540         * gc.c: handle GetTarget for finalized objects spotted and fixed by
18541         nick@chemlab.org.
18542
18543 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
18544
18545         * icall.c: implemented MonoType::Module.
18546         * reflection.c, reflection.h: mono_module_get_object () from
18547         Tomi Pakarinen <tomi.pakarinen@welho.com>.
18548
18549 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18550
18551         * icall.c: ignore overridden methods in GetMethods ().
18552         Fix for FieldInfo::SetValue().
18553         * object.c: handle float/double in runtime invoke.
18554
18555 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18556
18557         * object.c: allow a constructor to be called again on an object.
18558
18559 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18560
18561         * class.h, class.c: move field layout code to it's own function and
18562         export it. Get an interface id earlier. Move fields in MonoClass
18563         so they are more cache friendly and align the bitfields.
18564         * loader.c: temporary handle get_param_names() for a runtime method.
18565         * reflection.c, reflection.h: more code to handle runtime creation of
18566         types.
18567
18568 2002-09-09  Martin Baulig  <martin@gnome.org>
18569
18570         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
18571         signature with the pinvoke field being set for the actual call.
18572
18573 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18574
18575         * icall.c: removed some unused icalls. Start of map of glib charsets
18576         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
18577
18578 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18579
18580         * debug-helpers.c: break infinite loop (found and fixed by
18581         Holger Arnold <harnold@gmx.de>).
18582
18583 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18584
18585         * icall.c: target may be null in create_delegate.
18586
18587 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18588
18589         * marshal.c: handle a boolean return type.
18590
18591 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18592
18593         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
18594
18595 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18596
18597         * gc.c: fix weakreferences.
18598
18599 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
18600
18601         * icall.c: added icall to get default codepage.
18602
18603 2002-09-03  Dick Porter  <dick@ximian.com>
18604
18605         * threads.h: 
18606         * threads.c: Use MonoThread instead of MonoObject where
18607         apropriate.
18608
18609         Store running thread objects in a hash table, so that we have all
18610         the info to hand when waiting for them to finish
18611         (means we don't need OpenThread() any more, so mingw builds should
18612         be fully functional again.)
18613
18614         * verify.c:
18615         * object.h: Added thread ID to MonoThread
18616
18617 2002-09-03  Martin Baulig  <martin@gnome.org>
18618
18619         * icall.c (System.Reflection.Assembly::get_location): New interncall.
18620
18621 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18622
18623         * icall.c: fixed leak in get_temp_path. Thanks lupus.
18624
18625 2002-09-03  Martin Baulig  <martin@gnome.org>
18626
18627         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
18628         argument to store the end address of the disassembled instruction.
18629
18630         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
18631         here from debug-symfile.h.
18632         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
18633         JIT into this struct.
18634         (MonoSymbolFile): Added `char *image_file' field.
18635         (MonoDebugGetMethodFunc): Removed.
18636         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
18637         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
18638         (mono_debug_find_method): New method.
18639
18640         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
18641         create a full symbol file.
18642         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
18643         and static symbol files.
18644         (mono_debug_find_method): The symbol file keeps an internal method hash,
18645         call this to get a MonoDebugMethodInfo from a MonoMethod.
18646
18647         * debug-symfile.[ch]: Removed.
18648
18649 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
18650
18651         * image.c (do_mono_image_open): Remove linker version check.
18652
18653 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
18654
18655         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
18656         wrappers for instance methods.
18657         
18658 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18659
18660         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
18661
18662 2002-08-28  Dick Porter  <dick@ximian.com>
18663
18664         * Makefile.am: Export HOST_CC for w32 builds
18665
18666 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18667
18668         * file-io.c process.c: MonoString are null terminated, no
18669         need for mono_string_to_utf16() anymore.
18670
18671 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18672
18673         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
18674
18675 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
18676
18677         * icall.c, reflection.h: speedup System.MonoType.
18678
18679 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18680
18681         * reflection.c: allow null as the value of a string argument in
18682         custom attributes constructors.
18683
18684 2002-08-27  Martin Baulig  <martin@gnome.org>
18685
18686         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
18687         `trampoline_address' field.
18688
18689 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
18690
18691         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
18692         check (fixes bug #29486) 
18693
18694 2002-08-27  Martin Baulig  <martin@gnome.org>
18695
18696         * debug-mono-symfile.c: Changed the file format in a way that allows us
18697         open it read-only and to use a specially malloced area for all the
18698         dynamic data.  We can now also generate a symbol file on-the-fly if we're
18699         debugging IL code and there is no MCS generated symbol file for it.
18700
18701 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18702
18703         * object.c: added a define for a good string and array
18704         creation speedup (not enabled by default because we need to deal with
18705         the synch stuff).
18706
18707 2002-08-26  Martin Baulig  <martin@gnome.org>
18708
18709         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
18710         function to create a dynamic symbol file.  This is used by the
18711         debugger to create a symbol file for IL code on-the-fly.
18712
18713 2002-08-26  Martin Baulig  <martin@gnome.org>
18714
18715         * loader.c (mono_lookup_pinvoke_call): Include the error message
18716         from g_module_error() in the error message.
18717
18718 2002-08-24  Martin Baulig  <martin@gnome.org>
18719
18720         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
18721         function to update the symbol file.  The symbol file is mmap()ed
18722         writable, but private.  This allows us to install the symbol file
18723         together with the assembly.
18724
18725 2002-08-24  Martin Baulig  <martin@gnome.org>
18726
18727         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
18728         but they can read the new symbol file format which mcs is now creating.
18729
18730         * debug-symfile.c (mono_debug_find_source_location): Moved to
18731         debug-mono-symfile.c; this is now operating on the new symbol file.
18732
18733 2002-08-23  Martin Baulig  <martin@gnome.org>
18734
18735         * debug-helpers.c (mono_method_desc_from_method): New function to get
18736         a MonoMethodDesc from a MonoMethod.
18737
18738 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18739
18740         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
18741         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
18742
18743 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18744
18745         * string-icalls.[ch]: make helper methods static.
18746
18747 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18748
18749         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
18750         types to it and to SetValueInternal.
18751
18752         * object.c: Moved handle_enum label to its proper place. This was the
18753         f... bug! ;-)
18754
18755         This time i compiled mcs and gtk-sharp and they both work.
18756
18757 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18758
18759         * icall.c: reverted partially my previous patch until 
18760         object.c:set_value handles enums correcly.
18761
18762 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18763
18764         * icall.c:
18765         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
18766         (ves_icall_System_Environment_get_MachineName): removed warning when
18767         compiling under cygwin.
18768
18769 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18770
18771         * object.c: fixed field_get_value() for reference types.
18772
18773 2002-08-22  Dick Porter  <dick@ximian.com>
18774
18775         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
18776         Don't free a buffer while it's still needed.  Patch from Jonathan
18777         Liger <Jonathan.liger@wanadoo.fr>
18778
18779 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
18780
18781         * icall.c (ves_icall_System_Environment_get_Platform): Add new
18782         internal call.
18783
18784 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
18785
18786         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
18787         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
18788
18789         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
18790         we call unmanaged code which throws exceptions.
18791
18792 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18793
18794         * appdomain.h: added per-domain entry_assembly.
18795         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
18796         arguments.
18797         * icall.c: Assembly::GetEntryAssembly icall.
18798         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
18799         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
18800
18801 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18802
18803         * appdomain.h, gc.c: added mono_domain_finalize ().
18804
18805 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18806
18807         * object.c:
18808         (mono_print_unhandled_exception): changed g_warning by g_printerr
18809         because g_log has a 1024 characters limit (yeah, i got a big stack
18810         trace). Don't print exception name, that should be in ToString 
18811         returned string.
18812
18813 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18814
18815         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
18816         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
18817
18818 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18819
18820         * object.c:
18821         (mono_print_unhandled_exception): after previous commit, i realized
18822         that MS calls ToString on the exception. I changed this function to
18823         do that. This way we get stack_trace for free.
18824
18825 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18826
18827         * object.c:
18828         (mono_print_unhandled_exception): invoke Message property instead of
18829         getting 'message' field from Exception. Don't allocate memory for
18830         'trace' and 'message' if not needed.
18831
18832 2002-08-18  Dick Porter  <dick@ximian.com>
18833
18834         * unicode.c: Fix asserts to match Encoder.cs checks
18835
18836 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18837
18838         * marshal.c: fix unaligned store issue and a few wrong
18839         opcode argument types.
18840
18841 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18842
18843         * icall.c: added GetUninitializedObjectInternal internal call.
18844
18845 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
18846
18847         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
18848         to the right domain.
18849
18850 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
18851
18852         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
18853
18854         * class.c (class_compute_field_layout): set blittable to false for Strings
18855
18856         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
18857
18858 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18859
18860         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
18861         first chunk of code to create types at runtime. Code to
18862         handle ReflectedType/DeclaringType. Make reflection handles
18863         domain specific.
18864
18865 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18866
18867         * class.c: set correct name in arrays.
18868
18869 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
18870
18871         * appdomain.c (mono_domain_transfer_object): make it work with
18872         valuetypes. bug fixes.
18873
18874 2002-08-12  Dick Porter  <dick@ximian.com>
18875
18876         * object.h: Rename some parameters to avoid c++ keywords (Patch
18877         from Joseph Wenninger <kde@jowenn.at>)
18878
18879 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
18880
18881         * icall.c: added icall to implement Assembly.GetFile*.
18882
18883 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18884
18885         * reflection.h, reflection.c: code to embed managed resources.
18886
18887 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18888
18889         * class.c: move all the type size stuff into
18890         class_compute_field_layout().
18891
18892 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18893
18894         * class.c: ensure enums have always the correct instance size.
18895         * unicode.c: remove wrong assert.
18896
18897 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18898
18899         * assembly.c: fix mem corruption issue.
18900         * image.h, image.c: added mono_image_get_resource () to access
18901         managed resources.
18902         * icall.c: implemented Assembly.EntryPoint property and some
18903         Managed Resources related internalcalls.
18904
18905
18906 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18907
18908         * image.c, image.h: impemented mono_image_get_entry_point ().
18909         * appdomain.c: use mono_image_get_entry_point.
18910
18911 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18912
18913         * reflection.c: support the object type argument when loading
18914         custom attributes.
18915
18916 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
18917
18918         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
18919         String as return type.
18920
18921 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
18922
18923         * reflection.c: fix encoding of named args for custom attrs to match
18924         the ms implementation. Read them back when instantiating custom
18925         attributes.
18926
18927 2002-08-02  Radek Doulik  <rodo@ximian.com>
18928
18929         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
18930         by Dietmar as quick fix
18931         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
18932         16 as stack size, used on more places as quick fix before Dietmar
18933         will fix it properly
18934
18935 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18936
18937         * object.h, object.c: added accessors for fields and properties.
18938
18939 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18940
18941         * class.c, class.h: made mono_class_get_field_from_name ()
18942         loop on parent types.
18943         Added mono_class_get_property_from_name ().
18944
18945 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18946
18947         * class.c, class.h: move the code to setup the type vtable in its own
18948         function so that it can be reused also for types created at runtime.
18949         Eliminate the "class" identifier from the header file.
18950         * reflection.c: setup the vtable for enums so that we can create
18951         objects for use in SetConstant ().
18952
18953 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
18954
18955         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
18956         instead of the delegate itself as this pointer (bug #28383)
18957
18958 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
18959
18960         * marshal.c (mono_marshal_get_managed_wrapper): added return type
18961         conversions.
18962
18963 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18964
18965         * loader.c: don't set the pinvoke bit on icalls.
18966
18967 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
18968
18969         * debug-helpers.c (mono_method_full_name): only print a number to
18970         indicate wrapper type (so that the output is more readable in traces).
18971
18972 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
18973
18974         * class.c (mono_class_init): include method override patch from Paolo
18975
18976 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
18977
18978         * icall.c: fixed GetTypeCode().
18979
18980 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
18981
18982         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
18983         use real delegate invoke function to make it work with multicast
18984         delegates (fix bug# 28291).
18985
18986 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18987
18988         * object.c: load constant strings.
18989
18990 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18991
18992         * reflection.c: no magic numbers.
18993         * tabledefs.h: security action enum.
18994
18995 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18996
18997         * assembly.c: fix possible memory corruption.
18998
18999 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19000
19001         * reflection.h, reflection.c: added support for linking resources.
19002         * verify.c: check we have an updated corlib.
19003
19004 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
19005
19006         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
19007         string arrays.
19008         (mono_marshal_string_array): null terminate unmanaged string arrays.
19009         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
19010
19011 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19012
19013         * icall.c: Type.GetType () can now return also types from the
19014         calling assembly.
19015
19016 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19017
19018         * loader.h, loader.c: stack walking support.
19019         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
19020         GetCallingAssembly.
19021
19022 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
19023
19024         * marshal.c: added optimisations for blittable types 
19025
19026         * class.c (mono_array_class_get): do not set blittable attribute on arrays
19027         (mono_class_setup_mono_type): set blittable attribute for single
19028         and double.
19029
19030         * marshal.c (mono_string_utf8_to_builder): impl.
19031         (mono_string_builder_to_utf8): impl.
19032         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
19033
19034 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
19035
19036         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
19037         (mono_marshal_get_managed_wrapper): impl. byref types
19038
19039 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19040
19041         * icall.c:
19042         (search_method): don't display debug message. 
19043
19044 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19045
19046         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
19047
19048 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19049
19050         * appdomain.c: set the missing filename when throwing exception.
19051
19052 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19053
19054         * metadata.c (mono_type_size): code cleanup
19055         (mono_type_stack_size): removed some test code
19056
19057 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
19058
19059         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
19060         mono_get_exception_file_not_found now.
19061
19062         * exception.c (mono_exception_from_name_two_strings): New version
19063         that will call a constructor with two string arguments. 
19064         (mono_get_exception_file_not_found): New helper routine, used to
19065         report file-not-found errors.
19066
19067 2002-07-20  Dick Porter  <dick@ximian.com>
19068
19069         * process.h:
19070         * process.c: Pass file handles to CreateProcess
19071         
19072         * icall.c:
19073         * file-io.h:
19074         * file-io.c: Implemented CreatePipe
19075
19076 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19077
19078         * metadata.c (mono_get_param_info): set alignment for value types
19079
19080 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19081
19082         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
19083         Constify mono_domain_assembly_open().
19084         * loader.c: handle null namespace in icalls.
19085
19086 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19087
19088         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
19089         (emit_str_to_ptr_conv): marshal object as structs
19090
19091         * metadata.c (mono_type_to_unmanaged): marshal object as structs
19092
19093         * marshal.c (mono_marshal_get_runtime_invoke): support value types
19094
19095 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
19096
19097         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
19098         (mono_marshal_get_native_wrapper): we an now return value types
19099
19100 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19101
19102         * verify.c: more checks implemented.
19103
19104 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
19105
19106         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
19107         (fix bug #27695)
19108         (mono_marshal_get_native_wrapper): allow byref arguments
19109         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
19110         impl. PtrToStringXXX methods
19111         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
19112         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
19113         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
19114         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
19115         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
19116
19117 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19118
19119         * reflection.c: fix buglet in parsing an assembly name.
19120
19121 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19122
19123         * marshal.c (emit_ptr_to_str_conv): first impl.
19124
19125 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19126
19127         * object.c, class.h: cache the vtable in the class as suggested by
19128         vargaz@freemail.hu (Zoltan Varga).
19129
19130 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19131
19132         * class.h, loader.c: added mono_field_from_token().
19133         * verify.c: first cut of type checking code.
19134
19135 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19136
19137         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
19138
19139 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
19140
19141         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
19142         (fix bug #27782)
19143         (mono_marshal_get_remoting_invoke): impl.
19144         (mono_delegate_begin_invoke): impl.
19145         (mono_mb_emit_save_args): impl.
19146         (mono_delegate_end_invoke): impl.
19147         (mono_marshal_get_delegate_begin_invoke):
19148         (mono_marshal_get_delegate_end_invoke):
19149         (mono_marshal_get_delegate_invoke): generate a special name for
19150         those methods (including the signature) and associate them whith
19151         the delegate class. 
19152
19153 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
19154
19155         * reflection.[ch]: 
19156         (mono_reflection_type_from_name): now it has a MonoImage parameter
19157         which is used as the default image to search the type in. If the image
19158         is NULL or getting the type from it fails, it defaults to corlib.
19159
19160         * icall.c: changed 1 call to mono_reflection_type_from_name to match
19161         new parameter.
19162
19163 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19164
19165         * reflection.c: update the parameter table index.
19166
19167 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19168
19169         * domain.c: don't include the mark byte in the string hash.
19170
19171 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19172
19173         * icall.cs: icall for Type.GetTypeCode ().
19174         * verify: a couple of fixes and disabled local initialization checks.
19175
19176 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
19177
19178         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
19179
19180         * debug-helpers.c (mono_method_full_name): print the type of the
19181         runtime wrapper
19182
19183         * metadata.c (mono_signature_hash): a hash function for signatures
19184         (mono_signature_hash): better hash algorithm
19185
19186         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
19187
19188         * debug-helpers.c (mono_method_full_name): this can now generate
19189         method names with signatures
19190
19191         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
19192         method dont have this pointers.
19193
19194 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19195
19196         * reflection.c: fixup typebuilder tokens.
19197         * image.c: fix buglet.
19198         * marshal.h: remove whitespace.
19199         * metadata.h, metadata.c: reinstate code that was removed.
19200         * verify.c: handle catch directives and fix another couple of bugs.
19201
19202 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
19203
19204         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
19205         (mono_marshal_get_native_wrapper): make it comp. with the old code
19206         (mono_marshal_get_native_wrapper): support boolean
19207         (mono_marshal_get_managed_wrapper): support more types
19208
19209 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
19210
19211         * class.c (class_compute_field_layout): compute class->blittable attribute.
19212
19213 2002-07-09  Dick Porter  <dick@ximian.com>
19214
19215         * threads.c: Make the thread cleaning up cope with threads that
19216         call ExitThread()
19217
19218 2002-07-08  Radek Doulik  <rodo@ximian.com>
19219
19220         * reflection.c (method_encode_code): use non-translated values to
19221         compute finally_start, this fixes exception handling on ppc, yay!
19222
19223         * decimal.h (struct signscale): fix endianess
19224
19225 2002-07-07  Radek Doulik  <rodo@ximian.com>
19226
19227         * reflection.c: swap box_val and not val
19228
19229 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19230
19231         * reflection.c, reflection.h: handle full assembly info in type name.
19232         Handle Type arguments when loading custom attributes.
19233         * icall.c: updated to use new mono_reflection_type_from_name () method.
19234
19235 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19236
19237         * loader.c:
19238         (method_from_memberref): also print assembly name when method not found.
19239
19240 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19241
19242         * icall.c:
19243         (ves_icall_TypeGetProperties): fixed bug #27473. 
19244
19245 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19246
19247         * reflection.c: display image name and token when cannot find the
19248         .ctor for an attribute.
19249
19250 2002-07-05  Martin Baulig  <martin@gnome.org>
19251
19252         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19253
19254 2002-07-04  Dick Porter  <dick@ximian.com>
19255
19256         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
19257         compile on mingw.  This will cause mingw builds to not wait for
19258         subthreads to terminate after the main thread does.  I've lodged a
19259         bug with the mingw developers for them to wrap OpenThread().
19260
19261 2002-07-03  Dick Porter  <dick@ximian.com>
19262
19263         * threads.c: Store thread IDs instead of handles, because
19264         GetCurrentThread() returns a pseudohandle and therefore stores
19265         useless values.  mono_thread_cleanup() continues checking the
19266         array of threads until it is empty, to cope with subthreads
19267         spawning new threads after the main thread has finished.
19268
19269         * profiler.h:
19270         * profiler.c:
19271         * profiler-private.h: Pass the thread ID to thread profiler
19272         functions, instead of a handle
19273
19274 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19275
19276         * verify.c: fixes to make it more usable.
19277         * pedump.c: added --verify code to verify IL code in an assembly.
19278
19279 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19280
19281         * reflection.c: turn errors into warnings to allow compiling corlib.
19282
19283 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19284
19285         * reflection.c: add special cases to compile corlib.
19286
19287 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19288
19289         * reflection.c: handle properties with only a set method.
19290
19291 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19292
19293         * opcodes.h: add enum with opcodes in opval order.
19294
19295 2002-07-01  Dick Porter  <dick@ximian.com>
19296         
19297         * object.h:
19298         * object.c (mono_runtime_run_main): Removed unneeded argument
19299
19300 2002-06-28  Martin Baulig  <martin@gnome.org>
19301
19302         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19303
19304 2002-06-27  Dick Porter  <dick@ximian.com>
19305
19306         * threads.c: Store the handle in both the parent thread and in the
19307         subthread, to minimise the time between starting a new thread and
19308         storing its ID.
19309
19310 2002-06-26  Dick Porter  <dick@ximian.com>
19311
19312         * appdomain.c (mono_runtime_cleanup): Close the socket library
19313         after all the threads have finished, not before
19314
19315 2002-06-26  Martin Baulig  <martin@gnome.org>
19316
19317         * debug-symfile.c (mono_debug_find_source_location): Added
19318         `guint32 *line_number' argument.  If it's not NULL, store the line number
19319         there and return the file name without the line number.
19320
19321 2002-06-25  Dick Porter  <dick@ximian.com>
19322
19323         * icall.c:
19324         * process.h:
19325         * process.c: Process forking and other support functions
19326
19327 2002-06-25  Dick Porter  <dick@ximian.com>
19328
19329         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
19330         things dont happen when the image is closed.
19331         (mono_image_lookup_resource): Walk the resource section looking
19332         for a particular entry
19333
19334         * cil-coff.h: PE resource section decoding
19335
19336 2002-06-25  Dick Porter  <dick@ximian.com>
19337         
19338         * assembly.h:
19339         * assembly.c: 
19340         (mono_assembly_foreach): Accessor functions to walk the list of
19341         loaded assemblies
19342         (mono_assembly_set_main):
19343         (mono_assembly_get_main): Process methods need to know which
19344         assembly is the "main" one
19345
19346         * object.c (mono_runtime_run_main): Record the main assembly
19347
19348         * debug-helpers.c: Fix typo
19349
19350 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
19351
19352         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
19353         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
19354
19355 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19356
19357         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
19358
19359 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
19360
19361         * image.c (do_mono_image_open): Initialize reference count,
19362         otherwise we leak the MonoImage.
19363
19364 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19365
19366         * reflection.c: small tweak to handle self-hosting.
19367
19368 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19369
19370         * reflection.c: fix type name parse code.
19371
19372 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19373
19374         * reflection.c: break out of the loop.
19375         * image.c: special case corlib.
19376
19377 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19378
19379         * reflection.c: add all the custom attrs at the end to ensure the
19380         ctors have been properly initialized when the attributes are defined
19381         in the current assembly.
19382
19383 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19384
19385         * reflection.c: handle correctly multiple-nested types.
19386
19387 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
19388
19389         * row-indexes.h: fix typos.
19390         * reflection.c: adjust for typos and fix method_def_or_ref
19391         encoding in MethodImpl table.
19392
19393 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19394
19395         * reflection.c: fix entry point patching (thanks Serge!).
19396
19397 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
19398
19399         * verify.c: add check for System.Exception
19400
19401 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19402
19403         * image.c, class.c: minifix for code just c&p'ed.
19404         * reflection.c: warning fix.
19405         * object.h, loader.h, domain.c: load also StringBuilder.
19406
19407 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19408
19409         * marshal.h, marshal.c: some support code to handle complex marshaling.
19410
19411 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19412
19413         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
19414         Better signatures with vtable error dump.
19415
19416 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
19417
19418         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
19419
19420 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
19421
19422         * icall.c (ves_icall_Type_GetField): impl.
19423
19424 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19425
19426         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
19427         to retrieve a marshal description blob for a field or param.
19428
19429 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19430
19431         * reflection.h, reflection.c: change order of nested type emission
19432         to avoid table corruption. The NestedTypes table is sorted.
19433         * icall.c: change order of GetConstructor results to workaround mcs bug.
19434
19435 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19436
19437         * reflection.h, reflection.c: handle field and param marshal
19438         information.
19439
19440 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19441
19442         * icall.c, marshal.c marshal.h: more Marshal class implementation.
19443
19444 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19445
19446         * reflection.c: fix call convention.
19447
19448 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19449
19450         * reflection.h, reflection.c: mono_image_get_memberref_token()
19451         takes a type instead of a class, now. Added
19452         mono_image_get_array_token() to create tokens for the special
19453         multi-dim array methods.
19454
19455 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19456
19457         * assembly.c: handle modules (no assembly table). Split
19458         loading references in its own function.
19459         * class.c: handle moduleref resolution scope.
19460         * image.c, image.h: cache module name in image.
19461
19462 2002-06-07  Martin Baulig  <martin@gnome.org>
19463
19464         * reflection.c (mono_image_get_type_info): Only add a class layout entry
19465         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
19466
19467 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19468
19469         * icall.c: more signature fixes that used uint instead of int.
19470
19471 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19472
19473         * reflection.c: fixed signature of field refs.
19474
19475 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19476
19477         * class.c, reflection.c: handle typerefs of nested types
19478         (both on read and when writing files).
19479
19480 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
19481
19482         * icall.c: fix method signatures that tried to workaround the previous
19483         typo, d'oh!
19484
19485 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19486
19487         * debug-helpers.c: fix typo.
19488
19489 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19490
19491         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
19492         rewrote the PE/COFF writing code (our programs are understood by the
19493         ms runtime, now).
19494
19495 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19496
19497         * gc.c, gc.h, icall.c: weakreference support.
19498
19499 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19500
19501         * Makefile.am, mono-config.c: use $(sysconfdir).
19502
19503 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19504
19505         * icall.c: changed default precision of Double.ToString() to 15.
19506         Fixed memory leak. Unified with Single.ToString.
19507
19508 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
19509
19510         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
19511
19512 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19513
19514         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
19515         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
19516         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
19517         and myself.
19518
19519 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19520
19521         * debug-symfile.c, sysmath.c: yet more compilation fixes.
19522
19523 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19524
19525         * reflection.c, socket-io.c: more compilation fixes.
19526
19527 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19528
19529         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
19530         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
19531         unicode.c: warning and compiler compatibility fixes.
19532
19533 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19534
19535         * class.h, metadata.c: fixed warnings/compilation errors.
19536
19537 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19538
19539         * Makefile.am, mono-config.c, mono-config.h: configuration file
19540         support routines.
19541         * loader.c, loader.h: make Dll mapping configurable at runtime in the
19542         config file. Export methods to insert and lookup mappings.
19543
19544 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19545
19546         * reflection.c: handle types and boxed objects in custom attr
19547         constructors.
19548
19549 2002-05-30  Martin Baulig  <martin@gnome.org>
19550
19551         * debug-symfile.c
19552         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
19553
19554 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
19555
19556         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
19557         to lookup the implmap row for a P/Invoke method.
19558         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
19559         P/Invoke method from the runtime on an as needed basis.
19560
19561 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
19562
19563         * metadata.c (mono_metadata_parse_signature): impl.
19564
19565 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19566
19567         * class.c: handle .pack directive.
19568
19569 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19570
19571         * object.c: initialize static fields with RVA data.
19572
19573 2002-05-25  Martin Baulig  <martin@gnome.org>
19574
19575         * debug-symfile.c
19576         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
19577
19578 2002-05-24  Martin Baulig  <martin@gnome.org>
19579
19580         * debug-symfile.c
19581         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
19582         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
19583         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
19584
19585 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19586
19587         * object.c: special case string ctros in invoke.
19588         * gc.c: silly whitespace changes.
19589
19590 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
19591
19592         * threadpool.[ch]: impl. a threadpool that can
19593         be used by mint and mono.
19594
19595 2002-05-22  Martin Baulig  <martin@gnome.org>
19596
19597         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
19598         The first argument is now a `MonoReflectionModuleBuilder *', the return
19599         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
19600         `methods' field to get the method builder.  The `token' argument is the
19601         unfixed token.
19602
19603         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
19604         invalid characters instead of g_assert_not_reached()ing.  This seems
19605         to be the behaviour of mscorlib.
19606
19607 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
19608
19609         * object.c (mono_runtime_invoke_array): applied patch from Rachel
19610         Hestilow to fix bug #25104
19611
19612 2002-05-21  Martin Baulig  <martin@gnome.org>
19613
19614         * debug-symfile.c (mono_debug_find_source_location): New function.
19615         Looks up an IL offset in the line number table and returns the source
19616         location as a string.
19617
19618 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19619
19620         * icall.c:
19621         (mono_double_ToStringImpl): changed %f by %g until we have something
19622         better.
19623
19624 2002-05-21  Nick Drochak  <ndrochak@gol.com>
19625
19626         * icall.c : Use different name for Math.Pow's icall.  Needed to check
19627         parameters first in C#.
19628
19629 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19630
19631         * icall.c, reflection.h: added icall to get info about an event.
19632
19633 2002-05-20  Radek Doulik  <rodo@ximian.com>
19634
19635         * object.c (mono_value_box): don't use memcpy for boxing on BIG
19636         endian
19637         (mono_value_box): don't use memcpy for small sizes on
19638         architectures with unaligned access
19639
19640 2002-05-20  Martin Baulig  <martin@gnome.org>
19641
19642         * reflection.c (mono_reflection_setup_internal_class): Don't crash
19643         if `tb->parent == NULL'.
19644         (mono_reflection_create_internal_class): New function.  This is
19645         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
19646         for enum types.
19647
19648         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
19649         New interncall.
19650
19651 2002-05-19  Martin Baulig  <martin@gnome.org>
19652
19653         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
19654         argument to get the length, don't default to the array length.
19655
19656 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
19657
19658         * assembly.c (mono_assembly_setrootdir): New function used to
19659         override the MONO_ASSEMBLIES directory.
19660
19661 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19662
19663         * icall.c: ValueType_GetHashCode() initialize local var.
19664
19665 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19666
19667         * reflection.c: sort custom attributes table.
19668
19669 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19670
19671         * reflection.c: support named args in custom attributes (write support).
19672
19673 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19674
19675         * reflection.c: fix finally position calculation.
19676
19677 2002-05-15  Radek Doulik  <rodo@ximian.com>
19678
19679         * reflection.c: fixed endianess at many places
19680
19681         * icall.c (ves_icall_InitializeArray): comment out debug msg
19682
19683 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
19684
19685         * object.c (mono_unhandled_exception): new function to handle
19686         unhandled exceptions.
19687         (mono_unhandled_exception): call the UnhandledException event.
19688         (mono_runtime_delegate_invoke): impl.
19689
19690 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
19691
19692         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
19693         returns the RVA, not the direct pointer to the data. Handle the case
19694         when the class size is fixed.
19695
19696 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19697
19698         * reflection.c: fix some endianess issues.
19699
19700 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
19701
19702         * object.c (mono_runtime_invoke): is now able to catch exceptions.
19703
19704         * threads.c (mono_thread_init): added a callback which is invoked
19705         at thread start.
19706
19707 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19708         
19709         * icall.c: make GetHashCode return non-negative values.
19710
19711 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19712
19713         * object.c, icall.c, gc.c: revert to address-based hashcode.
19714
19715 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
19716
19717         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
19718
19719 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19720
19721         * icall.c, class.c: special case <Module>.
19722
19723 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
19724
19725         * icall.c: fix bug in GetNow().
19726
19727 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
19728
19729         * object.c (mono_runtime_class_init): make sure that we call all
19730         static class constructors.
19731
19732 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19733
19734         * reflection.c: sort methodsemantics table.
19735
19736 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19737
19738         * reflection.h, reflection.c: honour init locals setting.
19739
19740 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
19741
19742         * icall.c: copied Double ToStringImpl for Single ToStringImpl
19743
19744 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19745
19746         * reflection.c: support ContructorBuilders in attribute blob creation.
19747
19748 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19749
19750         * reflection.c: some changes to build a binary that can be run
19751         directly in windows.
19752
19753 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19754
19755         * loader.c: print a big message when an icall can't be found.
19756
19757 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19758
19759         * string-icalls.c: fix bug 24248.
19760
19761 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19762
19763         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
19764         icall.c, reflection.h: separate assembly loading by pathname and by
19765         assembly name. Use the MONO_PATH env var to search for assemblies.
19766
19767 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19768
19769         * assembly.c, image.h: add some support for assemblies
19770         with multiple modules.
19771         * class.c, class.h: export mono_class_from_typeref().
19772         * loader.c: remove duplicated code and use mono_class_from_typeref(),
19773         instead.
19774
19775 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19776
19777         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
19778         documentation says (the ECMA one is correct).
19779
19780 2002-05-02  Dick Porter  <dick@ximian.com>
19781
19782         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
19783         Don't name the synchronisation mutex.
19784
19785 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
19786
19787         * rand.c
19788         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
19789         Make the prototypes match.
19790         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
19791         Same.
19792
19793         * icall.c
19794         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
19795         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
19796         all systems have tm.tm_zone, so use strftime() with %Z to print
19797         the timezone abreviation into a temp string.
19798
19799         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
19800         rather than mono_array_addr() on a MonoString on Big Endian
19801         machines.
19802
19803 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
19804
19805         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
19806         fix bug 24041
19807
19808 2002-04-30  Dick Porter  <dick@ximian.com>
19809
19810         * socket-io.c: Cope with SOCKET being an integer rather than a
19811         pointer now.
19812
19813         * threads.c: Added Thread_free_internal, to deal with thread
19814         handle cleanup.  Moved calls to handle_store() and handle_remove()
19815         to start_wrapper(), so each can only be called once.  Allocate
19816         synchronisation blocks with GC_malloc(), and use GC finalisation
19817         to close the handles.
19818
19819         * icall.c: added System.Threading.Thread::Thread_free_internal
19820
19821 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19822
19823         * icall.c: support Environment.Exit, CommandLineArgs().
19824
19825 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19826
19827         * object.c, object.h: added mono_runtime_run_main () and
19828         mono_runtime_get_main_args () for use in System.Environment.
19829
19830 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19831
19832         * gc.c: fix thinko, enable actual finalization since the jit is now
19833         fixed.
19834
19835 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19836
19837         * gc.c, object.c: take into account that an object may be offset wrt the address
19838         returned by GC_malloc().
19839
19840 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
19841
19842         * image.c: handle files without entries in the assembly table (modules).
19843
19844 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
19845
19846         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
19847         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
19848         allowed to be null when it's System.Object class setup.
19849
19850 2002-04-27  Martin Baulig  <martin@gnome.org>
19851
19852         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
19853         if `tb->parent == NULL' rather than crashing.
19854
19855 2002-04-28  Nick Drochak  <ndrochak@gol.com>
19856
19857         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
19858         calling acos() where asin() should have been called.
19859
19860 2002-04-26  Martin Baulig  <martin@gnome.org>
19861
19862         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
19863         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
19864         there's a subdirectory called `System', but we don't want to read that
19865         subdirectory as an assembly.
19866
19867 2002-04-25  Martin Baulig  <martin@gnome.org>
19868
19869         * debug-symfile.c: Reflect latest MonoString changes.
19870
19871 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19872
19873         * rand.c, rand.h: instance method icalls need to have an explicit
19874         this pointer as first argument in the C implementation.
19875
19876 2002-04-25  Nick Drochak <ndrochak@gol.com>
19877
19878         * icall.c: Fix typo in map for GetNonZeroBytes
19879
19880 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19881
19882         * string-icalls.c : String does now passes unit tests without any 
19883         errors, the following changes has been made:
19884         
19885         Implemented replace methods.
19886         Renaming of methods to (try) follow the standard.
19887         Fixed compare ordinal
19888         Made all memory allocated directly to function instead of via icall function.
19889         Small performance fix in is_in_array function
19890                         
19891  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
19892
19893         c (mono_string_Internal_ctor_charp_int_int):
19894         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
19895         sindex < 0, throw ArgumentOutOfRangeException instead of
19896         ArgumentNullException.
19897
19898         Added new check for length == 0, however
19899         I need to make it return String.Empty from the C code.
19900         
19901         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
19902         that calculate the length for us here.
19903         
19904         (mono_string_Internal_ctor_sbytep_int_int): Replaced
19905         mono_string_new_utf16 with mono_string_new, since value is utf8.
19906
19907 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19908
19909         * object.c: register the object for finalization if needed.
19910         Allocate one more char in the string for the terminating 0 char.
19911
19912 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19913
19914         * class.c, class.h, image.c: check if a type implemenst a destructor.
19915         Use the proper key for array class lookups.
19916         * icall.c: register the icalls in the System.GC class.
19917         * gc.c, gc.h: GC-related functions and icalls.
19918
19919 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19920
19921         * icall.c:
19922         * socket-io.c:
19923         * unicode.c: free some strings gotten from mono_string_to_utf8 and
19924         changed a couple of free () by g_free ().
19925
19926         * decimal.c: one-liner in the comments for decimal2string ().
19927
19928 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19929
19930         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
19931
19932 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19933
19934         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
19935         * object.c (mono_runtime_invoke_array) : handle null in params
19936
19937 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19938
19939         * string-icalls.c: fixed bug in split (one off bug)
19940
19941 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19942
19943         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
19944         * icalls.c: added String::Equals as internal method
19945
19946 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19947
19948         * threads.c: fixed bug in the double interlocked functions
19949
19950 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
19951
19952         * threads.c: implemented all of the new interlocked icalls.
19953         * string-icalls.c: fix a bug in insert.
19954         * icalls.c: added the icalls for interlocked, removed old string functions.
19955         
19956 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19957
19958         * loader.c: fix off-by-one error when reading argument names.
19959
19960 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19961
19962         * profiler.c: win32 counter implementation (untested).
19963         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
19964         (the latter needs testing and more complete impl. from win32 folks).
19965
19966 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
19967
19968         * object.c: mono_array_new_full workaround mono_array_class_get
19969         problem.
19970
19971 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19972
19973         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
19974         * object.h (mono_string_chars): Changed casting type.
19975
19976 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19977
19978         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
19979                            method signatures to use gunichar2 instead of gint16.
19980
19981 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
19982
19983         * object.h, object.c: domain-specific versions of mono_object_new and
19984         mono_array_new.
19985
19986 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
19987
19988         * object.c: changed String layout
19989
19990         * string-icalls.c (mono_string_Internal_ctor_chara): added
19991         internal string constructors.
19992
19993 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
19994
19995         * threads.c: pass 'this' to the thread start routine.
19996
19997 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19998
19999         * string-icalls.c: fix IndexOf and LastIndexOf. Now
20000         InternalCompareStr don't call twice mono_string_cmp_char for the last
20001         character. Improved performance in mono_string_cmp_char.
20002
20003 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20004
20005         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
20006         code into its own library: libmonoruntime.
20007
20008 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
20009
20010         * object.h, object.c: changed array format so that szarrays do not
20011         require a bounds structure.
20012         * icall.c, appdomain.c: support for new szarray format.
20013
20014 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20015
20016         * metadata.c: compare also the retuns type when comparing signatures:
20017         we didn't do this as an optimization since really overloaded methods
20018         must differ also in the arguments, but this doesn't work with
20019         low-level IL code (or when using explicit conversion operators: see
20020         bug#23498 for an example).
20021
20022 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20023
20024         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
20025
20026 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
20027
20028         * icall.c: make MonoType::GetElementType its own icall.
20029
20030 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20031
20032         * icall.c: remove MonoMethod_get_Name().
20033         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
20034         object.
20035
20036 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20037
20038         * string-icalls.c: optimized a few methods.
20039
20040 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20041
20042         * icall.c: added all new string internal calls
20043         * string-icalls.c: added, new string internal call implementation.
20044         * object.c: added mono_string_new_size for allocating a string a size
20045
20046 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
20047
20048         * object.c (mono_object_isinst): use the same code as in the
20049         optimized x86 version.
20050
20051 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20052
20053         * profiler.c: TSC-based timer code (faster and more accurate).
20054         Not hooked up in configure, yet (set USE_X86TSC to 1).
20055
20056 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
20057
20058         * profiler.c, profiler.h: track time spent compiling methods.
20059         * threads.c: track thread creation/destruction.
20060
20061 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
20062
20063         * profiler.c, profiler.h, profiler-private.h: profiling interface
20064         and sample implementation. Moved here so that it can be used also by
20065         the jit.
20066
20067 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
20068
20069         * reflection.c, reflection.h: keep types and other handles separate in
20070         the hash tables for referred tokens. Add guid for modules.
20071
20072 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20073
20074         * assembly.c: fix bugs found with valgrind.
20075         * metadata.h, metadata.c: added mono_metadata_guid_heap().
20076
20077 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
20078
20079         * threads: added icall support for getting current domain for
20080                    the thread.
20081  
20082 2002-04-13  Martin Baulig  <martin@gnome.org>
20083
20084         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
20085         (MonoDebugVarInfo): Added `index' field for register based addresses.
20086         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
20087         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
20088         `MonoDebugVarInfo *params' and `guint32 this_offset' with
20089         `MonoDebugVarInfo *this_var'.
20090
20091         * debug-symfile.c (relocate_variable): New static function to write
20092         a location description for a local variable or method parameter.
20093
20094 2002-04-12  Martin Baulig  <martin@gnome.org>
20095
20096         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
20097         stack offset and begin/end scope address of a local variable.
20098         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
20099         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
20100         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
20101
20102         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
20103         Added new relocation types for start/end scope of a local variable.
20104
20105 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20106
20107         * object.h: add mono_object_domain() macro.
20108         * reflection.c: handle typespecs.
20109         * icall.c: MonoMethod::get_Name() implementation.
20110
20111 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20112
20113         * icall.c: String::GetHashCode() icall implementation.
20114
20115 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20116
20117         * icall.c: String::IndexOfAny icall.
20118         * object.c, object.h: make array->max_length more useful.
20119         Intrduced mono_object_class() and mono_string_length() macros.
20120
20121 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20122
20123         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
20124         instead of g_unichar_isdigit.
20125
20126 2002-04-11  Nick Drochak  <ndrochak@gol.com>
20127
20128         * icall.c: Implement a simple Double.ToString().
20129
20130 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20131
20132         * appdomain.h: only io-layer.h is supposed to be included.
20133         * icall.c: explicitly import environ. Fix warning.
20134
20135 2002-04-10  Nick Drochak  <ndrochak@gol.com>
20136
20137         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
20138                 return true even if it's not Daylight Savings time.
20139                 Only return false for the case where the function isn't
20140                 implemented for a plaform (read Windows).
20141
20142 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20143
20144         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
20145         data with a mutex.
20146
20147 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
20148
20149         * mempool.c (mono_mempool_alloc): only use g_malloc when
20150         absolutely necessary.
20151
20152 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20153
20154         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
20155
20156         * class.c (mono_class_vtable): use domain mempool to allocate vtable
20157         (mono_class_proxy_vtable): use domain mempool
20158
20159 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20160
20161         * appdomain.h, appdomain.c: split initialization that requires the
20162         execution engine support into mono_runtime_init().
20163
20164 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20165
20166         * class.c (mono_class_init): don't include vtable inside MonoClass
20167         to save some memory, gather some statistics.
20168         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
20169
20170 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20171
20172         * icall.c: internalcall implementation for ValueType.Equals().
20173
20174 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
20175
20176         * object.c (mono_message_init): moved 
20177         (mono_runtime_exec_main): new arch. independent impl.
20178         (mono_runtime_invoke_array): new method - like
20179         mono_runtime_invoke, but you can pass an array of objects.
20180         (mono_remoting_invoke): new arch. independent impl.
20181         (mono_message_invoke): new arch. independent impl.
20182         (mono_runtime_class_init): new arch. independent impl.
20183         (mono_runtime_object_init): new arch. independent impl.
20184
20185 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20186
20187         * metadata.c, object.c, reflection.c: documented the exported
20188         functions.
20189
20190 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
20191
20192         * icall.c: simpler code to pass the assembly builder data to corlib.
20193         Implement GetNestedTypes() internalcall.
20194
20195 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20196
20197         * class.c: warn if a type can't be loaded.
20198
20199 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
20200
20201         * image.h: typedef MonoImageOpenStatus
20202         * types.h: removed unused file
20203         
20204 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
20205
20206         * icall.c: Enum_ToObject accepts enum value arguments.
20207
20208 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20209
20210         * class.c: move initialization of properties, events and nested
20211         classes, so that they happen for interfaces, too.
20212
20213 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20214
20215         * icall.c: cleanup some ugly casts in Array_SetValue*.
20216
20217 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20218
20219         * icall.c: the values array fro enums is of the correct type, now.
20220         Implement (correctly) getFullName instead of assQualifiedName for
20221         MonoType.
20222         * reflection.h, reflection.c: added mono_type_get_name ().
20223
20224 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20225
20226         * assembly.c, image.h: for each MonoImage, record from wich assembly
20227         it was loaded.
20228         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
20229         Make Type.Assembly work.
20230
20231 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
20232
20233         * debug-symfile.h: use char* instead of gpointer to avoid
20234         unnecessary casts.
20235
20236         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
20237
20238         * icall.c (ves_icall_InternalExecute): impl. FielSetter
20239         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
20240
20241 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
20242
20243         * icall.c (mono_message_init): impl. (code cleanup)
20244         (ves_icall_InternalExecute): impl. FieldGetter
20245
20246         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
20247         defined we call all (non-static)methods through the vtable. 
20248
20249 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
20250
20251         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
20252         finalizer even though the memory is still referenced (and the chunk of
20253         memory is not freed).
20254
20255 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
20256
20257         * assembly.c: fix brokeness.
20258
20259 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
20260
20261         * class.c: kill some warnings. Check explicit interface method
20262         implementation also without considering the namespace.
20263         Load also literal strings in static class data.
20264
20265 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
20266
20267         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
20268         (default_assembly_name_resolver): Make the resolver take the
20269         "base" directory where the assembly was originally defined, so we
20270         can load DLLs that are in the same directory as the assembly that
20271         is being referenced.
20272
20273 2002-03-28  Dick Porter  <dick@ximian.com>
20274
20275         * file-io.h: 
20276         * file-io.c:
20277         * socket-io.c: 
20278         * unicode.h: 
20279         * unicode.c: Warning cleanups
20280
20281 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
20282
20283         * object.h, reflection.h: use the correct type instead of MonoObject.
20284
20285 2002-03-28  Martin Baulig  <martin@gnome.org>
20286
20287         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
20288         (mono_debug_update_symbol_file): Initialize classes if necessary.
20289
20290 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
20291
20292         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
20293         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
20294
20295 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
20296
20297         * assembly.h: fix function prototype.
20298         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
20299         * mono-endian.h: use const cast.
20300
20301 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20302
20303         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
20304
20305 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20306
20307         * loader.c: don't assert when a typeref can't be loaded, give
20308         a chance to the runtime to trow an exception instead.
20309         * loader.h: fix warning.
20310
20311 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20312
20313         * class.c (mono_class_proxy_vtable): added proxy support
20314
20315 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
20316
20317         * icall.c: removed last of PAL calls, added System.Environment
20318         * file-io.h, file-io.c: MonoIO implementation
20319         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
20320
20321 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20322
20323         * appdomain.c: do not use the byte marker in ldstr table lookup.
20324         * debug-helpers.c: allow two ':' to separate class and method name.
20325         * object.c: allocate arrays bounds with the GC, too.
20326         * verify: add a few more checks.
20327
20328 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
20329
20330         * reflection.c: output also literal strings. Allocate parameter data
20331         with GC_malloc() (thanks, Martin, for catching this!).
20332
20333 2002-03-26  Martin Baulig  <martin@gnome.org>
20334
20335         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
20336         include the `this' offset in the `param_offsets'.
20337
20338 2002-03-25  Martin Baulig  <martin@gnome.org>
20339
20340         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
20341         mono_debug_get_class() function to get the classes. Added new
20342         relocation types for arrays and strings.
20343         (mono_debug_get_class): New static function to search in all
20344         referenced assemblies for a metadata token.
20345
20346         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
20347
20348 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
20349
20350         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
20351         hold gc-allocated objects. Make the string heap a stream like the
20352         others. Removed duplicated code when writing stream info.
20353         Added asserts to catch possible buffer overflows. Set the sorted map
20354         for tables that need sorting. Added some documentation.
20355
20356 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
20357
20358         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
20359         for interned strings and vtables.
20360
20361 2002-03-24  Martin Baulig  <martin@gnome.org>
20362
20363         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
20364         it in the array since it was created with g_slist_prepend().
20365
20366 2002-03-24  Martin Baulig  <martin@gnome.org>
20367
20368         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
20369         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
20370         (mono_debug_method_from_token): Renamed to
20371         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
20372         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
20373
20374         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
20375         relocation types.
20376
20377         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
20378
20379 2002-03-24  Martin Baulig  <martin@gnome.org>
20380
20381         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
20382         (mono_debug_method_from_token): New func.
20383
20384         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
20385         New interncall, calls mono_debug_local_type_from_signature().
20386         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
20387         calls mono_debug_method_from_token().
20388
20389 2002-03-23  Martin Baulig  <martin@gnome.org>
20390
20391         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
20392         specifies the number of bytes to be converted, not the array size.
20393         Return the number of chars, not the number of bytes.
20394         (ves_icall_iconv_get_chars): The `byteCount' argument
20395         specifies the number of bytes to be converted, not the array size.
20396
20397 2002-03-23  Martin Baulig  <martin@gnome.org>
20398
20399         * reflection.h (MonoReflectionSigHelper): New type.
20400
20401         * reflection.c (mono_reflection_sighelper_get_signature_local),
20402         (mono_reflection_sighelper_get_signature_local): New functions.
20403
20404         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
20405         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
20406         interncalls.
20407
20408 2002-03-23  Martin Baulig  <martin@gnome.org>
20409
20410         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
20411         is_writeable is set.
20412         (mono_raw_buffer_update): New function to write the modified map
20413         back to disk.
20414
20415         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
20416
20417         * debug-symfile.c (mono_debug_update_symbol_file): Call
20418         mono_raw_buffer_update() when done writing.
20419
20420 2002-03-23  Martin Baulig  <martin@gnome.org>
20421
20422         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
20423
20424         * debug-symfile.c: Added support for arguments and local variables.
20425
20426 2002-03-23  Dick Porter  <dick@ximian.com>
20427
20428         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
20429         protected by ifdefs, hence breaking the w32 build.
20430
20431 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20432
20433         * object.c: implement is_interned() the right way.
20434
20435 2002-03-21  Martin Baulig  <martin@gnome.org>
20436
20437         * debug-symfile.[ch]: New files to handle debugging information
20438         files. There's also support to dynamically update these symbol
20439         files to include machine dependent information.
20440
20441 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
20442
20443         * threads.c (mono_thread_create): new function to create thread
20444         from C
20445
20446 2002-03-20  Martin Baulig  <martin@gnome.org>
20447
20448         * icall.c (ves_icall_InternalInvoke): Create a new object if the
20449         method is a constructor.
20450         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
20451         points to ves_icall_InternalInvoke().
20452
20453 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
20454
20455         * file-io.c: Flush shouldn't throw exceptions.
20456
20457 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
20458
20459         * file-io.c: FileStream flush support; FileSetLength now
20460         restores file pointer.
20461
20462 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
20463
20464         * class.c: set image for pointer classes.
20465
20466 2002/03/19  Nick Drochak <ndrochak@gol.com>
20467
20468         * sysmath.c: Forgot one.
20469
20470 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
20471
20472         * sysmath.c: Avoid redefining existing names.
20473
20474 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
20475
20476         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
20477         handled by runtime as icall rather than dllimport from libm.so
20478         * file-io.c, file-io.h: fixed handle argument type.
20479
20480 2002-03-18  Dick Porter  <dick@ximian.com>
20481
20482         * reflection.c (mono_image_get_type_info): rename interface to
20483         iface, because of "#define interface struct" on windows.
20484
20485 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
20486
20487         * class.c, class.h: rename and export mono_ptr_class_get().
20488         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
20489         * reflection.c, reflection.h, icall.c: better/saner type name
20490         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
20491         method signatures.
20492
20493 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
20494
20495         * class.c (mono_class_init): removed hardcoded GHC_SLOT
20496
20497         * icall.c (ves_icall_InternalInvoke): impl.
20498
20499 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20500
20501         * reflection.c: output the interface map table, too.
20502
20503 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
20504
20505         * class.c (class_compute_field_layout): separate computation of 
20506         static field layout
20507
20508 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
20509
20510         * icall.c: added System.Buffer support.
20511         * file-io.c: moved file icalls from PAL to FileStream.
20512
20513 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
20514
20515         * icall.c (ves_icall_System_Object_GetHashCode): impl.
20516
20517 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
20518
20519         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
20520
20521 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20522
20523         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
20524
20525 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
20526
20527         * debug-helpers.{c,h}: moved here from monograph some useful functions
20528         to locate a method by name/signature in a class or image. Included
20529         also a small and flexible IL disassembler.
20530
20531 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20532
20533         * reflection.c: fixup tokens in methods with small header size, too.
20534
20535 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
20536
20537         * object.c (mono_string_to_utf8): remove assert(!error), instead
20538         print a warning. 
20539
20540 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
20541
20542         * icall.c: update to the new mono_Array_class_get interface.
20543
20544 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
20545
20546         * appdomain.c, object.c: Boehm-GC enable.
20547         * icall.c: make get_data_chunk() support split data requests.
20548         Ensure a class is initialized in more cases. Return only the first
20549         property found in GetProperties() or the compiler gets confused. 
20550         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
20551         * reflection.h, reflection.c: add fixup mechanism for field and method
20552         tokens. Initialize assembly->typeref in a single place. Output
20553         properties after events. Support custom attributes for events, too.
20554         Typo fix for paramter custom attrs.
20555
20556 2002-03-07  Martin Baulig  <martin@gnome.org>
20557
20558         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
20559
20560 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
20561
20562         * class.c (mono_array_class_get): fix. for multi. dim. arrays
20563
20564 2002-03-06  Martin Baulig  <martin@gnome.org>
20565
20566         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
20567         non-zero lower bounds. See testcases #F10-#F13.
20568
20569 2002-03-05  Martin Baulig  <martin@gnome.org>
20570
20571         * exception.c (mono_get_exception_argument_out_of_range): New exception.
20572
20573         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
20574         ves_icall_System_Array_GetValue(), only calculate the absolute array position
20575         here.
20576         (ves_icall_System_Array_SetValue): Likewise.
20577         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
20578         as argument and does the actual work. This function is used when copying a
20579         multi-dimensional array.
20580         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
20581         now do all the widening conversions of value types.
20582         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
20583
20584 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20585
20586         * class.c: remove some magic numbers and use the smbolic names,
20587         instead. Added init_events() to load event info at class init time.
20588         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
20589         and mono_metadata_methods_from_event().
20590         * reflection.h, reflection.c: added support for writing out the evnets
20591         related information.
20592
20593 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
20594
20595         * reflection.h, icall.c: use a different method (GetInterfaces)
20596         to gather interface info and add isbyref, isprimitive and
20597         ispointer to the ves_icall_get_type_info() return value.
20598
20599 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
20600
20601         * class.h: stared adding support for events.
20602         * icall.c: split find_members implementation. Added debug icall to get
20603         the address of an object.
20604         * reflection.c: handle TypeBuilders in mono_type_get_object().
20605
20606 2002-03-01  Martin Baulig  <martin@gnome.org>
20607
20608         * icall.c (ves_icall_System_Array_GetLength): This must throw an
20609         ArgumentOutOfRangeException(), not an ArgumentException().
20610         (ves_icall_System_Array_GetLowerBound): Likewise.
20611         (ves_icall_System_Array_GetValue): Improved argument checking.
20612         (ves_icall_System_Array_SetValue): Improved argument checking.
20613
20614 2002-03-01  Martin Baulig  <martin@gnome.org>
20615
20616         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
20617         called with invalid arguments rather than just dying with g_assert().
20618         (ves_icall_System_Array_SetValue): Likewise.
20619         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
20620         raise a NotImplementedException instead.
20621         (ves_icall_System_Array_GetLength): Added argument checking.
20622         (ves_icall_System_Array_GetLowerBound): Added argument checking.
20623
20624 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
20625
20626         * object.h (mono_assert): new macros mono_assert and
20627         mono_assert_not_reached
20628
20629 2002-02-28  Martin Baulig  <martin@gnome.org>
20630
20631         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
20632         and "System::String::IsInterned" to "System::String::_IsInterned".
20633
20634 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
20635
20636         * icall.c: remove hacks for typebuilder. Added icall to create a
20637         modified type from a tybebuilder.
20638         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
20639         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
20640         to create a backing MonoClass for a TypeBuilder.
20641
20642 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20643
20644         * class.c, class.h: more refactoring of class init.
20645         Export mono_class_setup_mono_type() and mono_class_setup_parent().
20646
20647 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
20648
20649         * marshal.c, marshal.h: start of marshaling interface.
20650
20651 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
20652
20653         * icall.c: fix order in assembly qualified name icall.
20654
20655 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
20656
20657         * class.c: do not free str, since we store it in the hash table.
20658         * reflection.h: add label field to MonoILExceptionInfo.
20659         * reflection.c: handle references to more than one assembly. Handle
20660         case when there isn't a module created in the assembly.
20661
20662 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20663
20664         * class.c: Fix typo. Start refactoring of class init code.
20665
20666 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20667
20668         * appdomain.c: exit with 1 on error.
20669         * class.c: we already have the name in MonoClassField.
20670         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
20671         MonoStreamHeader instead of an offset of image->raw_metadata.
20672
20673 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
20674
20675         * appdomain.c (mono_init): Be even more descriptive about the error.
20676
20677 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
20678
20679         * appdomain.c: give the user an informative message when corlib can't
20680         be loaded.
20681
20682 2002-02-26  Martin Baulig  <martin@gnome.org>
20683
20684         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
20685         New icall to get the time zone data.
20686
20687 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20688
20689         * reflection.c: set virtual and raw size of section correctly.
20690         * threads.c: transfer domain information to newly created threads.
20691
20692 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20693
20694         * class.c: when instancing a class in a domain, load the default
20695         vaules for static fields from the constant table. Fix System.Enum to
20696         not be an enum.
20697         * icall.c: implement Object::GetType() internalcall. Implemented
20698         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
20699         Fixed checking of binding flags in find_members().
20700         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
20701         * reflection.c: handle enumerations when writing to the constant
20702         table. Use a different object cache for types.
20703
20704
20705 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
20706
20707         * object.c (mono_object_isinst): fix for arrays
20708
20709         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
20710
20711 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20712
20713         * object.c: don't use mprotect ()  and fix intern pool hash table
20714         lookup for big endian systems.
20715
20716 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20717
20718         * icall.c: change type_is_subtype_of () signature.
20719
20720 2002-02-21  Mark Crichton  <crichton@gimp.org>
20721
20722         * rand.c, rand.h: Added random number generator for
20723         System.Security.Cryptography classes.
20724
20725         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
20726
20727         * icall.c: Added System.Security.Cryptography calls.
20728
20729 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
20730
20731         * class.c, icall.c, metadata.c: better support for pointer types.
20732         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
20733         * reflection.c: Add support for getting custom attrs for properties
20734         and simplify some code.
20735
20736 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20737
20738         * icall.c: change getToken () and add custom attribute GetBlob()helper
20739         method.
20740         * reflection.h: add custom attrs array to the reflection builder structures.
20741         * reflection.c: encode and emit custom attributes for all the relevant
20742         reflection objects. Cache fieldref and methodref tokens. Change
20743         mono_image_create_token() interface to take a MonoDynamicAssembly.
20744         More complete custom attributes decoder. Load custom attributes for
20745         Assembly, Field, Method and Constructor objects, too. Make the
20746         returned array an Attribute[] one, not object[]. Added
20747         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
20748         custom attribute constructor.
20749
20750 2002-02-20  Dick Porter  <dick@ximian.com>
20751
20752         * icall.c:
20753         * rawbuffer.c:
20754         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
20755         problem code out for now).
20756
20757 2002-02-19  Radek Doulik  <rodo@ximian.com>
20758
20759         * object.c (mono_ldstr): use hash table to avoid multiple swapping
20760
20761 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
20762
20763         * icall.c: register the GetCustomAttributes method.
20764         * object.c, object.h: add mono_string_new_len ().
20765         * reflection.h, reflection.c: added mono_runtime_invoke(),
20766         mono_install_runtime_invoke(). Added
20767         mono_reflection_get_custom_attrs () to load custom attributes and
20768         create the attribute objects.
20769
20770 2002-02-19  Dick Porter  <dick@ximian.com>
20771         * threads-dummy-types.c:
20772         * threads-dummy-types.h:
20773         * threads-dummy.c:
20774         * threads-dummy.h:
20775         * threads-pthread-types.c:
20776         * threads-pthread-types.h:
20777         * threads-pthread.c:
20778         * threads-pthread.h:  Deleted obsolete files
20779
20780 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
20781
20782         * class.c (mono_class_vtable): runtime init the class when we
20783         allocate static class data.
20784
20785         * icall.c (ves_icall_System_Array_SetValue): check for null values.
20786
20787         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
20788         and String - but we will need generic marshalling support in the
20789         future. 
20790         (mono_init): set the domain name in a ms compatible way
20791
20792         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
20793         String[].
20794
20795 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
20796
20797         * object.c (mono_array_clone): use alloca() instead of g_malloc  
20798         for sizes
20799
20800         * appdomain.c (mono_domain_unload): impl.
20801
20802 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20803
20804         * appdomain.c, object.c: fix intern pool implementation.
20805         * class.c: fix alignment code.
20806
20807 2002-02-16  Radek Doulik  <rodo@ximian.com>
20808
20809         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
20810         and s2 > s1, just copy lower bytes to be compatible with little
20811         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
20812         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
20813
20814         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
20815         force big_endian to be 1 for big endian machines 
20816         (ves_icall_iconv_new_decoder): ditto
20817
20818 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
20819
20820         * socket-io.c (convert_sockopt_level_and_name): If the system
20821         doesn't define SOL_IP or SOL_TCP, get them by hand using
20822         getprotobyname() and caching the values (because this could be a
20823         slow operation).
20824         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
20825         Use the appropriate struct when the system does support it. Ie,
20826         not all systems have struct ip_mreqn so use struct ip_mreq when
20827         appropriate.
20828
20829 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
20830
20831         * reflection.c: handle finally clauses.
20832
20833 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
20834
20835         * socket-io.c: use g_snprintf() instead of snprintf.
20836
20837 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20838
20839         * reflection.c (mono_param_get_objects): Cast second argument to
20840         mono_method_get_param_names to a const char** to silence the
20841         compiler warning.
20842
20843         * appdomain.c (mono_domain_assembly_open): Put parens around the
20844         truth statement in the for-loop.
20845
20846         * unicode.c (iconv_convert): Got rid of a compiler warning about
20847         int i being unused when the system has a new iconv.
20848         (iconv_get_length): Same.
20849
20850         * image.c (load_class_names): Cast the second argument to
20851         g_hash_table_insert() to char* to hush compiler warnings about the
20852         arg being a const.
20853         (mono_image_open): Same here.
20854
20855         * socket-io.c: Don't conditionally include sys/filio.h or
20856         sys/sockio.h here anymore since we now get them from
20857         io-layer/io-layer.h
20858         (inet_pton): If the system doesn't support inet_aton, implement
20859         using inet_addr and also #define INADDR_NONE if it isn't defined
20860         by the system.
20861
20862 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
20863
20864         * metadata.c, metadata.h: added function to get packing and size info
20865         of a typedef.
20866         * reflection.h, reflection.c: handle field RVA data. Save info about
20867         the table layout if needed. Assign typedef indexes to all the types
20868         before dumping the info about them to avoid forward reference problems.
20869
20870 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
20871
20872         * socket-io.c (convert_sockopt_level_and_name): ifdef
20873         SO_ACCEPTCONN because it is not defined on my system (old debian)
20874
20875 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20876
20877         * opcode.c: use stddef.h to get NULL.
20878
20879 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20880
20881         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
20882         for FIONBIO, FIONREAD and SIOCATMARK.
20883         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
20884         define INADDR_NONE and besides, inet_addr() is deprecated and
20885         should not be used. Use inet_pton() instead - it also has the
20886         added bonus that it can easily handle IPv6 addresses as well.
20887         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
20888
20889 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
20890
20891         * decimal.c: remove _MSC_VER conditional.
20892
20893 2002-02-13  Dick Porter  <dick@ximian.com>
20894
20895         * socket-io.c: 
20896         * icall.c: Internal calls for Blocking, Select, Shutdown,
20897         GetSocketOption and SetSocketOption
20898
20899 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20900
20901         * assembly.cs: better resolver: use it instead of some kludgy
20902         code.
20903
20904 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
20905
20906         * reflection.c: the best way to speed-up the compiler is to avoid
20907         infinite loops.
20908
20909 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
20910
20911         * class.c (mono_class_vtable): changed the object layout
20912         (obj->vtable->class). 
20913         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
20914
20915 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20916
20917         * assembly.c: look for assemblies in the assembly dir, too.
20918
20919 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20920
20921         * class.c: fix thinko in mono_class_from_type().
20922
20923 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20924
20925         * exception.h, exception.c: added TypeLoadException.
20926         * object.h, object.c: added mono_array_clone ().
20927         * icall.c: handle throwOnError in AssemblyGetType().
20928         Added Array.Clone().
20929         * opcode.h, opcode.c: use a single value for the opcode val.
20930         Compile fix for non-gcc compilers.
20931
20932 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
20933
20934         * opcodes.c, opcodes.h: export interesting info about opcodes.
20935
20936 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
20937
20938         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
20939         icalls. 
20940
20941         * class.c (class_compute_field_layout): set element_class for enums
20942         (mono_class_create_from_typedef): set element_class for normal classes
20943
20944         * icall.c (ves_icall_System_Enum_get_value): impl.
20945
20946         * class.c (mono_class_create_from_typedef): do not set valuetype
20947         flag for System.ValueType and System.Enum
20948
20949 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
20950
20951         * unicode.c (iconv_convert): fix big endian problem.
20952
20953 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20954
20955         * class.c: add asserts if we are ever going to scribble over memory.
20956         * socket-io.c: not all systems have AF_IRDA defined.
20957
20958 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
20959
20960         * class.c (class_compute_field_layout): do not consider static
20961         fields to compute alignment
20962
20963 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
20964
20965         * appdomain.c (mono_appdomain_get): impl.
20966         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
20967
20968 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
20969
20970         * icall.c: ignore "file://" prefix when loading an assembly.
20971
20972 2002-01-23  Dick Porter  <dick@ximian.com>
20973
20974         * socket-io.c:
20975         * icall.c:
20976         * Makefile.am: Added socket support
20977
20978 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20979
20980         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
20981         code back.  This should return the assemblies that are loaded by
20982         the runtime on behalf of an application domain. 
20983
20984         The current implementation is still broken, it just returns every
20985         assembly loaded, but until we get real applications domain this
20986         will do.
20987
20988 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
20989
20990         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
20991         AppDomain object.
20992
20993 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20994
20995         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
20996         the mono_class_from_name lookup.
20997         (ves_icall_get_parameter_info): ditto.
20998         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
20999         method.
21000         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
21001
21002 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
21003
21004         * class.c: load also nested classes on class init.
21005         System.ValueType instance methods gets passed boxed
21006         values, unless methods in derived classed that get a pointer to the
21007         data.
21008         * icall.c: use better name parsing code in GetType().
21009         * image.c, image.h: add mono_image_loaded ().
21010         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
21011         * reflection.c, reflection.h: added mono_reflection_parse_type().
21012
21013 2002-01-22  Veronica De Santis <veron78@interfree.it>
21014
21015         * icall.c : Added mapping of internal calls for Manual and Auto reset events
21016         * threads.c : Added the implementation of internal calls for events
21017         * threads.h : Added prototypes of internal calls for events
21018         
21019 2002-01-21  Radek Doulik  <rodo@ximian.com>
21020
21021         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
21022
21023 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
21024
21025         * class.c (mono_class_init): set min_align to 1 (instead of 0)
21026         (mono_class_value_size): use min_align
21027
21028 2002-01-20  Dick Porter  <dick@ximian.com>
21029
21030         * threads.h:
21031         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
21032         so it compiles on w32.
21033
21034 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
21035
21036         * metadata.c (mono_type_stack_size): impl.
21037
21038         * class.c (mono_class_get_field): impl. memberref token
21039
21040 2002-01-16 Veronica De Santis <veron78@@interfree.it>
21041
21042         * icall.h : Added the internal calls mapping for CreateMutex_internal
21043                     and ReleaseMutex_internal.
21044         * threads.h : Added the prototype of mutexes internal calls.
21045         * threads.c : Added the implementations of mutexes internal calls.
21046
21047 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21048
21049         * metaparse.h: removed unused file.
21050         * reflection.c, reflection.h: added stream_data_align () function 
21051         to align data in streams and keep stream aligned. Add support for
21052         exception support in method headers.
21053
21054 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
21055
21056         * unicode.c: make iconv_convert () return the number of bytess written
21057         in the output buffer.
21058
21059 2002-01-15  Dick Porter  <dick@ximian.com>
21060         * threads.c: Make the runtime's idea of infinite timeouts coincide
21061         with the class library's
21062
21063         Fix a particularly egregious bug in mono_thread_cleanup(). That
21064         code was so utterly bogus it must have been written on a Monday.
21065
21066 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21067
21068         * reflection.h: add subtypes field to TypeBuilder.
21069         * reflection.c: encode constants for literal fields.
21070         Handle subtypes. Fix user string token (and add a zero byte)
21071         at the end.
21072         
21073 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
21074
21075         * class.c (mono_class_init): bug fix: assign slot numbers for
21076         abstract methods.
21077
21078 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21079
21080         * reflection.c: don't try to output a code RVA for abstract methods.
21081         Small fixes for method header format. Output parameter info to the
21082         ParamDef table. Save method overriding info to MethodImpl table.
21083         Fix property support. Allow typedef.extends to be a type in the
21084         building assembly.
21085         * verify.c: fix off-by-one error.
21086
21087 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
21088
21089         * class.c: fix mono_class_from_mono_type () for szarray types.
21090         Remove unused cache check in mono_class_from_type_spec().
21091         * icall.c: *type_from_name () functions handle simple arrays and byref.
21092         * reflection.c: handle byref and szarray types. Handle methods without
21093         body (gets P/Invoke compilation working). Handle types and fields in
21094         get_token ().
21095         * reflection.h: add rank to MonoTypeInfo.
21096
21097 2002-01-10  Dick Porter  <dick@ximian.com>
21098
21099         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
21100         internal calls
21101
21102 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21103
21104         * icall.c: initialize class in type_from_handle ().
21105         Loop also in parent classes for get_method ().
21106         * reflection.c: properly encode class and valuetype types.
21107         Start on encoding TypeBuilder types. Handle fieldrefs.
21108         Use correct length when registering a user string.
21109         Handle ConstructorBuilder and MonoMethod in get_token ().
21110         Make mono_type_get_object () aware of cached types.
21111         * object.c: back out change to mono_string_new ().
21112
21113 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
21114         * object.c: mono_string_new should return a NULL when the string 
21115         passed in is NULL -- not try to deference it.
21116         
21117 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21118
21119         * icall.c: hack to make IsSubType work for TypeBuilders.
21120         * reflection.c: emit constructors before methods.
21121         Retrieve param names in mono_param_get_objects().
21122
21123 2002/01/05  Nick Drochak  <ndrochak@gol.com>
21124
21125         * Makefile.am: fix list of headers and sources so automake 1.5
21126         doesn't complain. Removed \# at end of list.
21127
21128 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21129
21130         * reflection.c: get token for a method ref. Set return type of
21131         constructor to void.
21132         * loader.c: debug message.
21133         * class.c: typo fix.
21134
21135 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
21136
21137         * icall.c: fix array init with rank > 1. FindMembers
21138         loops in parent class as well.
21139         * image.c: do not insert nested types in name cache.
21140         * reflection.c: warning fix.
21141         * reflection.h: add override method (for interface impl).
21142
21143 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
21144
21145         * metadata.c: fix customattr decoding.
21146
21147 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
21148
21149         * rawbuffer.cs: Added native Win32 implementation, avoids using
21150         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
21151
21152 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
21153
21154         * class.c: make the low-level routines handle the cache.
21155
21156 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
21157
21158         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
21159
21160 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
21161
21162         * class.c: fix mono_array_element_size() for objects.
21163         * class.h, class.c: add properties to MonoClass and load them
21164         at init time.
21165         * icall.c: check with isinst() when assigning a value to an array
21166         instead of requiring the classes to match exactly.
21167         Implemented icall for System.Type::GetType().
21168         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
21169         enums. Handle bindingflags when looking for methods and fields.
21170         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
21171         and mono_metadata_methods_from_property().
21172         * reflection.h, reflection.c: added structures for propreties,
21173         parameters and enums. Implemented mono_property_get_object() and
21174         mono_param_get_objects().
21175
21176 2001-12-18  Dick Porter  <dick@ximian.com>
21177
21178         * file-io.c: Use mono_string_to_utf16() instead of
21179         mono_string_chars()
21180
21181         * object.c: Added mono_string_to_utf16(), which copies the non
21182         NULL-terminated MonoString into a new double-null-terminated
21183         buffer.
21184
21185 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
21186
21187         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
21188
21189 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
21190
21191         * file-io.c: raise exceptions if handle is invalid.
21192
21193 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
21194
21195         * assembly.c: yet another check for mscorlib.
21196         * class.c, class.h: load nesting info for classes.
21197         * icall.c: many new functions to support the Reflection classes.
21198         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
21199         * reflection.h, reflection.c: mono_image_create_token(),
21200         mono_assembly_get_object(), mono_type_get_object(),
21201         mono_method_get_object(), mono_field_get_object(): methods to return
21202         objects that parallel the C representation of assemblies, types,
21203         methods, fields.
21204
21205 2001-12-11  Dick Porter  <dick@ximian.com>
21206
21207         * icall.c:
21208         * file-io.c: Internal calls for file IO.
21209
21210 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
21211
21212         * tabledefs.h: missing FileAttributes.
21213         * verify.h, verify.c: use is_valid_string () to simplify and check for
21214         valid strings more correctly. Fix warnings and speeling.
21215         Check more tables: Filed, File, ModuleRef, StandAloneSig.
21216         Check code: branches, maxstack, method calls.
21217
21218 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
21219
21220         * object.c (mono_object_allocate): removed static, so that the jit
21221         can allocate value types.
21222
21223         * icall.c (ves_icall_System_DateTime_GetNow): impl.
21224
21225 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21226
21227         * class.c: init enum types right away and register the
21228         token->MonoClass map in mono_class_create_from_typedef ().
21229         * verify.h, verify.c: first cut of the verifier.
21230         * pedump.c: add --verify switch to verify metadata tables.
21231         * tabledefs.h: add some missing enums.
21232
21233 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
21234
21235         * class.c (mono_install_runtime_class_init): impl.
21236         (mono_class_init): renamed mono_class_metadata_init to
21237         mono_class_init, also removed the metadata_inited flag
21238
21239         * object.c (mono_object_isinst): use faster algorithm
21240
21241 2001-11-30  Radek Doulik  <rodo@ximian.com>
21242
21243         * mono-endian.h: reverted last change
21244         added function prototypes
21245
21246         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
21247         add mono-endian.c back
21248
21249         * mono-endian.c: returned back, as Paolo pointed out, it's needed
21250         for unaligned access, I've mistaked it with endianess. I am
21251         sorry.
21252         (mono_read16): fix reverted endianess
21253         (mono_read64): ditto
21254         (mono_read32): ditto
21255
21256 2001-11-30  Dick Porter  <dick@ximian.com>
21257
21258         * exception.c: Implement mono_exception_from_name()
21259
21260 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21261
21262         * metadata.h, metadata.c: remove params_size and locals_size and their
21263         calculation from the metadata code: they are only usefult to the
21264         interp.
21265
21266 2001-11-29  Radek Doulik  <rodo@ximian.com>
21267
21268         * object.c (mono_ldstr): swap bytes here, it's probably not the
21269         best place, but works for me now, I'll redo it once I know mono
21270         better, also note that I add PROT_WRITE and don't reset back, also
21271         note that it's only affects big endians, so x86 should be OK
21272
21273         * mono-endian.h (read16): use just glib macros for both endians
21274
21275         * mono-endian.c: removed as glib macros are used in in
21276         mono-endian.h so we don't need to care about endianess for read
21277         macros as glib does that for us already
21278
21279 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
21280
21281         * class.h, class.h: take minimum alignment into consideration so
21282         that the fields of a class remain aligned also when in an array.
21283
21284 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21285
21286         * loader.h, loader.c: add mono_method_get_param_names().
21287         * class.c: 0-init class fields.
21288
21289 2001-11-26  Dick Porter  <dick@ximian.com>
21290
21291         * icall.c:
21292         * threads-types.h:
21293         * threads.c: New file that handles System.Threading on all platforms
21294
21295         * object.c: 
21296         * object.h: Remove the synchronisation struct from MonoObject,
21297         replace it with a pointer that gets initialised on demand
21298
21299         * Makefile.am: Replace all the system-specific threading code with
21300         a single file that uses the new wrapper library
21301
21302 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
21303
21304         * class.c, class.h: add mono_install_trampoline() so that the runtime
21305         can register a function to create a trampoline: removes the ugly
21306         requirement that a runtime needed to export arch_create_jit_trampoline.
21307         * object.h, object.c: added mono_install_handler() so that the runtime
21308         can install an handler for exceptions generated in C code (with
21309         mono_raise_exception()). Added C struct for System.Delegate.
21310         * pedump.c: removed arch_create_jit_trampoline.
21311         * reflection.c: some cleanups to allow registering user strings and
21312         later getting a token for methodrefs and fieldrefs before the assembly
21313         is built.
21314         * row-indexes.h: updates and fixes from the new ECMA specs.
21315
21316 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
21317
21318         * class.h, class.c: add enum_basetype field to MonoClass.
21319         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
21320         to get index in the constant table reated to a field, param or
21321         property.
21322         * reflection.h, reflection.c: handle constructors. Set public-key and
21323         version number of the built assembly to 0.
21324         * row-indexes.h: update from new ECMA spec.
21325
21326 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
21327
21328         * class.h, class.c: add a max_interface_id to MonoClass.
21329         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
21330         since it's used to do that. Added mono_type_type_from_obj().
21331         Make GetType() return NULL instead of segfaulting if the type was not
21332         found. Handle simple arrays in assQualifiedName.
21333         * object.h: add a struct to represent an Exception.
21334         * reflection.c: output call convention in method signature.
21335         Add code to support P/Invoke methods and fixed offsets for fields.
21336
21337 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
21338
21339         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
21340         the value.
21341         * icall.c: use mono_array_addr instead of array->vector: fixes the
21342         reflection image writing.
21343         * reflection.c: init call convention byte to 0 in method signature.
21344         Encode the property signature. Don't output property-related methods
21345         twice. Really process the properties for a type (don't cast a field to
21346         a property, my mom always told me that).
21347         Fix 64 bit issues in pointer alignment in a different and more
21348         readable way.
21349
21350 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
21351
21352         * loader.h: Removed type class from MonoDefaults, added monotype
21353
21354         * loader.c: Loaded MonoType, removed loading of Type
21355
21356         * icall.c (my_mono_new_object): Now returns a System.MonoType,
21357         and fills in System.Type._impl with a RuntimeTypeHandle rather
21358         than the actual MonoClass *
21359
21360         (ves_icall_type_from_handle): change from type_class to
21361         monotype_class
21362
21363         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
21364         implemented
21365
21366         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
21367         implemented
21368
21369         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
21370
21371         (ves_icall_System_Reflection_Assembly_GetType): implemented
21372
21373         (ves_icall_System_MonoType_assQualifiedName): implemented
21374
21375         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
21376
21377 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
21378
21379         * assembly.c (mono_assembly_open): Implement a cache for the
21380         assemblies. 
21381
21382         (mono_assembly_close): only destroy the assembly when the last
21383         reference is gone.
21384         
21385 2001-11-09  Dick Porter  <dick@ximian.com>
21386
21387         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
21388
21389 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
21390
21391         * class.c (mono_class_metadata_init): bug fix: compute the right slot
21392
21393 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21394
21395         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
21396         from Martin Weindel.
21397         * object.h: add mono_string_chars ().
21398
21399 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
21400
21401         * reflection.c (build_compressed_metadata): Eliminates warnings
21402         and uses 64-bit clean code.
21403
21404         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
21405         (mono_type_equal): Change signature to eliminate warnings.
21406
21407 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21408
21409         * icall.c, loader.c: remove the internalcall array constructors.
21410         Changes to match the new MonoArray structure.
21411         * object.h, object.c: an array object doesn't allocate an extra
21412         vector. Add mono_array_new_full () to create jagged arrays easily.
21413
21414 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
21415
21416         * metadata.h, metadata.c: add mono_metadata_field_info () to
21417         retreive all the info about a field from vairous tables.
21418         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
21419         * class.h, class.c: augment MonoClassField with more info.
21420         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
21421         policy and load a field's RVA if needed.
21422
21423 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
21424
21425         * class.c (mono_class_metadata_init): create a trampoline for all
21426         virtual functions instead of actually compiling them.
21427
21428 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
21429
21430         * class.h, class.c: include name in MonoClassField.
21431         * class.c: fix fundamental type of System.Object and System.String.
21432         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
21433         tokens in ldtoken.
21434         * icall.c: remove internalcalls for the Reflection stuff that is now
21435         done in C# code.
21436         * loader.c: mono_field_from_memberref () implementation.
21437         * mono-endian.c: thinko (s/struct/union/g).
21438         * object.c, object.h: make the mono_string_* prototypes actually use
21439         MonoString instead of MonoObject.
21440         * reflection.c, reflection.h: updates for changes in the reflection
21441         code in corlib: we use C structures that map to the actual C# classes.
21442         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
21443         fat method header if needed and use the info from the ILGenerator for
21444         methods. Handle fields in types. Misc fixes.
21445
21446 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
21447
21448         * class.c (mono_class_metadata_init): bug fix: always allocate
21449         space for static class data
21450
21451 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
21452
21453         * class.c (mono_compute_relative_numbering): use relative
21454         numbering to support fast runtime type checks.
21455
21456 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
21457
21458         * class.c (mono_class_create_from_typeref): added debugging output
21459         to print class name when MonoDummy is returned instead of real class
21460
21461 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
21462
21463         * class.c (mono_class_metadata_init): interface offset table now
21464         contains pointers into the vtable - this is more efficient for the jit
21465
21466 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
21467
21468         * class.c (mono_class_metadata_init): use a temporary vtable (the
21469         old algorithm only worked for the interpreter, but not for the jit)
21470
21471 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
21472
21473         * loader.c (method_from_memberref): use mono_class_get to get the
21474         class of an array instead of using System.Array directly.
21475         (mono_get_method): also add MEMBERREF methods to the method cache
21476         which usefull for arrays.
21477
21478 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
21479
21480         * pedump.c (arch_compile_method): added to compute vtable entry
21481
21482         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
21483         number of interfaces.
21484         
21485         * class.h: merged MonoArrayClass into MonoClass
21486
21487         * class.c (mono_class_create_from_typedef): compute the vtable size and
21488         allocate space to include the vtable inside MonoClass
21489         (mono_class_metadata_init): initialize the vtable
21490
21491 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
21492
21493         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
21494         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
21495         * image.c: endian fixes by Laurent Rioux.
21496         * object.h, object.c: rename MonoStringObject to MonoString and
21497         MonoArrayObject to MonoArray. Change some function names to conform to
21498         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
21499         guint16* as first argument, so don't use char*.
21500         Provide macros to do the interesting things on arrays in a portable way.
21501         * threads-pthread.c: updates for the API changes and #include <sched.h>
21502         (required for sched_yield()).
21503         * icall.c: updates for the API changes above.
21504         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
21505         platforms that need them.
21506
21507 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21508
21509         * class.c: set the correct type for all the fundamental
21510         type when loading the class.
21511
21512 2001-10-05  Dick Porter  <dick@ximian.com>
21513
21514         * threads-pthread.c (pthread_mutex_timedlock): Simple
21515         compatibility version for C libraries that lack this call.
21516
21517 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21518
21519         * class.c: MonoTypes stored in MonoClass are stored as
21520         fundamental MonoTypes when the class represents a
21521         fundamental type (System.Int32, ...).
21522         The TypeHandle return by ldtoken is a MonoType*.
21523         * icall.c: ves_icall_get_data_chunk () write out all the
21524         PE/COFF stuff. Implement ves_icall_define_method (),
21525         ves_icall_set_method_body (), ves_icall_type_from_handle ().
21526         * image.c: properly skip unknown streams.
21527         * loader.h, loader.c: add type_class to mono_defaults.
21528         * metadata.c, metadata.h: export compute_size () as
21529         mono_metadata_compute_size () with a better interface.
21530         Typo and C&P fixes.
21531         * pedump.c: don't try to print the entry point RVA if there is no entry point.
21532         * reflection.c, reflection.h: many cleanups, fixes, output method
21533         signatures and headers, typedef and typeref info, compress the metadata
21534         tables, output all the heap streams, cli header etc.
21535         * row-indexes.h: typo fixes.
21536
21537 2001-10-04  Dick Porter  <dick@ximian.com>
21538
21539         * object.h: Add a synchronisation mutex struct to MonoObject
21540
21541         * object.c (mono_new_object): Initialise the object
21542         synchronisation mutexes
21543
21544         * icall.c: System.Threading.Monitor internal calls
21545         
21546         * threads-pthread.h:
21547         * threads-pthread.c: System.Threading.Monitor internal calls
21548
21549         * threads-types.h: New file, includes the system-specific thread
21550         structures
21551         
21552         * threads-pthread-types.h:
21553         * threads-pthread-types.c: New files, handle pthread-specific
21554         synchronisation types
21555
21556         * threads-dummy-types.h: 
21557         * threads-dummy-types.c: New files of dummy support for
21558         thread-specific types
21559
21560         * metadata.c:
21561         * image.c:
21562         * pedump.c: include mono-endian.h not endian.h
21563         
21564         * Makefile.am: More threads files.
21565         Name mono-endian.h not endian.h
21566
21567 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
21568
21569         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
21570         stuff and implement a few more bits.
21571         * icall.c: a field needs to be dereferenced twice. Do not use the same
21572         name for two variables in the same scope.
21573         * image.c, image.h: cleanups.
21574
21575 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
21576
21577         * class.c (mono_class_metadata_init): bug fix: compute the right size
21578
21579 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
21580
21581         * icall.c: implemented some of the Reflection internalcalls.
21582         * image.c, image.h: start writing out the PE/COFF image.
21583         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
21584         that does the reverse than decode_blob_size ().
21585         * object.c: use mono_metadata_encode_value (). Move here
21586         temporary implementation of mono_string_to_utf8 ().
21587         * rawbuffer.c: make malloc_map static.
21588
21589 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21590
21591         * metadata.c: fix type comparison for arrays.
21592         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
21593         Added a couple of new classes to monodefaults.
21594         * icall.c: added a couple of Reflection-related internalcalls.
21595         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
21596         Added a byval_arg MonoType to MonoClass.
21597
21598 2001-09-28  Dick Porter  <dick@ximian.com>
21599
21600         * icall.c:
21601         * threads-pthread.h: 
21602         * threads-pthread.c: Implemented internal calls for
21603         LocalDataStoreSlot operations.  Applied mutexes around all shared
21604         data.  Reworked the thread creation and Start() operations to
21605         avoid a race condition.
21606         
21607         * threads-dummy.h:
21608         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
21609
21610 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
21611
21612         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
21613
21614 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
21615
21616         * class.c, loader.c: warn and return NULL instead of erroring out.
21617         * icall.c: added System.AppDomain::getCurDomain().
21618         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
21619
21620 2001-09-25  Dick Porter  <dick@ximian.com>
21621
21622         * threads-pthread.h:
21623         * threads-pthread.c: Implemented timed thread joining and added
21624         System.Threading.Thread::Join_internal internal call
21625
21626         * icall.c: Added System.Threading.Thread::Join_internal internal call
21627
21628         * threads-dummy.h:
21629         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
21630
21631 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
21632
21633         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
21634         mono_string_intern () to implement the semantics of the ldstr opcode
21635         and the interning of System.Strings.
21636         * icall.c: provide hooks to make String::IsIntern and String::Intern
21637         internalcalls.
21638
21639 2001-09-23  Dick Porter  <dick@ximian.com>
21640
21641         * threads-dummy.c: 
21642         * threads-dummy.h: New files of dummy threading routines
21643
21644         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
21645         support code based on system specifics
21646
21647         Rename PTHREAD_LIBS to THREAD_LIBS
21648         
21649 2001-09-23  Dick Porter  <dick@ximian.com>
21650
21651         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
21652         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
21653         internal calls.
21654         (mono_thread_init): Set up a Thread object instance to return when
21655         the main thread calls Thread.CurrentThread
21656         (mono_thread_cleanup): Wait for all subthreads to exit
21657
21658         * icall.c: New internal calls for System.Threading.Thread::Sleep
21659         (including Schedule) and CurrentThread
21660
21661         * threads.h: New file, to insulate thread-specific stuff from the
21662         rest of the code
21663
21664 2001-09-21  Dick Porter  <dick@ximian.com>
21665
21666         * threads-pthread.h: 
21667         * threads-pthread.c: New file, for handling pthreads-style
21668         threading support.  Start() now starts a new thread and executes
21669         the ThreadStart delegate instance.
21670
21671         * icall.c: Added the internalcall for
21672         System.Threading.Thread::Start_internal
21673
21674         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
21675
21676 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
21677
21678         * loader.c: work around the different signatures for delegates
21679         constructors csc generates in compiled code vs the ones compiled in mscorlib.
21680
21681 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21682
21683         * class.h, class.c: add mono_class_get_field_from_name ().
21684         * *: Fix C comments and other ANSI C issues.
21685
21686 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
21687
21688         * endian.h, assembly.c: fix some endianness issues.
21689
21690 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
21691
21692         * loader.h, load.c: add delegate_class to mono_defaults.
21693         Handle runtime provided methods in mono_get_method ().
21694
21695 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
21696
21697         * loader.c (mono_get_method): use pinvoke for internal call
21698
21699         * icall.c: use pinvoke for internal call
21700
21701         * loader.c (method_from_memberref): set the method name
21702
21703 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
21704
21705         * metadata.c: help the compiler generate better code for
21706         mono_class_from_mono_type ().
21707
21708 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
21709
21710         * class.c (mono_class_metadata_init): delayed computing of the
21711         class size to mono_class_metadata_init ()
21712
21713 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
21714
21715         * class.c, class.h: add an interfaces member to MonoClass.
21716         * image.c, image.h: add assembly_name field to MonoImage
21717         from the assembly table.
21718         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
21719
21720 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21721
21722         * class.c: Handle Array in mono_class_from_mono_type ().
21723         * metadata.c, pedump.c: some endian fixes.
21724
21725 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21726
21727         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
21728         * metadata.c: fix small problem introduced with the latest commit.
21729
21730 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
21731
21732         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
21733         We don't need a MonoMetadata pointer anymore to compare signatures in
21734         mono_metadata_signature_equal (), update callers.
21735         Reduced memory usage an number of allocations for MonoMethodHeader and
21736         MonoMethodSignature.
21737
21738 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
21739
21740         * metadata.c: added compare for szarray.
21741
21742 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
21743
21744         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
21745         and add a couple more types to it and mono_defaults. Give an hint on
21746         classes that need implementing in our corlib and are referenced
21747         in mscorlib.
21748
21749 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
21750
21751         * class.h, class.c: keep track if a class is also an Enum.
21752         * loader.c: Implement a couple more types for use in libffi
21753         marshalling. Gives better diagnostics when failing to dlopen
21754         a library. Set method->klass for P/Invoke methods, too.
21755
21756 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
21757
21758         * class.c, class.h: add a MonoType this_arg to MonoClass that
21759         represents a pointer to an object of the class' type that
21760         can be used by the interpreter and later the type cache.
21761         Add best guess alignment info for valuetype objects.
21762
21763 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
21764
21765         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
21766         into MonoType: one less level of indirection and allocation and
21767         simplifies quite a bit of code. Added cache for MonoTypes that are
21768         used frequently, so that we don't need to allocate them all the time.
21769
21770 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
21771
21772         * class.c (mono_class_create_from_typedef): System.Enum is also a
21773         value type, although it does not derive from System.ValueType
21774         (maybe a bug in the ms compiler?)
21775
21776         * metadata.c (mono_type_size): return the right size for value types
21777
21778         * loader.c (mono_get_method): only initialize method header if not abstract
21779
21780         * class.c (mono_class_from_mono_type): use mono_default values. 
21781
21782 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
21783
21784         * *: use MonoClass pointers instead of <type_tokens>
21785         
21786         * class.h: new flag: metadata_inited.
21787
21788         * class.c (mono_class_metadata_init): impl.
21789         (mono_class_instance_size): impl.
21790         (mono_class_data_size): impl.
21791
21792 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21793
21794         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
21795         MonoClass now has the name and name_space fields. 
21796         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
21797         mono_get_method () takes and optional MonoClass as argument.
21798         Removed mono_typedef_from_name() and added mono_class_token_from_name()
21799         instead that takes advantage of a map from class names to typedef
21800         tokens in MonoImage.
21801
21802 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
21803
21804         * metadata.c: zero is not a valid alignment boundary.
21805         Merge MONO_TYPE_VOID in default decoding code.
21806
21807 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
21808
21809         * image.h: merged MonoMetadata into MonoImage
21810
21811         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
21812         identify the type of elements.
21813
21814 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
21815
21816         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
21817         * cil-coff.h: split MonoMSDOSHeader and add size info.
21818         * image.c: add some consistency checks.
21819         * metadata.c: fix row size computation: one programmer
21820         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
21821         add explanation for the locator routine.
21822         Fix decoding of size in method header.
21823         
21824 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
21825
21826         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
21827         (g_concat_dir_and_file): Bring g_concat_dir_and_file
21828         function from gnome-libs.  This uses the right path separator
21829         based on the OS, and also works around a bug in some systems where
21830         a double slash is not allowed. 
21831         (default_assembly_name_resolver): Use g_concat_dir_and_file
21832         (mono_assembly_open): ditto.
21833
21834 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
21835
21836         * metadata.c (mono_metadata_signature_equal): impl.
21837
21838         * *: void is now a realy MonoType (instead of using NULL)
21839         
21840         * metadata.c (do_mono_metadata_parse_type): use
21841         mono_metadata_parse_type to parse void value.
21842
21843 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
21844
21845         * metadata.c, metadata.h: in the signature and method header store
21846         only the space required for holding the loca vars and incoming arguments.
21847
21848 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
21849
21850         * metadata.c (do_mono_metadata_parse_type): treat void like any
21851         other type (instead of assigning NULL);
21852
21853 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
21854
21855         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
21856
21857 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
21858
21859         * image.c (do_mono_image_open): added a cache for arrays.
21860
21861 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21862
21863         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
21864         decode a single column from a row in a metadata table and changes
21865         to take advantage of it in the typedef locator (gives a nice speed up).
21866         Store offset info for function params.
21867
21868 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
21869
21870         * image.h (MONO_IMAGE_IS_CORLIB): removed 
21871
21872 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
21873
21874         * assembly.c: how could mono_assembly_close () had ever worked?
21875         * metadata.c, metadata.h: provide offset info for local vars.
21876         Implement mono_type_size () to take care of alignment as well
21877         as size (it was mono_field_type_size in cli/class.c before).
21878
21879 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
21880
21881         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
21882
21883         * assembly.h (CORLIB_NAME): set to corlib.dll
21884
21885         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
21886
21887 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21888
21889         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
21890         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
21891         tokentype.h: massive namespace cleanup.
21892
21893 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21894
21895         * metadata.h, metadata.c: decode exception clauses when parsing method header.
21896
21897 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
21898
21899         * metadata.c (mono_metadata_free_type): added check for type !=
21900         NULL (void) before calling mono_metadata_free_type()
21901
21902 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
21903
21904         * metadata.h, row_indexes.h: added header with enumerations to use
21905         to index in the columns from tables in metadata and to decode coded
21906         tokens: we should start using this instead of embedding magic numbers
21907         all over the code.
21908
21909 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
21910
21911         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
21912         Move metadata_t info from cli_image_info_t to MonoImage, where
21913         it's easily accessible. Changed all the uses accordingly.
21914         Added the method and class caches to MonoImage.
21915         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
21916         and mono_metadata_decode_value () signature to be more consistent
21917         with the other parse functions (and simplify code). Taken advantage
21918         of zero-length array allocation with GCC. Removed reduntant (and
21919         wrong) MonoFieldType struct and use MonoParam instead. Changed
21920         mono_metadata_parse_field_type () to use common code for parsing.
21921         Added mono_metadata_typedef_from_field () and
21922         mono_metadata_typedef_from_method () to lookup a typedef index from a
21923         field or method token.
21924         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
21925
21926 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
21927
21928         * metadata.c (mono_metadata_parse_field_type): Implement. 
21929         (do_mono_metadata_parse_type): Split engine from
21930         mono_metadata_parse_type, so that we can create smaller structures
21931         for things that just have one pointer to the MonoType (look at
21932         the MonoFieldType)
21933
21934 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
21935
21936         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
21937         as Jan Gray found out, it is incorrect. 
21938
21939 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
21940
21941         * assembly.c: Implement asssembly loading.  This loads an image
21942         and loads all the referenced assemblies.  Come to think of it, we
21943         could always do lazy loading of the assemblies. 
21944
21945         * image.c (mono_image_open): Keep loaded images in a hashtable.
21946
21947         * image.h (MonoImage): Add reference count.
21948
21949 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
21950
21951         * assembly.c (mono_assembly_open): Keep track of the file name in
21952         case the assembly has no ASSEMBLY table.
21953
21954         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
21955         from get.c here.
21956
21957 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
21958
21959         * metadata.c, metadata.h: decode local vars in method header
21960         parse function. Change callers accordingly.
21961
21962 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
21963
21964         * metadata.h, cil-coff.h: protect against multiple inclusion.
21965         Added some new structures to hold information decoded from metadata:
21966         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
21967         and relevant decoding/free functions.
21968         * metadata.c: implement decoding functions. Add warning for out of bounds
21969         index in mono_metadata_locate(). Implement mono_get_method () to retreive
21970         all the info about a method signature and invocation. Remove check on
21971         uninitialized local var in parse_mh() and fix memory leak.
21972
21973 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
21974
21975         * metadata.h: More macros.
21976
21977         * tokentype.h: New file.
21978
21979 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
21980
21981         * assembly.c: added a consistency check and initialize
21982         some structures with g_new0().
21983         * metadata.c: fixed a couple more bugs in table size computation
21984         and add other checks for out-of bound access to metadata.
21985
21986 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
21987
21988         * metatada.c: fix bugs computing table sizes. Spew a
21989         warning when index in string heap is out of bounds.
21990
21991 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
21992
21993         * metadata.h: Add a couple of macros to manipulate tokens. 
21994
21995 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21996
21997         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
21998         cli_section_tables).
21999
22000 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
22001
22002         * metadata.c (mono_metadata_user_string): New function, provides
22003         access to the UserString heap. 
22004
22005 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
22006
22007         * metadata.c: Add inline documentation.
22008
22009 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
22010
22011         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
22012         files. 
22013
22014 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
22015
22016         * typeattr.h: New file, TypeAttribute flags. 
22017
22018 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
22019
22020         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
22021         mono_assembly_ensure_section): Section loading code.
22022         (load_section_tables): Load the sections.
22023
22024         * mono/metadata/metadata.c (mono_metadata_locate_token,
22025         mono_metadata_locate): Functions to locate the information
22026         definition given a token or a table and an index.
22027         (mono_metadata_compute_table_bases): New.
22028         (compute_size): New function to compute the sizes of the various
22029         tables.
22030
22031         * mono/metadata/metadata.h: Finish listing the different index
22032         types. 
22033
22034         * mono/metadata/pedump.c: Improve to dump new information.
22035
22036 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
22037
22038         * mono/metadata/metadata.c: Entered all the tables matching
22039         Beta2. 
22040
22041         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
22042
22043
22044