2007-07-27 Jb Evain <jbevain@novell.com>
[mono.git] / mono / metadata / ChangeLog
1 2007-07-27  Jb Evain  <jbevain@novell.com>
2
3         * pedump.c (dump_metadata, dump_metadata_header): dump
4         versions contained in the metadata header.
5
6 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
7
8         * threads.c: register small_id_table with the GC.
9
10 2007-07-27  Mark Probst  <mark.probst@gmail.com>
11
12         * threads.c, threads.h, class-internals.h, object-internals.h:
13         Hazard pointers, to be used by lock-free parallel algorithms.
14
15 2007-07-26  Dick Porter  <dick@ximian.com>
16
17         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
18         routine on non-windows platforms, as I've not managed to think of
19         a non-kludgy way of doing this.  Finishes off bug 78739.
20
21 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
22
23         * object.c: properly setup interface_bitmap in proxy vtables.
24
25 2007-07-25  Marek Habersack  <mhabersack@novell.com>
26
27         * appdomain.c (get_shadow_assembly_location): do not use TickCount
28         to create unique shadow copy target directories, use the domain's
29         serial number instead. Each domain gets a unique target directory
30         that way.
31
32         * domain.c (mono_domain_create): added code to increment domain
33         shadow copy serial number and cache the value in the current
34         domain structure.
35
36         * domain-internals.h (struct _MonoDomain): added a new field -
37         shadow_serial to hold the serial number used in generation of
38         shadow-copy directories. This is to make sure that the directory
39         name is unique for each and every domain created. We avoid a race
40         condition with overriding assemblies already in use by other app
41         domains.
42
43 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
44
45         * class.c (mono_bounded_array_class_get): fixed memory leak when 
46         binding generic parameters.
47
48 2007-07-24  Raja R Harinath  <rharinath@novell.com>
49
50         * metadata.c (do_mono_metadata_parse_generic_class): Use
51         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
52         error.
53
54 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
55
56         * loader.c, class-internals.h, reflection.c: removed the per-method
57         generics hashtable: we use the global one through the call of
58         mono_class_inflate_generic_method ().
59
60 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
61
62         * class.c, metadata.c, class-internals.h: introduce yet another
63         generics global cache for inflated methods (fixes 98% of the perf
64         issue in bug #81806).
65
66 2007-07-23  Raja R Harinath  <rharinath@novell.com>
67
68         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
69         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
70         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
71         return a MonoGenericInst containing (a copy) of those types.
72         (mono_metadata_inflate_generic_inst): Update to changes.
73         (mono_metadata_parse_generic_inst): Likewise.
74         (mono_get_shared_generic_inst): Likewise.
75         * reflection.c (mono_class_bind_generic_parameters): Likewise.
76         (mono_reflection_bind_generic_method_parameters): Likewise.
77         * metadata-internals.h: Likewise.
78         * icall.c (free_generic_context): Kill.
79         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
80
81         * reflection.c (reflection_methodbuilder_to_mono_method): Use
82         mono_metadata_type_dup.
83         * marshal.c (mono_mb_create_method): Likewise.
84
85         * metadata.c (mono_metadata_type_dup): Rename from
86         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
87         MonoImage.  Handle a few more cases, esp. when no mempool is given.
88         * marshal.c, metadata-internals.h: Update to changes.
89
90 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
91
92         * class.c: fixed a small leak for array classes and removed warning.
93
94 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
95
96         * loader.c (mono_method_get_param_token): Make this work on generic methods.
97         Return 0x8000000 for return parameters. Fixes #82161.
98
99 2007-07-21  Marek Habersack  <grendello@gmail.com>
100
101         * appdomain.c (get_shadow_assembly_location): append the current
102         ticks value to the path. Avoids overwriting the same assemblies by
103         several threads at the same time.
104
105 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
106         and Raja R Harinath  <rharinath@novell.com>
107
108         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
109         Simplify slightly.
110         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
111         property for testing if a method is a generic method definition.
112
113 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
114
115         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
116
117 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
118
119         * verify.c: used function from private branch, reverted to the one in class.h 
120
121 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
122
123         * verify.c: a typo slipped in and the code wont compile
124
125 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
126
127         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
128         disabled box instruction as it is doing the wrong thing
129         improved stack dump messages, now it is easier to debug type related issues
130
131
132 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
133
134         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
135
136 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
137
138         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
139         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
140         grouped with class and valuetype. This change will simply 
141         the code as it should be handled just like unmanaged pointers.
142
143 2007-07-19  Mark Probst  <mark.probst@gmail.com>
144
145         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
146
147 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
148
149         * verify.c: several stack merge issues fixed, reference comparisons now
150         check the type size. strict type check now works correctly.
151         added more uses of IS_MANAGED_POINTER macro.
152         fixed issues pointed by running the test suite against .net.
153         
154
155 2007-07-19  Mark Probst  <mark.probst@gmail.com>
156
157         * class.c, loader.c, class-internals.h: Removed the
158         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
159         defines.
160
161         * icall.c: Better error checking in some internal reflection
162         methods.
163
164 2007-07-18  William Holmes  <billholmes54@gmail.com>
165
166         * filewatcher.c : removed unused variable 'filename' in 
167           ves_icall_System_IO_FSW_SupportsFSW
168
169 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
170
171         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
172         obsolete, removed.
173
174 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
175
176         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
177         
178         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
179
180 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
181
182         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
183         Implement generics support.
184         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
185
186         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
187         type_args and method_args arguments.
188         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
189         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
190         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
191
192 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
193
194         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
195           It adds a rootimage parameter to mono_reflection_get_type_internal,
196           adds new function mono_reflection_get_type_with_rootimage and use
197           the rootimage to resolve the types instead of the current image
198
199 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
200
201         * culture-info-table.h: Forgot to update after r78304.
202
203 2007-07-13  Raja R Harinath  <rharinath@novell.com>
204
205         * class.c (mono_class_is_open_constructed_type)
206         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
207
208 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
209
210         * class.c (mono_bounded_array_class_get):  method fails if used with
211         an incomplete TypeBuilder enum (no basetype field), fixed it by 
212         avoiding calculating the size for such array as it cannot be instantiated.
213         Fix bug #82015
214
215 2007-07-12  Raja R Harinath  <rharinath@novell.com>
216
217         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
218         field.
219         * metadata.c, reflection.c: Update to changes.
220
221 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
222
223         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
224         mono_class_is_valid_enum, they are used to valide a enum when loading.
225         * reflection.c: used new functions to throw TypeLoadException when and
226         invalid enum is build with TypeBuilder. Fixes #82018
227   
228 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
229
230         * object.c: forgot commit of mono_class_setup_methods () to access
231         iface->methods.
232         * object-internals.h: added a few more handy fields to
233         MonoIMTCheckItem.
234
235 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
236
237         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
238         iface->methods.
239
240 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
241
242         * class-internals.h, object-internals.h, object.c: IMT-based
243         interface invocation core from Massimiliano Mantione
244         (massi@ximian.com) with a reworked arch-specific interface,
245         bsearch implementation and a few bugfixes and memory savings by me.
246
247 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
248
249         * class.c (mono_class_create_from_typedef): mono would segfault if 
250         an enum did not have a __value field. It now throws a TypeLoadException
251         for such cases. Fix bug #82022
252
253 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
254
255         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
256
257 2007-07-09  Mark Probst  <mark.probst@gmail.com>
258
259         * class.c (mono_class_init): If a class is already inited but has
260         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
261
262 2007-07-09  Mark Probst  <mark.probst@gmail.com>
263
264         * class.c: Properly handle the case of an unimplemented interface
265         method.  Fixes: 81673.
266
267 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
268
269         * class-internals.h, object.c: cleanup patch from massi: use
270         MonoVTable->interface_bitmap since the vtable interfaces offset array
271         is going away.
272
273 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
274
275         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
276         GetMDStreamVersion icall instead.
277
278 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
279
280         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
281         not use mono_dl_build_path() with a full library name: makes
282         fallbacks to libgaim and libfam work.
283
284 2007-07-06  William Holmes  <billholmes54@gmail.com>
285
286         * assembly.c: Added a continue statement in probe_for_partial_name when
287          parse_assembly_directory_name fails.  Fixes : 82002
288
289 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
290
291         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
292         and added a verification  for TYPEDBYREF.
293         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
294         make native int interchangeable with int32 and some small cleanup and formating.
295         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
296         handle byref of byref.
297         * verify.c (push_local): handle byref of byref.
298         * verify.c (do_binop): invalid mix of values is unverifiable
299         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
300         added visibility checks
301         * verify.c (field related method): added visibility checks
302         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
303
304 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
305
306         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
307         string.
308
309 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
310
311         * profiler.c (mono_profiler_load): Fix an off-by-one error.
312
313         * marshal.c (emit_marshal_string): When returning a string from managed code,
314         allways make a copy even for unicode strings. Fixes #81990.
315
316 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
317
318         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
319         of byref generic inst types (bug #81997).
320
321 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
322
323         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
324         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
325
326 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
327
328         * marshal.c (emit_marshal_string): Add support for unicode strings in
329         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
330
331 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
332
333         * verify.c: field load/store are now verified, missing only access checks now
334
335 2007-06-28  Martin Baulig  <martin@ximian.com>
336
337         * mono-debug.c (mono_debug_debugger_version): New public variable.
338
339 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
340
341         * locales.c: When constructing DateTimeFormat or NumberFormat for
342         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
343         MonoCultureInfo contructed from the current locale is always
344         read-only and has UseUserOverride set to true. All MonoCultureInfo
345         instances returned for GetCultures have both IsReadOnly and
346         UseUserOverride set to true. Fixes part of bug #81930.
347
348 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
349
350        * icall-def.h: Update System.__ComObject icalls
351        * marshal.c: Avoid managed transition (and object creation)
352        when looking up COM interface in RCW.
353        * marshal.h: Ditto.
354        
355        Code is contributed under MIT/X11 license.
356
357 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
358
359         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
360         to avoid crashes during assembly unloading.
361
362 2007-06-22  Raja R Harinath  <rharinath@novell.com>
363
364         Fix MethodInfo.IsGenericMethodDefinition
365         * reflection.c (mono_reflection_bind_generic_method_parameters):
366         Rearrange code to ensure we always uses a generic method definition.
367         * class.c (mono_class_inflate_generic_method_full): Set
368         'generic_container' field only for generic method definitions.
369         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
370         Use presense of 'generic_container' field as indication of being a
371         generic method definition.
372
373 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
374
375         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
376
377         * object-internals.h: Reflect changes in the layout of the managed Delegate
378         class.
379         
380         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
381         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
382         runtime memory used by the dynamic method. Fixes #77146.
383
384 2007-06-21  Dick Porter  <dick@ximian.com>
385
386         * file-io.h: 
387         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
388         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
389         81767.
390
391 2007-06-21  Raja R Harinath  <rharinath@novell.com>
392
393         * reflection.c (method_encode_methodspec): Add a tripwire.
394         * class.c (inflate_generic_type): The fully open generic type is
395         not the same as the generic type definition.
396
397 2007-06-21  Martin Baulig  <martin@ximian.com>
398
399         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
400
401         * mono-debug-debugger.h
402         (MonoDebuggerBreakpointInfo): Removed.
403         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
404         (mono_debugger_remove_breakpoint): Likewise.
405         (mono_debugger_breakpoint_callback): Likewise.
406         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
407
408 2007-06-21  Raja R Harinath  <rharinath@novell.com>
409
410         * metadata.c (mono_metadata_lookup_generic_class): The fully open
411         generic type is not the same as the generic type definition.
412         * class.c (mono_generic_class_get_class): Likewise.
413
414 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
415
416         * icall.c: The second argument to 
417         System.Reflection.MethodBase.GetMethodFromHandleInternalType
418         is a MonoType not a MonoClass.
419
420 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
421
422         * verify.c: support for function pointers in the verifier
423
424 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
425
426         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
427
428 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
429
430         * assembly.c: removed Mono.Data.SqliteClient from the list of
431         forward-compatible assemblies as it breaks the ABI (bug #81899).
432
433 2007-06-19  Raja R Harinath  <rharinath@novell.com>
434
435         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
436         lookup/update with the loader lock.
437         * reflection.c (mono_class_bind_generic_parameters): No need to
438         protect mono_metadata_lookup_* with the loader lock.
439         * class.c (inflate_generic_type): Likewise.
440         
441         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
442         on a generic instantiated type.
443
444 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
445
446         *verify.c: produce meanfull error messages on verification error
447         *verify.c: fixed some cases of verification errors reported as validation errors
448         *pedump.c: fixed the error name array, now it shows validation errors properly
449         *verify.h: fixed the contant that should be used for verification errors
450
451 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
452
453         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
454         for bug #77596, 81858 and 80743 (generics data structures on domain
455         unload).
456
457 2007-06-15  Raja R Harinath  <rharinath@novell.com>
458
459         Avoid allocating 'MonoGenericContext' on the heap.
460         * class-internals (_MonoMethodInflated::context): Make field
461         inline, not a pointer.
462         * loader.c (method_from_methodspec): Allocate 'new_context' on the
463         stack.  Use the context embedded within the inflated method as the
464         hash key, rather than 'new_context'.
465         * class.c (inflate_generic_context): Simplify.  Return a struct
466         rather than allocating on the heap.
467         (mono_class_inflate_generic_method_full): Update to changes.  Now,
468         doesn't salt away a copy of the context -- simplifying the
469         lifetime rules of a 'MonoGenericContext *'.
470         (mono_method_get_context): Return pointer to embedded context.
471         (setup_generic_array_ifaces): Allocate temporary context on stack.
472         * reflection.c (inflate_mono_method): Likewise.
473         (mono_reflection_bind_generic_method_parameters): Likewise.
474         Use the context embedded within the inflated method as the hash key.
475
476         Avoid a source of allocation of 'MonoGenericContext'.
477         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
478         and 'cached_context' fields into embedded 'MonoGenericContext' field.
479         * class.c: Update to changes.
480         (mono_generic_class_get_context): Simplify drastically.  Now just
481         returns a pointer to the field.
482         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
483         argument as a const pointer.
484         (mono_metadata_generic_context_equal): Likewise.
485         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
486         Update to changes.
487
488 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
489
490         * verify.c improved the handling of brtrue/brfalse, factored out common code
491
492 2007-06-14  Raja R Harinath  <rharinath@novell.com>
493
494         Kill MonoGenericMethod.
495         * class-internals.h (MonoGenericContext::method_inst): Rename from
496         'gmethod' and convert to a MonoGenericInst.
497         (MonoGenericMethod): Remove.
498         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
499         * loader.c (method_from_methodspec): Update to changes.  Use a
500         MonoGenericContext as the key to the hashtable.
501         * metadata.c (mono_metadata_generic_context_equal): Rename from 
502         'mono_metadata_generic_method_equal' and take MonoGenericContext.
503         (mono_metadata_generic_context_hash): Likewise from
504         'mono_metadata_generic_method_hash'.  Change hash function.
505         (mono_metadata_load_generic_params): Update to changes.
506         (mono_get_shared_generic_method): Remove.
507         * metadata-internals.h (mono_get_shared_generic_method): Remove.
508         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
509         (inflate_generic_context): Likewise.
510         (mono_class_inflate_generic_method_full): Likewise.
511         (setup_generic_array_ifaces): Likewise.
512         (mono_class_create_from_typespec): Likewise.
513         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
514         (method_encode_methodspec): Update callsite.
515         (reflection_methodbuilder_to_mono_method): Update to changes.
516         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
517         MonoGenericContext as the key to the hashtable.
518         (inflate_mono_method): Update to changes.
519
520         * class-internals.h (MonoGenericMethod::container): Remove.
521         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
522
523 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
524
525         * profiler-private.h, profiler.c, profiler.h: added API to profile
526         exception events.
527
528 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
529
530         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
531
532 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
533
534         * verify.c: method invocation is now validated, now we verify parameter types on stack.
535         Fixed overflow and underflow not aborting the verification process.
536
537 2007-06-13  Mark Probst  <mark.probst@gmail.com>
538
539         * class-internals.h (MonoStats): Added stats entries for dynamic
540         code allocations.
541
542 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
543
544         * loader.c (mono_free_method): Free header->locals and header->clauses.
545
546         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
547         dynamic case.
548
549         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
550
551         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
552
553 2007-06-12  Raja R Harinath  <rharinath@novell.com>
554
555         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
556         the tables.
557
558 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
559
560         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
561
562 2007-06-11  Raja R Harinath  <harinath@gmail.com>
563
564         MonoGenericMethod on a diet
565         * class-internals.h (_MonoMethodInflated::reflection_info): Move
566         here ...
567         (_MonoGenericMethod::reflection_info): ... from here.
568         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
569         Update to changes.
570         * reflection.c (inflate_mono_method): Likewise.
571         (mono_reflection_bind_generic_method_parameters): Likewise.
572
573 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
574
575         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
576         *verify.c: factored long ldarg forms to share code with short forms
577
578 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
579
580         *verify.c: fixed code formating factored some duplicate code
581         into a new function
582
583         *verify.h: fixed binary incompatibility introduced earlier
584
585         *pedump.c: fixed formating
586
587 2007-06-11  Raja R Harinath  <harinath@gmail.com>
588
589         Fix assertion when disassembling Mono.C5.dll
590         * loader.c (method_from_methodspec): Avoid inflating a method
591         twice with the same context.  If the methodref is inflated, use
592         the declaring method instead.
593
594         * class.c (mono_class_from_generic_parameter): Fix case similar to
595         bug #81830 handled below, but for method containers.
596
597 2007-06-10  Raja R Harinath  <harinath@gmail.com>
598
599         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
600         get_shared_generic_class.  Directly inflate the instance.
601         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
602         (inflate_generic_class): Delete.
603         (get_shared_generic_class): Delete.  Move setting of
604         'cached_class' and 'cached_context' ...
605         * metadata.c (mono_metadata_lookup_generic_class): ... here.
606
607         * metadata.c (mono_metadata_lookup_generic_class): Change
608         signature to take the components of a MonoGenericClass rather than
609         an allocated MonoGenericClass.  Change semantics to be intern-like.
610         * reflection.c (mono_class_bind_generic_parameters): Update to
611         changes.  Make locking region tighter.
612         * class.c (inflate_generic_class): Update to changes.
613         (get_shared_generic_class): Likewise.
614         * metadata-internals.h: Likewise.
615
616         * reflection.c (mono_class_bind_generic_parameters): Take and
617         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
618         (mono_reflection_bind_generic_parameters): Use
619         'mono_class_bind_generic_parameters' rather than duplicate the code.
620         * class.c (mono_bounded_array_class_get): Update to changes.
621         * object-internals.h: Likewise.
622
623         * reflection.c (mono_class_bind_generic_parameters): Only support
624         parameterizing generic type definitions.  Remove support for other
625         open types.
626
627 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
628
629         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
630
631         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
632         in the dynamic case.
633
634 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
635
636         * threads.c: When cleaning up thread, reset the Background bit.
637         Fixes bug #81720.
638
639 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
640
641        * metadata.c: Move variable declarations to top of scope.
642        * verify.c: Move variable declarations to top of scope.
643
644        Code is contributed under MIT/X11 license.
645
646 2007-06-08  Raja R Harinath  <rharinath@novell.com>
647
648         * reflection.c (mono_class_bind_generic_parameters): Replace
649         open-coded loop with mono_metadata_inflate_generic_inst.
650
651         * class.c (get_shared_generic_class): Don't call
652         mono_get_shared_generic_inst.  Use the container's own
653         'class_inst'.
654
655         * metadata.c (mono_metadata_load_generic_params): Move
656         initialization of 'context' field here from ...
657         * class.c (mono_class_create_from_typedef): ... here, and ...
658         * loader.c (mono_get_method_from_token): ... here.
659
660         * class.c (get_shared_generic_class): Rename from
661         mono_get_shared_generic_class and make static.
662         (mono_get_shared_generic_inst): Move to metadata.c.
663         * loader.c (mono_get_shared_generic_method): Likewise.
664         * class-internals.h, metadata-internals.h: Update to changes.
665
666         Fix #81830
667         * class.c (mono_class_from_generic_parameter): Don't assume a
668         generic container owner exists.  Generic containers from monodis
669         don't have any.
670
671 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
672
673         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
674         * verify.h: new typedefs to returns the non-verifiable status
675         * verify.c: initial implementation of generics, stack merging and object compatibility check
676
677 2007-06-06  Mark Probst  <mark.probst@gmail.com>
678
679         * class.c, image.c, class-internals.h (MonoImage): class_cache is
680         a MonoInternalHashTable again (fixed bug in internal hash table
681         code).
682
683 2007-06-06  Mark Probst  <mark.probst@gmail.com>
684
685         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
686         MonoInternalHashTable again (fixed bug in internal hash table
687         code).
688
689 2007-06-06  Mark Probst  <mark.probst@gmail.com>
690
691         * class.c, image.c, class-internals.h, domain.c,
692         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
693         changes.  Have to figure out what makes them break the SWF
694         regression.
695
696 2007-06-04  Mark Probst  <mark.probst@gmail.com>
697
698         * class.c, image.c, class-internals.h (MonoImage): class_cache is
699         a MonoInternalHashTable now.
700
701 2007-06-04  Mark Probst  <mark.probst@gmail.com>
702
703         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
704         MonoInternalHashTable now.
705
706 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
707
708         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
709         invoke_impl code.
710
711         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
712
713         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
714         dependent trampoline.
715
716         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
717
718         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
719
720 2007-05-29  Robert Jordan  <robertj@gmx.net>
721
722         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
723
724 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
725
726         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
727
728 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
729
730        * marshal.c: Fix interface lookup loops for
731        cominterop_get_com_slot_for_method and 
732        cominterop_get_method_interface. Only need to lookup
733        if type is a class, else use interface type method is on.
734
735        Code is contributed under MIT/X11 license.
736
737 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
738
739         * reflection.c: HasSecurity can be present even if no specially 
740         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
741         SecurityAttribute). Fix CAS regression tests on buildbot.
742
743 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
744
745        * appdomain.c: Add configure checks for header files.
746        * image.c: Add configure checks for header files.
747        * file-io.c: Add configure checks for header files.
748        * debug-mono-symfile.c: Add configure checks for header files.
749        * threadpool.c: Add configure checks for header files.
750        * console-io.c: Add configure checks for header files.
751        * profiler.c: Add configure checks for header files.
752        * rawbuffer.c: Add configure checks for header files.
753        * icall.c: Add configure checks for header files.
754        * rand.c: Add configure checks for header files.
755        * socket-io.c: Add configure checks for header files.
756
757        Code is contributed under MIT/X11 license.
758
759 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
760
761         * reflection.c (mono_custom_attrs_from_builders): Remove the 
762         assertion as it breaks the build.
763         
764         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
765
766         * reflection.c (lookup_custom_attr): Make a copy here too.
767
768         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
769         dynamic images.
770
771         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
772         images.
773
774         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
775         info.
776
777 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
778
779         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
780         (load_cattr_value): Ditto.
781
782 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
783
784         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
785
786 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
787
788         * threads.c: In "start_wrapper", set apartment_state to MTA if
789         apartment_state is Unknown and we're running on 2.0 profile or
790         higher.
791         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
792         to main method, then set apartment_state to Unknown on 1.0 profile,
793         and MTA on 2.0 profile.
794
795 2007-05-16  Jb Evain  <jb@nurv.fr>
796
797         * class-internals.h (MonoDefaults): Add an attribute_class and
798           customattribute_data_class.
799         * domain.c (mono_init_internal): Populate them.
800         * reflection.c: Use them to remove duplicates. Make a vew
801         MonoClass variables `static'.
802
803 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
804
805         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
806         step in implementing IMT, so that all isinst checks now can go
807         through the bitmap.
808         This was needed because vtables for TransparentProxy need to look
809         like the vtable of the "target" class, so they need to point to
810         its interface bitmap directly.
811
812         * object.c: inside "mono_class_create_runtime_vtable" and
813         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
814
815 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
816
817         * object-internals.h
818           culture-info.h : added territory field in MonoCulture and
819           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
820         * locales.c : fill territory field above too.
821         * culture-info-table.h : regenerated.
822
823 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
824
825         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
826         Fixes #81599.
827
828 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
829
830         * object.c: Always initialize apartment, even if 
831         there is no custom attributes on entry point.
832         
833         Code is contributed under MIT/X11 license.
834
835 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
836
837         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
838         * metadata.c: If no encoding is set, check for unicode
839         on class.
840         
841         Code is contributed under MIT/X11 license.
842
843 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
844
845         * threads.c: Handle if mono_thread_current returns NULL 
846         
847         Code is contributed under MIT/X11 license.
848
849 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
850
851         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
852         in start_wrapper. Added mono_thread_init_apartment_state and
853         mono_thread_cleanup_apartment_state.
854         * object.c: Initialize thread apartment state on main thread
855         by checking for STAThreadAttribute on entry point.
856         * object-internals.h: Add apartment_state field to MonoThread.
857         * threads-types.h: Add unmanaged definition of 
858         System.Threading.ApartmentState, MonoThreadApartmentState.
859         
860         Code is contributed under MIT/X11 license.
861         
862 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
863
864         * class.c: Fix windows build.
865         * class-internals.h: Fix windows build.
866         
867         Code is contributed under MIT/X11 license.
868
869 2007-05-08  Robert Jordan  <robertj@gmx.net>
870
871         * process.c (CreateProcess_internal):
872         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
873         .CreateNoWindow was specified. Fixes #81496.
874
875 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
876
877         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
878         step in implementing IMT, replaced it with two compact arrays
879         (interfaces_packed and interface_offsets_packed) and a bitmap that
880         is used for isinst checks (interface_bitmap).
881
882         * class.c: (compare_interface_ids): compare function to pass to
883         bsearch when looking for an interface with a given id.
884         (mono_class_interface_offset): reimplemented using bsearch on
885         interfaces_packed, getting the offset from interface_offsets_packed.
886         (print_implemented_interfaces): utility debugging function.
887         (setup_interface_offsets): reworked to initialize interfaces_packed,
888         interface_offsets_packed and interface_bitmap.
889
890         * object.c: replaced all accesses to "MonoClass.interface_offsets"
891         with uses of interfaces_packed and interface_offsets_packed.
892
893 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
894
895         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
896         mono_class_interface_offset prototype to wrap all accesses to
897         "MonoClass.interface_offsets".
898
899         * class.c: Implemented mono_class_interface_offset, and wrapped all
900         accesses to "MonoClass.interface_offsets".
901
902         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
903         "MonoClass.interface_offsets".
904
905 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
906
907         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
908         GetMethodFromHandle overloads (bug #78637).
909
910 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
911
912         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
913         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
914
915 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
916
917         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
918         #81498.
919
920         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
921         gracefully.
922         (mono_custom_attrs_from_index): Ditto.
923
924         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
925         Fixes #81501.
926
927 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
928
929         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
930         is now allocated from a mempool.
931
932 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
933
934         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
935         caller holds threads_lock, leading to deadlocks. Fixes #81476.
936
937 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
938
939         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
940         mono_loader_clear_error () too late. Fixes #81463.
941
942 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
943
944         * culture-info-table.h : regenerated.
945
946 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
947
948         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
949         is missing.
950
951 2007-04-25  Dick Porter  <dick@ximian.com>
952
953         * Makefile.am: Put the mingw enforced-optimisation back into the
954         PLATFORM_WIN32 section.
955
956 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
957
958         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
959         patch.
960
961         * image.c (mono_image_load_module): New API function to load a module reference.
962
963         * image.c (load_modules): Load modules lazily. Fixes #80812.
964
965         * class.c (mono_class_from_typeref): Use mono_image_load_module.
966         
967         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
968
969         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
970         to mono_image_load_module_dynamic.
971
972 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
973
974         * marshal.c: Fix calling convention for CCW on non-windows
975         platforms. STDCALL on windows, CDECL everywhere else to work 
976         with XPCOM and MainWin COM.
977         
978         Code is contributed under MIT/X11 license.
979
980 2007-04-23  Martin Baulig  <martin@ximian.com>
981
982         Fix #80969.
983
984         * loader.c
985         (method_from_memberref): Added `gboolean *used_context' argument.
986         (mono_get_method_from_token): Likewise.
987         (mono_get_method_full): Don't insert the method in the cache when
988         `used_context' is true.
989
990 2007-04-23  Raja R Harinath  <rharinath@novell.com>
991
992         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
993
994         * reflection.c (mono_reflection_bind_generic_parameters): Don't
995         create new MonoTypes for returned types.
996         * class.c (mono_generic_class_get_class): Export mono-internal.
997         * class-internals.h: Update to changes.
998
999 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
1000
1001         * threadpool.c, threadpool.h, icall-def.h: patch from
1002         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
1003
1004 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
1005
1006         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
1007         
1008         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
1009
1010         * threads.c (mono_thread_get_stack_bounds): New helper function.
1011
1012         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
1013         Correctly compute stack bounds when attaching. Fixes #81394.
1014
1015 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
1016
1017         * reflection.c: fix handling of doubles in custom attributes
1018         for the arm-fpa format (bug #81368).
1019
1020 2007-04-18  Raja R Harinath  <rharinath@novell.com>
1021
1022         * reflection.c (assembly_add_win32_resources): Mildly relax an
1023         bounds check to let the end pointer point just past the end of the
1024         allocated buffer.  (may fix #81384)
1025
1026 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
1027
1028         * culture-info-table.h : regenerated.
1029
1030 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
1031
1032         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
1033         the thread is aborted early.
1034
1035 2007-04-05  Dick Porter  <dick@ximian.com>
1036
1037         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
1038         FindFirstFile()/FindNextFile() to find entries.  This lets the
1039         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
1040         81038.
1041
1042         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
1043         the parameters of
1044         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
1045
1046 2007-04-04  Martin Baulig  <martin@ximian.com>
1047
1048         * debug-helpers.c
1049         (mono_method_desc_full_match): Add support for nested classes.
1050
1051 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
1052
1053         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
1054
1055 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
1056
1057         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
1058         waiting for too many threads.
1059
1060 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
1061
1062         * environment.c: Fix return value check on uname so we can get the 
1063         executing version on Solaris operating systems.
1064
1065 2007-03-28  Jb Evain  <jbevain@gmail.com>
1066
1067         * class.c (mono_type_get_name_recurse): Complete the
1068         fix for the creation of assembly qualified names for
1069         pointer types. Fixes #81208.
1070
1071 2007-03-27  Dick Porter  <dick@ximian.com>
1072
1073         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
1074         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
1075         changed.
1076
1077         * threads.c
1078         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
1079         the value of ReleaseMutex().
1080
1081 2007-03-27  Dick Porter  <dick@ximian.com>
1082
1083         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
1084         in little-endian order, not network endian, so must be converted
1085         to host endian here.  Fixes bug 80593.
1086
1087 2007-03-22  Jb Evain  <jbevain@gmail.com>
1088
1089         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
1090         qualified names for pointer types. Fixes #81208.
1091
1092 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
1093
1094         * marshal.c: Add support for PreserveSigAttribute. 
1095         
1096         Code is contributed under MIT/X11 license.
1097
1098 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
1099
1100         * process.c: Fix endianness issues. Fixes #81126.
1101
1102         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
1103         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
1104
1105         * image.c (mono_image_lookup_resource): Make this work on big-endian
1106         machines.Change API contract so the caller needs to free the return value.
1107         
1108         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
1109         API change.
1110         
1111 2007-03-14  Martin Baulig  <martin@ximian.com>
1112
1113         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
1114         mono_type_get_desc() as well.
1115
1116 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1117
1118         * icall.c:  Fix environ access in VS.  
1119         
1120 2007-03-13  Alp Toker  <alp@atoker.com>
1121
1122         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
1123         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
1124         #63841.
1125
1126 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
1127
1128         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
1129         circular references among dynamic methods. Fixes #81091.
1130
1131         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
1132
1133 2007-03-09  Martin Baulig  <martin@ximian.com>
1134
1135         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
1136
1137 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
1138
1139         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
1140         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
1141         
1142         Code is contributed under MIT/X11 license.
1143         
1144 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
1145
1146         * loader.c: Reapply patch for bug #79424.
1147
1148 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1149
1150         * metadata.c (mono_type_to_unmanaged): Only convert object to
1151         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
1152
1153 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
1154
1155         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
1156         (and incorrectly set) is_reference field from MonoGenericInst.
1157
1158 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1159
1160         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
1161         a little earlier.
1162
1163         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
1164
1165         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
1166
1167 2007-03-05  Miguel de Icaza  <miguel@novell.com>
1168
1169         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
1170         FileOptions.1 value to mean "temporary", map that to
1171         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
1172
1173         Fixes 80688
1174
1175 2007-03-03  Marek Habersack  <mhabersack@novell.com>
1176
1177         * appdomain.c: implement MS .Net style shadow copying. Copies of
1178         the assemblies are made in a subdirectory of the dynamic base
1179         directory, the assembly names are preserved.
1180         Copy .mdb and .config files along with the assemblies being shadowed.
1181
1182 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1183
1184         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
1185         (emit_marshal_handleref): Ditto.
1186
1187         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
1188         on Visual C++. Fixes #80671.
1189
1190 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
1191
1192         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
1193         for clone operations.
1194
1195 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1196
1197         * marshal.c: Fix warnings.
1198
1199 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
1200
1201         * loader.c: allow case-insensitive matching of the dll name
1202         in dllmap handling when prefixed with "i:".
1203
1204 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
1205
1206         * threads.c: Fix #ifdef for dummy_apc function for VS.
1207
1208 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
1209
1210         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
1211
1212 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
1213         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
1214         giving precedence to the methods with a fully qualified name
1215         (InterfaceName.MethodName) when building the interface sections
1216         of the vtable.
1217
1218 2007-02-16  Dick Porter  <dick@ximian.com>
1219
1220         * threadpool.c (append_job): Fix fast-path array handling, so it's
1221         less likely the array will grow exponentially when the load is
1222         heavy.
1223
1224 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1225
1226         * metadata-internals.h, loader.c: fix dllmap lookup order
1227         for non-function maps, too, and prepare for fallback code.
1228
1229 2007-02-12  Robert Jordan  <robertj@gmx.net>
1230
1231         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
1232         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
1233         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
1234         GlobalFree. Fixes a part of bug #77075.
1235
1236 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
1237
1238         * loader.c: implemented typedef parent in field memberref.
1239
1240 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
1241
1242         * marshal.c: Fix warnings and remember to call Release on
1243         IUnknown of RCW.
1244         
1245         Code is contributed under MIT/X11 license.
1246
1247 2007-02-10  Miguel de Icaza  <miguel@novell.com>
1248
1249         * class-internals.h: Add MonoHandleRef definition, and
1250         handleref_class to mono_defaults. 
1251
1252         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
1253         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
1254
1255         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
1256         (do nothing on this stage)
1257         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
1258         (emit_marshal_handleref): New method, used for argument handling
1259         of HandleRefs. 
1260
1261 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
1262
1263         * class.c (mono_class_setup_parent): Lazily init com types.
1264         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
1265         init com types.
1266         * object.c (mono_remote_class_vtable): Lazily init com types.
1267         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
1268         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
1269         * domain-internals.h: Expose mono_init_com_types.
1270         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
1271         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
1272         Add support for COM Callable Wrapper marshalling.
1273         * marshal.h: Add icall definitions.
1274         * gc.c: Handle freeing of CCWs in finalizer code.
1275         
1276         Code is contributed under MIT/X11 license.
1277
1278 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
1279
1280         * reflection.c: changed all the signature encoding code to use
1281         a variable-sized buffer.
1282
1283 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1284
1285         * marshal.c: locking fixes: never take the loader lock
1286         or other runtime locks when holding the marshal lock
1287         (fixes bug#80664).
1288
1289 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
1290
1291         * marshal.c: make the delegate function pointer mapping
1292         work for the moving GC.
1293
1294 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
1295
1296         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
1297         for bug #80618.
1298
1299 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1300
1301         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
1302         gmodule.
1303
1304 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
1305
1306         * threadpool.c: made the code moving-GC safe.
1307
1308 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
1309
1310         * assembly.c, boehm-gc.c, class-internals.h, class.c,
1311         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
1312         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
1313         warning cleanup.
1314         * reflection.c: warning cleanup, some threading and moving GC fixes.
1315
1316 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
1317
1318         * class.c, loader.c: create the needed Set/Get/Address array methods
1319         as well as the .ctors in mono_class_init (), fixes bug #80567.
1320
1321 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
1322
1323         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
1324         we doesn't decrease its alignment. Should fix the sparc build.
1325
1326 2007-01-24  Dick Porter  <dick@ximian.com>
1327
1328         * socket-io.c
1329         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1330         Create the returned object if we need to ignore an unsupported
1331         socket option.  Fixes a segfault reported by Atsushi.
1332
1333 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
1334
1335         * class.c, object.c: restrict GC-tracked fields to
1336         UIntPtr fields used inside corlib, so we provide better
1337         type info to the GC and also allow broken packing as in
1338         bug #80580.
1339
1340 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
1341
1342         * sgen-gc.c: removed duplicated function.
1343
1344 2007-01-19  Miguel de Icaza  <miguel@novell.com>
1345
1346         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
1347         value that means that the value is not supported, but that we
1348         should not return a failure, but instead report this as a
1349         successful operation.
1350
1351 2007-01-19  Raja R Harinath  <rharinath@novell.com>
1352
1353         Fix tests/bug79956.2.il
1354         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
1355         (mono_generic_class_get_class): If the generic definition in an
1356         enum, copy over other fields related to it.
1357
1358 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
1359
1360         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
1361         genericinst enums (bug #79215).
1362
1363 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
1364         * class.c: Fix bug 80307.
1365
1366 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
1367
1368         * image.c: if the file table is not present, try to load
1369         all the modules, since we don't have info about them
1370         having or not metadata (bug #80517).
1371         * assembly.c: allow mono_assembly_load_references () to
1372         work for netmodules.
1373
1374 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1375
1376         * image.c, metadata-internals.h, object.c: execute module
1377         cctors when running on the 2 runtime if present (bug #80487).
1378
1379 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
1380
1381         * icall.c: optimized InitializeArray() on bigendian.
1382
1383 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
1384
1385         * icall.c: fix for the broken ARM FPA double format.
1386
1387 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
1388
1389         * icall.c: handle endian issues for r4 and r8 types, too, in
1390         the InitializeArray() icall.
1391
1392 2007-01-15  Miguel de Icaza  <miguel@novell.com>
1393
1394         * loader.c (mono_loader_error_prepare_exception): Clear the error
1395         once we have extracted the information from it, do this before we
1396         call into the JIT's class loading mechanisms.
1397
1398         * object.c (mono_class_create_runtime_vtable): Do not clear the
1399         loader error before calling mono_class_get_exception_for_failure
1400         as the loader error is needed inside
1401         mono_class_get_exception_for_failure to throw the error (thinko).
1402
1403         Fixes #80521
1404         
1405 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
1406
1407         * reflection.c: align fields rva data so it's faster to load at
1408         runtime.
1409
1410 2007-01-12  Raja R Harinath  <rharinath@novell.com>
1411
1412         Prepare to simplify GenericMethod handling.
1413         * class-internals.h (mono_method_get_context): New accessor function.
1414         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
1415         rather than directly accessing '->context' field.
1416
1417         * class-internals.h (_MonoGenericParam.method): Move ...
1418         (_MonoGenericContainer): ... here.  Add into union with klass field.
1419         * class.c, icall.c, loader.c, metadata.c, reflection.c:
1420         Update to changes.
1421
1422 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
1423
1424         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
1425         the wrapper type enum and reduce relocations.
1426
1427 2007-01-12  Raja R Harinath  <rharinath@novell.com>
1428
1429         * reflection.c (inflate_mono_method): Reuse method instantiation
1430         from the generic method, if available.
1431
1432 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1433
1434         * marshal.c (emit_marshal_variant): Fix conv_arg
1435         type in last commit, based on whether parameter is byref.
1436         
1437 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1438
1439         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
1440         marshalling.
1441         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
1442         MONO_TYPE_OBJECT back for VARIANT support.
1443
1444 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1445
1446         * marshal.c, marshal.h, icall-def.h: Implement 
1447         Marshal.ReAllocCoTaskMem.
1448
1449 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
1450
1451         * marshal.c: memory retention fixes: use the proper
1452         image cache for runtime_invoke method lookups.
1453
1454 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
1455
1456         * mempool.c: added code to help debug mempool allocations.
1457
1458 2007-01-11  Dick Porter  <dick@ximian.com>
1459
1460         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
1461         support (experimenting with faking it with IP_MTU_DISCOVER for
1462         systems that don't have IP_DONTFRAGMENT.)
1463         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
1464         icall.
1465
1466         * icall-def.h: new System.Net.Sockets.Disconnect icall.
1467
1468         * socket-io.h: Add new fields to MonoSocketAsyncResult
1469         corresponding to the new ones in Socket.cs.
1470
1471 2007-01-11  Raja R Harinath  <rharinath@novell.com>
1472
1473         Fix IronPython regression mentioned in #80249
1474         * metadata.c (do_mono_metadata_parse_generic_class): Clear
1475         'cached_context' field, since it may have been initialized as a
1476         side-effect of metadata parsing.
1477
1478         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
1479         (_MonoGenericClass.cached_class): Move here and rename from lone
1480         remaining field of ...
1481         (_MonoInflatedGenericClass): ... this.  Remove.
1482         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
1483         to changes.
1484
1485         Fix mcs/tests/test-128.cs regression.
1486         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
1487         2007-01-10 change below.
1488         [MONO_TYPE_OBJECT]: Recurse into array case.
1489
1490 2007-01-11  Raja R Harinath  <harinath@gmail.com>
1491
1492         * class-internals.h (mono_get_inflated_generic_class): Remove.
1493         * class.c (mono_get_inflated_generic_class): Remove.
1494         (mono_generic_class_get_class): Rename from
1495         mono_class_create_generic.
1496         (mono_class_from_mono_type) [GENERICINST]: Use it.
1497         * reflection.c, metadata.c: Update to changes.  Use
1498         'mono_class_from_mono_type'.
1499
1500 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
1501
1502         * reflection.c: use passed type when encoding an array element
1503         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
1504
1505 2007-01-09  Robert Jordan  <robertj@gmx.net>
1506
1507         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
1508         result arguments (someDelegate.EndInvoke (unrelatedAres)).
1509         Fixes bug #80392.
1510
1511 2007-01-09  Raja R Harinath  <rharinath@novell.com>
1512
1513         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
1514
1515         * object.c (set_value): Avoid aliasing between type->data.klass
1516         and type->data.generic_class.
1517
1518         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
1519
1520 2007-01-08  Raja R Harinath  <rharinath@novell.com>
1521
1522         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
1523         between type->data.klass and type->data.generic_class.
1524
1525 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
1526
1527         * marshal.c: In MS.NET, StringBuilder objects are not copied by
1528         value in out parameters.
1529
1530 2007-01-08  Raja R Harinath  <rharinath@novell.com>
1531
1532         Simplify invariant for MonoGenericClass::klass field.
1533         * class.c (mono_class_create_generic): Verify 'klass' is null.
1534         * metadata.c (do_mono_metadata_parse_generic_class): Don't
1535         initialize 'klass' field.
1536
1537 2007-01-05  Raja R Harinath  <rharinath@novell.com>
1538
1539         Ongoing work to avoid redundant data and simplify invariants.
1540         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
1541         'generic_class', and change type to a GenericInst.
1542         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
1543         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
1544
1545 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
1546
1547         * class.c : skip io-layer under PLATFORM_WIN32.
1548
1549 2007-01-03  Tor Lillqvist  <tml@novell.com>
1550
1551         Fix #80305: In a bundled executable, look in the bundled exe
1552         assembly to determine the runtime version. Add the possibility to
1553         bundle also the machine.config file.
1554         
1555         * assembly.c (mono_assembly_open_from_bundle): Make
1556         non-static. Allow being called even if we have no bundled
1557         assemblies, and return NULL right away in that case.
1558
1559         * domain-internals.h: Declare mono_assembly_open_from_bundle()
1560         here.
1561
1562         * domain.c (app_config_parse): Take an assembly exe file name as
1563         parameter instead of a config file name. Check for a bundled
1564         config file for that assembly by calling
1565         mono_config_string_for_assembly_file() (see below) before looking
1566         for one in the file system.
1567         (get_runtimes_from_exe): Corrsponding change to call of
1568         app_config_parse().
1569         (get_runtimes_from_exe): Check for bundled assembly exe file first
1570         by calling mono_assembly_open_from_bundle(). If no bundled
1571         assembly exe file is found, call mono_image_open() as before to
1572         look it up in the file system.
1573
1574         * mono-config.c: Add variable bundled_machinec_onfig.
1575         (mono_config_string_for_assembly_file): New function.
1576         (mono_config_for_assembly): Move code snippet that looks for a
1577         bundled assembly .config file into the above new function. Call
1578         it.
1579         (mono_register_machine_config, mono_get_machine_config): New
1580         functions to set and retrieve
1581
1582         * assembly.h: Declare mono_register_machine_config().
1583
1584         * mono-config.h: Declare mono_get_machine_config() and
1585         mono_config_string_for_assembly_file().
1586
1587         * icall.c: No declaration of environ necessary on Win32. It is
1588         declared (as a macro expanding to a function call) in stdlib.h.
1589         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
1590         New internal mono function. Returns the value of
1591         mono_get_machine_config() as a Mono string.
1592
1593         * icall-def.h: Add get_bundled_machine_config().
1594
1595 2007-01-04  Raja R Harinath  <rharinath@novell.com>
1596
1597         Remove redundant field
1598         * class-internals.h (_MonoGenericContext.container): Remove field.
1599         * loader.c (mono_method_get_signature_full): Don't parse a
1600         "container" for a signature parse when the signature is inflated
1601         immediately.
1602         (method_from_methodspec): Likewise, for a generic_inst.
1603         * class.c, metadata.c, reflection.c: Update to changes.
1604
1605 2006-01-04  Raja R Harinath  <rharinath@novell.com>
1606
1607         * class-internals.h (_MonoGenericClass): Rename 'context' field to
1608         'cached_context', and change semantics -- it starts off NULL, and
1609         is initialized on demand.
1610         * class.c (mono_generic_class_get_context): New accessor to
1611         replace 'context' field accesses.
1612         (mono_class_get_context): New helper.
1613         (*): Update to changes.
1614         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
1615
1616 2007-01-03  Miguel de Icaza  <miguel@novell.com>
1617
1618         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
1619         before the memcpy.   Fixes Marshal2 regression.
1620
1621 2007-01-02  Jb Evain  <jbevain@gmail.com>
1622
1623         * blob.h: add a MONO_TYPE_ENUM definition
1624         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
1625         fix the encoding of arrays of enums in custom attributes.
1626
1627         Fixes #79666.
1628
1629 2007-01-01  Miguel de Icaza  <miguel@novell.com>
1630
1631         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
1632         string is null terminated, but only cut the string short if it
1633         overflows the buffer.   
1634         
1635         (mono_string_to_byvalstr): Also fix this routine.   The code here
1636         was not properly terminating a string (it was only terminated
1637         because of the previous catch-all memset). 
1638
1639         I left the memset, because I do not know if applications expect
1640         the runtime to clear this region. 
1641
1642         Fixes #79944.
1643
1644         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
1645         Clear the error before returning to unmanaged code to prevent the
1646         runtime from being confused later on (fixes  80420).
1647         (ves_icall_type_from_name): Always call mono_loader_clear_error
1648         after parsing a type that could have failed.
1649         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
1650
1651         * loader.c (mono_loader_clear_error): Fix indentation.
1652
1653 2006-12-28  Martin Baulig  <martin@ximian.com>
1654
1655         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
1656
1657 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
1658
1659         * reflection.c: patch from Rolf Bjarne Kvinge to fix
1660         getting a token for an EnumBuilder.
1661
1662 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
1663
1664         * reflection.c: be more careful in case resource generation
1665         fails to create the data array.
1666
1667 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
1668
1669         * sgen-gc.c: write barrier for clone and fix unregister handles.
1670
1671 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
1672
1673         * reflection.c: some fixes needed in the generics code for the moving GC.
1674
1675 2006-12-22  Robert Jordan  <robertj@gmx.net>
1676
1677         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
1678         account. Fixes bug #80299.
1679
1680 2006-12-21  Raja R Harinath  <rharinath@novell.com>
1681
1682         Fix WaitHandle usage in delegates.
1683         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
1684         * object.c (mono_wait_handle_new): Use the property set method to
1685         initialize the handle.
1686         (mono_wait_handle_get_handle): New.
1687         * threadpool.c (mono_async_invoke): Use it.
1688         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
1689         Likewise.
1690         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
1691
1692 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
1693
1694         * marshal.c (emit_marshal): Call emit_marshal_variant and
1695         emit_marshal_com_interface when applicable.
1696         (emit_marshal_variant, emit_marshal_com_interface): Add
1697         methods for this case and remove if's from emit_marshal_object.
1698         
1699 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
1700
1701         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
1702
1703 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
1704
1705         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
1706         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
1707         and GlobalFree on Windows. Remove FIXME.
1708
1709 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
1710
1711         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
1712         implementation for managed objects.
1713
1714 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
1715
1716         * object.c: implemented code to be used for checking
1717         that no reference field overlaps with non-references.
1718
1719 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1720
1721         * threadpool.c: fix queue code to be compatible with the
1722         moving GC.
1723
1724 2006-12-18  Miguel de Icaza  <miguel@novell.com>
1725
1726         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
1727         in structures by throwing ArgumentNullException.
1728
1729         (emit_marshal_safehandle): Also when they are null parameters.
1730
1731         (emit_marshal_safehandle): Add support for ref
1732         SafeHandles parameters
1733
1734 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
1735
1736         * profiler.c: updated to use the mono-dl API instead of
1737         gmodule.
1738
1739 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1740
1741         * profiler.c: updated to use the mono-dl dynamic loading
1742         API instead of gmodule.
1743
1744 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
1745
1746         * profiler.c: use readlink, older versions of glib don't have
1747         g_file_read_link ().
1748
1749 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1750
1751         * profiler.c: try to detect the path to mono if libc fails to provide
1752         a useful name (bug #80286).
1753
1754 2006-12-16  Raja R Harinath  <rharinath@novell.com>
1755
1756         Fix #80242
1757         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
1758         instance, use the generic type definition instead.
1759         (ves_icall_Type_GetNestedTypes): Likewise.
1760         * class.c (mono_class_create_generic): Always set the
1761         nested_classes of a generic instance to NULL, even if the generic
1762         type definition has nested types.
1763
1764 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
1765
1766         * marshal.c (mono_string_from_bstr): Revert previous Windows change
1767         and fix on Linux.
1768         
1769 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1770
1771         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
1772         my arguments were in the wrong order.   I also fixed the Windows
1773         version which seems to have had the same issue.
1774
1775         (mono_free_bstr): On Unix, this is g_free.
1776         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
1777         conversions (for the tests in corlib to pass).
1778
1779 2006-12-14  Miguel de Icaza  <miguel@novell.com>
1780
1781         * marshal.c (emit_ptr_to_object_conv): For now, ignore
1782         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
1783         exception if a ref SafeHandle in a struct has changed).
1784         
1785         (emit_struct_conv): Do not perform layout checks for classes
1786         derived from SafeHandle, as those are specially handled. 
1787
1788         (emit_object_to_ptr_conv): Add support for
1789         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
1790
1791         (emit_marshal_safehandle): Implement conversion of return values
1792         of safehandles (MARSHAL_ACTION_CONV_RESULT).
1793         
1794         * threads.c: WaitHandle now is compiled with two different handles
1795         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
1796         for 2.0.
1797         
1798         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
1799         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
1800         these routines to cope with both kinds of fields.
1801
1802 2006-12-12  Miguel de Icaza  <miguel@novell.com>
1803
1804         * metadata.c (mono_type_to_unmanaged): Handle the case where
1805         type->data.klass is a SafeHandle, and in that case, return the
1806         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
1807         MONO_MARSHAL_CONV_SAFEHANDLE. 
1808
1809 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1810
1811         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
1812         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
1813         calling emit_marshal_object.
1814
1815         (emit_marshal_safehandle): Implement marshalling of
1816         SafeHandle parameters (no ref support yet).
1817
1818         (MarshalAction): Document the defines as I implement
1819         them for SafeHandle.
1820
1821         (emit_marshal_object): indentation police.
1822
1823         * class-internals.h: Define MonoSafeHandle.
1824         Add safehandle_class to MonoDefaults type.
1825
1826         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
1827         list of classes to check for fields. 
1828
1829         * domain.c (mono_init_internal): Add SafeHandle to the list of
1830         mono_defaults loaded.
1831
1832 2006-12-15  Raja R Harinath  <rharinath@novell.com>
1833
1834         Fix #80253
1835         * reflection.c (mono_reflection_bind_generic_parameters): If the
1836         generic type definition is a type builder, ensure that it is fully
1837         initialized before instantiating it.  Kill some dead code.
1838
1839 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
1840
1841         * object.c: clear the loader_error () before loading
1842         more metadata stuff (bug #80258).
1843
1844 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
1845
1846         * icall.c, icall-defs.h: type modifiers icalls for
1847         parameters and properties.
1848
1849 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
1850
1851         * object.c, icall.c: fixed warnings.
1852
1853 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1854
1855         * marshal.c: fixed a couple of leaks and coding style in a few places.
1856
1857 2006-12-08  Dick Porter  <dick@ximian.com>
1858
1859         * process.c: Cope with NULL ProcessStartInfo arguments on windows
1860         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
1861         80173.
1862
1863 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
1864
1865         * process.c: ProcessStartInfo may have only filename set and
1866         arguments can be NULL.
1867
1868 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1869
1870         * icall.c: fix leak found by Robert Jordan.
1871
1872 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1873
1874         * marshal.c, marshal.h: generate managed method to access an element
1875         of a multi-dimensional array.
1876
1877 2006-11-30  Paolo Molaro (lupus@ximian.com)
1878
1879         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
1880
1881 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1882
1883         * icall.c: back out GetFields () fix until the serialization code is
1884         fixed to not depend on the incorrect behaviour.
1885
1886 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
1887
1888         * profiler.c: provide defaults if none are set.
1889
1890 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
1891
1892         * Makefile.am, attrdefs.h: new public header file with
1893         constants for attributes for use by embedders.
1894
1895 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
1896
1897         * icall.c: GetFields () fix for bug #80064.
1898
1899 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
1900
1901         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
1902         removed long unused icalls.
1903
1904 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
1905   
1906         * marshal.c: 
1907                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
1908                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
1909                 can be generated without a delegate class.
1910                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
1911         
1912         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
1913
1914 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1915
1916         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
1917         #80069.
1918
1919 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
1920
1921         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
1922         icall-def.h: added icalls needed by System.GC.
1923
1924 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
1925
1926         * loader.c: ensure the class in catch clauses is handled
1927         correctly for generics methods (fixes bug#79980).
1928
1929 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
1930
1931         * monitor.h, monitor.c: added mono_locks_dump () function
1932         to help debug deadlocks involving managed locks.
1933
1934 2006-11-13  Dick Porter  <dick@ximian.com>
1935
1936         * file-io.c (get_file_attributes): If the file is a symlink try
1937         and get the stat data for the target, but also add the
1938         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
1939         the specs for the windows symlink support, but will probably have
1940         to be reworked when I have test data from a vista machine.  Fixes
1941         bug 79887.
1942
1943 2006-11-13  Dick Porter  <dick@ximian.com>
1944
1945         * gc.c (mono_domain_finalize): 
1946         * marshal.c (mono_delegate_begin_invoke): 
1947         * threadpool.c (socket_io_init, mono_thread_pool_init)
1948         (mono_thread_pool_finish): 
1949         * monitor.c (mono_monitor_try_enter_internal): 
1950         * threads.c (mono_thread_resume, mono_thread_init)
1951         (mono_thread_suspend_all_other_threads)
1952         (mono_thread_execute_interruption): 
1953         * appdomain.c (mono_domain_unload): Check for NULL error returns
1954         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
1955         75733.
1956
1957 2006-11-11  Miguel de Icaza  <miguel@novell.com>
1958
1959         * process.c
1960         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
1961         Only close the handle if the value of the handle is not
1962         INVALID_HANDLE_VALUE.  This just makes the process a bit more
1963         robust.
1964
1965         Improvement for #75733, so that we do not run into this problem. 
1966
1967         
1968         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
1969         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
1970         internal variables.  Fixes #79462 
1971         
1972
1973 2006-11-09  Dick Porter  <dick@ximian.com>
1974
1975         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
1976         Use poll() not select().  Fixes bug 79397.
1977
1978 2006-11-09  Raja R Harinath  <rharinath@novell.com>
1979
1980         Fix #79872
1981         * assembly.c (mono_assembly_load_from_full): Check that the given
1982         image has an assembly manifest.
1983
1984 2006-11-09  Ankit Jain  <jankit@novell.com>
1985
1986         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
1987         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
1988         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
1989
1990 2006-11-07  Dick Porter  <dick@ximian.com>
1991
1992         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
1993         Put the old resolver behaviour back for pre-2.0 profiles.
1994
1995 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
1996
1997         * threadpool.c: precise GC and locking fixes.
1998
1999 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
2000
2001         * class.c: don't load types that have an explicit unaligned
2002         managed reference. Provide better info in the TypeLoad exception.
2003         Part of the fix for bug #79744.
2004         * object.c: use the correct check for class type load issues.
2005
2006 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
2007
2008         * class.c: enforce alignment of fields with managed references
2009         even when Pack=1 is forced by the user (bug #77788).
2010
2011 2006-11-03  Dick Porter  <dick@ximian.com>
2012
2013         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2014         If the address reverse lookup fails, return it as the hostname
2015         anyway.  Fixes bug 79721.
2016
2017 2006-11-03  Dick Porter  <dick@ximian.com>
2018
2019         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
2020         Fix build on Windows.
2021
2022 2006-11-02  Dick Porter  <dick@ximian.com>
2023
2024         * icall-def.h: 
2025         * object-internals.h: 
2026         * exception.c (mono_get_exception_thread_interrupted): 
2027         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
2028         Fixes bug 74525.
2029
2030         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
2031         Check for pending Thread.Interrupt.
2032
2033 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
2034         * loader.c: Fixed bug 79684.
2035
2036 2006-10-27  Dick Porter  <dick@ximian.com>
2037
2038         * file-io.c (get_file_attributes): Force symlinks to directories
2039         to be returned as a regular file.  Fixes bug 79733.
2040 2006-10-26  Dick Porter  <dick@ximian.com>
2041
2042         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
2043         CreateFile to open a directory then we need to set the
2044         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
2045
2046 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
2047
2048         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
2049         friends.
2050
2051 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2052
2053         * sgengc.c: small cleanup of timer code.
2054
2055 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2056
2057         * sgen-gc.c: fix some warnings and start adding support for
2058         complete object removal on domain unload.
2059
2060 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
2061
2062         * assembly.c: build_assembly_name should not consider a version
2063         number without build or revision number invalid. Fixes bug #79715.
2064
2065 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
2066
2067         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
2068         call kernel32 function OutputDebugString directly.
2069         
2070         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2071         
2072 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
2073
2074         * reflection.c: small cleanup, using a function to insert a MonoString
2075         in the string heap.
2076
2077 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
2078
2079         * reflection.c: moving GC fixes.
2080
2081 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
2082
2083         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
2084         all the objects with finalizers belonging to an unloading appdomain.
2085
2086 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
2087
2088         * sgen-gc.c: added ability to allocate even when the nursery is fully
2089         pinned and fixed a couple of bugs.
2090
2091 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2092
2093         * threads.h: Revert the last change for now.
2094
2095         * threads.h (mono_thread_get_pending_exception): Rename this to
2096         mono_thread_get_undeniable_exception ().
2097
2098 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
2099
2100         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
2101         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
2102         when fname does not refer to valid assembly. This result in a more
2103         meaningful error message.
2104         * exception.c: added mono_get_exception_bad_image_format2 which 
2105         constructs a BadImageFormatException using the ctor taking a custom
2106         message and the file name. Passing in a NULL msg results in a default
2107         message.
2108         * exception.h: define mono_get_exception_bad_image_format2 function.
2109         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
2110         when file name pointed to an invalid IL image. Use 
2111         mono_get_exception_file_not_found2 to construct FileNotFoundException,
2112         as this results in a more meaningful error message.
2113
2114 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2115
2116         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
2117         #79465.
2118
2119 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
2120
2121         * metadata.c (mono_type_size): Change the align parameter to guint32 for
2122         consistency with the other _size functions.
2123         (mono_type_stack_size): Ditto.
2124
2125         * class.c object.c icall.c: Fix warnings caused by the above change.
2126
2127         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
2128
2129         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
2130
2131         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
2132
2133 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2134
2135         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
2136         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
2137         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
2138         threadpool.h, threads-types.h: mark more internal functions.
2139
2140 2006-10-11  Dick Porter  <dick@ximian.com>
2141
2142         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2143         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
2144         reproduce the bug even before applying the fix.)
2145
2146 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
2147
2148         * reflection.c: allow retrieving attributes for arguments in generic
2149         methods (bug #79241).
2150
2151 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
2152
2153         * debug-mono-symfile.c: properly check fopen () result (found by
2154         coverity).
2155
2156 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
2157
2158         * reflection.c: make error message clearer and fixed two
2159         issuelets found by Coverity.
2160
2161 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
2162
2163         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
2164
2165 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2166
2167         * object-internals.h, gc-internal.h, profiler-private.h:
2168         mark internal functions.
2169
2170 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2171
2172         * reflection.c: put data in the text section.
2173         * icall.c: recognize more types in type_from_typename ().
2174         * process.c, marshal.c: added some GC FIXMEs.
2175
2176 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2177
2178         * loader.c: check for NULL before initializing.
2179
2180 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
2181
2182         * gc.c (finalizer_thread): Use a non-alertable wait here.
2183
2184         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
2185         until the correct solution is found.
2186
2187 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2188
2189         * reflection.c (mono_module_get_object): Avoid an assert when operating on
2190         modules with no metadata. Fixes #79596.
2191
2192         * image.c (load_metadata_ptrs): Put back the error message when
2193         the #- heap is encountered since the support is not complete yet.
2194
2195 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2196
2197         * gc.c: do not allow the user to SuppressFinalize () a
2198         delegate because it would leak the trampoline if present.
2199
2200 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2201
2202         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
2203         PropertyPtr table.
2204
2205 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
2206
2207         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
2208
2209         * metadata.c (mono_metadata_get_param_attrs): Ditto.
2210
2211         * row-indexes.h: Add definitions for *Ptr tables.
2212
2213         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
2214
2215         * metadata.c (mono_metadata_translate_token_index): New helper function to
2216         translate table indexes used in uncompressed metadata.
2217         (mono_metadata_decode_table_row): Ditto.
2218         (mono_metadata_decode_table_row_col): Ditto.
2219
2220         * metadata.c: Add table schema for *Ptr tables.
2221
2222         * class.c loader.c: Use the new helper function to access the affected metadata
2223         tables.
2224         
2225         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
2226         #38532.
2227         
2228 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
2229
2230         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
2231         sequences which can be unbounded in size. Fixes #79583.
2232
2233 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
2234
2235         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
2236         static initialization.
2237
2238         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
2239
2240         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
2241
2242         * domain.c (mono_domain_free): Free up type_init_exception_hash.
2243
2244         * object.c (mono_runtime_class_init): Implement correct semantics when a static
2245         ctor fails, i.e. throw the same exception on subsequent accesses.
2246         
2247 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
2248
2249         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
2250         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
2251         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
2252         Handle marshalling of interfaces and VARIANTs contained in structs.
2253         
2254         Code is contributed under MIT/X11 license.
2255         
2256 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
2257
2258         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
2259         
2260         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
2261         mempool.
2262
2263 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2264
2265         * console-io.c: ignore previous SIGINT handler.
2266
2267 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
2268
2269         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
2270         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
2271         #79460, #79461, #79485.
2272
2273         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
2274
2275         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
2276         #79217.
2277
2278 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2279
2280         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
2281         could be generated from it.
2282
2283 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
2284
2285         * rand.c: fix read loop to correctly handle EINTR.
2286
2287 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2288
2289         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
2290         internal calls are defined to keep methods closer to the declaring
2291         type and allow a significant reduction in runtime relocations and
2292         memory usage.
2293
2294 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
2295
2296         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
2297         exception message to have FileNotFoundException use the default
2298         assembly load error message. Fixes bug #79426.
2299         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
2300
2301 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2302
2303         * threadpool.c: (start_thread_or_queue) use the root domain when
2304         creating the thread instead of the async object one.
2305
2306 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
2307
2308         * class.c, object.c, class-internals.h, reflection.c:
2309         for arrays, store element_size inside MonoClass (speedup
2310         for array object creation).
2311
2312 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
2313
2314         * icall.c: fixed CodeBase to use the file name and not the module
2315         name (bug #79365).
2316
2317 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2318
2319         * mono-debug.c, mono-debug.h: export find_method as
2320         mono_debug_find_method ().
2321
2322 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2323
2324         * debug-helpers.c, class-internals.h: added a few functions useful
2325         when debugging under gdb.
2326
2327 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2328
2329         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
2330         characters that need special handling.
2331
2332 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
2333
2334         * mono-config.c: make the os/cpu specification more flexible,
2335         allowing lists and negation.
2336
2337 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
2338
2339         * marshal.c: COM Interop fixes. Handle case where method->klass.
2340         is interface. Handle BSTR/MonoString when null. Use CDECL as 
2341         calling convention on non-windows platforms. This is for
2342         compatibility with XPCOM and MainWin COM.
2343         
2344         Code is contributed under MIT/X11 license.
2345         
2346
2347 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
2348
2349         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
2350         correctly. Fixes #79217.
2351
2352         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
2353
2354 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
2355
2356         * mono-config.c: allow both an os and cpu attribute for dllmap
2357         and dllentry elemnets to enable a single config file to be used
2358         for multiple architectures.
2359
2360 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
2361
2362         * loader.c: MonoLoaderError was cleared too soon on load failure.
2363         Fixes bug #79424.
2364
2365 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
2366
2367         * icall.c: use the defining class vtable when accessing a
2368         static field, not a pobblibly derived class.
2369
2370 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
2371
2372         * icall.c string-icalls.c: Remove references to unicode.h.
2373
2374         * unicode.h unicode.c Makefile.am: Remove these unused source files.
2375
2376         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
2377
2378         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
2379         indicating the image where custom marshaller types should be looked up.
2380         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
2381         custom marshallers, instead of corlib. Fixes #79425.
2382
2383 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
2384
2385         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
2386
2387 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
2388
2389         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
2390         Implement Environment.ProcessorCount.
2391         
2392         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
2393         Implement Environment.ProcessorCount.
2394         
2395         * icall.c: 
2396         Add Environment.ProcessorCount icall.
2397         
2398         Patch by Jason McFall.
2399
2400 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2401
2402         * assembly.c: don't append .exe/.dll when the filename already contains
2403         one of those extensions.
2404
2405 2006-09-12  Martin Baulig  <martin@ximian.com>
2406
2407         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
2408         to array interfaces.
2409
2410 2006-09-11  Martin Baulig  <martin@ximian.com>
2411
2412         * reflection.c (mono_image_build_metadata): Create the
2413         MethodImpl's after emitting all types and methods, so we don't
2414         need another fixup pass for them.
2415
2416 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
2417
2418         * class.c (mono_class_from_name_case): Fix regression introduced by the last
2419         change.
2420
2421 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
2422
2423         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
2424         unload.
2425
2426 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
2427
2428         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
2429         args is not set. Fixes #78926.
2430
2431 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
2432
2433         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
2434
2435         * image.c (load_class_names): Move this to class.c, and rename it to 
2436         'mono_image_init_name_cache'.
2437         (load_modules): Fix a warning.
2438
2439         * class.c icall.c image.c: Initialize image->name_cache lazily.
2440
2441         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
2442         on its name using information in the AOT file.
2443
2444         * class.c (mono_class_from_name): Use the new hook function.
2445
2446 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
2447
2448         * reflection.c (mono_param_get_objects): Handle enum default parameter values
2449         correctly.
2450
2451         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
2452         Fixes #79289.
2453         
2454 2006-09-06  Martin Baulig  <martin@ximian.com>
2455
2456         * icall.c (mono_lookup_internal_call): Small fix.
2457
2458 2006-09-05  Raja R Harinath  <rharinath@novell.com>
2459
2460         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
2461         double g_free.
2462
2463 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
2464
2465         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
2466         when --debug is specified.
2467
2468 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
2469
2470         * class.c (setup_generic_array_ifaces): Fix a warning.
2471
2472 2006-09-04  Miguel de Icaza  <miguel@novell.com>
2473
2474         * Temporarily remove the patch to assemly.c that checks the
2475         assembly versions as it breaks our gacutil.
2476
2477 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
2478
2479         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
2480
2481         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
2482         a net 1.0 runtime.
2483
2484         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
2485         created using the default ctor. Fixes #79152.
2486         (mono_string_builder_to_utf16): Ditto.
2487
2488 2006-09-01  Martin Baulig  <martin@ximian.com>
2489
2490         Fix handling of the generic array interfaces.
2491
2492         * class-internals.h
2493         (MonoDefaults): Removed `generic_array_class' and added
2494         `generic_ilist' class.
2495
2496         * class.c
2497         (mono_bounded_array_class_get): Add the new generic array interfaces.
2498         (setup_generic_array_ifaces): New static method; create vtable
2499         entries for each method in the generic array interfaces.
2500
2501         * metadata.c
2502         (select_container): Allow "parent-less" generic methods.
2503
2504         * marshal.c
2505         (mono_marshal_get_generic_array_helper): New public method.
2506
2507         * icall.c
2508         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
2509         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
2510         moved the interncall into System.Array.
2511
2512 2006-09-01  Raja R Harinath  <rharinath@novell.com>
2513
2514         A few more cases of avoiding work on types with ->byref set.
2515         Has the real fix for #79238
2516         * icall.c (is_generic_parameter): New helper.
2517         (ves_icall_Type_GetGenericParameterPosition): Use it.
2518         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
2519         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
2520         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
2521         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
2522         reference types.
2523         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
2524         reference types.
2525         (ves_icall_Type_get_IsGenericInstance): Likewise.
2526         (ves_icall_Type_get_IsGenericType): Likewise.
2527
2528 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
2529
2530         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
2531         class if possible.
2532
2533         * mempool.h (mono_mempool_get_allocated): New helper function.
2534
2535         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
2536         change.
2537
2538         * mempool.c: Fix warnings and the calculation of stats.
2539
2540         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
2541
2542         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
2543
2544         * loader.c (mono_get_method_from_token): Update method_count stat.
2545
2546         * class-internals.h (MonoStats): Add some stats.
2547
2548 2006-08-31 Robert Jordan  <robertj@gmx.net>
2549
2550         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
2551         with managed variants.
2552         All code is contributed under the MIT/X11 license.
2553         
2554 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
2555
2556         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
2557         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
2558
2559         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
2560
2561         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
2562         with cycles in classes.
2563
2564         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
2565
2566         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
2567         missing a [MarshalAs] directive. Fixes #79203.
2568
2569         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
2570         klass->marshal_info. Fixes #79217.
2571
2572 2006-08-30  Martin Baulig  <martin@ximian.com>
2573
2574         Committing a patch from Joachim Ante <joe@otee.dk>:
2575         Add support for binary data symbol stores.
2576
2577         * debug-mono-symfile.c
2578         (mono_debug_open_mono_symbol_file): Renamed into
2579         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
2580         arguments.
2581
2582         * mono-debug.c
2583         (mono_debug_open_image): Added `raw_contents' and `size' args.
2584         (mono_debug_init_2_memory): New public function.
2585
2586 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
2587
2588         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
2589
2590 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2591
2592         * appdomain.c: implement support for ShadowCopyFiles.
2593
2594 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
2595
2596         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
2597         when value is NULL (and should remove CID #51).
2598
2599 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2600
2601         * image.c: moved 2 functions to ../utils.
2602
2603 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
2604
2605         * gc.c: cope with the target object of a GC handle being NULL
2606         (bug #78877).
2607
2608 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
2609
2610         * class.c: recursively check parent's explicit implementations
2611         of interface methods (fixes bug #79125).
2612
2613 2006-08-19  Miguel de Icaza  <miguel@novell.com>
2614
2615         * filewatcher.c: Avoid warnings when building, do not redefine
2616         constants that are defined.
2617
2618         Remove warnings.
2619
2620 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2621
2622         * image.c: don't fail when the link points to an absolute path.
2623
2624 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
2625
2626         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
2627         Fix CID #3.
2628
2629 2006-08-17  Miguel de Icaza  <miguel@novell.com>
2630
2631         * image.c (full_path): A new method used to obtain the actual path
2632         of an assembly even in the presence of symbolic links.  
2633
2634         This is necessary for the case where we are running a binary that
2635         has been GACed, but we are using the "published" path name
2636         ($prefix/mono/1.0/blah.exe) which happens to point to the real
2637         file in the GAC.
2638
2639         This was the source of the failure for the `xsp' command with the
2640         recent AppDomain changes, as far as the runtime was concerned,
2641         there were two different assemblies: $prefix/mono/1.0/blah.exe and
2642         $prefix/mono/gac/blah/version/blah.exe.
2643
2644         (do_mono_image_open): use full path
2645
2646 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2647
2648         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
2649
2650 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
2651
2652         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
2653         domain_id is supplied. Fix CID #241 and corlib's unit tests.
2654
2655 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2656
2657         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
2658         small structures. Fixes #78990.
2659
2660 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2661
2662         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
2663
2664         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
2665
2666 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2667
2668         * appdomain.c:
2669         * marshal.c: don't load all the assemblies from a domain into newly
2670         created ones. The new domains might have different rules and load
2671         assemblies from different locations. Fixes bug #76757.
2672
2673         Patch by Lluis. Conflicts resolved by Brian Crowell.
2674
2675 2006-08-16  Alp Toker  <alp@atoker.com>
2676
2677         * socket-io.c: First half of the fix for #79084.
2678         Set sa_size to the length of the content, not that of the struct.
2679         Don't add NULL suffix to the content, this should be done in
2680         managed code if needed.
2681
2682 2006-08-14  Raja R Harinath  <rharinath@novell.com>
2683
2684         Fix part of #79012
2685         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
2686         mono_metadata_parse_type returns NULL.
2687
2688 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
2689
2690         * normalization-tables.h : new file for string normalization data.
2691         * locales.c, locales.h, icall.c :
2692           added load_normalization_resource() for string normalization,
2693           and icall as well.
2694         * Makefile.am : added normalization-tables.h to the sources.
2695
2696 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
2697
2698         * marshal.c: Add more helper functions to reduce code duplication and use them
2699         everywhere.
2700
2701 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
2702
2703         * marshal.c: Fix non-x86 stdcall warnings.
2704         
2705         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
2706         them everywhere.
2707
2708 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
2709
2710         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
2711         type check on multi-dimensional arrays. Fixes #79000.
2712
2713 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
2714
2715         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
2716         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
2717         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
2718         * class-internals.h: add is_com_object to class structure.
2719         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
2720         null checks to COM object marshalling. Fix .ctor call on RCW.
2721         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
2722         
2723         All code is contributed under the MIT/X11 license.
2724
2725 2006-08-09  Dick Porter  <dick@ximian.com>
2726
2727         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
2728         racing mono_monitor_allocator_lock() somewhere, so don't delete
2729         the critical section for now.  Found by running and exiting
2730         monodevelop.
2731
2732 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
2733
2734         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
2735         (ves_icall_System_ComObject_FindInterface): Ditto.
2736         (ves_icall_System_ComObject_CacheInterface): Ditto.
2737
2738         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
2739         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
2740
2741 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2742
2743         * threadpool.c: treat pipes from process asynchronous reads as sockets
2744         when reading from them, so we get select/poll or epoll to wait for
2745         data.
2746
2747 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
2748
2749         * loader.c: Fix a typo (CID #233) in the null check.
2750
2751 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
2752
2753         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
2754         Hopefully fixes #78949.
2755         
2756         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
2757         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
2758         bytes. Fixes #78972.
2759
2760 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2761
2762         * filewatcher.c: we need to set errno here.
2763
2764 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2765
2766         * filewatcher.c: let Win32Exception get the error value.
2767
2768 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2769
2770         * filewatcher.c: translate errno into win32 errors for Win32Exception
2771         to know what happened.
2772
2773 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
2774
2775         * threadpool.c: Fix more warnings.
2776
2777         * assembly.c (search_loaded): Fix warnings.
2778
2779         * threadpool.c (mono_thread_pool_finish): Fix warnings.
2780         (mono_async_invoke): Ditto.
2781
2782 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
2783
2784         * object.c (mono_remote_class_vtable): Need to create proxy vtable
2785         entries for __ComObject type in addition to ComImport types.
2786         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
2787         about hash table.
2788         
2789         All code is contributed under the MIT/X11 license.
2790
2791 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2792
2793         * image.c: avoid tentative loading of modulerefs that contain
2794         no metadata (P/Invoke library names).
2795
2796 2006-07-28  Dick Porter  <dick@ximian.com>
2797
2798         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
2799         mono_loader_lock() somewhere, so don't delete the critical section
2800         for now.  Found by running and exiting monodevelop.
2801
2802 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2803
2804         * filewatcher.c: define the inotify syscalls when we're building on
2805         linux and have sys/syscall.h. The build system might not have support
2806         for inotify but the target system might have it.
2807
2808 2006-07-26  Miguel de Icaza  <miguel@novell.com>
2809
2810         * domain.c: Documentation updates.
2811
2812         * loader.c (mono_free_method): Do not release the method
2813         information if we are being profiled, as profilers will use this
2814         information at shut down to present some data to the user.
2815
2816         This is needed so that the profiler does not crash, as the
2817         profiler tends to keep MonoMethods around, and they might become
2818         invalid if we free these.
2819
2820         (mono_get_method_constrained): Return the original CIL stream
2821         method as well, so verification can be performed against it.
2822
2823 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2824
2825         * filewatcher.[ch]: support for inotify file system watcher.
2826         * icall.c: add new internal calls for the inotify file system watcher.
2827
2828 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2829
2830         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
2831         #78888.
2832
2833 2006-07-20  Dick Porter  <dick@ximian.com>
2834
2835         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
2836         warning.
2837
2838 2006-07-20  Dick Porter  <dick@ximian.com>
2839
2840         * threads.c (start_wrapper): Do the thread cleanup while we still
2841         hold a reference to its object.  Fixes bug 78123.
2842
2843 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
2844
2845         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
2846         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
2847           "managed-to-managed".
2848         * icall.c: Redirect string constructors that take sbyte* to
2849           ves_icall_System_String_ctor_RedirectToCreateString.
2850         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
2851           to CreateString () methods with matching signature.
2852         * reflection.c: Use original security informations for
2853           MONO_WRAPPER_MANAGED_TO_MANAGED.
2854         * security-manager.c: Use original security informations for
2855           MONO_WRAPPER_MANAGED_TO_MANAGED.
2856         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
2857           that is a placeholder and only its address should be used.
2858         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
2859           that is a placeholder and only its address should be used.
2860
2861 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
2862
2863         Begin implementing COM Interop.
2864         * appdomain.c: Increment corlib version.
2865         * class.c: Set ComImport classes' parent to __ComObject.
2866         * loader.c: Mark cominterop methods as such.
2867         * domain.c: Add __ComObject class to MonoDefaults structure.
2868         * image.c: Add 2 hashtables to the image for COM Interop related methods
2869         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
2870         using the mempool allocator
2871         
2872         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
2873         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
2874         declaration for mono_metadata_type_dup_mp.
2875         
2876         * debug-helpers.c: Added strings for two additional wrapper types
2877         * object.c: Create proxy objects for ComImport classes
2878         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
2879         and added __ComObject class to MonoDefaults structure.
2880         
2881         * object-internals.h: Finish MonoRealProxy definition, and add definition of
2882         MonoComInteropProxy and MonoComObject.
2883         
2884         * marshal.c: Added support for COM Interop
2885         (signature_cominterop): Converts managed signature to corresponding
2886         unmanaged COM signature.
2887         (cominterop_get_function_pointer): gets unmanaged function pointer via
2888         COM object vtable
2889         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
2890         (cominterop_get_method_interface): returns interface type that method is defined on
2891         (mono_mb_emit_cominterop_call): emits native call to function pointer
2892         gotten from vtable
2893         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
2894         that matches signature of unmanaged function.
2895         (cominterop_get_native_wrapper): wrapper around adjusted method call.
2896         (cominterop_get_invoke): forwards call from proxy to __ComObject
2897         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
2898         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
2899         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
2900         
2901         * marshal.h: Added Marshal icall declarations.
2902         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
2903         so we can access them in finalizer
2904         
2905 2006-07-14  Dick Porter  <dick@ximian.com>
2906
2907         * object.c (mono_type_initialization_cleanup): Fix a race
2908         condition by temporarily commenting out the critical section
2909         deletion.
2910
2911 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
2912
2913         * reflection.c (create_custom_attr): Fix some warnings.
2914         (create_custom_attr_data): Ditto.
2915         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
2916         types. Fixes #78855.
2917
2918 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
2919
2920         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
2921
2922         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
2923
2924 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
2925
2926         * reflection.c (resolve_object): Add support for DynamicMethod.
2927
2928         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
2929         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
2930
2931 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
2932
2933         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
2934         don't leak GPtrArray's pdata has we have no use (nor free) for it.
2935
2936 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
2937
2938         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
2939         Fixes #77888.
2940
2941 2006-06-30  Raja R Harinath  <rharinath@novell.com>
2942
2943         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
2944         slightly: remove a shadow local variable.
2945
2946 2006-06-29  Raja R Harinath  <rharinath@novell.com>
2947
2948         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
2949         definition that introduces the virtual function slot.
2950         Also fix Coverity #105.
2951
2952 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
2953
2954         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
2955         for dynamic assemblies. Fixes #78724.
2956
2957 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
2958
2959         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
2960         Fixes #78722.
2961
2962 2006-06-21  Martin Baulig  <martin@ximian.com>
2963
2964         * reflection.c
2965         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
2966         fixes #76484.
2967
2968 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
2969
2970         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
2971
2972 2006-06-20  Raja R Harinath  <rharinath@novell.com>
2973
2974         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
2975         nor TYPEREFs.
2976         * class.c (mono_class_create_from_typespec): Add 'context' argument.
2977         Inflate result if necessary.
2978         (mono_class_get_full): Remove old version.  Rename from
2979         'mono_class_get' and add 'context' argument.  Pass it to
2980         ..._create_from_typespec.
2981         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
2982         (mono_ldtoken): Revert change below.
2983
2984 2006-06-20  Martin Baulig  <martin@ximian.com>
2985
2986         * class.c (mono_ldtoken): Don't pass the generic context to
2987         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
2988
2989 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
2990
2991         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
2992         and later freeing it. Fixes #78638.
2993
2994 2006-06-15  Miguel de Icaza  <miguel@novell.com>
2995
2996         * icall.c (mono_class_get_throw): Revert over-zealous error
2997         throwing, the caller for mono_class_get_throw will cope with
2998         errors when classes are not properly initialized already.
2999
3000         The code still copes with loader exceptions though.
3001
3002         Fixes the regression in reftype1 and reftype3 from the CAS tests.
3003         
3004 2006-06-14  Miguel de Icaza  <miguel@novell.com>
3005
3006         Fixes the `make run1' version of RuntimeAbort (to be commited,
3007         source is in Bugzilla).
3008         
3009         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
3010         FALSE on class loading failure instead of returning true.
3011
3012         * class.c (mono_class_create_from_typedef): It is possible for
3013         mono_metadata_interfaces_from_typedef_full to fail if a class is
3014         not found, cope with this.
3015         
3016
3017 2006-06-14  Dick Porter  <dick@ximian.com>
3018
3019         * socket-io.c: 
3020         * process.c: Fix a bunch of signed/unsigned warnings from gcc
3021         4.1.1
3022
3023 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
3024
3025         * culture-info-table.h : oops, forgot to make it nsync with r61548.
3026
3027 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3028
3029         * icall.c: Another fix for building mono in Visual Studio.
3030
3031 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3032
3033         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
3034         
3035 2006-06-09  Martin Baulig  <martin@ximian.com>
3036
3037         * debug-mono-symfile.c: Put this back and really fix it this
3038         time. Sorry for all the trouble.
3039
3040 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
3041
3042         * icall.c (mono_class_get_throw): Fix a warning.
3043         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
3044         ReflectionTypeLoadException if needed. Fixes #78606.
3045
3046         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
3047         (mono_class_init): Ditto.
3048
3049         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
3050         ref_only exceptions.
3051         (mono_loader_clear_error): Make this work even if there is no error.
3052
3053 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
3054
3055         * object-internals.h marshal.c marshal.h icall.c: Implement method 
3056         Marshal.GetComSlotForMethodInfo using internal call.
3057
3058 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
3059
3060         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
3061         a function for signalling it.
3062
3063         * class.c (mono_class_from_typeref): Use the new kind of loader error when
3064         a referenced assembly is not found.
3065
3066         * loader.c (mono_loader_error_prepare_exception): Add support for 
3067         LOADER_ERROR_ASSEMBLY. Fix formatting.
3068
3069 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
3070
3071         * domain.c appdomain.c class-internals.h marshal.c: Add support 
3072         for VARIANT marshalling on windows and increment corlib version
3073         since Variant struct was added.
3074
3075 2006-06-03  Miguel de Icaza  <miguel@novell.com>
3076
3077         * debug-mono-symfile.c: Revert Martin's previous patch which broke
3078         stack trace line information:
3079
3080         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
3081         (Martin) when looking up B which is between A and C, return A not C.
3082
3083         Bug is #78573.
3084
3085         Thanks to Alexander Olk for tracking this down.
3086
3087 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
3088
3089         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
3090         
3091         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
3092         avoid clobbering its value.
3093         (mono_string_to_lpstr): Fix a warning on windows.
3094
3095 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3096
3097         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
3098
3099         * reflection.c loader.c: Removed references to 'dummy' flag.
3100
3101         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
3102
3103         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
3104         it gets GC tracking.
3105
3106         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
3107         GC tracking.
3108         
3109         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
3110
3111         * marshal.c threadpool.c: Update callers of mono_async_result_new.
3112
3113         * appdomain.c: Bump corlib version.
3114
3115 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3116
3117         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3118         CEE_STIND_REF when working with object references.
3119
3120 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3121
3122         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
3123         Fixes #78539.
3124
3125 2006-05-30  Miguel de Icaza  <miguel@novell.com>
3126
3127         * loader.c (method_from_memberref): Fix argument value for
3128         mono_loader_set_error_method_load (I was passing the MonoClass
3129         instead of the class name char *).
3130
3131 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3132
3133         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3134         CEE_STIND_REF when working with object references.
3135
3136 2006-05-30  Martin Baulig  <martin@ximian.com>
3137
3138         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
3139         mono_method_full_name() change and replace the ':' with a '.'
3140         here.
3141
3142 2006-05-30  Martin Baulig  <martin@ximian.com>
3143
3144         * debug-mono-symfile.c
3145         (mono_debug_symfile_lookup_location): Fix the algorithm:
3146         when looking up B which is between A and C, return A not C.
3147
3148 2006-05-29  Martin Baulig  <martin@ximian.com>
3149
3150         * mono-debug.h
3151         (MonoDebugMethodInfo): Make the typedef public.
3152         (MonoDebugSourceLocation): New public struct.
3153
3154         * mono-debug.c
3155         (mono_debug_source_location_from_address): Removed.
3156         (mono_debug_source_location_from_il_offset): Removed.
3157         (mono_debug_il_offset_from_address): Removed.
3158         (mono_debug_address_from_il_offset): Removed.
3159         (mono_debug_lookup_method): New public function.
3160         (mono_debug_lookup_source_location): New public function; replaces
3161         the old mono_debug_source_location_from_*() functions; see the
3162         inline documentation.
3163         (mono_debug_free_source_location): New public function.
3164         (mono_debug_print_stack_frame): New public function; see the
3165         inline documentation.
3166
3167         * debug-mono-symfile.c
3168         (mono_debug_find_source_location): Renamed into
3169         mono_debug_symfile_lookup_location(); only take a
3170         `MonoDebugMethodInfo *' and an `offset' argument; added inline
3171         documentation.
3172         (mono_debug_find_method): Renamed into
3173         mono_debug_symfile_lookup_method().
3174
3175 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
3176
3177         * assembly.c (mono_assembly_open_full): Dont overwrite the status
3178         returned by mono_image_open_full ().
3179
3180         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
3181         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
3182         #78517.
3183
3184         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
3185         #78518.
3186
3187 2006-05-27  Miguel de Icaza  <miguel@novell.com>
3188
3189         * class.c (mono_class_from_typeref): handle missing images
3190         earlier, deals with bug #78418.   Refactor code; 
3191
3192         Fix a warning introduced in my previous commit (some stale code
3193         from before I revisited my patch).
3194
3195         * class.c (mono_class_create_from_typedef): On failure, remove the
3196         class from the MonoImage->class_cache as the class is not
3197         initialized;   Fixes the leak pointed out by Paolo.
3198
3199 2006-05-25  Dick Porter  <dick@ximian.com>
3200
3201         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
3202         DeleteCriticalSections until I figure out which one may still be
3203         sometimes locked when mono_thread_cleanup is called.
3204
3205 2006-05-24  Dick Porter  <dick@ximian.com>
3206
3207         * threads.c (mono_thread_cleanup): Move the threading cleanup out
3208         of mono_thread_manage and back into its own function, so it can be
3209         called after the finalizer thread has finished.
3210
3211         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
3212
3213 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
3214
3215         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
3216         Fixes #78495.
3217
3218         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
3219         with non-blittable elements.
3220         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
3221
3222 2006-05-24  Martin Baulig  <martin@ximian.com>
3223
3224         * mono-debug-debugger.h (MonoDebuggerEvent): Added
3225         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
3226
3227         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
3228         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
3229         `mono_debugger_event_handler' to NULL.
3230
3231 2006-05-24  Martin Baulig  <martin@ximian.com>
3232
3233         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
3234
3235 2006-05-24  Martin Baulig  <martin@ximian.com>
3236
3237         * mono-debug-debugger.h
3238         (mono_debugger_create_notification_function): Added
3239         `MonoCodeManager *' argument.
3240
3241 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
3242
3243         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
3244
3245 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
3246
3247         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
3248         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
3249         implementation.
3250
3251 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
3252
3253         * icall.c: precise GC support: objects can't be stored in unmanaged
3254         memory anymore, even if they are kept alive by other references: since
3255         they can move the GC needs to be able to always find them.
3256
3257 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
3258
3259         * object.c: precise GC support for static fields. Support
3260         for moving GCs: write barriers and pinned allocation for interned
3261         strings.
3262
3263 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
3264
3265         * domain.c, domain-internals.h: precise GC support for the MonoDomain
3266         structure.
3267
3268 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
3269
3270         * class.c, gc.c: sgen and precise GC updates.
3271
3272 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
3273
3274         * marshal.h, marshal.c: added write barrier wrapper and precise type
3275         fixes.
3276
3277 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
3278
3279         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
3280         support.
3281
3282 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
3283
3284         * reflection.c: precise and sgen GC updates.
3285
3286 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
3287
3288         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
3289
3290 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
3291
3292         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
3293
3294 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
3295
3296         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
3297         MONO_TYPE_OBJECT. Fixes #78462.
3298
3299 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
3300
3301         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
3302         and blittable types.
3303
3304 2006-05-17  Miguel de Icaza  <miguel@novell.com>
3305
3306         * class.c (mono_class_get_exception_for_failure): Implement parts
3307         of a TODO: if the loader error is set (instead of the class
3308         error), we return a Loader exception that can be properly thrown
3309         elsewhere.
3310
3311         This was exposed by some Winforms 2.0 code that I tried to run
3312         (Atsushi pointed me to it).
3313
3314 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
3315
3316         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
3317         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
3318         
3319         * marshal.c (emit_marshal_vtype): Add limited support for 
3320         UnmanagedType.LPStruct. Fixes #78427.
3321
3322         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
3323         Applied a patch from kangaroo to fix #77523.
3324
3325 2006-05-17  Martin Baulig  <martin@ximian.com>
3326
3327         * threads.c
3328         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
3329         (debugger_thread_created): Removed.
3330         (debugger_thread_exited): Removed.
3331
3332 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
3333
3334         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3335
3336         * object-internals.h (MonoReflectionResource): Sync with managed version.
3337
3338 2006-05-12  Wade Berrier <wberrier@novell.com>
3339
3340         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
3341
3342 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
3343
3344         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
3345         functions try to allocate from the image mempool.
3346
3347 2006-05-12  Dick Porter  <dick@ximian.com>
3348
3349         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
3350
3351 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
3352
3353         * object.c: The FieldGetter and FieldSetter methods require the full
3354         name of the class, not only the name. Fixes bug #78277.
3355
3356 2006-05-11  Miguel de Icaza  <miguel@novell.com>
3357
3358         * loader.c (method_from_memberref): Do not pass the NULL klass to
3359         mono_loader_set_error_() methods.  Pass the non-NULL value
3360         (class). 
3361
3362 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
3363
3364         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
3365         (mono_assembly_close): Null out assembly->image->references after freeing it.
3366
3367         * image.c (mono_image_close): Free image->references.
3368         
3369         * reflection.c (mono_image_basic_init): Fix a small memory leak.
3370
3371 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
3372
3373         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
3374         before checking if it's NULL (g_assert).
3375
3376 2006-05-10  Martin Baulig  <martin@ximian.com>
3377
3378         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
3379         I thought I already killed that two months ago, but now it somehow reappeared.
3380
3381 2006-05-10  Martin Baulig  <martin@ximian.com>
3382
3383         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
3384
3385 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
3386
3387         * reflection.c: Allocate memory for dynamically created methods in the image
3388         mempools.
3389
3390 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
3391
3392         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
3393         don't use the ad pointer before checking if it's NULL (g_assert).
3394
3395 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
3396
3397         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
3398         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
3399
3400         * marshal.c: Allocate all signatures from mempools.
3401
3402         * marshal.c: Allocate some more signatures from mempools.
3403
3404 2006-05-09  Miguel de Icaza  <miguel@novell.com>
3405
3406         * object.c (mono_load_remote_field): The code used to provide a
3407         temporary variable for returning results if the user did not
3408         provide a result pointer.  But our temporary variable was allocted
3409         on the satck.
3410
3411         Fix calling code to always pass a result area.   Coverity ID 103.
3412
3413 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
3414
3415         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
3416         value, not the old. Fixes #78312.
3417         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
3418
3419         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
3420         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
3421         per-image cache.
3422
3423         * assembly.c (mono_assembly_close): Free image->references.
3424
3425         * assembly.c (mono_assembly_names_equal): Fix a warning.
3426         (mono_assemblies_cleanup): Cleanup more global data.
3427
3428         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
3429
3430         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
3431         ptr_cache and image->modules.
3432
3433         * image.c (mono_image_init): Allocate array_cache lazily.
3434         
3435 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3436
3437         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
3438         behavior was changed recently and has bad side effects.
3439
3440 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
3441
3442         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
3443         
3444         * assembly.c (mono_assembly_close): Remove a debug printf.
3445
3446         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
3447
3448         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
3449         to also allow for temporary references between mono_image_open ()/close ().
3450
3451         * domain.c (get_runtimes_from_exe): Add a FIXME.        
3452
3453 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
3454
3455         * marshal.c: Fix support for dynamic methods.
3456
3457         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
3458
3459         * marshal.c (mono_marshal_cleanup): New cleanup function.
3460
3461         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
3462         image mempools.
3463
3464         * class.c (mono_class_init): Fix leaking class->nested_classes.
3465
3466         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
3467
3468         * image.c (mono_image_init): Initialize the new cashes.
3469
3470         * image.c (mono_image_close): Destroy the new cashes.
3471
3472         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
3473
3474         * mempool.c (mono_mempool_strdup): New helper function.
3475
3476         * class-internals.h: Add prototype for mono_loader_unlock ().
3477
3478         * domain.c (mono_jit_info_table_find): Fix a warning.
3479         (mono_debugger_check_runtime_version): Ditto.
3480
3481         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
3482         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
3483         functions to these modules.
3484
3485         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
3486         metadata modules.
3487         
3488         * marshal.c (mono_free_bstr): Fix a warning.
3489
3490         * assembly.c (mono_assembly_open_full): Fix another small leak.
3491
3492         * object.c: Fix some unload leaks in the remoting code.
3493
3494         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
3495         function.
3496
3497         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
3498
3499         * reflection.c: Fix some unload leaks in dynamic assemblies.
3500
3501 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
3502
3503         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
3504         * marshal.h: Add BSTR support on Win32
3505         * icall.c: Add BSTR icalls
3506         * metadata.h: Add BSTR enums
3507
3508 2006-04-28  Miguel de Icaza  <miguel@novell.com>
3509
3510         Work to catch the crash from #76795 and turn it into an
3511         exception.   As I stubbed out pieces of the VisualBasic support,
3512         I found a number of places where the code was failing and I added
3513         checks to those places. 
3514         
3515         * metadata.c (do_mono_metadata_parse_generic_class): Make this
3516         function return a status code.  If we fail to parse the signature
3517         from mono_metadata_parse_generic_inst, return FALSE.
3518
3519         * loader.c (mono_get_method_from_token): If we fail to load the
3520         method (mono_class_get) return NULL.   
3521
3522         * (method_from_memberref): Return NULL if we are unable to parse
3523         the method signature
3524
3525         (mono_loader_error_prepare_exception): Since we now use the
3526         loader_error flag internally to stop processing, and obtaining
3527         exceptions that might be thrown will walk this code path the
3528         proper way of going from a MonoLoaderError into a
3529         MonoException was convoluted.   This new routine encapsulates the
3530         process of turning the error into an exception and *clearing* the
3531         error afterwards.
3532         
3533 2006-04-27  Miguel de Icaza  <miguel@novell.com>
3534
3535         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
3536         with missing assemblies), and to cope with:
3537
3538                 * Missing fieldref from a non-existing assembly.
3539                 * Missing methodref from a non-existing assembly.
3540
3541         The first batch of work to address *some* of the issues from 76661.
3542         
3543         * object.c (mono_class_create_runtime_vtable): If we fail to
3544         initialize the class raise the exception here. 
3545
3546         * metadata.c (mono_class_get_overrides_full): If any methods fail
3547         to load return the failure to the caller.
3548
3549         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
3550         flagging assemblies that failed to load.   
3551
3552         Do not crash if we are unable to load the assembly.
3553
3554         (mono_assembly_close): Do nothing with REFERENCE_MISSING
3555         assemblies. 
3556
3557         * loader.c (mono_loader_set_error_type_load): Change the
3558         convention to always pass unallocated strings, so we make our own
3559         copies (I know our own code had duplicated strings before, but
3560         this keeps the normal conventions).
3561         (method_from_memberref): Call mono_loader_set_error_method_load
3562         for all possible failures of loading the class. 
3563         Remove assert, turn into a loader error.
3564
3565         (mono_loader_error_to_exception): Move this routine from mini
3566         (mini_loader_error_to_exception) there was no need to have that in
3567         mini. 
3568
3569         * class.c (mono_class_from_typeref): If we were not able to load
3570         the assembly with mono_assembly_load_reference, call the
3571         mono_loader_set_error_type_load to register the problem.
3572
3573         (mono_class_setup_fields): If we fail to load the type from
3574         mono_metadata_parse_type_full, call mono_class_set_failure and
3575         break from the loop.
3576
3577         If class->exception_type is set, we do not layout the fields as
3578         that might crash the runtime, and instead return (from breaking
3579         from the previous loop).
3580
3581         (mono_class_setup_vtable): This now returns a boolean indicating
3582         whether the table was properly setup.   The decision is driven by
3583         mono_class_get_overrides_full which might run into non-existing
3584         methods. 
3585         
3586         (mono_class_init): Returns TRUE on success or FALSE if there was a
3587         problem in loading the type (incorrect assemblies, missing
3588         assemblies, methods, etc).
3589
3590         When we call mono_class_setup_fields we also check for a potential
3591         error inside this call (either a class exception or a general
3592         loader exception).
3593
3594         (mono_class_create_from_typedef): If the parent fails to load
3595         (calling mono_class_get_full) return NULL.
3596         
3597         ** Important **
3598
3599         calls to mono_metadata_parse_type_full should be checked
3600         everywhere and set the mono_class_set_failure
3601         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
3602
3603         The current patch checks the places where my manually constructed
3604         tests show the errors are showing up, but we should do it
3605         everywhere. 
3606
3607         ** Important2 **
3608
3609         mono_class_init return values should be tested everywhere, like
3610         the previous case this is something that we should audit
3611         everywhere and not only on the cases exposed by the tests I
3612         created. 
3613
3614 2006-04-26  Miguel de Icaza  <miguel@novell.com>
3615
3616         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
3617         boolean parameter and instead pass the information on `options'
3618         parameter (FileOptions).
3619
3620         * icall.c: Register the new signature for MonoIO.Open.
3621
3622         * debug-helpers.c (dis_one): Trying to understand how coverity
3623         works.  Fix Run 5, item 78.
3624
3625 2006-04-26  Dick Porter  <dick@ximian.com>
3626
3627         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
3628         dereference.
3629
3630 2006-04-25  Martin Baulig  <martin@ximian.com>
3631
3632         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
3633
3634         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
3635         debugger_thread_created().
3636         (debugger_gc_push_all_stacks): Don't handle the main thread in any
3637         special way.
3638         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
3639         (mono_debugger_finalize_threads): New function; undo the effects
3640         of mono_debugger_init_threads().
3641         (mono_debugger_create_all_threads): Removed.
3642
3643 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
3644
3645         * image.c (mono_image_close): Tidy up trace messages.
3646
3647         * assembly.c (mono_assembly_close): Ditto.
3648
3649         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
3650         no longer references an already freed assembly. Fixes #78168.
3651
3652 2006-04-21  Dick Porter  <dick@ximian.com>
3653
3654         * threads.c (mono_thread_detach): Fix reference counting when
3655         detaching threads.
3656
3657 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
3658
3659         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
3660         #78155.
3661
3662 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
3663
3664         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
3665         (mono_type_to_stind): Ditto.
3666
3667         * marshal.c: Use the new helper functions to simplify code.
3668
3669         * image.c (mono_image_close): Add some code for help debug assembly unloading
3670         problems.
3671
3672         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
3673         image mempool.
3674
3675         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
3676         assembly was already loaded in another appdomain. Fixes #78083.
3677
3678 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
3679
3680         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
3681         referenced assemblies.
3682         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
3683
3684         * domain.c (mono_domain_free): Add a trace message.
3685
3686         * appdomain.c (add_assemblies_to_domain): Ditto.        
3687
3688         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
3689         field.  
3690
3691 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3692
3693         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
3694
3695 2006-04-12  Martin Baulig  <martin@ximian.com>
3696
3697         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
3698         `USE_INCLUDED_LIBGC'.   
3699
3700 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3701
3702         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
3703         the patch contains ../ and a small directory name later. Hopefully fixes
3704         #78035.
3705
3706 2006-04-10  Martin Baulig  <martin@ximian.com>
3707
3708         Clean up the debugger's thread-handling code.
3709
3710         The debugger's thread-handling code has been moved from
3711         ../mini/debug-debugger.c to threads.c.  We now iterate directly
3712         over the `threads' hash, keep track of exiting threads and also
3713         use proper locking.
3714
3715         We can now debug XSP and XSP based applications with the debugger.
3716
3717         * object-internals.h (MonoThread): Added `gpointer end_stack'.
3718
3719         * threads.h
3720         (MonoThreadCallbacks): Removed; this was only used by the debugger.
3721         (mono_install_thread_callbacks): Likewise.      
3722
3723         * threads.c (mono_thread_callbacks): Removed.
3724         (debugger_thread_created, debugger_thread_exited): New static functions.
3725         (start_wrapper): Call debugger_thread_created().
3726         (thread_cleanup): Call debugger_thread_exited().
3727         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
3728         (mono_debugger_init_threads): New public function.
3729         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
3730         iterate directly over the `threads' hash and also use proper locking.
3731
3732         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
3733
3734         * mono-debug-debugger.h
3735         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
3736
3737 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
3738
3739         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
3740         argument type=array. Fixes #78057.
3741
3742 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
3743
3744         * culture-info-table.h : regenerated. Fixed bug #69652.
3745
3746 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
3747
3748         * loader.c metadata.c: Reapply a variant r59116.
3749         
3750         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
3751
3752         * class.c (mono_class_setup_interface_offsets): New internal function.
3753
3754         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
3755         interfaces too. Fixes #77398.
3756
3757         * reflection.c (encode_cattr_value): Add support for 
3758         parameter type=object, argument type=array.
3759         (load_cattr_value): Ditto. Fixes #77916.
3760
3761         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
3762         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
3763
3764         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
3765         a byval char array and CharSet is Ansi.
3766
3767         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
3768
3769 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
3770
3771         * metadata.c: Add some locking comments.
3772         
3773         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
3774         mempool.
3775         (mono_metadata_free_method_signature): Don't free the signature itself.
3776
3777         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
3778
3779         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
3780         reference the same MonoImage.
3781         (mono_assembly_load_from_full): Add an assert.
3782
3783 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
3784
3785         * image.c (mono_image_close): Don't put the image we are about to free into the
3786         loaded_images_guid_hash.
3787
3788         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
3789         to reduce code duplication.
3790
3791         * marshal.c: Register the native functions called by this module as icalls, to
3792         somewhat centralize the creation of MonoMethodSignature's.
3793
3794         * loader.c (mono_method_signature): Add a cache for method signatures.
3795
3796         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
3797         the parameter attributes of a method.
3798         (mono_metadata_parse_method_signature_full): Refactored the computation of
3799         parameter attributes into a separate function. Also avoid one allocation in
3800         most cases.
3801
3802         * assembly.c (mono_assembly_close): Ditto.
3803
3804         * image.c (mono_image_close): Log trace messages with INFO level.
3805
3806         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
3807
3808         * image.c reflection.c: Correct reference counting of image modules.
3809         
3810         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
3811         of this function from the image mempool.
3812         
3813         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
3814         to allow more cached types to be used.
3815
3816         * mono-debug.c (mono_debug_add_method): Appled patch from
3817         David S. Miller  <davem@sunset.davemloft.net>: Access 
3818         minfo->lexical_blocks[] entry elements using read32().
3819
3820 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
3821
3822         * loader.c (mono_free_method): No longer free the method header for non-dynamic
3823         methods as it is allocated from the mempool.
3824
3825         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
3826         image mempool.
3827
3828         * metadata-internals.h: Add comments describing the reference counting scheme
3829         used for MonoImage and MonoAssembly.
3830
3831         * image.c assembly.c reflection.c: Rework reference counting of images and 
3832         assemblies so they are freed when the runtime is shut down. Free some 
3833         additional memory structures when an image is unloaded.
3834         
3835 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
3836
3837         * class.c loader.c reflection.c: Allocate more data structures in
3838         the image mempool.
3839
3840 2006-03-31  Miguel de Icaza  <miguel@novell.com>
3841
3842         * icall.c
3843         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
3844         build on pre glib 2.4 systems.
3845
3846 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
3847
3848         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
3849
3850         * icall.c: Fix some warnings.
3851
3852 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
3853
3854         * culture-info-table.h : regenerated.
3855
3856 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
3857
3858         * threads.c, object-internals.h, verify.c: changed the culture caching
3859         code to use a normal MonoArray for storage so the GC can keep track of
3860         them easily. Fixed bits of the cache logic, too and simplified the
3861         code.
3862
3863 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
3864
3865         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
3866         thread for non-Boehm GCs.
3867
3868 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
3869
3870         * domain.c, object.c, domain-internals.h: reduce the amount of memory
3871         needed to keep track of the data for static fields.
3872
3873 2006-03-29  Raja R Harinath  <rharinath@novell.com>
3874
3875         Fix #75172
3876         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
3877         for interface classes.  Use 'num_methods' instead.
3878         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
3879         before using '->vtable_size' field.
3880
3881 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
3882
3883         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
3884         doesn't contain managed pointers, so use a normal hashtable.
3885
3886 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
3887
3888         * reflection.c, class-internals.h, domain.c: fixed handling of types
3889         used as values for objects in custom attributes (bug #77915):
3890
3891 2006-03-24  Martin Baulig  <martin@ximian.com>
3892
3893         * class.c (mono_class_setup_fields): Added support for generic
3894         instances; fixes #77580.
3895
3896 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3897
3898         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
3899
3900 2006-03-24  Dick Porter  <dick@ximian.com>
3901
3902         * file-io.c (get_file_attributes): More stat macro breakage.
3903         Fixes bug 77759.
3904
3905 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
3906
3907         * profiler.c: added the file=filename option in the default profiler
3908         to output the profile data to filename.
3909
3910 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3911
3912         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
3913         bug #77877.
3914
3915 2006-03-22  Martin Baulig  <martin@ximian.com>
3916
3917         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
3918         allocated `MonoClassField *' in `fb->handle'.
3919
3920 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
3921
3922         * class.c, image.c, metadata-internals.h: implemented new mechanism to
3923         allocate interface ID to save memory and allow better ID reuse on
3924         appdomain unload. setup_generic_vtable () removal from Martin.
3925
3926 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3927
3928         * object.h, appdomain.c, domain.c, exception.c, icall.c,
3929         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
3930         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
3931         write barriers for reference stores with managed objects accessed with
3932         C structures in the runtime and in embedding programs.
3933
3934 2006-03-20  Raja R Harinath  <rharinath@novell.com>
3935
3936         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
3937         'interface_id' and 'max_interface_id' fields of MonoClasses
3938         representing open generic types.
3939
3940 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
3941
3942         * object.h, object.c, icall.c: added functions to deal with
3943         storing valuetypes that contain references in managed objects.
3944         * reflection.c, string-icalls.c, threads.c, marshal.c: small
3945         fixes and comments around uses of mono_array_addr ().
3946
3947 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
3948
3949         * object.h, icall.c, monitor.c: object.GetHashCode ()
3950         implementation that supports the moving garbage collector.
3951
3952 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
3953
3954         * icall.c, threads-types.h, threads.c: implemented finalizer for
3955         LocalDataStoreSlot.
3956
3957 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
3958
3959         * metadata.c (mono_type_size): Add a fixme.
3960         (mono_type_stack_size): Ditto.
3961
3962         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
3963         'type_forwarders' field.
3964
3965         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
3966         attribute from net 2.0.
3967
3968         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
3969         from class.c.
3970
3971         * class.c (mono_class_setup_fields): Fix a warning.
3972         
3973         * class.c (mono_class_from_name): Add support for assemblyref entries
3974         in the EXPORTEDTYPE table.
3975
3976         * reflection.c: Add support for handling type forwarders under net 2.0.
3977
3978         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
3979         
3980 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
3981
3982         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
3983         overwriting entries in ModuleBuild->types, also clean up the code
3984         a little. Fixes #77774.
3985
3986 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
3987
3988         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
3989         load friend assembly info when present.
3990
3991 2006-03-14  Raja R Harinath  <rharinath@novell.com>
3992
3993         Fix crasher on gtest-158.cs.
3994         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
3995         the return value if the MonoClass we want is yet in an
3996         inconsistent state.
3997         * class.c (mono_class_create_from_typedef): Add an comment
3998         explaining an order dependency between mono_class_setup_parent and
3999         mono_class_setup_mono_type.
4000
4001 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
4002
4003         * class.c: documentation updates and events bug fix.
4004
4005 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
4006
4007         * class.c: some cleanup, locking fixes.
4008
4009 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
4010
4011         * class.c: fix the generics code to setup nested
4012         type info to the instantiated type (bug #77770).
4013
4014 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
4015
4016         * marshal.c: fixed a few type correctness issues.
4017
4018 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4019
4020         * loader.c: the Set/Get/Addrtess array methods should be public.
4021
4022 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
4023
4024         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
4025         
4026         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
4027         info->wrapper.
4028
4029 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
4030
4031         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
4032
4033         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
4034
4035         * mempool.c (mono_mempool_alloc): Speed this up a bit.
4036         (mono_mempool_alloc0): Ditto.
4037
4038 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4039
4040         * socket-io.c:
4041         (create_object_from_sockaddr): it was allocating 4 extra bytes
4042         for the AF_UNIX data. Fixes bug #77747.
4043
4044 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
4045
4046         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
4047
4048 2006-03-09  Dick Porter  <dick@ximian.com>
4049
4050         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
4051         Fixes bug 76966 again.
4052
4053 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
4054
4055         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
4056         names from r57532
4057         * appdomain.c: Bumped corlib version to 48 (due to r57532)
4058
4059 2006-03-07  Martin Baulig  <martin@ximian.com>
4060
4061         * object.c
4062         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
4063
4064 2006-03-07  Martin Baulig  <martin@ximian.com>
4065
4066         * class.c
4067         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
4068         regression introduced in r56970; see gtest-252.cs.
4069
4070         * loader.c (mono_get_method_constrained): Correctly handle generic
4071         methods; see gtest-253.cs.
4072
4073 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
4074
4075         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
4076
4077 2006-03-04  Martin Baulig  <martin@ximian.com>
4078
4079         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
4080         compute the parent type at runtime, just like we're already doing
4081         it for interfaces.
4082
4083         * reflection.c
4084         (mono_reflection_bind_generic_parameters): Don't compute the
4085         parent type anymore.
4086
4087         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
4088
4089 2006-03-04  Martin Baulig  <martin@ximian.com>
4090
4091         * mono-debug-debugger.h
4092         (mono_debugger_create_notification_function): Allocate memory at
4093         runtime and return a pointer to it.
4094
4095 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
4096
4097         * assembly.c: Fix windows build.
4098         
4099         * assembly.c: Fix build.
4100
4101         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
4102
4103         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
4104         
4105 2006-03-03  Dick Porter  <dick@ximian.com>
4106
4107         * process.c
4108         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4109         Check parameters before dereferencing them.  Fixes Aaron's part of
4110         bug 77393.
4111
4112 2006-03-03  Raja R Harinath  <rharinath@novell.com>
4113
4114         Fix performance regression.
4115         * loader.c (find_method_in_class): Add 'from_class' argument.
4116         Rename 'klass' argument to 'in_class'.  The signature is compared
4117         against the method in 'in_class', and the corresponding method is
4118         returned from 'from_class'.
4119         (find_method): Walk both 'in_class' and 'from_class' in parallel.
4120         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
4121         type definition and generic instantiation in parallel.
4122         (mono_get_method_constrained): Update to changes.
4123
4124 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
4125
4126         * threads.c: make sure the domain is correct, too when doing
4127         mono_thread_attach ().
4128
4129 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
4130
4131         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
4132         windows. Fixes #77683.
4133
4134 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
4135
4136         * object.h, *: introduced specific way to set elements of an array
4137         of references to be used as write barrier. Still need to audit the
4138         uses of mono_array_addr.
4139
4140 2006-03-01  Miguel de Icaza  <miguel@novell.com>
4141
4142         * object-internals.h: New field to cache the assmebly name, patch
4143         from Tambet Ingo (tambet@ximian.com)
4144
4145 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4146
4147         * decimal.h, class-internals.h, metadata-internals.h,
4148         file-io.h: mark a few function declarations as internal, to
4149         reduce the number of PLT entries.
4150
4151 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4152
4153         * file-io.c: fix typo in warning message.
4154
4155 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
4156
4157         * loader.c: on unix, lookup the "*A" version of a function
4158         if charset is auto as a second option before failing.
4159
4160 2006-02-28  Raja R Harinath  <rharinath@novell.com>
4161
4162         * class.h (mono_class_inflate_generic_method): Revert to two
4163         argument version.
4164         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
4165         (mono_class_inflate_generic_method_full): Add.
4166         * class.c (mono_class_inflate_generic_method_full): Rename from
4167         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
4168         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
4169         * loader.c, reflection.c: Update to changes.
4170
4171 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
4172
4173         * icall.c: const fixes and small improvements.
4174
4175 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4176
4177         * threadpool.c: for asynchronous connect(), enable the same workaround
4178         for BSD 6 as for the Mac. Fixes bug #77637.
4179
4180 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
4181
4182         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
4183         formatted classes. Fixes #77524.
4184
4185 2006-02-24  Raja R Harinath  <rharinath@novell.com>
4186
4187         * class.c (inflate_generic_type): Add a couple more
4188         micro-optimizations.
4189         (inflate_generic_context): Don't use the 'gmethod' from
4190         'inflate_with'.
4191         (mono_class_inflate_generic_method): If the method has generic
4192         parameters, but the passed-in context doesn't have a 'gmethod',
4193         create one.  Use the possibly simplified generic instantiation
4194         from the declaring class instead of the one passed in.
4195
4196 2006-02-24  Raja R Harinath  <harinath@gmail.com>
4197
4198         Make generic method signature and method header handling lazy.
4199         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
4200         (inflate_generic_header): Likewise.
4201         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
4202         parameter to avoid inflating types.
4203         (mono_get_inflated_method): Empty out.
4204         * class.h (mono_class_inflate_generic_method): Update to changes.
4205         * loader.c (mono_get_method_from_token): Don't parse signature for
4206         generic methods, nor methods of generic classes.
4207         (mono_method_signature): Rename from 'mono_method_signature'.
4208         Inflate signature on demand.
4209         (mono_method_get_header): Inflate method header on demand.
4210         * reflection.c: Update to changes.
4211
4212 2006-02-23  Raja R Harinath  <rharinath@novell.com>
4213
4214         * metadata.c (mono_metadata_inflate_generic_inst): If the
4215         instantiation is closed, don't bother expanding it in the new
4216         context.
4217         * class.c (inflate_generic_class): If the generic instantiation
4218         doesn't change after inflation, return the argument itself.
4219         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
4220         Add bounds checks.
4221         (inflate_generic_context): If neither the generic class nor the
4222         generic method instantiations change, return the original context.
4223         * reflection.c (mono_method_get_object): Do
4224         'mono_get_inflated_method' before accessing the ->klass field.
4225         (inflate_mono_method): Don't create a MonoGenericMethod unless
4226         necessary.
4227         (inflate_method): Don't pass a constructed type as the declaring
4228         type of a methodbuilder.
4229
4230 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
4231
4232         * object.c: fix memory overwrite.
4233
4234 2006-02-22  Dick Porter  <dick@ximian.com>
4235
4236         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
4237         it doesn't work any more.
4238         (mono_threads_request_thread_dump): Fix unused variable warnings.
4239
4240 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4241
4242         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
4243         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
4244         the public header file.
4245
4246 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
4247
4248         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
4249
4250 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
4251
4252         * class-internals.h, object.c: reduce the size of MonoVTable
4253         and store the interface_offsets array at negative offsets.
4254
4255 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
4256
4257         * metadata.c: tweak table descriptors data structures to reduce
4258         size and runtime relocations.
4259
4260 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
4261
4262         * marshal.c: fix some types and opcodes to be type-safe
4263         in marshaling wrappers.
4264
4265 2006-02-21  Ankit Jain  <jankit@novell.com>
4266
4267         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
4268
4269 2006-02-21  Raja R Harinath  <rharinath@novell.com>
4270
4271         * metadata.c (get_constraints): Relax debugging checks for monodis.
4272
4273 2006-02-21  Ankit Jain  <jankit@novell.com>
4274
4275         * metadata.c (mono_metadata_load_generic_params): Move the code
4276         checking for ambiguous generic params from here to mono/dis/get.c
4277         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
4278
4279 2006-02-21  Raja R Harinath  <harinath@gmail.com>
4280
4281         Fix assertion triggered when compiling nemerle.
4282         * class.c (mono_get_shared_generic_inst): Rename from
4283         get_shared_inst and make non-static.
4284         * loader.c (mono_get_shared_generic_method): New.  Used to create
4285         the MonoGenericContext-equivalent of a MonoGenericContainer.
4286         (mono_get_method_from_token): Initialize the 'context' field of
4287         the created MonoGenericContainer.
4288         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
4289         * metadata.c (get_constraints): Add sanity check.
4290         * class-internals.h: Add new internal methods.
4291
4292         * reflection.c (verify_safe_for_managed_space): New sanity check.
4293         Currently checks that owner-less generic parameters aren't allowed
4294         in managed space.
4295         (mono_type_get_object): Use it.
4296         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
4297         that are now in mono_type_get_object.
4298         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
4299
4300 2006-02-19  Raja R Harinath  <harinath@gmail.com>
4301
4302         * metadata.c (mono_type_create_from_typespec): Rename from
4303         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
4304         argument and caching of types in the generic container.
4305         (unwrap_arrays, find_generic_param): Remove.
4306         * metadata-internals.h: Update.
4307         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
4308
4309 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
4310
4311         * class.c (mono_class_get_exception_for_failure): Fix a warning.
4312
4313         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
4314         return values. Fixes #77581.
4315
4316         * class.c (mono_fnptr_class_get): Switch name and name_space.
4317
4318         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
4319         classes and add support for [In, Out] attributes.
4320         (mono_marshal_free_asany): Ditto. Fixes #77524.
4321
4322 2006-02-18  Raja R Harinath  <harinath@gmail.com>
4323
4324         * class.c (mono_class_from_generic_parameter): Make more robust to
4325         incomplete MonoGenericContainers from monodis.
4326
4327 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4328
4329         * class-internals.h: added some more exception types.
4330         * class.c, metadata.c: added a few checks to handle missing
4331         types.
4332
4333 2006-02-17  Raja R Harinath  <rharinath@novell.com>
4334
4335         Use owner-less generic-params some more.
4336         * class.c (my_mono_class_from_generic_parameter): Remove.
4337         (mono_class_from_generic_parameter): Handle null image,
4338         param->name and param->owner.
4339         (mono_class_from_mono_type): Update.
4340         (mono_class_create_from_typespec): Remove 'container' parameter.
4341         If that parameter is non-null, the result is always inflated by
4342         'mono_class_get_full' anyway.
4343         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
4344         parameter.
4345         (mono_class_get_full): Update.
4346
4347         * class.c (inflate_generic_type) [GENERICINST]: If the generic
4348         instance is not open, don't bother inflating.
4349         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
4350         parse metadata for inflated classes.
4351         (_mono_class_get): Change GenericContext* parameter to
4352         GenericContainer*.
4353         (mono_class_create_from_typespec): Likewise.  Simplify, and
4354         implement trivially.  All the cases are handled in
4355         mono_class_from_mono_type.  Don't inflate returned class.
4356         (mono_class_get_full): Delegate GENERICINST optimization to
4357         inflate_generic_type.
4358         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
4359
4360 2006-02-16  Dick Porter  <dick@ximian.com>
4361
4362         * socket-io.c (create_object_from_sockaddr): Fix typo.
4363         (create_sockaddr_from_object): Check array lengths before
4364         potentially accessing items off the end.
4365         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
4366         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
4367         (ves_icall_System_Net_Sockets_Socket_Send_internal)
4368         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
4369         length checks to avoid wraparound overflows.
4370         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
4371         contents of the array of sockets
4372         (hostent_to_IPHostEntry2)
4373         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
4374         Check return value of inet_ntop ().
4375         (addrinfo_to_IPHostEntry): Fix typo
4376
4377 2006-02-16  Raja R Harinath  <rharinath@novell.com>
4378
4379         Type metadata parsing doesn't use generic-instantiation information.
4380         * metadata.c (mono_metadata_parse_array_full): Change
4381         MonoGenericContext* parameter to MonoGenericContainer*.
4382         (mono_metadata_parse_type_full): Likewise.
4383         (mono_type_create_from_typespec_full): Likewise.
4384         (mono_metadata_parse_mh_full): Likewise.
4385         (mono_metadata_parse_generic_inst): Likewise.
4386         (do_mono_metadata_parse_generic_class): Likewise.
4387         (do_mono_metadata_parse_type): Likewise.
4388         * metadata-internals.h: Update to changes.
4389         * class.c (mono_class_find_enum_basetype): Likewise.
4390         (mono_class_setup_fields): Likewise.
4391         (mono_class_create_from_typespec): Likewise.
4392         * loader.c (method_from_methodspec): Likewise.
4393         (mono_get_method_from_token): Likewise.
4394         (mono_method_get_header): Likewise.
4395
4396 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
4397
4398         * marshal.c: handle additional GENERICINST case (patch from
4399         Thong Nguyen <tum@veridicus.com>).
4400         Fix a few cases where LDIND_I/STIND_I was used for references.
4401
4402 2006-02-16  Raja R Harinath  <rharinath@novell.com>
4403
4404         * reflection.c (mono_reflection_get_token): Remove unused variable.
4405
4406 2006-02-16  Martin Baulig  <martin@ximian.com>
4407
4408         * reflection.c (mono_reflection_get_token): Add support for fields
4409         in instantiated generic types.
4410
4411         * icall.c
4412         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
4413
4414 2006-02-15  Martin Baulig  <martin@ximian.com>
4415
4416         * icall.c
4417         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
4418         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
4419         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
4420         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
4421
4422 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
4423
4424         * class.c, metadata.c, metadata.h, object.c, icall.c,
4425         marshal.c: changed mono_type_get_underlying_type () to do
4426         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
4427         Fixed handling of instantiated generic valuetypes (bug #75479).
4428
4429 2006-02-15  Raja R Harinath  <rharinath@novell.com>
4430
4431         * metadata.c (mono_metadata_decode_signed_value): Simplify.
4432         Delegate to mono_metadata_decode_value, and work on the returned value.
4433
4434         * icall.c (ves_icall_MonoType_GetGenericArguments):
4435         Add consistency check here too.
4436         
4437 2006-02-15  Ankit Jain  <jankit@novell.com>
4438
4439         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
4440         char/short etc.
4441
4442 2006-02-15  Ankit Jain  <jankit@novell.com>
4443
4444         * metadata.c (mono_metadata_decode_signed_value): New function to decode
4445         signed values, used only for representing lower bounds of arrays.
4446         (mono_metadata_parse_array_full): Use new
4447         mono_metadata_decode_signed_value to decode lower bounds.
4448
4449 2006-02-14  Martin Baulig  <martin@ximian.com>
4450
4451         * reflection.c
4452         (mono_reflection_get_token): Support "MonoGenericMethod" and
4453         "MonoGenericCMethod" and allow generic instances / methods.
4454
4455 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
4456
4457         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
4458         to obtain the terminal size using an ioctl.
4459
4460         * object.c (mono_nullable_init): Revert this as nullable reference
4461         types are not valid.
4462         (mono_nullable_box): Ditto.
4463
4464 2006-02-09  Dick Porter  <dick@ximian.com>
4465
4466         * threads.c (mono_thread_detach): Drop a reference to the thread
4467         we're detaching.
4468
4469 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
4470
4471         * object.c (mono_nullable_init): Handle nullable reference types.
4472         (mono_nullable_box): Ditto. Fixes #77446.
4473
4474 2006-02-07  Martin Baulig  <martin@ximian.com>
4475
4476         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
4477
4478 2006-02-07  Ankit Jain  <jankit@novell.com>
4479
4480         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
4481         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
4482         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
4483         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
4484         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
4485         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
4486
4487 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
4488
4489         * class.c (mono_class_create_generic): Set type_token as well.
4490
4491         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
4492         compatible with MS.
4493
4494 2006-02-02  Martin Baulig  <martin@ximian.com>
4495
4496         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
4497         has never been used so far.
4498
4499 2006-02-02  Martin Baulig  <martin@ximian.com>
4500
4501         * mono-debug-debugger.h: Changed comment at the top of this file;
4502         the header is not installed, but it's safe to #include it from
4503         within the JIT.
4504
4505         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
4506         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
4507
4508 2006-02-02  Martin Baulig  <martin@ximian.com>
4509
4510         * mono-debug.h
4511         (MonoSymbolTable): Removed the `metadata_info' field.
4512
4513         * mono-debug.c
4514         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
4515
4516         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
4517         (mono_debugger_add_builtin_types): Removed.
4518         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
4519         (mono_debugger_create_notification_function): We now operate on a
4520         pre-allocated area; take a `gpointer' and return `void'.
4521
4522         * mono-debug-debugger.c
4523         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
4524         (mono_debugger_add_builtin_types): Removed.
4525
4526 2006-02-02  Martin Baulig  <martin@ximian.com>
4527
4528         * threads.c (mono_debugger_create_all_threads): New public method.
4529
4530 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4531
4532         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
4533         breaks on several platforms.
4534
4535 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
4536
4537         * assembly.c: the VS.NET build doesn't supply default values for
4538         MONO_ASSEMBLIES and MONO_CFG_DIR.
4539
4540 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
4541
4542         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
4543         helper function.
4544
4545         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
4546
4547         * loader.c (method_from_memberref): Fix a warning.
4548
4549         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
4550
4551         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
4552         with explicit layout. Fixes #77433.
4553
4554 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
4555
4556         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
4557         max_interface_id is initialized before using it. Fixes #77398.
4558         (ves_icall_Type_GetInterfaces): Ditto.
4559
4560 2006-01-30  Raja R Harinath  <rharinath@novell.com>
4561
4562         * metadata.c (mono_metadata_parse_method_signature_full): Don't
4563         allocate memory for parameter attributes when parsing memberref
4564         signatures.
4565         * loader.c (mono_loader_set_error_method_load): Don't warn.
4566         (method_from_memberref): Ensure MissingMethodException gets thrown
4567         if method is not found.  Make warning more informative.
4568
4569 2006-01-29  Raja R Harinath  <harinath@gmail.com>
4570
4571         Fix #77397
4572         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
4573         return true if is byref.
4574         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
4575         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
4576         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
4577
4578 2006-01-27  Raja R Harinath  <rharinath@novell.com>
4579
4580         Fix tests/find-method.2.il
4581         * loader.c (find_method, find_method_in_class): Remove is_inflated
4582         argument.  Revert 2006-01-18 change.
4583         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
4584         is generic, search for method in its generic definition.
4585         * class.c (mono_class_setup_vtable_general): Print generic
4586         arguments of generic types in debugging printf.
4587
4588 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
4589
4590         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
4591
4592         * threads.c (mono_threads_request_thread_dump): New helper function.
4593
4594 2006-01-25  Raja R Harinath  <rharinath@novell.com>
4595
4596         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
4597
4598 2006-01-25  Ankit Jain  <jankit@novell.com>
4599
4600         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
4601         move definition to ..
4602         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
4603         
4604 2006-01-25  Ankit Jain  <jankit@novell.com>
4605             Raja R Harinath  <rharinath@novell.com>
4606
4607         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
4608         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
4609         as necessary.
4610
4611 2006-01-25  Martin Baulig  <martin@ximian.com>
4612
4613         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
4614         `MonoDebuggerThread' into debug-debugger.c.
4615
4616 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
4617
4618         * profiler.c: fix printing of data.
4619
4620 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
4621
4622         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
4623           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
4624
4625 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
4626
4627         * object.c: fix deadlock related to string interning.
4628
4629 2006-01-23  Martin Baulig  <martin@ximian.com>
4630
4631         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
4632
4633         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
4634
4635 2006-01-23  Martin Baulig  <martin@ximian.com>
4636
4637         * mono-debug.h: Moved the prototypes of some functions which are
4638         used by the JIT here from mono-debug-debugger.h.
4639
4640 2006-01-21  Martin Baulig  <martin@ximian.com>
4641
4642         * Makefile.am: Don't install mono-debug-debugger.h.
4643
4644 2006-01-21  Martin Baulig  <martin@ximian.com>
4645
4646         * mono-debug-debugger.h: Enforce the private status of this header
4647         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
4648         Moved some stuff from mono-debugger-jit-wrapper.h here.
4649
4650 2006-01-20  Raja R Harinath  <rharinath@novell.com>
4651
4652         * class.c (mono_class_from_typeref): Add a sanity test to help
4653         catch lack of assembly load/search hooks.
4654
4655 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
4656
4657         * marshal.c (emit_struct_conv): Relax the fields with same offset
4658         check even more. Fixes #77230.
4659
4660 2006-01-18  Martin Baulig  <martin@ximian.com>
4661
4662         * loader.c (find_method_in_class): Added `gboolean is_inflated'
4663         argument; if false, we compare the uninstantiated signatures.
4664         (method_from_memberref): Compare the uninstantiated signatures;
4665         fixes #76417.
4666
4667 2006-01-18  Robert Jordan  <robertj@gmx.net>
4668
4669         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
4670         Clear the weak link. Fixes bug #77170.
4671
4672         * gc.c (mono_gchandle_free):
4673         Reflect *-gc.c changes (tiny optimization).
4674
4675 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
4676
4677         * metadata.c (mono_metadata_signature_dup): Applied patch from
4678         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
4679         Fixes #77288.
4680
4681 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
4682
4683         * marshal.c (emit_struct_conv): Allow fields with the same offset when
4684         marshalling from native to managed code. Fixes #77230.
4685
4686 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4687
4688         * threadpool.c: fix problem (Mac only) when more than one asynchronous
4689         connect. Fixes bug #77020.
4690
4691 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
4692
4693         * class.c: fixed id assignement for nested interfaces (bug #77275).
4694         Added also better info for --print-vtable debugging.
4695
4696 2006-01-12  Martin Baulig  <martin@ximian.com>
4697
4698         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
4699         interfaces on-the-fly; fixes #76625.
4700
4701         * class-internals.h
4702         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
4703         don't need that anymore.
4704
4705 2006-01-12  Miguel de Icaza  <miguel@novell.com>
4706
4707         * socket-io.c
4708         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4709         To avoid initing the nested_classes when not needed I turned the
4710         PeerCredData as a toplevel internal class, as it has to be shared
4711         anyways. 
4712
4713         Fixes the CASA issue.
4714
4715 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
4716
4717         * domain.c: Accessors for MonoJitInfo
4718
4719         * profiler-private.h: Add jitinfo to the end jit hook
4720
4721         * profiler.[ch]: Define new hooks, called after jitting which give
4722         the MonoJitInfo that was compiled
4723
4724 2006-01-10  Martin Baulig  <martin@ximian.com>
4725
4726         * class.c (mono_class_setup_events): Add support for generic
4727         classes; fixes #76440.
4728
4729 2006-01-06  Raja R Harinath  <rharinath@novell.com>
4730
4731         Fix #77160.
4732         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
4733         on passed-in method.
4734
4735 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4736
4737         * object.c (mono_runtime_invoke_array): Add Nullable support.
4738
4739         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
4740
4741 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
4742
4743         * file-io.c: Don't consider sockets as directory and avoid an endless
4744         loop. Fix bug #76966.
4745
4746 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4747
4748         * object.c (mono_nullable_init): New helper function.
4749         (mono_nullable_box): Ditto.
4750
4751         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
4752
4753         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
4754
4755         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
4756         
4757 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
4758
4759         * class.c (mono_class_is_assignable_from): Make T assignable to 
4760         Nullable<T>.
4761
4762 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
4763
4764         * appdomain.c: Bump corlib version to 46.
4765         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
4766         serialization purpose) and changed ves_icall_System_Reflection_
4767         Assembly_get_code_base signature to accept a boolean (to escape, or 
4768         not, the assembly code base).
4769
4770 2005-12-23  Dick Porter  <dick@ximian.com>
4771
4772         * icall.c: 
4773         * threads-types.h: 
4774         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
4775         CreateEvent icall now returns "created" boolean parameter.
4776
4777 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
4778
4779         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
4780         #76967.
4781
4782         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
4783         when attr_klass is an interface. Fixes #77045.
4784
4785 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
4786
4787         * marshal.c (emit_struct_conv): Fix previous patch.
4788         
4789         * marshal.c (emit_struct_conv): Add a check for fields with the same
4790         offset.
4791
4792 2005-12-20  Raja R Harinath  <rharinath@novell.com>
4793
4794         Fix regression in Mono.C5.
4795         * class.c (mono_class_create_generic): If 'klass' is an interface
4796         set up the interface offsets.
4797         (mono_class_is_assignable_from): Don't throw away generic arguments.
4798
4799 2005-12-19  Raja R Harinath  <rharinath@novell.com>
4800
4801         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
4802         type parameters.
4803
4804 2005-12-15  Raja R Harinath  <rharinath@novell.com>
4805
4806         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
4807         dead store.
4808         (do_mono_metadata_parse_generic_class): Don't pass the current
4809         generic context when parsing the type being instantiated: it
4810         cannot use it, anyway.
4811
4812         * loader.c (method_from_memberref): Don't inflate a signature if
4813         it doesn't contain any type parameters.
4814
4815 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
4816
4817         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
4818
4819 2005-12-14  Martin Baulig  <martin@ximian.com>
4820
4821         * class.c
4822         (mono_type_get_name_recurse): Don't return null for type
4823         parameters and open generic classes.
4824         (mono_class_setup_methods): Don't exclude generic instances.
4825         (mono_get_unique_iid): Use different IDs for different
4826         instantiations of the same generic type.
4827         (mono_class_setup_vtable): Only use setup_generic_vtable() for
4828         open generic instances; create a normal vtable for closed generic
4829         instances.
4830         (mono_class_setup_vtable_general): We're now also called for
4831         closed generic instances.
4832
4833         * reflection.c
4834         (mono_reflection_bind_generic_parameters): Correctly use
4835         mono_metadata_lookup_generic_inst() everywhere.
4836
4837 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
4838
4839         * object.c (mono_class_create_runtime_vtable): Call 
4840         mono_class_setup_vtable ().
4841
4842         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
4843         function.
4844         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
4845         #76959.
4846
4847         * loader.c (mono_loader_set_error_type_load): Print the type load
4848         warnings to the console so they are more visible to the user.
4849         (mono_loader_set_error_method_load): Ditto.
4850
4851         * reflection.c (ensure_runtime_vtable): Revert the last change as it
4852         is still broken.
4853         
4854         * reflection.c (ensure_runtime_vtable): Fix build.
4855
4856         * reflection.c (ensure_runtime_vtable): Disable an optimization which
4857         doesn't work in all cases.
4858
4859 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
4860
4861         * object.c (mono_array_new_full): Treat a single dimensional array
4862         with 0 lower bounds as an szarray. Fixes #76973.
4863
4864         * reflection.c (custom_attr_visible): Really fix this.
4865
4866 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
4867
4868         * reflection.c (custom_attr_visible): Allow nested public attributes
4869         as well.
4870
4871         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
4872         interface check.
4873
4874 2005-12-12  Raja R Harinath  <harinath@gmail.com>
4875
4876         * class.c (set_generic_param_owner): Delete.
4877         (mono_class_create_from_typedef): Don't set ->owner field of
4878         generic parameters to "param containers" of enclosing classes.
4879         * reflection.c (mono_reflection_initialize_generic_parameter):
4880         Likewise.
4881
4882 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
4883
4884         * reflection.c (custom_attr_visible): Fix build.
4885
4886 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
4887
4888         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
4889         private attributes.
4890         
4891         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
4892         handling of null parameter defaults.
4893
4894 2005-12-09  Raja R Harinath  <rharinath@novell.com>
4895
4896         * class.c (mono_class_from_generic_parameter): Don't set
4897         klass->generic_container.
4898         (my_mono_class_from_generic_parameter): Likewise.
4899
4900 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
4901
4902         * reflection.c (load_public_key): Fix a warning.
4903         (method_encode_code): Fix unaligned accesses.
4904
4905 2005-12-07  Martin Baulig  <martin@ximian.com>
4906
4907         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
4908
4909         * reflection.c
4910         (write_generic_param_entry): Encode our custom attrs.
4911
4912         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
4913
4914 2005-12-07  Martin Baulig  <martin@ximian.com>
4915
4916         * reflection.c (encode_new_constraint): Removed; we don't use the
4917         `NewConstraintAttribute' anymore.
4918
4919 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
4920
4921         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
4922         not fire a TypeResolve event when Assembly.GetType () is called.
4923
4924 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
4925
4926         Beginning of support for nullable types in the runtime. Parts of
4927         this patch are from Martin.
4928
4929         * appdomain.c (MONO_CORLIB_VERSION): Bump
4930
4931         * domain.c (mono_init_internal): get the nullable type
4932
4933         * class.c (mono_class_is_nullable): New method
4934         (mono_class_get_nullable_param): New mehod
4935         (mono_class_create_generic): In types T? set cast_class to T
4936
4937         * class-internals.h (MonoDefaults): new nullable default class
4938         (mono_class_get_nullable_param, mono_class_get_nullable_param):
4939         new methods.
4940
4941 2005-12-05  Raja R Harinath  <rharinath@novell.com>
4942
4943         * metadata.c (select_container): New.  Refactor code to select the
4944         appropriate GenericContainer given the type of generic parameter
4945         we are looking for.
4946         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
4947         not a MonoGenericContext.  Use select_container.  Update parameters.
4948         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
4949         and MONO_TYPE_MVAR.
4950         (unwrap_arrays): Remove duplicate tests.
4951         (find_generic_param): Rename from 'has_same_context'.  Now walks a
4952         generic instantiated class to find any arguments that are generic
4953         parameters.
4954         (mono_type_create_from_typespec_full): Use find_generic_param to
4955         avoid evicting some generic instantiations from the typespec
4956         cache.
4957
4958 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
4959
4960         * reflection.c: fixed writing of doubles on ARM FPA.
4961
4962 2005-12-02  Robert Jordan  <robertj@gmx.net>
4963
4964         * icall.c: Fixed EventInfo.ReflectedType (#76829).
4965
4966 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4967
4968         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
4969         least on SUSE 10 they are not the same (on debian, they are just the
4970         same thing).
4971
4972 2005-12-01  Raja R Harinath  <rharinath@novell.com>
4973
4974         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
4975         DeclaringType for VARs and MVARs.
4976         * class.c (set_generic_param_owner): Fix initialization of owner
4977         fields.
4978
4979 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
4980
4981         * icall.c: fixed Enum.ToObject() to correctly convert the values.
4982
4983 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4984
4985         * threadpool.c: workaround for a bug that shows up on the Mac:
4986         select()+connect() on a blocking socket is not like it should
4987         be, so we proceed to connect() in that case, wasting the I/O
4988         threadpool thread until connect succeedes. Fixes bug #75436.
4989
4990 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4991
4992         * threadpool.c: fix typo when setting file descriptor states.
4993
4994 2005-11-28  Raja R Harinath  <rharinath@novell.com>
4995
4996         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
4997         * metadata.c (mono_metadata_parse_method_signature_full): Don't
4998         create a temporary signature container.
4999         (mono_metadata_parse_generic_param): Update to changes.
5000         (mono_type_create_from_typespec_full): Update to changes.
5001         * loader.c (method_from_memberref): Don't use a
5002         MonoGenericContainer while parsing a memberref signature.
5003         (method_from_methodspec): Remove dead-store of the 'container'
5004         variable.  It's overwritten before use.
5005
5006         * metadata.c (mono_type_create_from_typespec_full): Make debugging
5007         checks tighter.
5008         (mono_metadata_parse_generic_param): Likewise.
5009         * loader.c (find_method_in_class): Does not need a
5010         MonoGenericContainer.  Use 'mono_method_signature' rather than
5011         'mono_method_signature_full'.
5012         (find_method, mono_get_method_constrained, method_from_memberref):
5013         Update to changes.
5014
5015         * metadata.c (mono_type_create_from_typespec_full): Ensure that
5016         owner-less generic-parameters are never evicted from the typespec
5017         cache.
5018
5019         * loader.c (method_from_memberref): Don't use the current context
5020         when parsing signatures.
5021         (method_from_methodspec, mono_get_method_from_token): Update to changes.
5022
5023         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
5024         side-effects in g_assert.
5025         * loader.c (mono_get_method_from_token): Resolve klass earlier so
5026         that we don't potentially lose information.
5027
5028 2005-11-26  Dick Porter  <dick@ximian.com>
5029
5030         * icall.c:
5031         * threads.c: icalls to implement basic (ie, not named)
5032         System.Threading.Semaphore.
5033
5034 2005-11-24  Dick Porter  <dick@ximian.com>
5035
5036         * process.c
5037         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
5038         Use GetProcessId() if it's available.
5039
5040 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
5041
5042         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
5043
5044 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5045             Ankit Jain  <jankit@novell.com>
5046
5047         * loader.c (mono_get_method_from_token): Initialize 'method' field
5048         of all generic parameters before parsing the signature.  Remove
5049         code that "fixed"-up MVAR references.
5050
5051 2005-11-23  Ankit Jain  <jankit@novell.com>
5052
5053         * metadata.c (mono_metadata_has_generic_params):
5054         (mono_metadata_load_generic_param_constraints):
5055         (mono_metadata_load_generic_params): Move duplicate code ...
5056         (mono_metadata_get_generic_param_row): ... here. Returns the
5057         first row-id in GenericParam table for a given owner (token).
5058         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
5059         prototype.
5060
5061 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5062             Ankit Jain  <jankit@novell.com>
5063
5064         * metadata.c (mono_metadata_class_equal): Pass signature_only when
5065         comparing VARs too.
5066         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
5067         type->data.generic_param only if the type is an MVAR.
5068         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
5069         leak owner-less VARs and MVARs into managed space.
5070
5071 2005-11-21  Martin Baulig  <martin@ximian.com>
5072
5073         * class-internals.h
5074         (MonoMethod): Moved the `generic_container' here from
5075         `MonoMethodNormal' since we now also need it for
5076         `MonoMethodPInvoke';
5077         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
5078         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
5079         an union containing both `MonoMethodNormal' and
5080         `MonoMethodPInvoke'.
5081
5082         * loader.c
5083         (mono_get_method_from_token): Allow implementing generic methods
5084         as interncalls.
5085
5086         * threads.c
5087         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
5088         icall.
5089
5090 2005-11-17  Dick Porter  <dick@ximian.com>
5091
5092         * icall.c: 
5093         * process.h: 
5094         * process.c: Split the Process Start_internal icall into
5095         ShellExecuteEx_internal and CreateProcess_internal, which are
5096         called depending on whether UseShellExecute is true.  Fixes bug
5097         76670.
5098
5099         * appdomain.c (MONO_CORLIB_VERSION): Incremented
5100
5101 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
5102
5103         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
5104         'msize' parameters, use the information in 'mspec' instead.
5105         (emit_object_to_ptr_conv): Ditto.
5106
5107         * marshal.c (emit_struct_conv): Handle explicit layout structs with
5108         fields out of order. Fixes #76733.
5109
5110 2005-11-17  Ankit Jain  <jankit@novell.com>
5111
5112         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
5113
5114 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
5115
5116         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
5117           bug #76575.
5118
5119 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5120
5121         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
5122         for types with non-auto layout. Fixes #76717.
5123
5124 2005-11-16  Ankit Jain  <jankit@novell.com>
5125
5126         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
5127         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
5128         if generic_context is null.
5129           (mono_metadata_generic_param_equal): param->owner can be null.
5130           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
5131         null.
5132
5133 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5134
5135         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
5136         the correct value.
5137
5138 2005-11-15  Martin Baulig  <martin@ximian.com>
5139
5140         * object.c (set_value): Use mono_class_from_mono_type() instead of
5141         the hack for generic instances; fixes #76136.
5142
5143 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
5144
5145         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
5146         fields.
5147
5148         * image.c (load_metadata_ptrs): Initialize the new fields.
5149
5150         * reflection.c (create_dynamic_mono_image): Ditto.
5151
5152         * reflection.c (build_compressed_metadata): Use the new fields.
5153
5154         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
5155         icall.
5156
5157         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
5158         icall.
5159         
5160 2005-11-15  Ankit Jain  <jankit@novell.com>
5161             Raja R Harinath  <harinath@gmail.com>
5162
5163         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
5164         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
5165         new per-generic_container cache if the cached MonoType's context matches
5166         the current context.
5167           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
5168         to the expected context.
5169           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
5170
5171 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5172
5173         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
5174         we changed the signature of an icall.
5175         * icall.c: Modify to mono_double_ParseImpl return true/false 
5176         depending on the success, instead of throwing the exception. This will
5177         help us in Double.TryParse methods.
5178         
5179 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
5180
5181         * marshal.c (emit_marshal_object): Throw an exception when
5182         marshalling 'object' instead of crashing. Fixes #76696.
5183
5184 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5185
5186         * class-internals.h: Add prototype for mono_type_get_full_name ().
5187
5188 2005-11-11  Dick Porter  <dick@ximian.com>
5189
5190         * threads.c (mono_thread_manage): Make sure the main thread has
5191         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
5192
5193 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5194
5195         * loader.c (mono_loader_set_error_type_load): Log a warning to the
5196         console about the missing type.
5197         (mono_loader_set_error_method_load): Ditto.
5198
5199 2005-11-09  Miguel de Icaza  <miguel@novell.com>
5200
5201         * mono-config.c (mono_get_config_dir): Set the system defaults if
5202         none is specified.
5203
5204         * assembly.c (mono_set_dirs): New API entry point to set the
5205         assembly and the config directory in one call
5206
5207 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
5208
5209         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
5210         the ftnptr was created from a delegate in a domain other than the
5211         current domain. Fixes #75377.
5212
5213         * exception.h exception.c: Add mono_get_exception_not_supported ().
5214
5215 2005-11-08  Martin Baulig  <martin@ximian.com>
5216
5217         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
5218
5219 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
5220
5221         * security-manager.h: Added definitions to deal with strongname key 
5222         pairs bigger (and smaller) than 1024 bits.
5223         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
5224         adjust wrt the public key length being used.
5225
5226 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
5227
5228         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
5229           Windows build (r51396-51397).
5230
5231 2005-11-03  Martin Baulig  <martin@ximian.com>
5232
5233         * class.c (mono_class_setup_vtable_general): Also add generic
5234         methods to the vtable; fixes #76581.
5235
5236 2005-11-01  Miguel de Icaza  <miguel@novell.com>
5237
5238         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
5239         sure that we lookup GetString method from the System.Text.Encoding
5240         class, not the derived class or we get an empty method.
5241
5242         Fixed class #76612.
5243
5244 2005-10-25  Miguel de Icaza  <miguel@novell.com>
5245
5246         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
5247         if it has been previously set (embedders). 
5248
5249         Make mono_set_rootdir available also on Unix.
5250
5251 005-10-24  Robert Jordan  <robertj@gmx.net>
5252
5253         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
5254
5255 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
5256
5257         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
5258         only calls which are made to native code use this flag.
5259
5260         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
5261
5262 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
5263
5264         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
5265         Add support for FieldBuilders.
5266
5267 2005-10-29  Martin Baulig  <martin@ximian.com>
5268
5269         * mono-debug.c
5270         (mono_debug_using_mono_debugger): New public method; returns
5271         whether we're running inside the debugger.
5272
5273 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
5274
5275         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
5276         for Method/Constructor/FieldBuilders.
5277
5278 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
5279
5280         * reflection.c (module_add_cattrs): Save custom attributes for global methods
5281         and fields as well.
5282
5283 2005-10-26  Martin Baulig  <martin@ximian.com>
5284
5285         * mono-debug-debugger.c
5286         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
5287
5288 2005-10-24  Raja R Harinath  <harinath@gmail.com>
5289
5290         * icall.c (base64_to_byte_array): Don't pass an out-of-range
5291         integer to isspace.
5292
5293 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
5294
5295         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
5296         when passing valuetypes byref. Fixes #76502.
5297
5298 2005-10-19  Jackson Harper  <jackson@ximian.com>
5299
5300         * profiler.c: Don't put a . in front of types that are not in a
5301         namespace.
5302
5303 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
5304
5305         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
5306
5307 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
5308
5309         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
5310         #76436.
5311         (mono_marshal_get_ldflda_wrapper): Fix a warning.
5312
5313 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5314
5315         * assembly.c metadata-internals.h icall.c: Define an additional
5316         parameter for mono_assembly_name_parse_full, so we can avoid creating
5317         S.R.AssemblyName.Version when no version info wasn't passed.
5318         
5319 2005-10-09  Miguel de Icaza  <miguel@novell.com>
5320
5321         * class.c (mono_type_get_full_name): Reimplement method that was
5322         removed. 
5323
5324         * image.c: Some docs
5325
5326 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
5327
5328         * profiler.c (output_newobj_profile): Fix printing of Total memory
5329         on x86.
5330
5331 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5332
5333         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
5334
5335 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
5336
5337         * threads.c: remove debug output.
5338
5339 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5340
5341         * threads.c (mono_thread_manage): Fix crashes if more than 64
5342         threads need to be aborted. Hopefully fixes #75899.
5343
5344         * assembly.c (mono_stringify_assembly_name): New helper function.
5345
5346         * class.c: Use mono_stringify_assembly_name instead of the similar
5347         static function.
5348
5349         * assembly.h assembly.c: Add support for calling a postload search 
5350         hook if an assembly cannot be loaded.
5351
5352         * appdomain.c: Register new search hooks which call the AssemblyResolve
5353         events in AppDomain. Fixes #75231
5354
5355 2005-10-07  Martin Baulig  <martin@ximian.com>
5356
5357         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
5358         methods without debug info.
5359
5360 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
5361
5362         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
5363         wrappers.
5364
5365 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5366
5367         * file-io.c: now that we return symlinks, use lstat and, when the file
5368         is a symbolic link, stat, to get the file attributes. Also avoid the
5369         conversion to/from utf16/external.
5370
5371 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
5372
5373         * class.c (mono_class_layout_fields): Compute klass->has_references
5374         correctly if an embedded valuetype is not yet initialized. Fixes
5375         #76331.
5376
5377 2005-10-04  Martin Baulig  <martin@ximian.com>
5378
5379         * metadata.c
5380         (mono_metadata_load_generic_param_constraints): New public
5381         function; splitted the constraints loading out from
5382         mono_metadata_load_generic_params().
5383
5384         * class.c (mono_class_create_from_typedef): Call
5385         mono_metadata_load_generic_param_constraints() after setting up
5386         the type and creating our parent; fixes #75329.
5387
5388 2005-10-04  Martin Baulig  <martin@ximian.com>
5389
5390         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
5391         non-dynamic parent classes.
5392
5393 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
5394
5395         * file-io.c : win32 build fix (ETXTBSY seems not found).
5396
5397 2005-10-04  Martin Baulig  <martin@ximian.com>
5398
5399         * reflection.c
5400         (mono_image_get_methodspec_token): Make the cache actually work;
5401         fixes #75974.
5402
5403 2005-10-04  Martin Baulig  <martin@ximian.com>
5404
5405         * class.c (mono_class_name_from_token): Removed the unneccessary
5406         `MonoGenericContext *' argument.
5407
5408 2005-10-04  Martin Baulig  <martin@ximian.com>
5409
5410         * loader.c
5411         (method_from_methodspec): Make the caching work again; fixes the
5412         performance regression from #76262.
5413
5414 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5415
5416         * file-io.c:
5417         * file-io.h:
5418         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
5419         GetFileSystemEntries that performs the same work but without going
5420         into io-layer, locking, etc.
5421
5422 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
5423
5424         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
5425         ThreadState_Stopped as well. Fixes #76047.
5426
5427 2005-09-29  Martin Baulig  <martin@ximian.com>
5428
5429         * class.c
5430         (inflate_generic_context): If the new context has a `gmethod', set
5431         its `container' that that gmethod's `container'.
5432
5433         * metadata.c
5434         (mono_metadata_parse_generic_param): Simplify things;
5435         `generic_container = generic_context->container;' is just fine.
5436
5437         * loader.c (method_from_methodspec): Code cleanups.
5438
5439 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
5440
5441         * decimal.c: fix warning (and let gcc generate correct
5442         code on ARM with optimizations).
5443
5444 2005-09-28  Martin Baulig  <martin@ximian.com>
5445
5446         * loader.c
5447         (method_from_memberref): Added `MonoGenericContext *class_context'
5448         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
5449         (method_from_methodspec): If we're a memberref, use the enclosing
5450         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
5451
5452 2005-09-28  Martin Baulig  <martin@ximian.com>
5453
5454         * object.c (mono_runtime_invoke_array): Added support for
5455         MONO_TYPE_GENERICINST; fixes #75917.
5456
5457 2005-09-27  Martin Baulig  <martin@ximian.com>
5458
5459         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
5460         `k->byval_arg.type' to determine the actual type.
5461
5462         * loader.c (method_from_methodspec): Removed some hacks.
5463
5464 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
5465
5466         * class-internals.h (mono_field_is_deleted): Do the test for
5467         rtspecialname before we check the actual name of the field. This
5468         prevents us from dereferencing a pointer into the string table,
5469         saving us from accessing a few pages
5470
5471         * *.c: Replace the use of {Enter,Leave}CriticalSection with
5472         macros. This will allow a deadlock debugger to easily be plugged
5473         in.
5474
5475 2005-09-27  Martin Baulig  <martin@ximian.com>
5476
5477         * loader.c (method_from_methodspec): Create a "signature"
5478         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
5479
5480 2005-09-27  Martin Baulig  <martin@ximian.com>
5481
5482         * class.c
5483         (inflate_generic_class): Correctly set the new context's
5484         container.
5485
5486         * loader.c
5487         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
5488         instead of a `MonoGenericContext *'.
5489         (mono_method_signature_full): Take a `MonoGenericContainer *'
5490         instead of a `MonoGenericContext *'.
5491
5492         * metadata.c
5493         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
5494         instead of a `MonoGenericContext *'.
5495         (mono_metadata_parse_method_signature_full): Likewise.
5496
5497 2005-09-26  Martin Baulig  <martin@ximian.com>
5498
5499         * class.c
5500         (mono_class_from_generic_parameter): Set `klass->generic_container'
5501         (mono_class_from_generic_parameter): Likewise.
5502         (mono_bounded_array_class_get): We inherit the generic container
5503         from the element class.
5504
5505         * loader.c
5506         (find_method, find_method_in_class): Take a `MonoGenericContext *'
5507         argument rather than computing it here.
5508         (method_from_memberref): Correctly set the generic context before
5509         parsing the signature.  Fixes #75681.
5510
5511 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
5512
5513         * object.c (mono_class_has_special_static_fields): Fix warnings.
5514
5515 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5516
5517         * assembly.c: Add parse_public_key function, to
5518         par the public keys. Also added mono_assembly_name_parse_full,
5519         to define it the parsed key should be freed or not.
5520         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
5521         to parse a long format assembly name.
5522         * metadata-internals.h: Keep mono_assembly_name_parse_full as
5523         private, since calling it to preserve the key requires
5524         freeing it manually.
5525         
5526 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
5527
5528         * locales.c : removed HAVE_ICU part.
5529
5530 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
5531
5532         * object.c (mono_class_create_runtime_vtable): Avoid calling 
5533         field_is_special_static if the klass has no special static fields.
5534
5535         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
5536         (MonoCachedClassInfo): Likewise.
5537
5538         * object.c (mono_class_has_special_static_fields): New helper function.
5539
5540 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5541
5542         * class.c (mono_class_create_from_typedef): Don't call 
5543         interfaces_from_typedef_full for enums.
5544         (mono_class_create_from_typedef): Compute the base types of enums directly
5545         without calling mono_class_setup_fields ().
5546         (mono_class_find_enum_basetype): New helper function.
5547
5548         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
5549         one place inside the string heap.
5550         
5551 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
5552
5553         * class.c: locking fixes, code cleanups, some docs added.
5554         Allocate some data structures in the image mempool.
5555
5556 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5557
5558         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
5559         the example code.
5560         
5561 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
5562
5563         * class-internals.h, class.c, reflection.c: reduce memory taken by
5564         MonoClass.
5565
5566 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
5567
5568         * metadata.c, metadata.h, loader.h: documentation updates, code and
5569         API cleanups.
5570
5571 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5572
5573         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
5574         the example code.
5575
5576         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
5577         page faults caused by the runtime while reading metadata.
5578
5579 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5580
5581         * socket-io.c: the field names were changed 3 months ago and no one
5582         realized until bug #76077 got filed!
5583
5584 2005-09-20  Martin Baulig  <martin@ximian.com>
5585
5586         * icall.c (assembly_icalls): Removed some unused debugger icalls.
5587
5588 2005-09-20  Martin Baulig  <martin@ximian.com>
5589
5590         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
5591         write the rank into the class entry.
5592
5593 2005-09-20  Martin Baulig  <martin@ximian.com>
5594
5595         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
5596
5597 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
5598
5599         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5600
5601         * icall.c (custom_attrs_defined_internal): New icall.
5602
5603         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
5604         function.
5605         (mono_custom_attrs_construct_by_type): New helper function.
5606
5607 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
5608
5609         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
5610         terminate the resulting string. Fixes #76123.
5611
5612 2005-09-16  Martin Baulig  <martin@ximian.com>
5613
5614         * mono-debug.c
5615         (mono_debug_add_method): Ignore inflated methods for the moment.
5616
5617 2005-09-14  Martin Baulig  <martin@ximian.com>
5618
5619         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
5620
5621 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
5622
5623         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
5624         return a success/failure indication.
5625         (mono_metadata_interfaces_from_typedef_full): Ditto.
5626         (get_constraints): Ditto.
5627
5628 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
5629
5630         * marshal.c (emit_marshal_array): Fix handling of null arrays.
5631         
5632         * marshal.c (emit_marshal_array): Add support for returning string
5633         arrays from delegates. Fixes #76063.
5634
5635         * marshal.c: Use the emit_ldloc/stloc macros where possible.
5636
5637 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
5638
5639         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
5640         icall.
5641
5642 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
5643
5644         * reflection.c icall.c: Fix after mono_get_exception_type_load
5645         signature change.
5646
5647         * assembly.c (mono_assembly_get_assemblyref): New helper function.
5648         (mono_assembly_load_reference): Use the new helper.
5649
5650         * class-internals.h (MonoLoaderError): New structure containing 
5651         information about type loading errors.
5652
5653         * class-internals.h loader.c: Add APIs to store per-thread loader
5654         error information.
5655
5656         * loader.c class.c: Set the loader error if needed.
5657
5658         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
5659
5660 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
5661
5662         * decimal.c: fixed to handle the broken ARM fp format.
5663
5664 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
5665
5666         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
5667         broken.
5668
5669 2005-09-06  Martin Baulig  <martin@ximian.com>
5670
5671         * domain.c (supported_runtimes): Added v2.0.50727.
5672
5673 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
5674
5675         * culture-info.h: reduce the size of some structures.
5676
5677 2005-09-05  Martin Baulig  <martin@ximian.com>
5678
5679         Reflect latest API changes in the August CTP.
5680
5681         * icall.c
5682         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
5683         ("MonoType.HasGenericArguments"): Removed.
5684         ("MonoMethod.BindGenericParameters"): Renamed to
5685         "MakeGenericMethod".
5686         ("MethodBuilder.BindGenericParameters"): Renamed to
5687         "MakeGenericMethod".    
5688
5689 2005-09-05  Martin Baulig  <martin@ximian.com>
5690
5691         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
5692
5693 2005-09-05  Martin Baulig  <martin@ximian.com>
5694
5695         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5696
5697         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
5698         generic_container is non-NULL.
5699
5700 2005-09-05  Martin Baulig  <martin@ximian.com>
5701
5702         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5703
5704         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
5705
5706 2005-08-29  Michal Moskal  <malekith@nemerle.org>
5707
5708         * reflection.c (encode_locals,
5709         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
5710         for large generic types.
5711
5712 2005-09-05  Martin Baulig  <martin@ximian.com>
5713
5714         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5715
5716         * class.c (mono_dup_array_type): New public method.
5717         (mono_metadata_signature_deep_dup): New public method.
5718         (dup_type): Correctly duplicate array and function types.
5719
5720 2005-09-05  Martin Baulig  <martin@ximian.com>
5721
5722         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5723
5724         * reflection.c (get_default_param_value_blobs): Handle generic types
5725         and generic methods.
5726
5727 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
5728
5729         * class.c: Fixed error reporting (method/class were inversed) for 
5730         inheritance demands.
5731         * security-manager.c|h: Added the AppDomain when calling the managed
5732         System.Security.SecurityManager.InheritanceDemand method.
5733
5734 2005-09-01  Raja R Harinath  <rharinath@novell.com>
5735
5736         * reflection.c (encode_marshal_blob): 'marshaltype' and
5737         'marshaltyperef' are alternate sources for the custom marshaler
5738         name.
5739
5740 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
5741
5742         * class.c: fix creation of array classes with rank == 1
5743         (patch by Ankit Jain <jankit@novell.com>).
5744
5745 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
5746
5747         * object.c: fix check for creating the bound data for arrays vs
5748         szarrays.
5749
5750 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5751
5752         * object.c: configuration file name is now based on the executable name,
5753         not the image name. Fixes bug #75931.
5754
5755 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
5756
5757         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
5758         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
5759
5760 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
5761
5762         * rand.c: Use wincrypt.h instead of WinCrypt.h.
5763
5764 2005-08-24  Ankit Jain  <jankit@novell.com>
5765             Raja R Harinath  <rharinath@novell.com>
5766
5767         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
5768           called by it recursively.
5769           (mono_class_init): Remove special case in pending_init handling, since it's
5770           superseded by the fix to mono_class_from_typeref.
5771
5772 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
5773
5774         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
5775         BROKEN_THREAD_START stuff.
5776
5777 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
5778
5779         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
5780         trampoline.
5781
5782         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
5783         
5784         * object.c (mono_delegate_ctor): Replace the original function address with
5785         a delegate trampoline.
5786
5787 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
5788
5789         * icall.c: add boolean argument to base64_to_byte_array and 
5790         InternalFromBase64String to control whether a whitespace-only string
5791         is allowed (or should casue a FormatException to be thrown). We need
5792         this as the behavior has changed between MS.NET 1.x and 2.0, and we
5793         to match the MS behaviour in both profiles.
5794         * appdomain.c: Bump corlib version.
5795
5796 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5797
5798         This patch implements a big portion of publisher policy
5799         support, used to bind assembly versions and redirect
5800         one assembly from version A to version B.
5801
5802         * assembly.c:
5803         New GSList loaded_assembly_bindings, for storing the cached
5804         assembly bindings.
5805         (assembly_binding_maps_name): New static function for checking if a 
5806         assembly binding information maps an assembly name.
5807         (mono_assembly_binding_info_free): New function for freeing
5808         assembly binding information resources.
5809         (get_publisher_policy_info): New static function for retrieving 
5810         assembly binding information from a MonoImage.
5811         (compare_versions): New static function for comparing an assembly
5812         binding information data and the version of an assembly name.
5813         (check_policy_versions): New static function for checking if an
5814         assembly binding info mapping an assembly name is valid for it.
5815         (mono_assembly_load_publisher_policy): New static function for
5816         loading the 'policy.major.minor.MyAssembly' image for an assembly
5817         with an assembly name 'aname'.
5818         (mono_assembly_bind_version): New static function for updating
5819         assembly redirection.
5820         (mono_assembly_apply_binding): New static function for applying
5821         assembly binding.
5822         (search_binding_loaded): New static function for searching 
5823         loaded assembly binding infos in the cache domain.
5824         (mono_assembly_load_full): Don't apply assembly binding for
5825         reflection only assemblies.
5826
5827         * metadata-internals.h: Add MonoAssemblyBindingInfo,
5828         which contains information about assembly binding. Also
5829         declare signature for mono_config_parse_publisher_policy ()
5830         function, used to retrieve pub policy info.
5831         
5832         * mono-config.c:
5833         (publisher_policy_start): New static function used to parse publisher 
5834         policy config files.
5835         (publisher_policy_parser): New static MonoParseHandler containing 
5836         the functions used when parsing config files.
5837         (mono_config_parse_publisher_policy): New function for parsing
5838         publisher policy files.
5839         
5840 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
5841
5842         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
5843
5844         * marshal.c (mono_delegate_free_ftnptr): Ditto.
5845
5846         * object.c (mono_get_addr_from_ftnptr): New helper function.
5847
5848         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
5849
5850         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5851
5852 2005-08-19  Dick Porter  <dick@ximian.com>
5853
5854         * threads.c, threads.h, appdomain.c, appdomain.h,
5855         profiler-private.h, monitor.c, object.c, object-internals.h,
5856         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
5857         store the thread ID, so it can hold a 64 bit value if needed.
5858
5859 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
5860
5861         * reflection.c (mono_reflection_create_dynamic_method): Store the
5862         handle class into the method references as well so ldtoken works in
5863         dynamic methods.
5864
5865         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
5866         types.
5867
5868 2005-08-19  Ankit Jain <jankit@novell.com>
5869
5870         Fix #75847.
5871         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
5872           here rather than using the method signature of a arbitrary function
5873           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
5874           two arguments.
5875           Hack done with Harinath.
5876
5877 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5878
5879         * threadpool.c: disable printing stack traces when we get a exception
5880         in a threadpool thread. I need to do more testing to figure out which
5881         cases actually print this. Fixes bug #75828.
5882
5883 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5884
5885         * icall.c: there might be ignored whitespace after the last '='. This
5886         fixes length computation and bug #75840.
5887
5888 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
5889
5890         * assembly.c (mono_assembly_load_full): Consider .exe extension as
5891         well. Fixes #75809.
5892
5893         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
5894         #75784.
5895         
5896         * reflection.c (create_custom_attr_data): Ditto.
5897
5898 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
5899
5900         * locales.c, culture-info.h : removed RegionLCIDMap.
5901         * culture-info-tables.h : regenerated.
5902
5903 2005-08-16  Martin Baulig  <martin@ximian.com>
5904
5905         * class.c (mono_type_get_name_recurse): Small fix.
5906
5907 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5908
5909         * locales.c : indentation fixie.
5910
5911 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
5912
5913         * object-internals.h,
5914           locales.h,
5915           locales.c,
5916           culture-info.h,
5917           icall.c : added RegionInfo table support.
5918         * culture-info-table.h : regenerated for region support.
5919
5920 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
5921
5922         * reflection.c (resolve_object): handle all kinds of MonoMethod
5923         including generic ones
5924
5925 2005-08-12  Ankit Jain <jankit@novell.com>
5926
5927         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
5928           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
5929
5930 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
5931
5932         * process.c: Don't close a thread handle when it's NULL. This is a
5933         workaround for bug #75733.
5934
5935 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
5936
5937         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
5938
5939 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
5940
5941         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
5942
5943 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5944
5945         * threadpool.c: if a work item in the thread pool has a callback that
5946         catches a exception, don't propagate it after invoking the callback.
5947         Fixes bug #75336.
5948
5949 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
5950
5951         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
5952
5953         * class-internals.h (MonoCachedClassInfo): Add some new fields.
5954
5955         * class.c (mono_class_init): Load field info lazily in the AOT case.    
5956
5957         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
5958
5959 2005-08-03  Ankit Jain  <jankit@novell.com>
5960
5961         Fix #75683.
5962         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
5963           PInvoke calling convention is 0.
5964
5965 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
5966
5967         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
5968         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
5969
5970 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
5971
5972         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
5973         to handle threads not started by the GC (patch by Michael Meeks
5974         <michael.meeks@novell.com>).
5975
5976 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
5977
5978         * reflection.c: Make buffer used in emitting types larger for some
5979         big generic types (patch by Michal Moskal).
5980
5981 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
5982
5983         * mono-debug.c: Fix some (not all) alignment problems.
5984
5985 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5986
5987         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
5988         Invoke mono_image_load_from_data_full passing the refonly
5989         parameter.
5990
5991         * assembly.c
5992         (mono_assembly_open_from_bundle): Add the refonly argument, 
5993         in order to pass it to other methods it calls to.
5994         (do_mono_assembly_open): Add the refonly argument, in order 
5995         to pass it to other methods it calls to.
5996         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
5997         the refonly parameter to it.
5998
5999         * image.c: Add loaded_images_refonly_hash and
6000         loaded_images_refonly_guid_hash to cache the reflection
6001         only loaded images.
6002         (mono_images_init): Initialize the hash tables used for
6003         caching the reflection only images.
6004         (load_modules): Invoke mono_image_open_full passing the refonly
6005         parameter to load the modules the correct way.
6006         (build_guid_table): Add the refonly argument, to re-build the 
6007         correct hash table.
6008         (do_mono_image_open): Added the refonly argument, in order to
6009         define it for the loaded image.
6010         (mono_image_loaded_full): New function, which receives an
6011         additional parameter to look for the image in the refonly or
6012         non-refonly section.
6013         (mono_image_loaded): Updated, using mono_image_loaded_full.
6014         (mono_image_loaded_by_guid_full): The same case that happens
6015         with mono_image_loaded_full.
6016         (mono_image_loaded_by_guid): Likewise.
6017         (register_image): Use the ref_only variable inside MonoImage
6018         to decide in which hash table store the current image.
6019         (mono_image_open_from_data_full): Rename
6020         mono_image_open_from_data to mono_image_open_from_data_full,
6021         adding the refonly argument, to define the ref_only variable 
6022         inside MonoImage.
6023         (mono_image_open_from_data): Return 
6024         mono_image_open_from_data_full.
6025         (mono_image_open_full): Rename mono_image_open to
6026         mono_image_open_full, receiving the new refonly argument,
6027         to pass it to inner methods.
6028         (mono_pe_file_open): Update this function, to open
6029         a MonoImage as a non-refonly image.
6030         (mono_image_close): Use the refonly variable inside
6031         MonoImage to remove the image from the correct caches.
6032
6033         * image.h: Add the signatures of mono_image_open_full,
6034         mono_image_open_from_data_full, mono_image_loaded_full,
6035         mono_image_loaded_by_guid_full.
6036
6037         * metadata-internals.h: Add the ref_only field to 
6038         MonoImage.
6039         
6040 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6041
6042         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
6043         Fix the last behavior, which used to load the assemblies and
6044         extract MonoReflectionAssemblyName information, instead of
6045         extract it from the metadata tables. Needed for Reflection
6046         Only assemblies.
6047         
6048 2005-07-29  Martin Baulig  <martin@ximian.com>
6049
6050         * mono-debug-debugger.c
6051         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
6052         not initialized.
6053
6054         * mono-debug.c
6055         (mono_debug_address_from_il_offset): Check whether we have
6056         debugging support before attempting to take the lock.
6057         (mono_debug_source_location_from_address): Likewise.
6058         (mono_debug_source_location_from_il_offset): Likewise.
6059         (mono_debug_il_offset_from_address): Likewise.
6060         (mono_debug_address_from_il_offset): Likewise.
6061
6062 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
6063
6064         * class.c (mono_class_from_name_case): Add support for dynamic images.
6065         Fixes #75650.
6066
6067         * object.c (mono_class_compute_gc_descriptor): Add a workaround
6068         for #75479.
6069
6070 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6071         
6072         * reflection.c (mono_method_get_object): Fix warning.
6073
6074 2005-07-28  Martin Baulig  <martin@ximian.com>
6075
6076         * mono-debug.c
6077         (mono_debug_add_wrapper): Also write the wrapper type.
6078
6079 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6080
6081         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
6082         
6083         * class.c (mono_class_init): Avoid reading nested classes if the AOT
6084         data indicates the class has none.
6085
6086 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
6087
6088         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
6089         loader lock with the debugger lock. Prevents deadlocks for beagle.
6090
6091         Beagle can now run on an smp box for a weekend without any
6092         issues. Woohoo!
6093
6094 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
6095
6096         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
6097         in a module. Fixes #75629.
6098
6099 2005-07-26  Martin Baulig  <martin@ximian.com>
6100
6101         * mono-debug.c (mono_debug_add_wrapper): New static method.
6102         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
6103         interncall or a wrapper.
6104
6105         * mono-debug.h (MonoDebugWrapperData): New public typedef.
6106         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
6107         (MONO_DEBUGGER_VERSION): Bump to 51.
6108
6109         * mono-debug-debugger.c
6110         (mono_debugger_add_type): Removed this empty function.
6111         (mono_debugger_add_method): Likewise.
6112
6113 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
6114
6115         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
6116         before accessing method->slot.
6117
6118 2005-07-21  Jb Evain  <jbevain@gmail.com>
6119
6120         * reflection.c (method_encode_clauses/class): Handle filters clauses.
6121         Fixes #75010.
6122
6123 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
6124
6125         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
6126         #75587.
6127
6128 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
6129
6130         * image.h image.c: Add mono_image_get_guid () API function.
6131
6132 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
6133
6134         There were issues when multiple threads tried to load
6135         assemblies. A deadlock was created between assemblies_mutex and
6136         mono_domain_assemblies_lock. This fixes the issue by making the
6137         assembly ref counting be lock free. See bug 75586.
6138         
6139         * image.c (mono_image_close): The add ref function here was using
6140         Interlocked operations while the unref was using a mutex and a
6141         --. I don't think this was ever a bug that would be exposed in a
6142         non-pendantic way (ie, by an embedder doing a ref on one thread
6143         and an unref on another), but for the sake of correctness, this is
6144         now Interlocked.
6145
6146         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
6147         (mono_assembly_load_reference): Call mono_assembly_addref rather
6148         than touching the refcount ourselves.
6149         (mono_assembly_close): Use InterlockedDecrement to unref the
6150         assembly. Don't acquire the lock unless it is actually needed.
6151
6152 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6153
6154         * class.c (mono_class_layout_fields): Fix calculation of has_references
6155         for generic types.
6156
6157 2005-07-12  Martin Baulig  <martin@ximian.com>
6158
6159         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6160
6161         * metadata.c
6162         (mono_type_hash): Provide better hashing for generic instances.
6163         (mono_generic_inst_hash): Improve hashing.
6164         (mono_generic_class_hash): Likewise.
6165
6166         * reflection.c (mymono_metadata_type_hash): Improve hashing for
6167         generic instances.
6168
6169 2005-07-12  Martin Baulig  <martin@ximian.com>
6170
6171         * reflection.c (mono_reflection_create_runtime_class): Remove the
6172         hack for generic type definitions and non-`Run' assemblies.
6173         (mono_reflection_bind_generic_parameters): Also use
6174         `klass->wastypebuilder' to check for TypeBuilders.
6175
6176 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6177
6178         * class.c (mono_class_layout_fields): Fix calculation of has_references
6179         for generic types.
6180
6181         * class.c (inflate_generic_class): Fix a leak.
6182         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
6183         for generic types.
6184
6185 2005-07-11  Martin Baulig  <martin@ximian.com>
6186
6187         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
6188         on error.
6189
6190 2005-07-11  Martin Baulig  <martin@ximian.com>
6191
6192         * loader.c (find_method): Also lookup in
6193         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
6194
6195 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6196
6197         * appdomain.c (mono_domain_unload): Don't free the error message
6198         before passing it to mono_get_exception_...
6199
6200         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
6201         
6202 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
6203
6204         * threads.c: try to better guess an available RT signal (bug #75387).
6205
6206 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6207
6208         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
6209         and CACHE_OBJECT.
6210
6211 2005-07-07  Martin Baulig  <martin@ximian.com>
6212
6213         * class.c (mono_type_get_name_full): Return NULL for
6214         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
6215         fixes #75408.
6216
6217 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6218
6219         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
6220         exit the appdomain as well being aborted.
6221
6222         * threadpool.c: Create all threadpool threads inside the root appdomain, and
6223         change back to the root domain after calling managed code. This enables
6224         appdomains using threadpools to be unloaded.
6225
6226 2005-07-07  Martin Baulig  <martin@ximian.com>
6227
6228         * class-internals.h
6229         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
6230         into `MonoDynamicGenericClass' since we only need it for dynamic
6231         types.
6232
6233         * reflection.c (mono_class_bind_generic_parameters): We don't need
6234         to compute the `parent' here.
6235
6236 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
6237
6238         * culture-info-table.h : regenerated.
6239
6240 2005-07-06  Martin Baulig  <martin@ximian.com>
6241
6242         * icall.c
6243         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
6244
6245         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
6246
6247 2005-07-06  Martin Baulig  <martin@ximian.com>
6248
6249         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
6250         we're doing a signature-only comparision; fixes #74945.
6251
6252 2005-07-06  Martin Baulig  <martin@ximian.com>
6253
6254         * class-internals.h (MonoGenericClass): Moved some things out into
6255         a new `MonoInflatedGenericClass' type.  
6256         (MonoInflatedGenericClass): New type; the `klass' of a
6257         `MonoGenericClass' is now computed lazyly in
6258         mono_get_inflated_generic_class().      
6259
6260         * class.c (mono_get_inflated_generic_class): New public function.
6261         (mono_class_inflate_generic_method): Removed the unused
6262         `MonoClass *' argument.
6263         (setup_generic_vtable): Don't call mono_get_inflated_method() on
6264         all the methods.
6265         (mono_class_create_generic): Make this static and merge it with
6266         mono_class_create_generic_2(); we're now called automatically from
6267         mono_get_inflated_generic_class().
6268
6269         * loader.c (mono_method_signature): Call
6270         mono_get_inflated_method() here.
6271
6272 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
6273
6274         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
6275         type of fields with RVA.
6276
6277         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
6278         for this pseudo class.
6279         (my_mono_class_from_generic_parameter): Likewise.
6280         (mono_class_init): Allow interfaces to have cctors.
6281
6282 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6283
6284         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
6285         lazily for AOT methods.
6286
6287 2005-07-05  Martin Baulig  <martin@ximian.com>
6288
6289         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
6290         returns FALSE for a successful match, not TRUE.
6291
6292 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6293
6294         * loader.c (mono_method_get_index): Optimize this a bit.
6295
6296 2005-07-04  Martin Baulig  <martin@ximian.com>
6297
6298         * class.c
6299         (class_compute_field_layout): Move the check for generic type
6300         definitions into mono_class_layout_fields().  Fixes #74684.
6301         (mono_class_from_generic_parameter): Correctly compute
6302         `klass->parent'; fixes #75457.
6303
6304         * reflection.c (register_assembly, register_module): Make sure
6305         `domain->rejobject_hash' is already created.
6306
6307 2005-07-02  Martin Baulig  <martin@ximian.com>
6308
6309         * class-internals.h
6310         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
6311         `MonoDynamicGenericClass'.      
6312
6313 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
6314
6315         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
6316         returned by a field getter is null, since null is a valid value.
6317
6318 2005-07-01  Martin Baulig  <martin@ximian.com>
6319
6320         * reflection.c (mono_reflection_generic_class_initialize): Update
6321         the `dgclass->fields [i].parent' to the correct class.
6322         (mono_image_get_fieldref_token): Use the declaring type, not the
6323         reflected type.
6324
6325 2005-07-01  Martin Baulig  <martin@ximian.com>
6326
6327         * loader.c (find_method): Also look in the interfaces; fixes #75429.
6328
6329 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
6330
6331         * threads.c (thread_cleanup): assert that thread != NULL
6332         (wait_for_tids_or_state_change): We were using the wrong variable
6333         when accessing wait->threads. `i' was always out of the bounds of
6334         the array.
6335
6336 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6337
6338         * loader.c: map user32 and kernel32 to libMonoSupportW
6339
6340 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
6341
6342         * appdomain.c (unload_thread_main): Mark this as WINAPI.
6343
6344 2005-06-28  Martin Baulig  <martin@ximian.com>
6345
6346         * loader.c (method_from_methodspec): Fix #75334.
6347
6348 2005-06-28  Martin Baulig  <martin@ximian.com>
6349
6350         Fix #74953 - Arrays now implement the generic IList<T> interface
6351         on the 2.0 platform.
6352
6353         * class-internals.h (MonoDefaults): Added `generic_array_class'.
6354
6355         * reflection.c (mono_class_bind_generic_parameters): New public
6356         function; similar to mono_reflection_bind_generic_parameters(),
6357         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
6358
6359         * domain.c (mono_init_internal): Try to initialize.
6360         `mono_defaults.generic_array_class' here; this'll only succeed if
6361         we're using the 2.0 corlib.
6362
6363         * icall.c
6364         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
6365         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
6366         (mono_lookup_internal_call): Added support for nested classes.
6367
6368         * loader.c
6369         (mono_get_method_from_token): Set `result->signature->pinvoke' if
6370         we're an interncall and have generic arguments.
6371
6372         * class.c
6373         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
6374         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
6375         instance of System.Array.InternalArray<T> for arrays, so they
6376         implement the generic IList<T> interface.
6377
6378 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
6379
6380         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
6381         (chastamar@yahoo.com). Fixes #75374.    
6382
6383 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
6384
6385         * culture-info-table.h: regenerated.
6386
6387 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6388
6389         * icall.c: handle spaces correctly for base64 strings.
6390
6391 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
6392
6393         * *.c: Kill some warnings.
6394
6395 2005-06-23  Duncan Mak  <duncan@novell.com>
6396
6397         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
6398         that this builds on Solaris 10 (x86).
6399
6400 2005-06-23  Martin Baulig  <martin@ximian.com>
6401
6402         * class.c
6403         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
6404         generic type definitions.
6405
6406 2005-06-23  Martin Baulig  <martin@ximian.com>
6407
6408         Fix #75331.
6409
6410         * metadata.c (mono_class_get_overrides): Renamed to
6411         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
6412         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
6413         pass it to mono_get_method_full().
6414
6415 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
6416
6417         * reflection.c (mono_reflection_create_runtime_class): take the
6418         mono_domain_lock in this method. Prevents deadlocks
6419
6420 2005-06-22  Martin Baulig  <martin@ximian.com>
6421
6422         * loader.c (method_from_methodspec): Fix #75330.
6423
6424 2005-06-22  Martin Baulig  <martin@ximian.com>
6425
6426         * reflection.c (type_get_qualified_name): Use
6427         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
6428         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
6429         argument; use it if we don't have an assembly name.
6430
6431 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
6432
6433         * object.c: In mono_message_init, set "copy out" flag for in
6434         parameters with the [Out] flag.
6435
6436 2005-06-21  Martin Baulig  <martin@ximian.com>
6437
6438         * class.c
6439         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
6440         and MONO_TYPE_PTR.
6441
6442 2005-06-21  Martin Baulig  <martin@ximian.com>
6443
6444         * class.c (mono_class_init): Don't initialize `class->fields' for
6445         generic instances since they're initialized again in
6446         compute_field_layout(). 
6447         (compute_field_layout): Set the field's `generic_info' here; fix
6448         #75320. 
6449
6450 2005-06-21  Martin Baulig  <martin@ximian.com>
6451
6452         * class-internals.h
6453         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
6454
6455         * metadata.c (mono_metadata_generic_method_equal): Also
6456         distinguish the `generic_class'; fixes #75334.
6457
6458 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6459
6460         * domain.c:
6461         * appdomain.c:
6462         * domain-internals.h:
6463         * reflection.c: 'domain_assemblies' field is now protected by its own
6464         lock. Don't call into managed code to run the AssemblyLoad event if we
6465         now there are no registered delegates for it.
6466
6467 2005-06-20  Martin Baulig  <martin@ximian.com>
6468
6469         * class.c (mono_class_is_assignable_from): Use a custom version of
6470         mono_class_has_parent() to make things work for generic instances;
6471         fix #75300.
6472
6473 2005-06-20  Martin Baulig  <martin@ximian.com>
6474
6475         * loader.c (method_from_methodspec): Apply a patch from
6476         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
6477
6478 2005-06-20  Martin Baulig  <martin@ximian.com>
6479
6480         * class.c (mono_class_init): Reverted Zoltan's last change; it
6481         breaks generics.
6482
6483 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
6484
6485         * threads.c (wait_for_tids_or_state_change): Add missing locking.
6486
6487 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6488
6489         * socket-io.c: fix the index in the socket array for writable/error
6490         sockets. Fixes bug #75306.
6491
6492 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
6493
6494         * class.c (mono_class_init): Allow interfaces to have static ctors.
6495
6496 2005-06-17  Martin Baulig  <martin@ximian.com>
6497
6498         * loader.c (method_from_methodspec): Use `context->container' when
6499         parsing the `gmethod->inst'.
6500
6501 2005-06-17  Martin Baulig  <martin@ximian.com>
6502
6503         * class.c (mono_type_get_name_recurse): Don't add the assembly
6504         name for type arguments.
6505
6506 2005-06-15  Martin Baulig  <martin@ximian.com>
6507
6508         * reflection.c (mono_image_get_inflated_method_token): Encode
6509         correct klass; fixes #75260.
6510
6511 2005-06-13 Michal Moskal <malekith@nemerle.org>
6512
6513         * icall.c: Make GetCorrespondingMethod/Constructor take
6514         MonoReflectionMethod method not MonoMethod. Removed
6515         MonoType.GetCorrespondingField, and make
6516         MonoGenericType.GetCorrespondingField take name not
6517         MonoClassField.
6518
6519 2005-06-13  Michal Moskal <malekith@nemerle.org>
6520
6521         * reflection.c (field_encode_signature, encode_locals):
6522          Make sizes of buffers for types larger (for big generic types).
6523          (create_generic_typespec,
6524          mono_reflection_sighelper_get_signature_local,
6525          mono_reflection_sighelper_get_signature_field):
6526          Add asserts for too small buffers.
6527
6528 2005-06-15  Martin Baulig  <martin@ximian.com>
6529
6530         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
6531         if our parent is not a dynamic type.
6532
6533 2005-06-15  Martin Baulig  <martin@ximian.com>
6534
6535         * class-internals.h (MonoTypeNameFormat): New enum.
6536
6537         * class.c
6538         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
6539         (mono_type_get_full_name): Removed.
6540         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
6541         argument instead of the boolean's.
6542
6543         * icall.c (ves_icall_System_MonoType_getFullName):
6544         Added `gboolean assembly_qualified'.    
6545
6546         * reflection.h
6547         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
6548
6549         * reflection.c (mono_reflection_parse_type): Parse the new type
6550         name format.
6551
6552 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6553
6554         * icall.c: no need to convert from utf16 to utf8 and then back again
6555         after the call to GetLogicalDrives.
6556
6557 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6558
6559         * icall.c: frombase64. Fix problems exposed by new tests.
6560
6561 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6562
6563         * icall.c: added internal calls for converting char [] and strings in
6564         base64 into byte [].
6565
6566 2005-06-10  Martin Baulig  <martin@ximian.com>
6567
6568         * class.c (mono_class_create_generic_2): Read the nested classes
6569         from the metadata rather than from `gklass->nested_classes' since
6570         `gklass' might not be initialized yet.
6571
6572 2005-06-09  Duncan Mak  <duncan@novell.com>
6573
6574         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
6575         all public headers. Fixes #74919.
6576
6577 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
6578
6579         * domain.c: The key for proxy_vtable_hash is now a pointer
6580         array. Added new GHashFunc and GCompareFunc functions for this.
6581
6582         * class.h: The list of interfaces in MonoRemoteClass is known in
6583         advance and can't grow (we create a new MonoRemoteClass if needed),
6584         so now the interface array can be allocated together with
6585         MonoRemoteClass.
6586         
6587         * object.c: Added a new method create_remote_class_key.
6588         Fixed mono_remote_class so it does not depend on
6589         mono_upgrade_remote_class.
6590         Removed extend_interface_array.
6591         Added new method clone_remote_class(), which makes a copy of a remote
6592         class and adds a new interface or class to it.
6593         mono_upgrade_remote_class() now creates a new remote class (or gets
6594         it from the cache) if an vtable upgrade is needed. In this way
6595         we make sure that other objects sharing the same remote class
6596         don't get the new vtable with unwanted interfaces.
6597         
6598         * object-internals.h:
6599         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
6600         
6601         * marshal.c: Track changes in mono_upgrade_remote_class().
6602
6603 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
6604         * icall.c: Add runtime methods for obtaining members of inflated
6605         class, which were created from supplied non-inflated members. It
6606         is used in internal Get{Method,Constructor,Field} methods in
6607         System.Type
6608
6609 2005-06-09  Martin Baulig  <martin@ximian.com>
6610
6611         * reflection.c
6612         (mono_reflection_bind_generic_method_parameters): Fix #75169.
6613
6614 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6615         * reflection.c (mono_image_basic_init): Define
6616         Version in MonoDynamicAssembly. 
6617         
6618 2005-06-08  Martin Baulig  <martin@ximian.com>
6619
6620         Fix #75136.
6621
6622         * loader.c
6623         (mono_method_signature_full): New public method; takes a
6624         `MonoGenericContext *'.
6625         (find_method): Use mono_method_signature_full() and pass the
6626         klass'es context to it.
6627
6628         * class.c (mono_class_is_inflated_method): Use
6629         mono_method_signature_full() and pass the context to it.
6630
6631 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
6632
6633         * object.c: add proper locking in mono_remote_class_vtable(),
6634         fixes possible memory corruption.
6635
6636 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
6637
6638         * marshal.c (mono_remoting_marshal_init): set
6639         initialized after initialization.
6640
6641 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
6642
6643         * locales.c : hush.
6644
6645 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
6646
6647         * object.c (extend_interface_array): fix really silly
6648         memory corrupting / comparison bug.
6649
6650 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6651
6652         * reflection.c: Functions added to support the creation
6653         of CustomAttributeData, which includes Attribute data
6654         used by ReflectionOnly methods.
6655
6656         * reflection.h:  mono_reflection_get_custom_attrs_data and
6657          mono_custom_attrs_data_construct added (functions exposed).
6658
6659          * icall.c: Added mono_reflection_get_custom_attrs_data
6660          as icall.
6661         
6662 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
6663
6664         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
6665         lupus's request.
6666
6667 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
6668
6669         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
6670
6671         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
6672         dynamic DllImportAttribute.
6673
6674         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
6675         dynamic DllImportAttribute.
6676
6677         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
6678         Fixes #75162.
6679
6680 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6681
6682         * threads.c: avoid segfault when an unstarted thread is aborted.
6683
6684 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
6685
6686         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
6687         Returns the name and version of the runtime for reporting.
6688
6689 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6690
6691         * appdomain.c: bump corlib version.
6692         * object-internals.h: new field in MonoReflectionAssembly.
6693
6694 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6695
6696         * object-internals.h: Carlos forgot to add this field.
6697
6698 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6699
6700         * icall.c: Added create_version to create instances
6701         of Version of MonoReflectionAssemblyName. This change helps
6702         the AssemblyName tests to keep running fine.
6703         
6704 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
6705   
6706         * object.c (mono_method_return_message_restore): A somehow less
6707         intrusive fix for #75138.
6708
6709 2005-06-03  Raja R Harinath  <rharinath@novell.com>
6710
6711         * object.c (mono_method_return_message_restore): Fix computation
6712         of expected number of out args.
6713
6714 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6715
6716         * reflection.c (mono_image_get_method_info): Fix the case when the
6717         charset is empty.
6718
6719 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
6720
6721         * object.c: Added missing null check in
6722           mono_method_return_message_restore.
6723
6724 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6725
6726         * reflection.c (mono_image_get_method_info): Handle the case when
6727         dllentry is empty.
6728
6729 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
6730
6731         * object.c: When creating the vtable for a proxy, take into account
6732         all inherited interfaces, not only the ones registered in
6733         iclass->interfaces. This fixs bug #74996.
6734         Also, in mono_method_return_message_restore, verify that the array
6735         of out args has the expected lengh.
6736
6737 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6738
6739         * socket-io.c: update the timeout in Poll when the call is interrupte.
6740
6741 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6742
6743         * socket-io.c: support abort/suspend in Select_internal after last
6744         change.
6745
6746 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6747
6748         * threadpool.c: remove warning.
6749
6750 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6751
6752         * icall.c:
6753         * socket-io.[ch]: Select_internal uses poll() now when available, thus
6754         removing the 1024 limit from select(). Runtime part of the fix for
6755         bug #71203.
6756
6757 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6758
6759         * socket-io.c: when resolving the addresses for the same
6760         host returned by gethostname(), get the local IPs from the interface
6761         list. Loopback addresses are discarded if the are interfaces up with
6762         non-loopback ones. Fixes bug #63265.
6763
6764 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
6765
6766         * appdomain.c, verify.c, object-internals.h, reflection.c:
6767         bumped corlib number to 36, and added new extra_flags field
6768         to ReflectionMethodBuilder and friends.  Fixes #75060.
6769
6770 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
6771
6772         * gc.c: register a new weak link only if the object is non-null
6773         (fixes bug#75047).
6774
6775 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6776
6777         * culture-info.h : short time pattern too.
6778
6779 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6780
6781         * culture-info.h : expand long time pattern string length.
6782
6783 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6784
6785         * culture-info-table.h : update (more French date format; #72788).
6786
6787 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
6788
6789         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
6790         the method is static. Fixes #75029.
6791
6792 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
6793
6794         * reflection.c: Update the table_idx field of method builders after
6795         saving the module, since it can change. This is a workaround for
6796         bug #74914. 
6797
6798 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6799
6800         * culture-info-table.h : update (additional French date format).
6801
6802 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
6803
6804         * icall.c (ves_icall_type_Equals): Revert last change.
6805         
6806         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
6807
6808         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
6809
6810 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
6811
6812         * class-internals.h: Added executioncontext_class field to 
6813         MonoDefaults structure.
6814         * domain.c: Cache System.Threading.ExecutionContext class in 
6815         mono_defaults.
6816         * object.c: Capture the ExecutionContext for asynchroneous calls in
6817          mono_async_result_new.
6818         * object-internals.h: Added execution_context and original_context 
6819         fields to MonoAsyncResult. Added execution_context to MonoThread.
6820         * security-manager.c|.h: Added mono_get_context_capture_method to 
6821         return the capture method (if required by the security manager or by
6822         the framework version used).
6823         * threadpool.c: Apply capture (if present) ExecutionContext in 
6824         mono_async_invoke and revert to original context after it completes.
6825
6826 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
6827
6828         * culture-info-table.h : updated (real hacky solution for zh-CHT).
6829
6830 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
6831
6832         * culture-info-table.h : zh-CHT related workaround.
6833
6834 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6835
6836         * marshal.c (emit_marshal_custom): Add some error checking and call the
6837         methods in the ICustomMarshaler interface. Fixes #74875.
6838         
6839         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
6840         native->managed wrappers.
6841
6842 2005-05-12  Martin Baulig  <martin@ximian.com>
6843
6844         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
6845         here and use the loader lock.
6846
6847         * mono-debug.c: Properly lock when the debugger is not attached.
6848         (mono_debug_init): Release the initial lock if we're not running
6849         in the debugger.
6850
6851 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6852
6853         * marshal.c (emit_marshal_custom): Pass through NULL values without
6854         calling the custom marshalling routines.
6855
6856         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
6857         conversion in structures. Fixes #74882.
6858
6859 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
6860
6861         * culture-info-table.h : zh-* cultures were missing.
6862
6863 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
6864
6865         * threads.c: Added a new event background_change_event which is signaled
6866         when a thread changes its background mode.
6867         Moved here several checks previously done in managed code. The checks
6868         require the thread lock, and using the thread lock in managed code
6869         can result in deadlocks.
6870         Merged Start_internal and Thread_internal into a single method. Now 
6871         Thread_internal does all work of creating and starting a thread.
6872         Added icalls for setting and getting the state of the object. Moved from
6873         managed code to avoid locking there.
6874         Added wait_for_tids_or_state_change() which is called instad of
6875         wait_for_tids when waiting for non-backround threads to end. This method
6876         will return if one of the threads ends or the background_change_event
6877         is signaled.
6878         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
6879         the background mode. This method signals the background_change_event
6880         event.
6881         * icall.c:
6882         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
6883         removed Start_internal.
6884         
6885 2005-05-11  Martin Baulig  <martin@ximian.com>
6886
6887         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
6888         to order of some fields to get proper alignment on 64-bit machines.
6889
6890 2005-05-11  Martin Baulig  <martin@ximian.com>
6891
6892         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
6893         changes as they're broken and completely fuck up the debugger.
6894
6895         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
6896
6897 2005-05-10  Martin Baulig  <martin@ximian.com>
6898
6899         * reflection.c (mono_reflection_generic_class_initialize): Don't
6900         call mono_class_setup_parent() here.
6901
6902 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6903
6904         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
6905         send/receive timeout use an integer in milliseconds. We were using a
6906         struct timeval.
6907
6908 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6909
6910         * locales.c:
6911         (internal_get_cultures): reserve the first slot of the array for the
6912         InvariantCulture, which will be filled in managed code.
6913
6914 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
6915
6916         * reflection.c (mono_image_fill_module_table): Initialize the
6917         GENERATION field as well.
6918
6919 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6920
6921         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
6922         Monitor.Enter on the object.
6923
6924 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
6925
6926         * threads.c: Enable the wait for running threads when exiting.
6927         * icall.c: Suspend all threads before exiting.
6928
6929 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
6930
6931         * assembly.c (mono_assembly_load_reference): Fix warning.
6932
6933 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6934
6935         * threadpool.c: changed the default number of threads per cpu. From now
6936         on, the default will be 20 + (5 * number of cpus) instead of 50.
6937
6938 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
6939
6940         * loader.c (mono_method_get_signature_full): Add locking here.
6941
6942 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
6943
6944         * appdomain.c: Moved methods for parsing and freeing assembly
6945         names to assembly.c.
6946         * assembly.c, domain-internals.h: Created public methods for parsing
6947         assembly names. Fixed mono_assembly_load_with_partial_name:
6948         it now finds the best match, taking into account the version,
6949         token and culture specified in the partial name. Also return
6950         the latest version if no version information is specified.
6951
6952 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
6953
6954         * threadpool.c: replace check for SocketAsyncCall class.
6955
6956 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6957
6958         * threadpool-internals.h:
6959         * Makefile.am: added threadpool-internals.h
6960
6961         * threadpool.c: call mono_unhandled_exception on exceptions not handled
6962         that happen in threadpool threads (tested on MS).
6963         (mono_thread_pool_remove_socket): new function that dispatch any pending
6964         AIO call on a socket that is closing. By now only epoll really needs it,
6965         as select/poll wake up when the socket closes.
6966
6967
6968         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
6969
6970 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
6971
6972         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
6973
6974 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
6975
6976         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
6977
6978 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
6979
6980         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
6981         has an abort request, convert it into a suspend request.
6982
6983 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
6984
6985         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
6986         warning for the usage of `UnmanagedFunctionPointerAttribute' which
6987         is not supported yet.
6988
6989 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6990
6991         * image.c: register assemblies loaded from data (bundles) in the loaded
6992         assemblies hash. Fixes bug #74772.
6993
6994 2005-04-29  Martin Baulig  <martin@ximian.com>
6995
6996         * class.c (mono_type_get_name_recurse): Update to the new naming
6997         schema from the latest .NET 2.x beta2.
6998         (mono_class_setup_vtable_general): If we're a generic instance,
6999         copy the vtable from our generic type definition and inflate all
7000         the methods in it.
7001
7002         * loader.c (find_method): Update to the new naming schema from the
7003         latest .NET 2.x beta2.
7004
7005 2005-04-29  Raja R Harinath  <harinath@gmail.com>
7006
7007         * class.c (mono_class_init): Add a mono_loader_unlock to the
7008         #74734 fix.
7009
7010 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
7011
7012         * icall.c (ves_icall_System_Environment_Exit): Remove the 
7013         suspend_all_other_threads () call for the time being, since it can hang.
7014
7015         * threads.c (mono_thread_manage): Similarly, disable the waiting for
7016         the background threads to exit, since it can also hang.
7017
7018         * class.c (mono_class_init): Applied patch from Ankit Jain 
7019         (radical@gmail.com). Avoid pending init errors when a field refers
7020         to a nested class using a typeref. Fixes #74734.
7021
7022         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
7023         this for dynamic modules.
7024
7025 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7026
7027         * threads.c: don't wait for threads that are in the process of aborting
7028         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
7029         and waiting for background threads to finish. This makes xsp and
7030         mod-mono-server exit without random length delays and/or hangs.
7031
7032 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7033
7034         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
7035
7036 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
7037
7038         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
7039         dynamic types to prevent infinite loops. Fixes #74727.
7040
7041         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
7042         ..._is_assignable_to.
7043
7044 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
7045
7046         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
7047
7048 2005-04-25  Martin Baulig  <martin@ximian.com>
7049
7050         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
7051
7052         * domain.c
7053         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
7054
7055         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
7056
7057         * reflection.c (build_compressed_metadata): Set metadata header
7058         version to 2.0.
7059
7060 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
7061
7062         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
7063         number into an integral and a decimal part. Fixes #70473.
7064
7065         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
7066
7067 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
7068
7069         * culture-info-table.h : reflected the latest locale-builder output.
7070
7071 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7072
7073         * threadpool.c: check for SuspendRequested too when deciding if
7074         mono_thread_interruption_checkpoint should be called.
7075
7076 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7077
7078         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
7079         * threads.c: remove interruption_mutex and use Interlocked instead. When
7080         suspending all the threads, wait for all the suspended events at once.
7081         If we're shutting down and get an APC that is going to be queued,
7082         call mono_thread_execute_interruption immediately, as the thread might
7083         be sleeping on a pthread condition or mutex.
7084
7085         * icall.c: call mono_runtime_set_shutting_down before suspending the
7086         threads.
7087
7088         Fixes bug #74693. And now xsp is happier when exiting.
7089
7090 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
7091
7092         * loader.c (mono_stack_walk): Fix #74690.
7093
7094 2005-04-22  Martin Baulig  <martin@ximian.com>
7095
7096         * mono-debug.h (MonoDebugMethodJitInfo): Added
7097         `MonoDebugMethodJitInfo *jit'.
7098
7099         * mono-debug.c (mono_debug_read_method): Cache the
7100         MonoDebugMethodJitInfo in `address->jit'.
7101         (mono_debug_free_method_jit_info): New public method.
7102
7103 2005-04-22  Martin Baulig  <martin@ximian.com>
7104
7105         * class.c (mono_class_is_assignable_from): Disallow
7106         type parameter -> interface.
7107
7108 2005-04-21  Dick Porter  <dick@ximian.com>
7109
7110         * threads.c (mono_thread_create): Turn an assertion into an error.
7111
7112 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
7113
7114         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
7115         
7116         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
7117         Fix some gcc 4.0 warnings.
7118
7119 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
7120
7121         * file-io.c: fix alt dir separator char on unix systems
7122         and cleanup (fixes bug #71214).
7123
7124 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
7125
7126         * marshal.c: Use CALLVIRT instead of CALL when dispatching
7127         a call to a remote domain, since the method may be an
7128         interface method in the client domain. This fixes bug #74192.
7129
7130 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7131
7132         * threadpool.c: recv/send are now performed before going back to managed
7133         code to save one transition.
7134
7135 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7136
7137         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
7138
7139         * metadata/threadpool.c: removed hack to workaround the bug above.
7140
7141         Fixes bug #74618.
7142
7143 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
7144
7145         * reflection.c reflection.h: Fix handling of parameter defaults in
7146         dynamic methods. Also fixes handling of parameter attributes.
7147         Fixes #74609.
7148
7149         * mono-debug.c (mono_debug_close_image): Fix warning.
7150
7151 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7152
7153         * socket-io.h: replaced old unused field with new 'blocking'.
7154         * threadpool.c: restore socket blocking state on windows(tm).
7155
7156 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
7157
7158         * icall.c: don't return the codebase in the AssemblyName[] returned by
7159         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
7160         * object-internals.h: Removed FIXME (fields were presents) and fixed
7161         versioncompat declaration.
7162
7163 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7164
7165         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
7166         not closed, so don't cleanup when it happens.
7167
7168 2005-04-13  Chris Toshok  <toshok@ximian.com>
7169
7170         * mono-debug-debugger.h: change prototype for
7171         mono_debugger_lookup_type.
7172
7173         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
7174         this function, although it should probably be named
7175         mono_debugger_init_type.
7176
7177 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7178
7179         * threadpool.c: fix non-AIO case.
7180
7181 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
7182
7183         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
7184         the built-in profiler to measure just JIT compilation times.
7185
7186 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7187
7188         * threadpool.c: the epollfd might be closed by another thread at
7189         any time, so ignore EBADF at treat it as a "we're closing" sign.
7190
7191 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7192
7193         * threadpool.c: release the semaphores with a count equals to the number
7194         of working threads in both IO and regular pools. Fixed typo that messed
7195         up the count of IO pool threads. Don't initialize the pipe handles if
7196         we're using epoll.
7197
7198 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7199
7200         * threadpool.c: some systems don't like a NULL when deleting the socket
7201         from epoll.
7202
7203 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7204
7205         * threadpool.c: fix semaphore allocation.
7206
7207 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7208
7209         * threadpool.c: added epoll() based implementation for asynchronous IO
7210         that is used instead of the default poll() when available.
7211         It can be disabled by setting MONO_DISABLE_AIO.
7212
7213 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7214
7215         * threadpool.c: windows needs 'closesocket' and instead of returning
7216         0 when the stream is closed while in select, it returns -1. Fixes bug
7217         #74573.
7218
7219 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
7220
7221         * class.c (class_compute_field_layout): Fix the regression caused by
7222         the previous try.
7223
7224 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7225
7226         * threadpool.c: separate pool for socket async. IO.
7227         * threadpool.h: mono_max_worker_threads is not a global any more.
7228
7229 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
7230
7231         * class.c (class_compute_field_layout): Fix #74549.
7232
7233 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7234
7235         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
7236         use 2 connected sockets instead.
7237
7238 2005-04-08  Miguel de Icaza  <miguel@novell.com>
7239
7240         * mono-config.c: Add new entry point for mkbundle
7241         mono_config_parse_memory. 
7242
7243 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7244
7245         * threadpool.c: removed another unused function.
7246
7247 2005-04-08  Ankit Jain  <radical@corewars.org>
7248
7249         * reflection.c (get_default_param_value_blobs): Add 'types'
7250         parameter to get the types encoded in the constant table.
7251         (mono_param_get_objects): Use the type from the constant table,
7252         not the type of the parameter, when creating default values.
7253         Handle null default values correctly.
7254
7255 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7256
7257         * file-io.c:
7258         * file-io.h:
7259         * threadpool.c:
7260         * threadpool.h:
7261         * icall.c:
7262         * socket-io.c: removed dead code for async IO.
7263
7264 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7265
7266         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
7267
7268         * threadpool.c: intercept socket async. calls and pass them to a thread
7269         that is polling and dispatching the job items to the threadpool as
7270         socket become ready. Fixes bugs #71217, #71933.
7271
7272         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
7273         between char and short/ushort arrays.
7274
7275         * socket-io.c: remove dead code.
7276
7277 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7278
7279         * locales.c,
7280           icall.c : removed InternalToUpper_Comp() and
7281           InternalToLower_Comp().
7282
7283 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7284
7285         * char-conversions.h : The tables were incorrectly generated. Should
7286           be generated against invariant culture.
7287
7288 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
7289
7290         * object.c (mono_runtime_invoke_array): Fix return value when 
7291         passing pre-created valuetype objects to ctors.
7292
7293         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
7294         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
7295         Fixes #74338.
7296
7297 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
7298
7299         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
7300         only used with --security and hides the wrong corlib version error.
7301
7302 2005-03-30  Joshua Tauberer  <tauberer@for.net>
7303
7304         * class.c: Changed mono_class_name_from_token so that types
7305         outside of a namespace don't have an initial period.  Improved
7306         the g_warning message used in _mono_class_get when loading
7307         fails.
7308         * assembly.c: In mono_assembly_load_reference, when an assembly
7309         can't be found, "No such file or directory" is misleading and
7310         unhelpful because a few paths were checked for the presence of
7311         the assembly.  When that happens (ENOENT), display a nicer
7312         message indicating the directories that were searched.  In all
7313         cases, the warning is made easier to read for non-hackers.
7314
7315 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
7316
7317         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
7318         project/solution.
7319         * appdomain.h|domain.c: Removed inline from functions.
7320         * appdomain.c: Reduced warnings when compiling on windows.
7321         * icall.c: Fixed output_debug declaration to gunichar2*.
7322         * mono-config.c: Reduced warnings when compiling on windows.
7323         * rand.c: Added missing "windows.h". Added missing return value.
7324         * rawbuffer.c: Added missing winsock2.h for windows.
7325         * sysmath.h: Added mono-compiler.h header to allow/ease 
7326         compilation with non-GCC compilers.
7327         * threads.c: Fixed declarations to compile with VS.NET C compiler.
7328         Removed cast warnings.
7329
7330         Adapted from the work of J Lothian (for VC6).
7331
7332 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
7333
7334         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
7335         from default_path.
7336
7337 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
7338
7339         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
7340         the 2.0 profile.
7341
7342 2005-03-27  Raja R Harinath  <harinath@gmail.com>
7343
7344         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
7345         has to be in $(exec_prefix).  $(prefix) is for arch-independent
7346         stuff, and it would probably use $(prefix)/share rather than
7347         $(prefix)/lib.
7348
7349 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7350
7351         * console-io.c: added 2 includes that might be missing.
7352
7353 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
7354
7355         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
7356         profile.
7357
7358         * reflection.c (create_custom_attr): Allocate the params array using
7359         alloca so it gets GC tracking.
7360
7361 2005-03-23  Chris Toshok  <toshok@ximian.com>
7362
7363         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
7364         out some spew.
7365
7366 2005-03-24  Raja R Harinath  <rharinath@novell.com>
7367
7368         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
7369         changes to pick up any changes in prefix, etc.
7370
7371 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
7372
7373         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
7374         
7375         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
7376         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
7377
7378 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
7379
7380         * class-internals.h object-internals.h class.c reflection.c: Extend the
7381         mono_lookup_dynamic_token () function to return the class of the
7382         token as well. 
7383
7384         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
7385         well. Fixes #73848.
7386
7387 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
7388
7389         * security-manager.c: Skip inheritance checks for intra-corlib
7390         class inheritance and method overrides. This skips a lot of checks
7391         and (anyway) permissions cannot work until corlib is loaded.
7392
7393 2005-03-23  Martin Baulig  <martin@ximian.com>
7394
7395         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
7396         MONO_TYPE_GENERICINST.  
7397
7398 2005-03-23  Martin Baulig  <martin@ximian.com>
7399
7400         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
7401
7402 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7403
7404         * class.c: added locking comments to some functions.
7405         Cache the interface offsets arrays (saves about 20 KB
7406         of runtime memory in a typical app).
7407         Reduce the time overhead in mono_class_setup_supertypes ().
7408
7409 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
7410
7411         * icall.c: speedup and fix leaks in GetMethodsByName and
7412         GetPropertiesByName.
7413
7414 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7415
7416         * reflection.c: some locking fixes.
7417
7418 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7419
7420         * metadata.c: added missing break in case statement.
7421
7422 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
7423
7424         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7425         typedbyref return values. Fixes #73941.
7426
7427 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7428
7429         * security-manager.c|h: Added demandunmanaged method and 
7430         suppressunmanagedcodesecurity class to MonoSecurityManager.
7431         Renamed aptc class to allowpartiallytrustedcallers.
7432
7433 2005-03-17  Martin Baulig  <martin@ximian.com>
7434
7435         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
7436
7437 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7438
7439         * file-io.c: disabled file async. IO using aio_*. It uses the
7440         threadpool now. Workaround for bug #73718.
7441
7442 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7443
7444         * assembly.h, mono-config.c: added code to deal with bundled configs
7445         for bundled assemblies.
7446
7447 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
7448
7449         * *.c, private.h: cleanup, removing old private.h header file.
7450
7451 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
7452
7453         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
7454         and throw_on_unmappable_char attributes.
7455
7456 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
7457
7458         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
7459         _ProcessName_internal.
7460
7461 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
7462
7463         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
7464         #73631.
7465
7466         * icall.c threads.c threads-types.h: Remove slothash icalls as they
7467         are no longer used.
7468
7469 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
7470
7471         * object.c (compute_class_bitmap): Add support for generics. Fixes
7472         #73527.
7473
7474 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
7475
7476         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
7477
7478 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7479
7480         * filewatcher.c: commented out the code for windows watcher, as we don't
7481         use it (we use the managed implementation instead).
7482
7483 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
7484
7485         * object-internals.h (MonoThread): Remove 'unused1' field.
7486
7487         * appdomain.c: Bump corlib version.
7488
7489         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
7490
7491         * reflection.c (mono_reflection_create_runtime_class): Remove the
7492         AssemblyBuilder.Save optimization since it causes too many problems.
7493
7494 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
7495
7496         * exception.c|h: Added mono_get_exception_reflection_type_load to
7497         create a ReflectionTypeLoadException object.
7498         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
7499         to return NULL is a InheritanceDemand fails during reflection. Updated
7500         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
7501         ReflectionTypeLoadException if an InheritanceDemand fails during 
7502         reflection. Added icall mapping for GetLinkDemandSecurity.
7503         * security-manager.c|h: Added ves_icall_System_Security_
7504         SecurityManager_GetLinkDemandSecurity internal call to return the
7505         class and methods permissions set for a LinkDemand. Removed unused
7506         fields in MonoSecurityManager.
7507
7508 2005-03-10  Martin Baulig  <martin@ximian.com>
7509
7510         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
7511         it's a generic instance.
7512
7513 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
7514
7515         * reflection.c (mono_get_object_from_blob): Applied patch from
7516         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
7517
7518         * class.c (mono_class_is_assignable_from): Another try at fixing 
7519         #73469 without breaking anything.
7520
7521 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
7522
7523         * class.c: (mono_class_is_assignable_from): Revert the last changes
7524         since they don't work with generics.
7525         
7526         * class.c (mono_class_is_assignable_from): Fix build bustage.
7527
7528         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
7529         the managed IsAssignableFrom method. Fixes #73469.
7530
7531         * reflection.c (mono_reflection_call_is_assignable_from): New helper
7532         function.
7533
7534 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
7535
7536         * object.c (mono_load_remote_field_new): Fix returning uninitialized
7537         memory when the remoting callback does not sets the out arguments.
7538         Fixes #73007.
7539
7540         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
7541         by mistake.
7542
7543         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
7544
7545         * object-internals.h (MonoStackFrame): Sync with managed object layout.
7546
7547         * appdomain.c: Bump corlib version.
7548
7549 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
7550
7551         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
7552         function.
7553
7554         * threads.c (mono_thread_attach): Detect threads which are not started
7555         by the GC pthread wrappers.
7556
7557 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
7558
7559         * icall.c: Added new icall for RNG.
7560         * rand.c|h: Added new icall to open the RNG. This allows to share a 
7561         single handle on Linux to access /dev/urandom and fix #73183.
7562
7563 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
7564
7565         * object.c: setting the new vtable in a transparent proxy object must
7566         not change the GC descriptor.
7567
7568 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7569
7570         * object.c: fixed compilation without GCJ support.
7571         * reflection.c: for runtime-created types ensure klass->has_references
7572         is correct (bug #73215).
7573
7574 2005-03-02  Martin Baulig  <martin@ximian.com>
7575
7576         * class.c (mono_class_is_assignable_from): Make this work if
7577         `oklass' is a generic instance; fixes #72831.
7578
7579 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
7580
7581         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
7582         with hasthis set.
7583         
7584         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
7585
7586         * marshal.c: Reorganize native->managed marshalling code to also use
7587         the emit_marshal_... functions.
7588
7589 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
7590
7591         * object.c: typed allocs have issues with bitmap sizes > 30,
7592         so check for max_set >= 30.
7593
7594 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
7595
7596         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
7597         managed code. Fixes #73012.
7598
7599         * metadata.h (MonoMarshalSpec): Add elem_mult field.
7600
7601         * metadata.c reflection.c: Load/Emit elem_mult as well.
7602         
7603         * metadata.h (MonoMarshalSpec): Add comment.
7604
7605         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
7606
7607         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
7608         num_elem to -1 if not given.
7609
7610         * object-internals.h (MonoReflectionMarshal): Add has_size field.
7611
7612         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
7613         given values.
7614
7615 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
7616
7617         * null-gc.c (mono_gc_free_fixed): Was not compilable.
7618
7619 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
7620
7621         * reflection.c (encode_marshal_blob): Encode param_num field as well.
7622
7623         * object-internals.h (MonoReflectionMarshal): Add param_num field.
7624
7625 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
7626
7627         * object.c: generalized the reference bitmap creation
7628         and added hooks for the new GC.
7629         * class-internals.c: removed the gc_bitmap field from MonoClass.
7630
7631 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7632
7633         * domain.c: help the compiler to produce better code
7634         in mono_jit_info_table_find ().
7635
7636 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7637
7638         * object.c: make all allocations look typed.
7639
7640 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7641
7642         * socket-io.c: load Mono.Posix if it's not loaded already
7643         (fixes bug#73033).
7644
7645 2005-02-24  Martin Baulig  <martin@ximian.com>
7646
7647         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
7648         * reflection.c (dup_type): Likewise.
7649
7650 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
7651
7652         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
7653         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
7654
7655 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7656
7657         * domain.c, threads.c, object-internals.h: make the critical thread
7658         local vars use the fast access mode (even when we're compiled in
7659         a lib). Provide accessors to be used by the jit during codegen.
7660
7661 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7662
7663         * appdomain.c: Changed hook functios behavior to include
7664         support for the reflection only assemblies. Some icalls were changed
7665         to support the mentioned assemblies too. Signatures of static methods
7666         try_assembly_resolve and real_load now have an additional parameter:
7667         refonly.
7668
7669         * assembly.c: General changes to mono_assembly_ methods to support
7670         reflection only api. Functions mono_assembly_open, mono_assembly_load,
7671         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
7672         suffix, to support an additional gbool parameter to specify whether
7673         the assembli is reflection only or not. Created some new hook functions 
7674         to add support for reflection only assemblies. Signatures of static 
7675         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
7676         have now an additional parameter: refonly.
7677
7678         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
7679         indicating whether the assembly is reflection only or not.
7680
7681         * exception.c: Add mono_get_exception_invalid_operation.
7682
7683         * icall.c: Throw an InvalidOperationException when trying to invoke
7684         a property/method/event, or trying to set/get the value of a field.
7685         Also add an icall to retrieve the ref_only flag to the
7686         MonoReflectionAssembly.
7687
7688 2005-02-23  Chris Toshok  <toshok@ximian.com>
7689
7690         Part of fix for #72827.
7691         * mono-debug.c (mono_debug_add_method): add lexical block data to
7692         the info we write.  Kind of a hack at the moment - we copy the
7693         lexical block info from the MonoDebugMethodInfo to the
7694         MonoDebugMethodJitInfo here, before writing it.
7695         (mono_debug_read_method): read the lexical block info.
7696
7697         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
7698
7699         * debug-mono-symfile.h: add lexical block support.
7700
7701         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
7702         support.
7703
7704 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7705
7706         * loader.c (mono_lookup_pinvoke_call): Fix warning.
7707
7708         * object.c (mono_runtime_free_method): Call mono_free_method () and
7709         put the TODOs there.
7710
7711         * loader.c (mono_free_method): Free up most memory allocated for 
7712         dynamic methods.
7713
7714 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7715
7716         * reflection.c: properly flag a Type argument to a
7717         named custom attr value (bug #72248).
7718
7719 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7720
7721         * reflection.c: reduce code duplication in named custom
7722         attribute encoding.
7723
7724 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
7725
7726         * reflection.c: properly encode custom attrs of type object
7727         (bug #72649).
7728
7729 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7730
7731         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
7732
7733 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
7734
7735         * socket-io.c: load System.dll if it's not loaded already
7736         (bug #72850 and #70477).
7737
7738 2005-02-21  Martin Baulig  <martin@ximian.com>
7739
7740         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7741         generic instances.
7742
7743 2005-02-21  Martin Baulig  <martin@ximian.com>
7744
7745         * reflection.c (mono_image_build_metadata): We also need to
7746         "fixup" the MethodImpl table after we computed the final method
7747         indices.  Call fixup_methodimpl() to do that.
7748         (fixup_methodimpl): New private method.
7749
7750 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7751
7752         * assembly.c: special case mscorlib.dll (bug#72536),
7753         patch from Carlos Alberto Cortez.
7754
7755 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
7756
7757         * threads-types.h threads.c: Fix build bustage.
7758
7759         * threads.c: Use a union for long<->double conversions.
7760
7761         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
7762         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
7763
7764         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
7765         containing the checkpoint call with NOT_TAKEN.
7766         
7767         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
7768         checkpoint before pushing the arguments, so they won't have to be
7769         spilled to stack.
7770
7771 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7772
7773         * domain.c, assembly.c, domain-internals.h: make some data
7774         const and relocation-free.
7775
7776 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
7777
7778         * object.c, appdomain.c, class-internals.h: introduce the
7779         MonoClassRuntimeInfo structure to hold the info needed to
7780         use a class at runtime. Made mono_class_vtable() lock-free
7781         for all the appdomains.
7782
7783 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
7784
7785         * metadata-internals.h, image.c: introduce a per-image mempool to
7786         be used for memory that has the same lifetime as the image.
7787
7788 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
7789
7790         * domain.c: In mono_init_internal(), instead of selecting the first
7791         runtime version supported by an executable, get a list of all
7792         supported versions and select the one for which an mscorlib exists
7793         (since even if the runtime supports a given version, it doesn't mean
7794         that the framework for that version is installed).
7795         Modified get_runtimes_from_exe to support this behavior.
7796         In supported_runtimes, added information about additional system
7797         assembly versions.
7798         
7799         * assembly.c: Added support for more than one system assembly version
7800         per runtime version. Updated the assembly list.
7801         In mono_assembly_remap_version, removed the initial version check,
7802         since we don't know to which version we need to compare until we
7803         get the version set on which the assembly is based.
7804         Moved the code for loading corlib into the new method
7805         mono_assembly_load_corlib(), so it can be used by the initialization
7806         code.
7807         
7808         * domain-internals.h: Updated data structures and added declaration
7809         for mono_assembly_load_corlib.
7810
7811 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7812
7813         * reflection.c (resolve_object): Fix the creation of the signature in 
7814         the SignatureHelper case.
7815
7816         * assembly.c (mono_assembly_remap_version): Fix binary search.
7817         
7818 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
7819  
7820         * class.c: Added inheritance check when a method is overloaded (from a
7821         virtual method or when implementing an interface) and when a class is
7822         inherited. Added functions to set a failure for a class and to 
7823         retreive the exception from a failure.
7824         * class-internals.h: Added fields to MonoClass to keep the exception
7825         information status for inheritance (or other exceptions) to be thrown
7826         later (i.e. not at load time).
7827         * object.c: Throw the inheritance SecurityException when a type is to 
7828         be created with either class or method inheritance violations.
7829         * reflection.c|h: Fix when getting declsec from a class. Removed 
7830         unrequired code for class. Improved sanity in parameter naming.
7831         * security-manager.c|h: Added functions to check for class and method
7832         inheritance.
7833
7834 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7835
7836         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
7837         and has_finalize in dynamic types as well.
7838
7839 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
7840
7841         * culture-info-table.h : fixed currency format for en-GB (and so on).
7842
7843 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
7844
7845         * gc.c: ensure the GC handles never have 0 as a value.
7846
7847 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7848
7849         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
7850         a pointer to a struct to unmanaged code. Fixes #72625.
7851
7852 2005-02-16  Martin Baulig  <martin@ximian.com>
7853
7854         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
7855
7856 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7857
7858         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
7859
7860 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7861
7862         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
7863
7864         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
7865         UnmanagedFunctionPointerAttribute, use it for determining calling convention
7866         etc. Fixes #71471.
7867
7868         * reflection.c (mono_custom_attrs_get_attr): New helper function.
7869
7870         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
7871
7872 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
7873
7874         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
7875         changes to make the current context a field in MonoThread.
7876
7877 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7878
7879         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
7880         the last change.
7881         
7882         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
7883         extracted from mono_marshal_get_native_wrapper.
7884
7885         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
7886         to create wrappers around native functions.
7887
7888         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
7889         delegates for arbitrary function pointers. Fixes #71472.
7890
7891 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7892
7893         * threads.c: cleaned up the code a little.
7894
7895 2005-02-15  Martin Baulig  <martin@ximian.com>
7896
7897         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
7898         the data table.
7899
7900         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
7901         allocate larger chunks if needed.
7902
7903 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7904
7905         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
7906         in by mistake.
7907
7908 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
7909
7910         * domain.c: keep the domains in an array and ensure the domain ids
7911         are kept small, so they can be used as indexes to domain-specific data
7912         with a small memory overhead.
7913
7914 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7915
7916         * icall.c: Handle byref types in Type icalls. Fixes #72544.
7917
7918 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
7919
7920         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
7921
7922 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
7923
7924         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
7925
7926         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
7927         values.
7928
7929         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
7930         
7931 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
7932
7933         * domain-internals.h: add the hashtable here.
7934
7935         * class-internals.h: Remove `info' from MonoMethod
7936
7937         * domain.c: Add a new hashtable, jit_trampoline_hash
7938
7939 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7940
7941         * object.c: don't set the value of static fields
7942         (fixes bug#72494).
7943
7944 2005-02-11  Martin Baulig  <martin@ximian.com>
7945
7946         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
7947         (mono_debug_add_method): Silently ignore the method if it's too big.
7948         (mono_debug_add_type): Likewise.
7949
7950 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
7951
7952         * threads.c, appdomain.c: remove #ifdefs from the code.
7953
7954 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
7955
7956         * metadata-internals.h: Added flags to MonoAssembly to cache the most
7957         common security informations. This allows us to stay in unmanaged code
7958         when doing LinkDemand and it's special cases (except for the first 
7959         time for initialization). The flags a very much used with --security.
7960         * reflection.c|h: Added code to get declarative security attributes 
7961         for LinkDemand and InheritanceDemand. This required to refactor the
7962         existing code for Demand.
7963         * security-manager.c|h: Added new method fields for the special cases
7964         of LinkDemand.
7965
7966 2005-02-10  Martin Baulig  <martin@ximian.com>
7967
7968         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
7969         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
7970
7971 2005-02-10  Martin Baulig  <martin@ximian.com>
7972
7973         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
7974         debugging code; this is almost a complete rewrite.
7975
7976         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
7977
7978 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7979
7980         * domain.c, object.h: expose mono_string_equal () and 
7981         mono_string_hash ().
7982         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
7983         it's implemented in managed code.
7984
7985 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7986
7987         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
7988         lo leak objects between appdomains.
7989
7990 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7991
7992         * assembly.c: old compilers compilation fix from 
7993         robertj@gmx.net (Robert Jordan).
7994
7995 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
7996
7997         * class-internals.h: Little reminder for the future.
7998
7999         * debug-helpers.c: Fix up wrapper_type_names
8000
8001 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8002
8003         * image.c, metadata-internals.h: when loading an image from a file,
8004         mmap all of it and use the same codepaths as when using a
8005         in-memory image: the code is simpler and we use less memory
8006         (both writable and readonly).
8007
8008 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8009
8010         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
8011         API to alloc runtime data structures that need to be tracked by the
8012         GC and contain pointers.
8013         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
8014         make the code more readable and eventually use a different GC.
8015
8016 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
8017
8018         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
8019         for out arguments.
8020         
8021 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
8022
8023         * object.c: In release_type_locks(), don't release the cctor lock
8024         if it has already been released. This fixes a crash in the
8025         thread5 test.
8026
8027 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8028
8029         * gc.c, marshal.c, icall.c: register a delegate for finalization
8030         only when the native function pointer has been allocated for it.
8031
8032 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8033
8034         * object.c: cleaned up some code, allocate objects that are
8035         pointer free with the atomic malloc variant. Allocate memory
8036         for static data from the mempool if it's pointer-free.
8037         Allocate the bounds array at the end of the array data, when needed.
8038         * object-internals.h, object.h: move a private function in a private
8039         header.
8040         * class.c: handle missing case in tracking references in fields.
8041
8042 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8043
8044         * class.c, class-internals.h: keep track if a type has
8045         reference fields in either the instance or static fields.
8046
8047 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
8048
8049         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
8050         and renamed to MonoRuntimeInfo. Added fields to store the expected
8051         framework assembly version. Changed mono_get_framework_version and
8052         mono_get_runtime_version for a single mono_get_runtime_info method.
8053         
8054         * assembly.c: Added method to remap system assembly versions to the
8055         current executing runtime version. Removed old mapping code.
8056         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
8057         
8058         * icall.c, reflection.c: Track api changes.
8059
8060 2005-02-06  Miguel de Icaza  <miguel@novell.com>
8061
8062         * loader.c (method_from_memberref): Improve error reporting,
8063         produce the class name instead of the typeref/typedef index. 
8064
8065 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
8066
8067         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
8068
8069 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8070
8071         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
8072         stdcall and charset name mangling.  Reorganize the code and add
8073         some tracing stuff.
8074
8075 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8076
8077         * monodiet.c: More iters!
8078
8079         * marshal.c: Iter usage.
8080
8081         * icall.c: Iter usage.
8082
8083         * object.c: Use iters.
8084
8085         * debug-helpers.c: More iters
8086
8087 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8088
8089         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
8090         under win32.
8091
8092 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8093
8094         * mono-debug-debugger.c: use iters
8095
8096         * class.c, class-internals.h: mono_class_setup_events is static
8097         now
8098
8099         * All callers: use iters
8100
8101 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8102
8103         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
8104         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
8105
8106 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8107
8108         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
8109
8110         * marshal.h: Add prototypes for ldfld/stfld_remote.
8111
8112         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
8113         this is called during startup.
8114         
8115 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
8116
8117         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
8118         MonoThreadsSync struct private in monitor.c. Changed the way
8119         MonoThreadsSync is allocated so it's faster and there is no
8120         need to keep track of it with a finalizer and it uses less memory.
8121         This also finally allows us to allocate mono objects as ptrfree when
8122         there are no reference fields.
8123
8124 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
8125
8126         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
8127         disappearing link to the GC interface and use them to simplify
8128         the gchandles code.
8129
8130 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8131
8132         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
8133         stfld_remote which call mono_load/store_field_new. This allows methods
8134         calling ldfld/stfld wrappers to be AOTed.
8135
8136         * console-io.c: Include sys/filio.h under solaris.
8137         
8138         * console-io.c: Include curses.h if needed correctly.
8139
8140 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8141         
8142         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
8143         method->klass as well.
8144
8145         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
8146
8147         * class.c (mono_class_init): Switch on lazy initialization of 
8148         methods.
8149
8150         * class.c (mono_class_get_finalizer): Handle the case when the 
8151         finalizer is inherited.
8152
8153 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8154
8155         * console-io.c: <curses.h> is needed by term.h on solaris.
8156
8157 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
8158
8159         * icall.c, class-internals.h, monodiet.c, class.c: Remove
8160         mono_class_setup_properties where possible. Remove this ftn from
8161         the header file, and make it static.
8162
8163 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8164
8165         * loader.c: Add missing setup_... call.
8166
8167         * class.c: Add missing setup_... calls.
8168
8169         * class.c (mono_class_init): Switch on lazy initialization of 
8170         the generic vtable.
8171         
8172         * class.c (mono_class_init): Fix generics broken by the recent changes.
8173
8174         * monodiet.c (handle_type): Add missing setup_... calls.
8175
8176         * class.c: Back out garbage in previous patch.
8177         
8178         * class.c: Add missing setup_... calls.
8179
8180         * class.c (mono_class_get_method_from_name_flags): Avoid calling
8181         mono_class_setup_methods () if possible.
8182
8183         * class-internals.h (MonoClass): Add 'has_cctor' flag.
8184
8185         * class-internals.h (MonoCachedClassInfo): New structure.
8186
8187         * class.c: Initialize properties and events fields of MonoClass lazily.
8188
8189         * class.c: Add infrastructure for lazily initializing the methods and
8190         vtable fields of MonoClass. Not yet used.
8191
8192         * class.c (mono_class_get_finalizer): New helper function.
8193
8194         * class.c: Add infrastructure for loading some class related data from
8195         an AOT file.
8196
8197         * object.c: Add infrastructure for initializing the vtable from data
8198         in the AOT file.
8199
8200         * gc.c (run_finalize): Use mono_class_get_finalizer ().
8201
8202         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
8203         appropriate initialization function before accessing parts of the
8204         MonoClass structure.
8205
8206         * marshal.c: Fix warnings.
8207         
8208         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
8209
8210         * mono-debug-debugger.c (get_exception_message): Use 
8211         mono_class_get_method_from_name_flags ().
8212
8213 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
8214
8215         * reflection.c, appdomain.c: Replace a few manual searches that
8216         Zoltan missed. (Paolo approved this part of my initial patch).
8217
8218 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
8219
8220         * profiler.c: disable recording statistical events at report time.
8221
8222 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8223
8224         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
8225         to byteswap arrays of enum values, too (bug #72080).
8226
8227 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
8228
8229         * appdomain.c (set_domain_search_path): Allow this to be called if
8230         domain->setup is not yet set.
8231
8232         * loader.c (mono_method_get_index): New helper function.
8233
8234         * loader.c reflection.c: Use mono_method_get_index ().
8235
8236         * class.c (mono_class_get_method_from_name_flags): New helper method.
8237
8238         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
8239         this.
8240
8241         * class.c (mono_class_get_cctor): New helper method.
8242
8243         * string-icalls.c object.c class.c marshal.c reflection.c: Use
8244         mono_class_get_method () to look up methods.
8245
8246 2005-02-01  Miguel de Icaza  <miguel@novell.com>
8247
8248         * console-io.c: Fix the build, this should work on Windows.
8249
8250 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
8251
8252         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
8253         be set to null to keep things valid
8254
8255 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8256
8257         * icall.c: added Console 2.0 icalls.
8258         * Makefile.am: added console-io.[ch]
8259         * console-io.[ch]: internal calls for Console 2.0 API.
8260
8261 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8262
8263         * class.c: make sure we consider all the interfaces
8264         when calculating max_interface_id (bug found by
8265         Jeroen Frijters running ikvm).
8266
8267 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
8268
8269         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
8270         valuetype fields to null.
8271
8272         * object.c (set_value): Ditto. Fixes #71669.    
8273
8274 2005-01-31  Martin Baulig  <martin@ximian.com>
8275
8276         * metadata.c (mono_metadata_has_generic_params): New public
8277         function; checks whether something is a generic method.
8278
8279 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
8280
8281         * appdomain.c: fix infinite recursion when adding assemblies.
8282
8283 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
8284
8285         * object.c: Fix small typo to return all items for Environment.
8286         GetCommandLineArgs.
8287
8288 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8289
8290         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
8291         reflection.c: more domain and assembly-unload related fixes
8292         and memory leaks plugs.
8293
8294 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
8295
8296         * 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.
8297
8298 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
8299
8300         * loader.c (mono_method_signature): Make this method lazy
8301         (mono_get_method_from_token): Don't computate the signature here.
8302
8303         Doing this saves quite a bit of memory. I got 90 kb on starting up
8304         monodoc. It should also save some disk reads on startup.
8305
8306         * *: MonoMethod->signature might be NULL now. You *MUST* use
8307         mono_method_signature.
8308
8309 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
8310
8311         * object.c (mono_runtime_get_main_args): Return an array from the
8312         current domain here. Fixes #71938.
8313
8314 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
8315
8316         * monitor.c: formatting changes to comply with the
8317         mono coding style and remove #ifdefs from the code.
8318
8319 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8320
8321         * metadata.c, private.h: remove some unneeded data
8322         and use a more compact representation for table schemas.
8323
8324 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
8325
8326         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
8327         to get a better distribution in hash tables.
8328         * *.c: use mono_aligned_addr_hash() where appropriate.
8329         * assembly.c: make var static.
8330
8331 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
8332
8333         * domain-internals.h: Put MonoJitInfo on a diet.
8334
8335         * domain.c: Fix a warning.
8336
8337 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8338
8339         * gc.c: rework the gc handles code to reuse handles
8340         when freed.
8341
8342 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8343
8344         * domain.c: fixed long standing bug in mono_string_equal() which
8345         was brought to light with the ldstr changes.
8346
8347 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
8348
8349         * reflection.c: Remove warning by adding missing include for marshal.h
8350
8351 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8352
8353         * domain.c, object.c: change the ldstr_table to hold
8354         MonoString* as keys: makes the runtime isinterned lookup
8355         faster and simplifies memory management.
8356
8357 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
8358  
8359         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
8360         possible to add imperative security checks before calling the icall.
8361         * reflection.c: Return security attributes on the original MonoMethod
8362         (and not the wrapped one). This fix permissions on icalls.
8363
8364 2005-01-25  Dick Porter  <dick@ximian.com>
8365
8366         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
8367         the check for mktime() support actually test the mktime() return
8368         value.  "Fixes" bug 71682, though the output is still different to
8369         MS.
8370
8371 2005-01-25  Martin Baulig  <martin@ximian.com>
8372
8373         * class.c (mono_class_is_assignable_from): Make this work for
8374         generic instances.
8375
8376 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
8377
8378         * marshal.c (mono_string_utf8_to_builder)
8379         (mono_string_builder_to_utf16): We might not have ownership of the
8380         string. In thise case, we need to create a new buffer.
8381
8382         * object-internals.h (mono_stringbuilder_capacity): sb->str might
8383         be null, in which case, use the default capacity.
8384
8385 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8386
8387         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
8388         GC events to the profiler.
8389
8390 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8391
8392         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
8393         if you don't want the GC to run.
8394
8395 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
8396
8397         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
8398         start providing a GC API and keeping different implementations in
8399         their own file.
8400         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
8401
8402 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
8403
8404         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
8405         mmap rather than allocating a huge buffer.
8406         (mono_debug_close_mono_symbol_file): Free the buffer allocated
8407         above.
8408
8409 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
8410
8411         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
8412         and CheckExecutionRights.
8413         * reflection.c|h: Keep the index of the declarative security to be 
8414         used, instead of the pointer, when AOT compiler is used. Also add 
8415         class initialization when requesting demands.
8416         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
8417         CheckExecutionRights. Both properties are now FALSE by default, and
8418         unmodifiable, unless the --security option is used.
8419
8420 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8421
8422         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
8423         reflection.c: properly refcount images and assemblies, many leaks fixed.
8424
8425 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8426
8427         * threadpool.c: increase the timeout for threads in the thread pool to
8428         10s.  Fixes bug #67159.
8429
8430 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
8431
8432         * class-internals.h: Sun's compiler insists on explicit
8433         signed on bit fields to handle then correctly.
8434
8435 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
8436
8437         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
8438         Make the size of the array fit only the number of invalid path
8439         chars that we have.
8440
8441         * class.c (_mono_class_get): Improve the error reporting when a
8442         class referenced is not found, to assist debugging. 
8443
8444 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
8445
8446         * threads.c: fix off-by-one error.
8447         * domain.c: free data allocated in the domain.
8448
8449 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
8450
8451         * reflection.c (mono_method_body_get_object): Fill out exception info
8452         as well.
8453
8454         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
8455         structure.
8456         
8457 2005-01-19  Martin Baulig  <martin@ximian.com>
8458
8459         * loader.c (mono_get_method_constrained): Make this work again.
8460
8461 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
8462
8463         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
8464         guint16 to match the managed side.
8465
8466         * reflection.c (mono_reflection_body_get_object): Fill out local
8467         variables array.
8468
8469         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
8470         as well.
8471
8472         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
8473         'local_var_sig_token'.
8474
8475 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
8476
8477         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
8478         System.Drawing.
8479
8480         * reflection.c (mono_method_body_get_object): Handle abstract and
8481         runtime methods.
8482
8483 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
8484
8485         * marshal.c, loader.c, class-internals.h, reflection.c:
8486         store the emthod data for a wrapper in an array instead of a list.
8487
8488 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
8489
8490         * marshal.c: change the code to allocate memory more
8491         conservatively for method wrappers.
8492
8493 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
8494
8495         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
8496         fields from MonoClass to the marshal info structure where they belong.
8497
8498 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8499
8500         * class.c, object.c, class-internals.h, marshal.c: rearrange
8501         some fields and tweak some types to lower memory usage.
8502
8503 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
8504
8505         * threads.c (signal_thread_state_change): Handle the case when the
8506         target thread is the current thread.
8507
8508         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
8509
8510         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
8511         emit_ptr_to_object_conv. 
8512
8513         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
8514         marshalling. Fixes #71352.
8515
8516 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8517
8518         * metadata.h, blob.h: move table enum to blob.h so it can be included
8519         in any header.
8520         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
8521         cut the size of MonoImage/MonoDynamicImage.
8522
8523 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
8524
8525         * profiler.c (mono_profiler_install_simple): Fix default arguments.
8526
8527 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
8528
8529         * reflection.c, reflection.h, icall.c: add a function to check
8530         if an attribute type is defined for a metadata object.
8531
8532 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
8533
8534         * object-internals.h: Added some needed fields from StringBuilder class.
8535         * marshal.c: Set the maxCapacity when creating a StringBuilder.
8536
8537 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
8538
8539         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
8540         threads before shutting down the runtime.
8541
8542         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
8543
8544 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8545
8546         * object-internal.h, threads.c: implement stacksize and 
8547         parameterized thread start functionality (requires
8548         matching corlib). Marked broken code for later removal.
8549
8550 2005-01-12  Martin Baulig  <martin@ximian.com>
8551
8552         * class-internals.h (MonoGenericClass): Moved the `initialized'
8553         flag to MonoDynamicGenericClass, removed `init_pending'.
8554         (MonoGenericInst): Added `is_reference' flag.
8555
8556 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
8557
8558         * reflection.c (mono_image_create_pefile): Only set the pe_offset
8559         inside the MSDOS header. Fixes #71201.
8560
8561         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
8562         gc thread.
8563         (mono_domain_finalize): Ditto.
8564
8565 2005-01-12  Martin Baulig  <martin@ximian.com>
8566
8567         * class.c (mono_get_shared_generic_class): Use the cache for
8568         non-dynamic generic classes.
8569
8570         * class-internals.h (mono_class_create_generic_2): Removed
8571         function prototype, this function is now static inside class.c.
8572
8573         * class.c (mono_class_create_generic_2): Made this static, only
8574         call it from mono_class_init() and mono_class_setup_parent().
8575         (collect_implemented_interfaces_aux): Call mono_class_init() on
8576         the interfaces we collect.
8577         (mono_class_setup_vtable): Call mono_class_init (class->parent).
8578
8579 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
8580
8581         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
8582         it a real thread handle.
8583
8584         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
8585         MonoJitExceptionInfo, since each catch clause needs its own variable.
8586         
8587 2005-01-11  Dick Porter  <dick@ximian.com>
8588
8589         * image.c (mono_pe_file_open): New variant on mono_image_open()
8590         that does not set up the CLI metadata; used for FileVersionInfo so
8591         it can get the data for windows binaries too.
8592         
8593         * process.c (process_read_string_block): Don't read off the end of
8594         the StringTable block.
8595
8596         These both fix bug 70766.
8597
8598 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
8599
8600         * gc.c: set some fields to NULL at GC cleanup time.
8601         * threads.c: if we quit the main thread, call exit ().
8602
8603 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
8604
8605         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
8606
8607 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
8608
8609         * threads.h, threads.c, object.c: added accessor and settor for
8610         main_thread. Handle it specially when exiting from it: wait
8611         for other foreground threads to exit.
8612
8613 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
8614
8615         * process.c, verify.c: remove some bloat.
8616
8617 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
8618
8619         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
8620         the calling convention to cdecl under win32.
8621
8622 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
8623
8624         * object.c (mono_object_get_size): New function to get the size of
8625         an object instance.
8626
8627         * profiler.c (simple_allocation): Use above.
8628
8629 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
8630
8631         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
8632         ves_icall_System_AppDomain_getRootDomain (as it's not required to
8633         get an appdomain by it's id and we can't assume the root's id is 0).
8634         * domain-internals.h: Change the function prototype to match.
8635         * icall.c: Change the icall table for AppDomain.
8636
8637 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
8638
8639         * locales.c (string_invariant_compare_char): Only compute
8640         GUnicodeTypes in the case where we need them.  Test for ordinality
8641         first and return if so.
8642
8643         From the commit:
8644
8645                 /*
8646                  * FIXME: here we must use the information from c1type and c2type
8647                  * to find out the proper collation, even on the InvariantCulture, the
8648                  * sorting is not done by computing the unicode values, but their
8649                  * actual sort order.
8650                  */
8651
8652 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8653
8654         * loader.c: for P/Invoke methods, allow the "Internal" shared
8655         library name to refer to the calling process symbol namespace.
8656
8657 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
8658
8659         * Makefile.am: Add the security manager to the build.
8660         * security-manager.c|h: New. Initialization of the security manager.
8661
8662 2005-01-07  Dick Porter  <dick@ximian.com>
8663
8664         * threads.c: 
8665         * monitor.c: Update thread state during Monitor and WaitHandle
8666         waits.  Fixes bug 71031.
8667
8668 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
8669
8670         * reflection.c (property_encode_signature): Correctly handle when the
8671         property has no methods.
8672
8673 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
8674
8675         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
8676         
8677         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
8678         fields from mb, not rmb. Fixes #71017.
8679
8680         * marshal.c (emit_ptr_to_str_conv): Add support for 
8681         ByValTStr -> string conversion. Fixes #71015.
8682
8683         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
8684
8685         * mempool.c (mono_mempool_contains_addr): New helper function.
8686
8687 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8688
8689         * metadata.c (mono_metadata_compute_size): Fix size calculation of
8690         HasSematics encoded fields.
8691         
8692         * metadata.c (mono_type_to_unmanaged): Improve error message for 
8693         invalid string marshalling.
8694
8695         * metadata.c: Fix warnings.
8696         
8697 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8698
8699         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
8700         profiler support.
8701
8702 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8703
8704         * domain.c object.c domain-internals.h: Revert part of r38077 since the
8705         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
8706         tests.
8707
8708 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
8709
8710         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
8711         so methods containing these can be AOTed.
8712
8713 2005-01-03  Martin Baulig  <martin@ximian.com>
8714
8715         * loader.c (find_method): Removed the hack for generic instances.
8716         (method_from_memberref): If our parent is a generic instance, pass
8717         its generic type definition to find_method() and then inflate the
8718         method.
8719         (mono_get_method_constrained): Pass the generic type definition to
8720         find_method() and inflate the method later.
8721
8722         * class-internals.h (MonoStats): Added `generic_class_count'.
8723
8724         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
8725         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
8726
8727         * reflection.c (mono_custom_attrs_from_params): Don't ignore
8728         generic type definitions.
8729
8730 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
8731
8732         * loader.c icall.c: Fix warnings.
8733
8734 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
8735
8736         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
8737         blittable types. Fixes #70864.
8738
8739 2004-12-29  Martin Baulig  <martin@ximian.com>
8740
8741         * icall.c
8742         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
8743
8744         * reflection.c (mono_method_get_object): Create a
8745         "System.Reflection.MonoGenericMethod" for inflated methods; don't
8746         call mono_get_inflated_method().
8747
8748         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
8749
8750 2004-12-27  Martin Baulig  <martin@ximian.com>
8751
8752         * class-internals.h (MonoMethod): Added `is_inflated' flag.
8753         (MonoMethodInflated): Added `inflated' field.
8754
8755         * class.c (mono_class_inflate_generic_method): Don't really
8756         inflate the method here; just set the `is_inflated' flag in the
8757         MonoMethod.
8758         (mono_class_get_inflated_method): Actually inflate the method here
8759         if it's not already inflated; we use the MonoMethodInflated's new
8760         `inflated' field as a cache.
8761
8762 2004-12-26  Martin Baulig  <martin@ximian.com>
8763
8764         * class.c
8765         (inflate_generic_class): Moved some code out of inflate_generic_type().
8766         (mono_class_inflate_generic_method): If we're already inflated,
8767         inflate the context and use the declaring method; ie. make sure
8768         the declaring method of an inflated method is always the generic
8769         method definition.
8770         (mono_class_create_from_typedef): Create
8771         `class->generic_container->context->gclass'.
8772
8773 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
8774
8775         * metadata-internals.h, marshal.c, reflection.c: More
8776         MonoGHashTable->GHashTable.
8777
8778         * domain-internals.h, class.c: Change MonoGHashTable's into
8779         GHashTables for some cases where no gc stuff is used
8780
8781         All users: update apis
8782
8783 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
8784
8785         * metadata.c (builtin_types): Make this `const'. Makes this get
8786         put into the shareable section.
8787         (mono_metadata_init): Casts to make gcc happy.
8788
8789 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
8790
8791         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
8792
8793 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
8794
8795         * icall.c: Added an internal call to retrieve the position and length
8796         of assembly-level declarative security attributes (RequestMinimum, 
8797         RequestOptional and RequestRefuse). This is used by the Assembly class
8798         to re-create the corresponding permission sets.
8799
8800 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
8801
8802         * marshal.c: fix the stelemref wrapper to be type correct
8803         (and faster).
8804
8805 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
8806
8807         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
8808         to do key & 0x7fffffff. Hashtable already does this. It just
8809         results in longer code.
8810
8811 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
8812
8813         * appdomain.c: Bump corlib version.
8814         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
8815         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
8816         * reflection.c|h: Add functions to get declarative security infos
8817         (blob position and length) for assemblies, classes and methods.
8818
8819 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
8820
8821         * reflection.c: sort the constant table (bug #70693).
8822
8823 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
8824
8825         * object-internals.h, threads.c, domain.c: add accessors for
8826         the MonoThread and MonoDomain tls keys.
8827
8828 2004-12-18  Martin Baulig  <martin@ximian.com>
8829
8830         * class.c (inflate_generic_type): If we're inflating a generic
8831         instance, set `ngclass->context->container = context->container';
8832         ie. the container we inflated into.
8833
8834         * metadata.c (mono_metadata_parse_generic_param): Reflect above
8835         inflate_generic_type() changes.
8836
8837 2004-12-17  Martin Baulig  <martin@ximian.com>
8838
8839         * class-internals.h
8840         (MonoGenericClass): Replaced `MonoType *generic_type' with
8841         `MonoClass *generic_class'.  Removed `dynamic_info'; if
8842         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
8843         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
8844
8845 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
8846
8847         * exception.c (mono_exception_from_token): New helper function.
8848
8849 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
8850
8851         * assembly.c (mono_assembly_load_with_partial_name): Call 
8852         mono_assembly_loaded before invoking the preload hooks. Fixes
8853         #70564.
8854
8855         * object-internals.h (MonoThread): Change culture_info and 
8856         ui_culture_info into an array.
8857
8858         * threads.c: Cache culture info objects from more than one appdomain.
8859
8860         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
8861         current UI culture.
8862
8863 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
8864
8865         * threads.h threads.c appdomain.c: Clear the culture_info field of
8866         all threads during unloading if they point to an object in the dying
8867         appdomain.
8868
8869 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
8870
8871         * culture-info.h (TextInfoEntry): New struct
8872         * object-internals.h: sync with managed
8873         * locales.c: fill the `text_info_data' field
8874         * culture-info-tables.h: update
8875
8876 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
8877
8878         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
8879         collector.
8880
8881 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
8882
8883         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
8884         (ves_icall_ModuleBuilder_getMethodToken): Ditto
8885
8886 2004-12-12  Martin Baulig  <martin@ximian.com>
8887
8888         * mono-debug-debugger.c (write_type): If we're an enum and the
8889         builtin types have already been initialized, call mono_class_init().
8890
8891 2004-12-11  Martin Baulig  <martin@ximian.com>
8892
8893         * metadata.c (mono_metadata_load_generic_params): Added
8894         `MonoGenericContainer *parent_container' argument; automatically
8895         compute `container->is_method'; pass the correct owner to
8896         get_constraints().      
8897
8898         * reflection.c (compare_genericparam): Sort the GenericParam table
8899         according to increasing owners. 
8900
8901 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
8902
8903         * profiler.c: allow disabling the default profiler.
8904
8905 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
8906
8907         * decimal.c, icall.c: allow disabling System.Decimal support.
8908
8909 2004-12-09  Marek Safar <marek.safar@seznam.cz>
8910
8911         * reflection.c: Add support for null attribute arguments.
8912
8913 2004-12-09  Martin Baulig  <martin@ximian.com>
8914
8915         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
8916         names to get rid of compiler warnings.
8917
8918 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8919
8920         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
8921         mono_marshal_load_type_info (). Fixes #69625.
8922         (mono_marshal_get_ptr_to_struct): Likewise.
8923
8924 2004-12-08  Martin Baulig  <martin@ximian.com>
8925
8926         * mono-debug.h: Bumped version number to 47.
8927
8928         * mono-debug-debugger.c
8929         (mono_debugger_event_handler, mono_debugger_event): Take two
8930         guint64 arguments insteed of a gpointer and a guint32.  
8931
8932 2004-12-08  Martin Baulig  <martin@ximian.com>
8933
8934         * debug-mono-symfile.h
8935         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
8936         `address' to `native_offset'.
8937
8938 2004-12-08  Martin Baulig  <martin@ximian.com>
8939
8940         * class.c (mono_class_create_from_typespec): Only inflate if we
8941         either have `context->gclass' or `context->gmethod'.
8942
8943 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8944
8945         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
8946
8947         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
8948
8949         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
8950
8951         * reflection.c (mono_assembly_get_object): Remove the workaround put
8952         in for the release.
8953         
8954         * appdomain.c: Use the corlib_internal field from MonoAssembly.
8955
8956         * appdomain.c: Bump corlib version.
8957
8958         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
8959         be visible in other appdomains.
8960
8961 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
8962
8963         * threads.c: Interlocked inc and dec for longs were messed up,
8964         use a KISS based impl for this. Fixes 70234
8965
8966 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
8967
8968         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
8969
8970 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
8971
8972         * icall.c: fix to follow policy not to allow struct
8973         arguments in icalls.
8974
8975 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8976
8977         * process.c: make the patch that handles spaces in file paths work
8978         on mono/windows too.
8979
8980 2004-12-06  Martin Baulig  <martin@ximian.com>
8981
8982         * class.c (mono_class_create_generic): Call
8983         mono_class_setup_supertypes() if we're dynamic.
8984         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
8985
8986 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
8987
8988         * object-internals.h: Add new fields to MonoThread.
8989
8990         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8991
8992         * icall.c threads-types.h threads.c: Add new icalls.
8993
8994         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
8995
8996         * object-internals.h (MonoReflectionAssembly): Sync object layout with
8997         managed side.
8998
8999         * appdomain.c: Bump corlib version.
9000
9001         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
9002         internal assemblies. Fixes #69181.
9003
9004 2004-12-05  Martin Baulig  <martin@ximian.com>
9005
9006         * class.c (mono_class_inflate_generic_signature): Make this a
9007         no-op if `context' is NULL or we don't have any type parameters;
9008         also copy `sentinelpos'.        
9009
9010 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
9011
9012         * image.c: Add unbox_wrapper_cache.
9013
9014         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
9015
9016         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
9017         function generator.
9018         
9019         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
9020         Fixes #70173.
9021
9022         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
9023         
9024 2004-12-04  Martin Baulig  <martin@ximian.com>
9025
9026         * loader.c (mono_method_get_signature_full): New public function;
9027         like mono_method_get_signature(), but with an additional
9028         `MonoGenericContext *' argument.
9029
9030         * class.c (mono_class_inflate_generic_signature): Formerly known
9031         as inflate_generic_signature(); make this public.
9032
9033 2004-12-04  Martin Baulig  <martin@ximian.com>
9034
9035         * metadata.c
9036         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
9037         instead of a `MonoGenericContainer *'.  
9038         (mono_metadata_parse_array_full): Likewise.
9039         (mono_metadata_parse_signature_full): Likewise.
9040         (mono_metadata_parse_method_signature_full): Likewise.
9041         (mono_metadata_parse_generic_inst): Likewise.
9042         (mono_metadata_parse_generic_param): Likewise.
9043         (mono_metadata_parse_mh_full): Likewise.
9044         (mono_type_create_from_typespec_full): Likewise.
9045
9046 2004-12-03  Martin Baulig  <martin@ximian.com>
9047
9048         * class-internals.h (MonoGenericContainer): Replaced the
9049         `MonoGenericContext * pointer with a `MonoGenericContext'
9050         structure and made it the first element.
9051
9052 2004-12-03  Martin Baulig  <martin@ximian.com>
9053
9054         * class.c
9055         (inflate_generic_type): Set the `context->container' when creating
9056         a new MonoGenericContext.
9057         (mono_class_inflate_generic_method): Likewise.
9058         (mono_class_create_from_typespec): Just use `context->container'
9059         to get the container.
9060
9061         * loader.c (method_from_methodspec): Set `context->parent' from
9062         `context->container' - and if that's a method container, use its
9063         parent.  Also set the `context->container' when creating a new
9064         MonoGenericContext.
9065         (mono_get_method_from_token): Use just `context->container' to get
9066         the container.
9067
9068         * metadata.c (do_mono_metadata_parse_generic_class): Also set
9069         `gclass->context->container'.
9070
9071         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
9072         the `context->container' when creating a new MonoGenericContext.
9073
9074 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
9075
9076         * reflection.c (compare_genericparam): Sort params with identical
9077         owner by their number. Fixes gen-111 on sparc.
9078
9079 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9080
9081         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
9082         around the domain changes.
9083
9084         * appdomain.c (mono_domain_unload): Handle the case when the thread
9085         calling Unload is itself being aborted during unloading. Fixes #70022.
9086
9087         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
9088
9089         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
9090         checkpoint_func as an icall so it gets a wrapper.
9091         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
9092         in the cross-appdomain wrappers too.
9093
9094         * threads.c (mono_thread_has_appdomain_ref): Make this public.
9095
9096         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
9097
9098         * reflection.c: Fix some memory leaks.
9099         
9100 2004-12-02  Martin Baulig  <martin@ximian.com>
9101
9102         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
9103
9104         * metadata.c (generic_class_cache): New static hashtable.
9105         (mono_metadata_lookup_generic_class): New public method.
9106
9107 2004-12-02  Martin Baulig  <martin@ximian.com>
9108
9109         * class.c (mono_class_create_from_typedef): Call
9110         mono_class_setup_parent() and mono_class_create_mono_type() before
9111         parsing the interfaces.
9112
9113 2004-12-02  Martin Baulig  <martin@ximian.com>
9114
9115         * metadata.c (generic_inst_cache): New static hashtable.
9116         (mono_metadata_lookup_generic_inst): New public function.
9117         (mono_metadata_inflate_generic_inst): New public function.
9118         (mono_metadata_parse_generic_inst): New public function.
9119         (do_mono_metadata_parse_generic_class): Use the new
9120         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
9121         since this'll also use the cache.
9122
9123         * reflection.c (mono_reflection_bind_generic_method_parameters):
9124         Use mono_metadata_lookup_generic_inst() to use the new cache.
9125
9126         * class.c (inflate_mono_type): Use
9127         mono_metadata_inflate_generic_inst() to inflate a generic
9128         instance; this'll also use the new cache.
9129
9130         * loader.c (method_from_methodspec): Use
9131         mono_metadata_parse_generic_inst() and
9132         mono_metadata_inflate_generic_inst() rather than parsing it
9133         manually, so we can use the new cache.
9134
9135 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9136
9137         * threads.c (wait_for_tids): Do not incorrectly free threads when 
9138         the wait times out.
9139
9140 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
9141
9142         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
9143         iter->args based on whether parameters are passed in registers (i.e.
9144         MONO_ARCH_REGPARMS is defined)
9145
9146 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
9147
9148         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
9149         the exception message. Fixes #70070.
9150         (method_from_methodspec): Fix warnings.
9151
9152 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9153
9154         * process.c: (complete_path) return the path quoted
9155
9156 2004-12-01  Martin Baulig  <martin@ximian.com>
9157
9158         * class-internals.h (MonoGenericInst): New structure.
9159         (MonoGenericClass): Replaced `type_argc', `type_argv' and
9160         `is_open' with `MonoGenericInst *inst'.
9161         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
9162         `is_open' with `MonoGenericInst *inst'.
9163
9164 2004-11-30  Martin Baulig  <martin@ximian.com>
9165
9166         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
9167
9168         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
9169         to `generic_class_cache'.
9170
9171         * metadata.c
9172         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
9173         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
9174         (mono_generic_inst_is_valuetype): Renamed to
9175         mono_generic_class_is_valuetype().
9176
9177         * class-internals.h
9178         (MonoGenericInst): Renamed to MonoGenericClass.
9179         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
9180         (MonoClass): Renamed `generic_inst' to `generic_class'.
9181         (MonoGenericContext): Renamed `ginst' to `gclass'.
9182
9183         * object-internals.h
9184         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
9185
9186         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
9187         mono_reflection_generic_class_initialize().
9188
9189         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
9190         now known as "System.Reflection.MonoGenericClass".
9191         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
9192
9193 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
9194
9195         * class-internals.h: Added a flag field to MonoClass to cache the
9196         declarative security attributes actions associated with the class.
9197         * domain-internals.h: Added booleans to MonoJitInfo to cache the
9198         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
9199         applicable to the JITted method.
9200         * reflection.c|h: Added functions to extract (as flags) which security
9201         actions are available (declaratively) for a method, class or assembly.
9202         * metadata.c|h: Added functions to search the declarative security
9203         table in the metadata.
9204         
9205 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
9206
9207         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
9208         EXPORTEDTYPES are already in the class name cache, so there is no
9209         need to add extra code here to look at them. Just removes a bit of
9210         cruft.
9211
9212         (ves_icall_System_Environment_get_TickCount): No need for #if
9213         WINDOWS. We already have the code in io-layer.
9214
9215 2004-11-28  Martin Baulig  <martin@ximian.com>
9216
9217         * loader.c
9218         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
9219         Fixes gen-112.cs.
9220
9221 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
9222
9223         * assembly.c (do_mono_assembly_open): Instead of having a
9224         conditional WITH_BUNDLE, incorporate support for bundles here, by
9225         having a global `bundles' variable holding a pointer to the actual
9226         bundles. 
9227
9228         (mono_register_bundled_assemblies): New API call used by the
9229         bundle code. 
9230
9231         See mkbundle.1 for details.
9232         
9233 2004-11-27  Martin Baulig  <martin@ximian.com>
9234
9235         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
9236         the vtable for generic methods.
9237
9238 2004-11-26  Martin Baulig  <martin@ximian.com>
9239
9240         * metadata.c
9241         (mono_metadata_generic_method_hash): New public function.
9242         (mono_metadata_generic_method_equal): Likewise.
9243
9244         * class-internals.h
9245         (MonoGenericContainer): Added `GHashTable *method_hash'.
9246
9247         * reflection.c (ReflectionMethodBuilder): Added
9248         `MonoGenericContainer *generic_container'.
9249         (reflection_methodbuilder_to_mono_method): Don't create a new
9250         MonoGenericContainer each time we're called.
9251         (mono_reflection_bind_generic_method_parameters): Use
9252         `container->method_hash' to cache the results so we don't create a
9253         different method if we're called several times with the same
9254         arguments.
9255
9256         * loader.c (method_from_methodspec): Use the new
9257         `container->method_hash' here, too.
9258
9259 2004-11-26  Martin Baulig  <martin@ximian.com>
9260
9261         * class.c (inflate_generic_signature): Correctly compute
9262         `res->has_type_parameters'.
9263         (mono_class_vtable): Use the `has_type_parameters' flag to
9264         determine whether we're a generic method.
9265
9266         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
9267
9268 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
9269
9270         * object.c (mono_runtime_run_main): Fix a small memory leak.
9271
9272 2004-11-25  Martin Baulig  <martin@ximian.com>
9273
9274         * class.c (set_generic_param_owner): Fixed the loop.
9275
9276 2004-11-25  Martin Baulig  <martin@ximian.com>
9277
9278         * object.c (mono_class_vtable): Don't create any JIT wrappers for
9279         generic methods.
9280
9281 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
9282
9283         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
9284         names. Fixes #69787.
9285
9286 2004-11-24  Martin Baulig  <martin@ximian.com>
9287
9288         * class.c (mono_class_create_generic_2): If we don't have a
9289         `ginst->parent', inflate `gklass->parent' to get our parent.
9290
9291 2004-11-24  Martin Baulig  <martin@ximian.com>
9292
9293         * reflection.c (compare_genericparam): Correctly sort the
9294         GenericParam table; fixes #69779.
9295
9296 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
9297
9298         * reflection.c: When writing a PE file, don't create a huge
9299         buffer in memory. Just write the arrays we have to the file.
9300         This reduces memory usage.
9301
9302         * metadata-internals.h: MonoDynamicStream pefile is no longer used
9303         globally.
9304
9305 2004-11-17  Martin Baulig  <martin@ximian.com>
9306
9307         * class.c (mono_class_init): Don't setup `class->parent' for
9308         dynamic instances; moved this to mono_class_generic_2().
9309         (mono_class_create_generic): Also set `klass->inited' for dynamic
9310         generic instances.
9311         (mono_class_create_generic_2): Don't do anything for dynamic
9312         generic instances.  Set `klass->parent' here and also call
9313         mono_class_setup_parent() here. 
9314
9315         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
9316         `MonoType *parent' argument; set `ginst->parent' before calling
9317         mono_class_create_generic_2(), so we set the correct parent.
9318
9319 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
9320
9321         * reflection.c: allow getting attributes from ModuleBuilder
9322         (used by ikvm).
9323
9324 2004-11-17  Martin Baulig  <martin@ximian.com>
9325
9326         * class.c (mono_class_create_from_typedef): If a type parameter is
9327         inherited from an outer class, set its owner to that class.
9328
9329 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
9330
9331         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
9332           for (int*) written size. This fixes bug #69592.
9333
9334 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
9335
9336         * icall.c: Added IsAuthenticodePresnet internal call.
9337         * image.c|h: New function that check a MonoImage for an Authenticode
9338         signature in the certificate PE data directory.
9339         * security.c|h: New internal call to ask the runtime if an 
9340         Authenticode signature seems referenced in the PE header.
9341
9342 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
9343
9344         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
9345
9346         * reflection.c (mono_image_create_pefile): Free the assembly streams
9347         after writing out the assembly file.
9348
9349         * object.c (mono_runtime_run_main): Fix small memory leak.
9350
9351         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
9352         property access modifiers. Fixes #69389.
9353
9354 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
9355
9356         * domain.c, object.c, object-internals.h, domain-internals.h,
9357         object.h, marshal.c: keep dynamic code info per domain.
9358
9359 2004-11-15  Martin Baulig  <martin@ximian.com>
9360
9361         * class.c (mono_type_get_name_recurse): Put type arguments in
9362         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
9363         see bug #68387.
9364
9365 2004-11-15  Martin Baulig  <martin@ximian.com>
9366
9367         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
9368         (mono_class_setup_vtable): When computing `the_cname' for a
9369         generic instance, don't include the namespace since we'd otherwise
9370         add it twice.
9371
9372 2004-11-15  Martin Baulig  <martin@ximian.com>
9373
9374         * class.c (mono_class_create_generic): Changed return type to void.
9375         (mono_class_create_generic_2): New public function; setup
9376         `class->method', `class->field' and `class->interfaces' here
9377         instead of in mono_class_init().
9378
9379         * class.h (mono_class_create_generic): Moved to class-internals.h.
9380
9381 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
9382
9383         * reflection.c (mono_image_create_pefile): take a file HANDLE.
9384         rather than writing to memory, write to this file. Right now,
9385         we are just writting into a buffer, and copying that. However
9386         we can avoid the buffer later.
9387
9388         (mono_dynamic_stream_reset): new function
9389
9390         * icall.c, object-internals.h: update for the above.
9391
9392 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
9393
9394         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
9395         have been using gc'd memory. First it is slower, unlikely
9396         the comment in the source code said, secondly, it increases
9397         our footprint to do it in the gc.
9398
9399         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
9400         the method so that it does not have to copy to managed code.
9401
9402 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
9403
9404         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
9405
9406 2004-11-12  Martin Baulig  <martin@localhost>
9407
9408         * reflection.c (mono_image_create_token): Allow generic method
9409         definitions here, since they may appear in an `.override'; see
9410         gen-98/gen-99 for an example.
9411
9412 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
9413
9414         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
9415         #69365.
9416
9417         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
9418         descriptive.
9419
9420 2004-11-11  Martin Baulig  <martin@ximian.com>
9421
9422         * class.c (mono_class_setup_vtable): In an explicit interface
9423         implementation, the method name now includes the arity.
9424
9425 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
9426
9427         * object.c (mono_array_full_copy): Fix warning.
9428
9429 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
9430
9431         * appdomain.c: Removed look_for_method_by_name(). Use the new method
9432         mono_class_get_method_from_name() instead.
9433         
9434         * class-internals.h: Added two new types of wrappers. 
9435         Added MonoRemotingTarget enum. Added new trampoline function type, which
9436         takes an additional MonoRemotingTarget value as parameter, so it is
9437         possible to request a trampoline for a specific target.
9438         
9439         * class.c: Added new mono_class_get_method_from_name() method.
9440         
9441         * class.h: In MonoRemoteClass, we can have now to vtables, one for
9442         general remoting sinks and one specific for cross domain calls.
9443         
9444         * debug-helpers.c: Added new wrapper names.
9445         
9446         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
9447         of a remote class.
9448         
9449         * image.c: Porperly delete value objects form the remoting invoke hashtable.
9450         
9451         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
9452         with several other methods (mono_marshal_get_xappdomain_dispatch,
9453         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
9454         and others) can generate a fast remoting wrapper for cross domain calls.
9455         More information can be found in docs/remoting.
9456         Other changes: Removed mono_find_method_by_name, and used
9457         mono_class_get_method_from_name instead.
9458         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
9459         is stored in the remoting invoke hashtable.
9460         
9461         * marshal.h: published the new method for getting the xdomain wrapper,
9462         and also added a method for getting the adequate wrapper for a given
9463         method and target.
9464         
9465         * object-internals.h, object.c: Added a couple of methods for capying and
9466         cloning arrays.
9467         Modified mono_install_remoting_trampoline, which takes the new remoting
9468         trampoline that has a remoting target as parameter.
9469         mono_class_proxy_vtable now also takes a remoting target as parameter, and
9470         will return the most suitable vtable for the target.
9471         Added mono_remote_class_vtable, which returns the vtable of a remote class
9472         (which can be the normal remoting vtable or the xdomain vtable).
9473         
9474         * threads.c: the xdomain invoke and dispatch wrappers must also be
9475         protected against interruptions.
9476
9477 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9478
9479         * icall.c: use memmove in BlockCopyInternal when the source and
9480         destination arrays are the same.
9481
9482 2004-11-09  Martin Baulig  <martin@ximian.com>
9483
9484         * class-internals.h (MonoGenericContainer): Removed `method' and
9485         `signature', replaced them with `is_method' and `is_signature'
9486         flags.  Added `context'.
9487
9488         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
9489         instead of a `MonoGenericContainer *'.
9490
9491         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
9492         for dynamic type parameters.
9493         (mono_metadata_load_generic_params): Setup `container->context'.
9494
9495         * reflection.c (mono_reflection_setup_generic_class): Setup
9496         `tb->generic_container->context'.
9497         (do_mono_reflection_bind_generic_parameters): Use
9498         mono_class_inflate_generic_type() to correctly inflate types,
9499         rather than using our own hack just for MONO_TYPE_VAR.
9500
9501 2004-11-09  Martin Baulig  <martin@ximian.com>
9502
9503         * class.c (mono_class_inflate_generic_method): Small fix; don't
9504         crash here.
9505
9506         * icall.c
9507         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
9508         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
9509         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
9510         (ves_icall_Type_BindGenericParameters): Likewise.
9511         (ves_icall_Type_get_IsGenericInstance): Likewise.
9512         (ves_icall_Type_GetGenericParameterPosition): Likewise.
9513         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
9514         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
9515         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
9516
9517 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
9518
9519         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
9520         assembly versions and public key tokens. Fixes #69113.
9521
9522 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
9523
9524         * metadata.c: fix bug introduced with the type cache changes
9525         on 2004-11-06.
9526
9527 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
9528
9529         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
9530         the MonoClass pointer instead of the token in exception clauses.
9531         * reflection.c: updates for the above and make the code not depend
9532         on the structure of MonoExceptionClause.
9533
9534 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
9535
9536         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9537         Add support for dynamic assemblies. Fixes #69114.
9538
9539         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
9540
9541 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
9542
9543         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
9544         since most only those methods use it. the code member of
9545         MonoMethodPInvoke was dead, so that can be removed too. Also,
9546         remove inline_count (again, not used), and move slot so that it
9547         can share bits with some other flags. This saves 8 bytes in the
9548         structure and gives us about 50 kb back for mcs helloworld.cs
9549
9550         * *.[ch]: Do naming changes for the above.
9551
9552         * loader.c (mono_method_get_header): Lazily init the header
9553         on first access.
9554         (mono_get_method_from_token): don't init the header here
9555         (mono_free_method): the header may never be allocated
9556
9557         Overall, this saves 150 kb of unmanaged allocations
9558         for mcs helloworld.cs. That accounts for 10% of the unmanaged
9559         memory at runtime.
9560         
9561         * loader.c, loader.h (mono_method_get_header): new accessor.
9562
9563         * *.[ch]: use the above method. Prepares us to lazily load
9564         the header.
9565
9566         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
9567         three warnings, which are actual bugs (see 69206).
9568
9569         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
9570         unused. Saves a cool 4 bytes / method.
9571
9572 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
9573
9574         * metadata.c (builtin_types): Add types for System.Object here.
9575         (mono_metadata_parse_type_full): Cache MonoType*'s that are
9576         for a class or valuetype from klass->this_arg or klass->byval_arg.
9577
9578         On mcs for a hello world, this gets us down from 21836 MonoType's
9579         to 14560.
9580
9581         (mono_metadata_free_type): Account for the above change.
9582
9583 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
9584
9585         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
9586         exception instead of asserting if name is null.
9587         (ves_icall_System_AppDomain_GetData): Ditto.
9588
9589 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
9590
9591         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
9592         EnumBuilder.
9593
9594         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
9595         Return NULL when the domain does not have entry_assembly set.
9596
9597         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
9598         Add a 'resource_modules' argument.
9599         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
9600
9601         * reflection.c (mono_reflection_create_runtime_class): Move setting
9602         of wastypebuilder here, so mono_get_type_object () returns a MonoType
9603         for enums too.
9604
9605         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
9606         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
9607         Throw an ArgumentNullException if 'ptr' is null.
9608
9609         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
9610         assemblies here. Fixes #69020.
9611
9612 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
9613
9614         * reflection.c (build_compressed_metadata): Fix the previous patch for
9615         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
9616         the stack.
9617
9618 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
9619
9620         * assembly.c (mono_assembly_names_equal): Allow a match if one of
9621         the cultures is false. Fixes #69090.
9622
9623         * reflection.c (build_compressed_metadata): Fix invalid memory read 
9624         detected by valgrind.
9625         
9626         * reflection.c (mono_reflection_get_type): Avoid triggering a 
9627         TypeResolve multiple times for the same type. Fixes #65577.
9628
9629 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
9630
9631         * marshal.c: Avoid using ldftn to call managed functions. It is
9632         much slower than just a call.
9633
9634         * reflection.c (mono_module_get_object): free the basename we
9635         allocate here from glib.
9636         
9637         * reflection.c (ensure_runtime_vtable): make sure to free
9638         overrides.  Also, we were allocating an array of MonoMethod not an
9639         array of MonoMethod*.
9640
9641         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
9642
9643         * image.c (mono_image_close): free image->guid here.
9644
9645 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
9646
9647         * reflection.c: Fix some spec conformance issues with the PE file
9648         structures so mcs compiled apps run on the Net 2.0 beta.
9649
9650 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
9651
9652         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
9653         Implement this. Fixes #67264.
9654
9655         * debug-helpers.h debug-helpers.c marshal.c: Move 
9656         mono_find_method_by_name to debug-helpers.c.
9657
9658 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
9659
9660         * object.c (mono_release_type_locks): type_initialization_hash is
9661         a GHashTable.
9662
9663         * reflection.c object.c object-internals.h: Fix warnings.
9664
9665         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
9666         without accessors. Fixes #61561.
9667
9668         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
9669         application base from the root domain if not set. Fixes #65641.
9670         (mono_runtime_init): Fix warning.
9671
9672 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9673
9674         * appdomain.c: call mono_thread_pool_init.
9675         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
9676         of worker threads based on the number of CPUs and the environment
9677         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
9678         for non-windows (windows) systems.
9679
9680 2004-10-27  Chris Toshok  <toshok@ximian.com>
9681
9682         * mono-debug-debugger.c (write_class): don't call mono_class_init
9683         here, as even with the check for (!klass->init_pending), we get
9684         into a situation where we're hitting cycles in class
9685         initialization.  Fixes #68816.
9686
9687 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
9688
9689         * image.c: Avoid overwriting values in the loaded_images_hash when an
9690         assembly is loaded multiple times. Fixes #61152.
9691
9692         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
9693         so multiple satellite assemblies for the same name can be loaded.
9694         Fixes #68259.
9695
9696         * mono_domain_assembly_preload: Actually return the loaded assembly, 
9697         not NULL.
9698
9699         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
9700         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
9701
9702         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
9703         pending finalizers are not invoked after the appdomain has been 
9704         unloaded. Fixes #67862.
9705
9706 2004-10-22  Martin Baulig  <martin@ximian.com>
9707
9708         * mono-debug-debugger.c
9709         (mono_debugger_runtime_invoke): Don't box valuetypes.
9710
9711 2004-10-22  Chris Toshok  <toshok@ximian.com>
9712
9713         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
9714         don't hide private methods.
9715
9716 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
9717
9718         * icall.c: Allows the runtime to "share" (when known) the public key
9719         token of an assembly. This avoid the need to recalculate the token 
9720         (from the public key) in managed code.
9721
9722 2004-10-21  Chris Toshok  <toshok@ximian.com>
9723
9724         * debug-helpers.c (append_class_name): argh, revert last patch.
9725         
9726 2004-10-21  Chris Toshok  <toshok@ximian.com>
9727
9728         * debug-helpers.c (append_class_name): use '+' as the delimiter,
9729         not '/', so that it matches what the debugger uses to look up
9730         methods.
9731
9732 2004-10-21  Martin Baulig  <martin@ximian.com>
9733
9734         * mono-debug-debugger.c (mono_debugger_throw_exception): New
9735         public method; this is called each time an exception is thrown and
9736         allows the debugger to use exception catch points.
9737
9738 2004-10-21  Martin Baulig  <martin@ximian.com>
9739
9740         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
9741         the stack pointer and the exception object in some struct and pass
9742         that to the debugger.
9743
9744 2004-10-21  Chris Toshok  <toshok@ximian.com>
9745
9746         * mono-debug-debugger.c (do_write_class): add instance/static
9747         event support.  We don't expose "raise" or "other" yet.
9748         (event_is_static): new method.
9749
9750 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
9751
9752         * mono-debug-debugger.c
9753         (mono_debugger_handle_exception): Remove
9754         bogus return value for fussy compilers.
9755
9756 2004-10-20  Martin Baulig  <martin@ximian.com>
9757
9758         * mono-debug-debugger.c
9759         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
9760         (mono_debugger_handled_exception): Likewise.
9761
9762 2004-10-20  Martin Baulig  <martin@ximian.com>
9763
9764         * mono-debug-debugger.h (MonoDebuggerEvent): Added
9765         MONO_DEBUGGER_EVENT_EXCEPTION.
9766
9767         * mono-debug-debugger.c (mono_debugger_handle_exception): New
9768         public function to send the debugger a notification for an
9769         exception and inform it about a catch/finally clause.
9770
9771 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
9772
9773         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
9774         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
9775         fix 2.95 build. 
9776
9777         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
9778
9779 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
9780
9781         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
9782         marshalled as [In,Out]. Fixes #58325.
9783
9784 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
9785
9786         * reflection.c (mono_method_body_get_object): Implement some fields.
9787
9788 2004-10-12  Martin Baulig  <martin@ximian.com>
9789
9790         * reflection.c (mono_reflection_bind_generic_parameters): Small
9791         fix, correctly retrieve our parent from a generic instance.
9792
9793 2004-10-12  Martin Baulig  <martin@ximian.com>
9794
9795         * metadata.c (mono_metadata_generic_param_equal): We always have
9796         an owner.
9797
9798         * class.c
9799         (mono_class_from_generic_parameter): We need to have an owner.
9800         (my_mono_class_from_generic_parameter): Likewise.
9801
9802         * reflection.c (mono_reflection_setup_generic_class): Renamed to
9803         mono_reflection_create_generic_class() and added a new
9804         mono_reflection_setup_generic_class().  
9805         (mono_reflection_initialize_generic_param): If we're a nested
9806         generic type and inherited from the containing class, set our
9807         owner to the outer class.
9808
9809 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
9810
9811         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
9812
9813         * reflection.c (mono_method_body_get_object): New function to create
9814         a MethodBody object.
9815
9816         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
9817
9818 2004-10-11  Martin Baulig  <martin@ximian.com>
9819
9820         * metadata.c (_mono_metadata_type_equal): Renamed to
9821         do_mono_metadata_type_equal() and made static.
9822
9823 2004-10-11  Martin Baulig  <martin@ximian.com>
9824
9825         * appdomain.c: Bump corlib version number to 28.
9826
9827 2004-10-10  Martin Baulig  <martin@ximian.com>
9828
9829         * class-internals.h
9830         (MonoGenericInst): Added `MonoGenericContainer *container'.
9831         (MonoGenericMethod): Likewise.
9832         (MonoGenericContext): Likewise.
9833         (MonoGenericParam): Added `MonoGenericContainer *owner'.
9834
9835         * metadata.c
9836         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
9837         (do_mono_metadata_parse_generic_inst): Likewise.
9838         (mono_metadata_parse_type_full): New public method.  This is the actual
9839         mono_metadata_parse_type() implementation - with an additional
9840         `MonoGenericContainer *' argument.
9841         (mono_metadata_parse_array_full): Likewise.
9842         (mono_metadata_parse_signature_full): Likewise.
9843         (mono_metadata_parse_method_signature_full): Likewise.
9844         (mono_metadata_parse_mh_full): Likewise.
9845         (mono_type_create_from_typespec): Likewise.
9846         (mono_metadata_interfaces_from_typedef_full): New public method;
9847         this is similar to the other _full() methods, but we take a
9848         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
9849         (mono_metadata_parse_generic_param): Take an additional
9850         `MonoGenericContainer *' argument and lookup the MonoGenericParam
9851         from that container.
9852         (mono_metadata_generic_param_equal): New static method to compare
9853         two type parameters.
9854         (_mono_metadata_type_equal): New static method; takes an
9855         additional `gboolean signature_only' argument - if true, we don't
9856         compare the owners of generic parameters.
9857         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
9858         with a TRUE argument - do a signature-only comparision.
9859
9860         * loader.c: Use the new _full() methods and pass the
9861         MonoGenericContainer to them.
9862
9863         * object-internals.h (MonoReflectionTypeBuilder): Added
9864         `MonoGenericContainer *generic_container' field.
9865         (MonoReflectionMethodBuilder): Likewise.
9866
9867 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
9868
9869         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
9870         case initial images of dynamic assemblies.
9871
9872         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
9873
9874         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
9875
9876         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
9877         length of event->other array.
9878         (typebuilder_setup_events): Ditto.
9879
9880         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
9881         'assembly_by_name' and add an 'assemblies' list.
9882
9883         * assembly.h assembly.c: Add a new search hook for determining whenever
9884         an assembly is already loaded. Use this instead of searching in the
9885         loaded_assemblies list.
9886
9887         * domain.c appdomain.c: Implement the new search hook so loaded 
9888         assemblies are now scoped by appdomain. Fixes #67727.
9889
9890 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
9891
9892         * threads.c (mono_thread_attach): Initialize synch_lock field so
9893         mono_thread_detach works again.
9894
9895         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
9896         'lib' too. Fixes #63130.
9897
9898 2004-10-06  Jackson Harper  <jackson@ximian.com>
9899
9900         * culture-info-tables.h: regenerated.
9901
9902 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
9903
9904         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
9905         implemented by other interfaces in the result. Fixes #65764.
9906         
9907         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9908         Handle unloadable modules without crashing.
9909
9910         * image.c (load_modules): Revert the previous patch since modules must
9911         have a fixed index inside the array.
9912         
9913         * image.c (load_modules): Don't include native modules in the modules
9914         array.
9915
9916 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
9917
9918         * reflection.h: Add param_defaults field.
9919
9920         * reflection.c: Add support for parameter defaults in dynamic methods.
9921         Fixes #64595.
9922
9923         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
9924         an empty string when a type has no namespace. Fixes #64230.
9925
9926 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
9927
9928         * tabledefs.h: Added "internal" security actions to support non-CAS
9929         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
9930         Note: they do not seems to be used anymore in 2.0 (new metadata format)
9931
9932 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
9933
9934         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
9935         constructor of abstract class. Fixes #61689.
9936
9937 2004-10-04  Martin Baulig  <martin@ximian.com>
9938
9939         * class-internals.h (MonoGenericContainer): New type.
9940         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
9941         `MonoGenericContainer *generic_container'.
9942         (MonoClass): Replaced `gen_params' and `num_gen_params' with
9943         `MonoGenericContainer *generic_container'.
9944
9945         * metadata.c (mono_metadata_load_generic_params): Return a
9946         `MonoGenericContainer *' instead of a `MonoGenericParam *';
9947         removed the `num' argument.
9948
9949 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
9950
9951         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
9952         for dynamic images.
9953
9954         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
9955         machine fields.
9956
9957         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
9958
9959         * reflection.c: Save pe_kind and machine values into the generated
9960         image file.
9961
9962         * appdomain.c: Bump corlib version number.
9963
9964         * object-internals.h: Reorganize layout of LocalBuilder.
9965
9966         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
9967         New helper function.
9968
9969         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
9970         created MonoType for dynamic types. Fixes #66180.
9971
9972 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
9973
9974         * threadpool.c: the ares hashtable needs a critical section around it.
9975         this prevents some nasty segfaults
9976
9977 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
9978
9979         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
9980         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
9981         bug 67324).
9982         
9983 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
9984
9985         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
9986         
9987 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
9988
9989         * image.c: Always canonicalize image file names, to avoid loading
9990         the same assembly twice when referenced using a relative path.
9991
9992 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
9993
9994         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
9995
9996         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
9997
9998         * marshal.c: Fix warnings.
9999
10000 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
10001
10002         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
10003         attempting to marshal the delegate_trampoline as the method_addr.
10004         This patch has a static hashtable of marshalled delegates so that 
10005         we can map delegate_trampoline addresses back to delegates.  This
10006         allows a delegate passed to managed code to be passed back into native
10007         code.  Fixes #67039
10008
10009 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10010
10011         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
10012
10013         * reflection.c (method_encode_code): Align method headers properly.
10014         Fixes #66025.
10015
10016 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10017
10018         * marshal.c: In the runtime invoke wrapper, reset the abort
10019         exception if it is cached. This avoids the automatic rethrowal of 
10020         the exception after the catch of the wrapper. Also check for pending
10021         interruptions before calling the managed method. This is done using
10022         the new method emit_thread_force_interrupt_checkpoint, since the
10023         normal checkpoint method is ignored when running the invoke wrapper.
10024         * object.c: If the abort exception is rethrown, set the abort_exc
10025         field of the thread, so it will be rethrown aftere every catch.
10026         * threadpool.c: Only run an interruption checkpoint if what has been
10027         requested is a stop of the thread (aborts will be ignored).
10028         * threads.c: By default, a thread will now never be interrumped while
10029         running the runtime invoke wrapper (this ensures that runtime_invoke
10030         will always return to the caller if an exception pointer is provided).
10031         There is a new special method mono_thread_force_interruption_checkpoint()
10032         to force an interruption checkpoint even if running a protected
10033         wrapper, which is used by the same runtime invoke wrapper to do a check
10034         at a safe point.
10035
10036 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10037
10038         * object.c, object-internals.h: Implemented mono_release_type_locks,
10039         which releases the cctor locks held by a thread.
10040         * threads.c, threads.h: In thread_cleanup, release cctor locks held
10041         by a thread. Added mono_thread_exit() method to be used to safely stop
10042         a thread.
10043
10044 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10045
10046         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10047         Move null check before dereference.  Avoid indexing beyond the end
10048         of the 'modules' array.
10049
10050 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10051
10052         * metadata-internals.h (MonoImage): Add module_count field.
10053         * image.c (load_modules): Set image->module_count.
10054         (mono_image_load_file_for_image): Use image->module_count.
10055         * reflection.c (mono_image_load_module): Append to image->modules array 
10056         of dynamic assembly.
10057         (mono_module_get_object): Fix loop to actually increment index.
10058         Use image->module_count.
10059         * assembly.c (mono_assembly_load_references): Use image->module_count.
10060         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
10061         Likewise.
10062
10063 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10064
10065         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
10066         Avoid assert on generic types.
10067
10068 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
10069
10070         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
10071
10072         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
10073
10074         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
10075         function to convert a MarshalSpec structure to its managed counterpart.
10076
10077         * reflection.c: Fix warnings.
10078         
10079         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
10080         field.
10081
10082         * icall.c (mono_create_icall_signature): Fix build.
10083
10084 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
10085
10086         * icall.c: Add MakePointType icall.
10087
10088         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
10089         warnings.
10090
10091 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10092
10093         * threadpool.c: reuse allocated slots in the queue.
10094
10095 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
10096
10097         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
10098
10099         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
10100
10101         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
10102         previous change.
10103
10104         * tabledefs.h: Add constants for pinvoke attributes BestFit and
10105         ThrowOnUnmappableChar.
10106
10107         * icall.c (ves_icall_Type_GetPacking): New icall.
10108
10109 2004-09-24  Martin Baulig  <martin@ximian.com>
10110
10111         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
10112
10113 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10114
10115         * appdomain.c:
10116         (mono_domain_set): allow setting a domain that is being unloaded.
10117         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
10118         being unloaded.
10119
10120 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10121
10122         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
10123         the GetCustomAttributes icall.
10124
10125 2004-09-23  Martin Baulig  <martin@ximian.com>
10126
10127         * object-internals.h (MonoReflectionGenericParam): Replaced
10128         'has_ctor_constraint', `has_reference_type' and `has_value_type'
10129         with `guint32 attrs'.
10130
10131 2004-09-23  Martin Baulig  <martin@ximian.com>
10132
10133         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
10134
10135 2004-09-23  Martin Baulig  <martin@ximian.com>
10136
10137         * object-internals.h (GenericParameterAttributes): New enum.
10138
10139 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10140
10141         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
10142         
10143         * class.c (init_events): Fill out event->other field.
10144
10145         * class.c: Fix warnings.
10146
10147         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
10148
10149 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
10150
10151         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
10152         walk which doesn't supply the IL offset.
10153
10154 2004-09-22  Martin Baulig  <martin@ximian.com>
10155
10156         * reflection.c (mono_reflection_setup_internal_class): If we're
10157         System.ValueType, System.Object or System.Enum, set
10158         `klass->instance_size' and create the vtable.
10159         (mono_reflection_create_internal_class): If we're an enum type,
10160         get the base class from our current corlib.
10161
10162 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
10163
10164         * reflection.h (MonoResolveTokenError): New type.
10165
10166         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
10167         icall.
10168
10169         * icall.c: Add an 'error' argument to the ResolveToken icalls.
10170
10171 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
10172
10173         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
10174         Support also calling constructors, but only for already allocated objects.
10175
10176 2004-09-17  Geoff Norton <gnorton@customerdna.com>
10177
10178         * reflection.c (type_get_qualified_name): If the klass is null
10179         return the typename to avoid a NullRefEx.
10180         (encode_cattr_value): Get the qualified name of the boxed type,
10181         not the underlying enumtype.  Fixes #62984.
10182
10183 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
10184
10185         * marshal.c: Fix problems with previous checkin.
10186
10187 2004-09-21    <vargaz@freemail.hu>
10188
10189         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
10190         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
10191
10192         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
10193
10194 2004-09-21  Geoff Norton <gnorton@customerdna.com>
10195
10196         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
10197         should only return a type for pointers, arrays, and passbyref types.
10198         Fixes bug #63841.
10199
10200 2004-09-21  Martin Baulig  <martin@ximian.com>
10201
10202         * domain.c (mono_debugger_check_runtime_version): New public
10203         function.
10204
10205         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
10206
10207 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
10208
10209         * reflection.c: Added missing sort to the declarative security 
10210         attributes table. MS implementation stops seeing the attributes if the
10211         token number regress in the table (as shown by ildasm and permview).
10212
10213 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
10214
10215         * object-internals.h (MonoReflectionModule): Add 'token' field.
10216         
10217         * reflection.c (mono_reflection_get_token): Add support for Module
10218         and Assembly.
10219         (mono_module_get_object): Set 'token' field.
10220         (mono_module_file_get_object): Set 'token' field.
10221
10222         * icall.c: Add new Assembly and Module icalls.
10223
10224         * appdomain.c: Bump corlib version.
10225
10226 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
10227
10228         * loader.h loader.c class.h class.c: Add helper functions for obtaining
10229         tokens of metadata objects.
10230
10231         * reflection.h reflection.c (mono_reflection_get_token): New function
10232         to obtain the token of a metadata object.
10233
10234         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
10235
10236 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
10237
10238         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
10239         
10240         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
10241
10242 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
10243
10244         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
10245         * object-internals.h: Added 3 MonoArray* members to MonoReflection
10246         AssemblyBuilder to access the permissions set in the class lib.
10247         * reflection.c: Added security attributes encoding step in 
10248         mono_image_build_metadata.
10249         * tabledefs.h: Added new security actions defined in 2.0:
10250         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
10251
10252 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10253
10254         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
10255         macro parameter.
10256
10257 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10258  
10259         * locales.c: nullify the ICU_collator member of CompareInfo when it is
10260           finalized. There where random SIGSEVs at program termination, when
10261           an object being finalized was trying to do a string comparison and
10262           the current culture was already finalized.
10263  
10264 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10265
10266         * threads.c: call thread_cleanup before finishing the thread if we get
10267         there.
10268
10269 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
10270
10271         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
10272         assemblies from the parent. Fixes #65665.
10273
10274 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
10275
10276         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
10277         modifiers.
10278
10279 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
10280
10281         * reflection.h: add prototype for mono_get_dbnull_object
10282         * reflection.c: add prototypes for get_default_param_value_blobs 
10283         and mono_get_object_from_blob for fussier compilers
10284
10285 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
10286  
10287         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
10288         false deadlock checks in class initialization.
10289  
10290 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
10291
10292         * image.c (mono_image_addref): Fix comment.
10293
10294         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
10295         possible.
10296
10297 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
10298
10299         * reflection.c (mono_param_get_objects): Modified to return
10300         ParameterInfo.DefaultValue object.
10301
10302         (get_default_param_value_blobs):
10303         (mono_get_object_from_blob):
10304         (mono_get_dbnull_object): New helper routines. 
10305
10306         * object.c (mono_get_constant_value_from_blob): New helper routine
10307         carved out from get_default_field_value ()
10308
10309         * object-internals.h (mono_get_constant_value_from_blob): Added
10310         function declaration.
10311
10312 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
10313
10314         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
10315         referenced assemblies. Fixes #62135.
10316
10317         * exception.h exception.c (mono_get_exception_file_not_found2): New
10318         helper function.
10319
10320 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
10321
10322         * class.h class.c: Add mono_type_get_underlying_type ().
10323
10324 2004-09-09  Geoff Norton <gnorton@customerndna.com>
10325
10326         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
10327         Fix GetTypes() to support dynamically created assemblies.
10328
10329 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
10330
10331         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
10332         
10333         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
10334         previous patch.
10335
10336         * reflection.h reflection.c loader.c: Allow dynamic construction of
10337         pinvoke methods. Fixes #65571.
10338         
10339         * reflection.c (mono_reflection_get_type): Revert previous change since
10340         it causes regressions.
10341
10342 2004-09-08  Martin Baulig  <martin@ximian.com>
10343
10344         * class.c (class_compute_field_layout): Don't call
10345         mono_class_layout_fields() for open generic instances.
10346
10347 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
10348         * threads.c appdomain.c: fix typo in GC macro
10349
10350 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10351
10352         * threads.c: don't call mono_thread_detach() in start_wrapper(),
10353         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
10354
10355 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
10356
10357         * image.c (mono_image_close): Applied patch from 
10358         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
10359         assembly is loaded multiple times from data.
10360         
10361         * image.c (mono_image_open): Fix warning.
10362
10363 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10364
10365         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
10366         once. Fixes #58334.
10367         
10368         * reflection.c (mono_reflection_create_runtime_class): Initialize
10369         klass->nested_classes. Fixes #61224.
10370
10371 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
10372
10373         * threads.c: sched_yield() on exit, to allow threads to quit.
10374
10375 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10376
10377         * object.c (mono_unhandled_exception): Remove leftover debug code.
10378
10379 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
10380
10381         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
10382
10383 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10384
10385         * marshal.c (emit_marshal_array): Really null terminate string arrays.
10386         
10387         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
10388
10389 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10390
10391         * marshal.c (emit_marshal_array): Null terminate string arrays.
10392         
10393         * marshal.c (raise_auto_layout_exception): Fix warning.
10394
10395         * reflection.c (mono_param_get_objects): Initialize the default value
10396         with DBNull.Value, not null. Fixes #62123.
10397
10398 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
10399
10400         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
10401         throw an exception with a cute explanation.
10402
10403 2004-09-06  Dick Porter  <dick@ximian.com>
10404
10405         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
10406         Close the new process's thread handle, as we don't use it.  The
10407         handle stays around forever otherwise.
10408
10409 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10410
10411         * object.c (arith_overflow): Fix warning.
10412
10413         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
10414         calling conventions in method refs. Fixes #65352.
10415
10416         * reflection.c: Fix warnings.
10417
10418 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
10419
10420         * icall.c: Add a new icall for Array.Clear
10421
10422 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
10423
10424         * object.c: When allocating an array, we have to throw
10425         an overflow exception if any of the lengths are < 0.
10426
10427 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10428
10429         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
10430         properly. Also move implementation of string array marshalling to 
10431         managed code. Fixes #42316.
10432
10433 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10434
10435         * assembly.c: provide more information when loading an assembly fails.
10436
10437 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10438
10439         * filewatcher.c: don't expect the development fam package to be
10440         installed.
10441
10442 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
10443
10444         * marshal.c: Make a copy of the signature cookie since it will be
10445         freed by the caller.
10446         
10447         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
10448
10449         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
10450
10451         * metadata.c (mono_metadata_free_marshal_spec): New function to free
10452         marshal specs.
10453
10454         * marshal.c: More refactoring.
10455         
10456         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
10457         smaller functions.
10458
10459 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
10460
10461         * object.c: In mono_message_invoke, fill the output parameter array after
10462           calling the managed method (it was done before the call). This fixes
10463           bug #59299.
10464
10465 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
10466
10467         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
10468         as well.
10469
10470 2004-09-02  Martin Baulig  <martin@ximian.com>
10471
10472         * class.c (mono_class_instance_size): Don't allow generic type
10473         definitions or open generic instances.
10474         (mono_class_array_element_size): If we're a value type, call
10475         mono_class_instance_size() on the original class.
10476
10477         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
10478         handle generic instances.
10479
10480         * mono-debug-debugger.c (write_type): Handle generic instances
10481         like classes.
10482
10483 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
10484
10485         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
10486         the allocation request fails. Fixes #65089.
10487
10488         * object.c (mono_runtime_free_method): Do not call mono_free_method.
10489         
10490         * object.c (mono_runtime_free_method): New function to free a dynamic
10491         method.
10492
10493         * marshal.c (mono_delegate_free_ftnptr): New function to free the
10494         delegate trampoline.
10495
10496         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
10497         with hasthis as dynamic,
10498
10499         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
10500
10501         * domain.c (mono_jit_info_table_remove): New function to remove an
10502         entry from the jit info table.
10503
10504         * class-internals.h (MonoMethod): Add 'dynamic' field.
10505
10506         * loader.c: Fix warnings.
10507
10508 2004-09-01  Martin Baulig  <martin@ximian.com>
10509
10510         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
10511         instead of mono_debugger_lock() because the latter one is a no-op
10512         unless running in the debugger.
10513
10514 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
10515
10516         * class.c (class_compute_field_layout): Classes with auto-layout or
10517         reference fields are not blittable.
10518         
10519 2004-09-01  Dick Porter  <dick@ximian.com>
10520
10521         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
10522         mono_image_get_filename() to get the assembly location.
10523
10524         * icall.c:
10525         * metadata.h: Fix compile warnings
10526
10527 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
10528
10529         * class.c (class_compute_field_layout): System.Object is blittable.
10530
10531         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
10532         as in/out. Fixes #59909.
10533
10534 2004-09-01  Martin Baulig  <martin@ximian.com>
10535
10536         * metadata.h (MONO_TYPE_ISREFERENCE): Call
10537         mono_metadata_generic_inst_is_valuetype() if we're a generic
10538         instance to check whether our underlying type is a reference type.
10539
10540 2004-09-01  Martin Baulig  <martin@ximian.com>
10541
10542         * metadata.c (mono_type_size): If we're a generic instance, call
10543         mono_class_value_size() for value types.
10544
10545 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
10546
10547         * marshal.c: Implement more custom marshalling functionality. Fixes
10548         #64915.
10549
10550 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
10551
10552         * mono-debug.c, debug-mono-symfile.c: add some locking love.
10553
10554 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
10555
10556         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
10557
10558         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
10559
10560         * icall.c: Fix some warnings.
10561
10562         * threads.c (abort_appdomain_thread): Fix unref errors.
10563         (mono_thread_current): Fix THREAD_DEBUG define.
10564
10565 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
10566
10567         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
10568
10569         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
10570
10571 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
10572
10573         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
10574         string arrays.
10575
10576 2004-08-28  Martin Baulig  <martin@ximian.com>
10577
10578         * metadata.c
10579         (mono_metadata_generic_inst_is_valuetype): New public function.
10580
10581         * metadata.h (MONO_TYPE_ISSTRUCT): Call
10582         mono_metadata_generic_inst_is_valuetype() if we're a generic
10583         instance to check whether our underlying type is a valuetype.
10584
10585 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
10586
10587         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
10588         #63768.
10589
10590 2004-08-25  Martin Baulig  <martin@ximian.com>
10591
10592         * loader.c (mono_get_method_from_token): Abstract methods can also
10593         be generic and thus have type parameters.
10594
10595         * metadata-internals.h
10596         (MonoDynamicImage): Added `GPtrArray *gen_params'.
10597
10598         * reflection.c (mono_image_get_generic_param_info): Don't create a
10599         metadata row, just add an entry to the `gen_params' array.
10600         (build_compressed_metadata): Sort the `gen_params' array and then
10601         actually create the metadata.
10602
10603 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10604
10605         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
10606
10607 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
10608
10609         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
10610
10611 2004-08-24  Martin Baulig  <martin@ximian.com>
10612
10613         * class.cs (mono_class_is_subclass_of): Like an interface, a
10614         generic instance also derives from System.Object.
10615
10616 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
10617
10618         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
10619         custom modifiers to be in any order. Fixes #61990.
10620
10621 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
10622
10623         * object.c: Register mono_object_new_fast icall.
10624         
10625         * object.c (mono_class_get_allocation_ftn): Return to calling
10626         mono_object_new_fast, since it seems faster to compute the object 
10627         size in unmanaged code than passing it as a parameter.
10628
10629         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
10630
10631         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
10632         this function with Boehm as the oom handler, so we don't have to check
10633         the result of GC_malloc.
10634
10635         * object.c: Remove checks for oom.
10636
10637         * object.h object.c (mono_class_get_allocation_ftn): New function to
10638         return the icall which can be used to allocate an instance of a given
10639         class. 
10640
10641         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
10642
10643         * class-internals.h: Add 'enabled' field.
10644
10645 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
10646
10647         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
10648
10649 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
10650         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
10651         value 0x0010.
10652
10653 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
10654
10655         * appdomain.c: use the Tls function for appdomain too,
10656         at Zoltan's request. Actually return in mono_context_get
10657
10658         * appdomain.c, profiler.c, threads.c: use __thread
10659
10660 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
10661
10662         * appdomain.c threads.c: Call GC_CreateThread on windows.
10663
10664         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
10665         multiple libraries since this don't work on windows.
10666
10667 2004-08-18  Martin Baulig  <martin@ximian.com>
10668
10669         * class-internals.h
10670         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
10671         MonoMethodHeader.
10672
10673         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
10674         MonoMethodNormal since we also need it for abstract and interface
10675         methods.
10676
10677         * reflection.c
10678         (build_compressed_metadata): Sort the GenericParam table.
10679         (mono_image_create_token): Added `gboolean create_methodspec'
10680         argument; this is false when generating a MethodImpl token.
10681         (reflection_methodbuilder_to_mono_method): Abstract and interface
10682         methods may also have generic parameters.
10683
10684 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
10685
10686         * appdomain.c: thread local alloc
10687
10688 2004-08-17  Martin Baulig  <martin@ximian.com>
10689
10690         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
10691
10692         * icall.c
10693         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
10694         argument.
10695
10696         * class.c (mono_type_get_full_name): New public function.
10697         (mono_type_get_name): Don't include the type arguments.
10698
10699 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
10700
10701         * Makefile.am: Build static versions of libmetadata and libmonoruntime
10702         for inclusion into the mono executable.
10703
10704 2004-08-16  Martin Baulig  <martin@ximian.com>
10705
10706         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
10707         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
10708
10709 2004-08-14  Martin Baulig  <martin@ximian.com>
10710
10711         * class.c (dup_type): Also copy the `byref' field.
10712
10713 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
10714
10715         * reflection.c (create_dynamic_mono_image): Revert the last change 
10716         since it breaks bootstrap.
10717
10718 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
10719
10720         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
10721
10722         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
10723         not free them with g_free.
10724
10725 2004-08-11  Martin Baulig  <martin@ximian.com>
10726
10727         * reflection.c (mono_reflection_setup_internal_class): Also call
10728         mono_class_setup_mono_type() if we already have a `tb->type.type'.
10729
10730 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
10731
10732         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
10733         called during default (first) AppDomain creation. Keep track of
10734         Evidence when loading assemblies.
10735
10736 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10737
10738         * opcodes.c, opcodes.h: reduce runtime relocations.
10739
10740 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
10741
10742         * culture-info.h, locales.c: fixes and chages to sue the new
10743         optimized format of the locale data.
10744         * culture-info-tables.h: regenerated.
10745
10746 2004-08-06  Geoff Norton <gnorton@customerdna.com>
10747         
10748         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
10749
10750 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
10751
10752         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
10753         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
10754         * domain-internals.h: icall declaration.
10755         * icall.c: icall registration.
10756         * object-internals.h: New fields in MonoAssembly for CAS.
10757
10758 2004-08-05  Duncan Mak  <duncan@ximian.com>
10759
10760         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
10761         CEE_LDELEM_ANY.
10762
10763 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10764
10765         * reflection.c: fix to deal with object[] arrays in custom ctors
10766         (bug #62550).
10767
10768 2004-08-05  Martin Baulig  <martin@ximian.com>
10769
10770         * class.c (mono_class_array_element_size): Added support for
10771         generic instances and correctly handle "recursive" types.
10772
10773 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
10774
10775         * assembly.c: Fix warnings.
10776
10777 2004-08-04  Martin Baulig  <martin@ximian.com>
10778
10779         * class.c
10780         (mono_type_get_name_recurse): Added `gboolean include_arity'
10781         argument specifying whether or not we should include the generic
10782         arity in the type name.
10783         (_mono_type_get_name): New static function.
10784         (mono_class_setup_vtable): If we're a generic instance, don't
10785         include the generic arity in the names of explicit method
10786         implementations.        
10787
10788 2004-08-03  Martin Baulig  <martin@ximian.com>
10789
10790         * class.c (mono_type_get_name_recurse): Enclose the generic type
10791         arguments in `<', '>'.
10792
10793 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10794
10795         * gc.c: make GC warning messages use the trace API, they are just
10796         noise to most of the users.
10797
10798 2004-08-03  Martin Baulig  <martin@ximian.com>
10799
10800         * debug-mono-symfile.c (read_string): Correctly read the string.
10801
10802 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
10803
10804         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
10805         
10806         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
10807         icalls.
10808         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
10809
10810 2004-07-30  Martin Baulig  <martin@ximian.com>
10811
10812         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
10813         Reflect latest symbol writer changes.   
10814
10815 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10816
10817         * object.c: always create an object if null is passed
10818         to Invoke() where a valuetype is expected.
10819
10820 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
10821
10822         * marshal.c (mono_marshal_init): make managed
10823         signatures match native ones better for 64bits.
10824
10825 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10826
10827         * appdomain.c: hack to build correctly the private bin path on windows.
10828         Fixes bug #61991.
10829
10830 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
10831
10832         * assembly.c: Load mscorlib from the correct framework directory
10833           (mono/<version>/mscorlib.dll).
10834         * appdomain.h: Added prototypes for new functions.
10835         * internals.h: Added some prototypes.
10836         * domain.c: When initializing the runtime, get from the executable and
10837           the configuration files the runtime version that the app supports.
10838           Added support methods for reading app.exe.config. Added list of versions
10839           supported by the JIT. Added two new methods: mono_init_from_assembly,
10840           which initializes the runtime and determines the required version from
10841           the provided exe file, and mono_init_version, which initializes
10842           the runtime using the provided version.
10843         * icall.c: Get machine.config from version-specific directory.
10844         * reflection.c: When generating an image, embed the version number
10845           of the current runtime.
10846
10847 2004-07-28  Dick Porter  <dick@ximian.com>
10848
10849         * socket-io.c
10850         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
10851         returned sockaddr size before creating the remote address object.
10852         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
10853         61608.
10854
10855 2004-07-28  Dick Porter  <dick@ximian.com>
10856
10857         * locales.c (string_invariant_compare_char): Fix invariant char
10858         compares between upper and lower cases.  Fixes bug 61458.
10859
10860 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
10861         
10862         * marshal.c: actually cache stelem.ref wrappers.
10863         
10864 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
10865
10866         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
10867         sections and remove the mono_cli_rva_map () function.
10868
10869 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10870
10871         * debug-mono-symfile.c: fix one more endianess issue, from a patch
10872         by Geoff Norton (<gnorton@customerdna.com>).
10873
10874 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10875
10876         * class.c: fix class loads for pointer types (typeof(int) !=
10877         typeof(int*)).
10878
10879 2004-07-27  Martin Baulig  <martin@ximian.com>
10880
10881         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
10882         reading the debugging information from an external ".mdb" file.
10883
10884 2004-07-24  Martin Baulig  <martin@ximian.com>
10885
10886         * reflection.c (mono_image_get_type_info): Only write a class
10887         layout entry if we actually have a size or a packing size.
10888
10889 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10890
10891         * reflection.c (type_get_fully_qualified_name): 
10892         insert cast to get type checking of ?: with non-gcc compilers
10893
10894 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10895
10896         * rand.c: use g_getenv for both lookups of
10897         MONO_EGD_SOCKET
10898
10899 2004-07-17  Martin Baulig  <martin@ximian.com>
10900
10901         * reflection.c (mono_reflection_bind_generic_method_parameters):
10902         Set `gmethod->reflection_info'.
10903
10904 2004-07-17  Martin Baulig  <martin@ximian.com>
10905
10906         * class.c (mono_class_create_from_typedef): Insert the newly
10907         created class into the hash table before computing the interfaces
10908         since we could be called recursively.
10909
10910 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
10911
10912         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
10913         function to implement stelem.ref in managed code
10914         * class-internals.h, debug-helpers.c: a new wrapper type
10915         for the above.
10916
10917 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10918
10919         * gc.c: allow GC handles to work even when no GC is compiled in.
10920         Fix part of bug #61134 (GetAddrOfPinnedObject).
10921
10922 2004-07-13  Peter Williams  <peter@newton.cx>
10923  
10924         * process.c (complete_path): Make sure we don't attempt to execute
10925         directories.
10926  
10927 2004-07-12  Geoff Norton <gnorton@customerdna.com>
10928
10929         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
10930           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
10931           and will add/subtract the hour if needed
10932
10933 2004-07-12  Martin Baulig  <martin@ximian.com>
10934
10935         * reflection.c (mono_field_get_object): If we have
10936         `field->generic_info', take the attributes from
10937         `field->generic_info->generic_type'.    
10938
10939 2004-07-12  Martin Baulig  <martin@ximian.com>
10940
10941         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
10942         This function must be called before initializing the runtime.
10943         (mono_debug_init_1): New function; call this after initializing
10944         the runtime, but before loading the assembly.  It tells the
10945         debugger to load corlib and the builtin types.
10946
10947         * mono-debug-debugger.c: Did some larger changes in the debugging
10948         code; support recursive class declarations, make sure we actually
10949         add all classes.
10950
10951 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10952
10953         * debug-helpers.c: undo my previous patch and fixed the real issue in
10954         ../mini/exceptions-x86.c
10955
10956 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10957
10958         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
10959         when no HOME env. variable was set and a NullRef was thrown in a .cctor
10960         called from other .cctors.
10961
10962 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
10963
10964         * loader.c: Removed the mono_loader_wine_init hack now that we are
10965         doing a managed version of Windows.Forms.
10966
10967 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
10968
10969         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
10970         threadpool.c, threads.c: remove static data from rootset.
10971
10972 2004-07-09  Dick Porter  <dick@ximian.com>
10973
10974         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
10975         Don't do any more processing if the matched length was 0.  It was
10976         increasing the size of the string before.  Fixes bug 61167.
10977
10978 2004-07-09  Dick Porter  <dick@ximian.com>
10979
10980         * socket-io.h:
10981         * socket-io.c
10982         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
10983         Add support for SO_PEERCRED if its available.
10984
10985 2004-07-09  Peter Bartok <pbartok@novell.com>
10986         * loader.c: winelib.exe.so error message is now only displayed if
10987         MONO_DEBUG is set. To help us avoid questions when people are trying
10988         out the new Managed.Windows.Forms.
10989
10990 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
10991
10992         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
10993         for isinst and castclass wrappers.
10994
10995         * class-internals.h icall.c: Move registration and lookup of JIT icalls
10996         to libmetadata from the JIT, so they could be used by the marshalling
10997         code and the interpreter.
10998
10999         * marshal.c: Register marshalling related JIT icalls here instead of
11000         in mini.c. Use CEE_MONO_ICALL instead of the family of 
11001         CEE_MONO_PROC<x> opcodes to call marshalling functions.
11002
11003         * metadata.h: Remove unneeded marshalling conversions.
11004
11005         * opcodes.c: Update for new opcodes.
11006         
11007 2004-07-08  Martin Baulig  <martin@ximian.com>
11008
11009         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
11010         (mono_debug_get_domain_data): Make this function static.
11011
11012 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11013
11014         * gc.c, object.h: add nice GC handle API for embedders.
11015
11016 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
11017
11018         * reflection.c: more changes for the new api
11019
11020         * object.c: When we reflect on a field w/ a constant value, it
11021         will not have a memory location, so we must access metadata. Also,
11022         allow easier reading of strings so that we can read them from
11023         the constant data.
11024
11025         * class.c (mono_class_layout_fields): no need for literal fields here.
11026
11027         * class-internals.h: api changes for const fields
11028
11029         * icall.c (ves_icall_get_enum_info): use new apis for const fields
11030
11031 2004-07-06  Martin Baulig  <martin@ximian.com>
11032
11033         * mono-debug.h: Increment version number to 44.
11034
11035         * mono-debug.c (mono_debug_add_wrapper): The second argument is
11036         now a gpointer, rewrote this whole method.
11037
11038         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
11039         function.  Add information about the wrapper in a new "misc table".
11040
11041         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
11042         for the new misc table.
11043
11044 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
11045
11046         * metadata-internals.h image.c: Add a cache for helper signatures.
11047
11048         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
11049
11050 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
11051
11052         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
11053         delegates from a delegate. Fixes #61033.
11054         
11055         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
11056         marshalling of stringbuilder arrays. Fixes #59900.
11057
11058 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
11059
11060         * icall.c: Add EnumBuilder:setup_enum_type icall.
11061
11062 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
11063
11064         * icall.c: Added a new icall for the property version of
11065         OffsetOfStringData.
11066
11067 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
11068
11069         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
11070         it has a constant size across platforms.
11071
11072         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
11073         stack trace.
11074
11075 2004-06-29  Martin Baulig  <martin@ximian.com>
11076
11077         * mono-debug.c (mono_debug_add_method): Protect the whole function
11078         in mono_debugger_lock(), not just parts of it.
11079
11080 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11081
11082         * reflection.c: make sure padding bytes in heaps are zeroed.
11083
11084 2004-06-24  David Waite  <mass@akuma.org>
11085
11086         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
11087         image.c, loader.c, locales.c, marshal.c, metadata.c,
11088         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
11089         string-icalls.c, threads.c: change to C90-style comments from C99 /
11090         C++ -style
11091
11092 2004-06-24  Dick Porter  <dick@ximian.com>
11093
11094         * threads.c
11095         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
11096         return createdNew.  Fixes bug 60412.
11097
11098         * threads-types.h: 
11099         * icall.c: Add createdNew parameter to CreateMutex icall
11100
11101 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11102
11103         * reflection.c, object-internals.h: save default value in params.
11104
11105 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11106
11107         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
11108         no need to build a new path combining that with the application base.
11109         Fixes bug #60442.
11110
11111 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
11112
11113         * reflection.c: fixed minor standard compliance issues.
11114
11115 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11116
11117         * reflection.c: fixed issue with encoding some custom attributes
11118         (arrays in properties and fields, bug #60411).
11119
11120 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11121
11122         * reflection.c: fix start address when copying the public key token.
11123
11124 2004-06-23  Martin Baulig  <martin@ximian.com>
11125
11126         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
11127         the `exc' object in a static object to put it into the GC's root set.
11128
11129 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
11130
11131         * reflection.c: make mono_reflection_setup_internal_class ()
11132         callable a second time to setup a new parent class.
11133
11134 2004-06-23  Dick Porter  <dick@ximian.com>
11135
11136         * threads.c: Check for WAIT_IO_COMPLETION return values.
11137
11138 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
11139
11140         * appdomain.c: Removed the g_free on the public key token. Now copy 
11141         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
11142         * assembly.c: Added public key token string value when loading 
11143         assemblies. Fix bug #60439.
11144         * icall.c: Added missing informations (like public key) in 
11145         GetReferencedAssemblies. Fix #60519.
11146         * image.h: Changed definition for public key token from const char*
11147         public_tok_value to guchar public_key_token [17];
11148         * reflection.c: Updated for changes to public key token.
11149
11150 2004-06-22  Lluis Sanchez Gual
11151
11152         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
11153         for the field in base classes.
11154
11155 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11156
11157         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
11158         mark headers as not supported, they are installed only for use by the
11159         debugger.
11160
11161 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
11162
11163         * *.c, *.h: avoid namespace pollution in public headers.
11164
11165 2004-06-21  Martin Baulig  <martin@ximian.com>
11166
11167         * exception.c (mono_get_exception_security): It's in
11168         "System.Security", not in "System".
11169
11170         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
11171         the exception classes.
11172
11173 2004-06-21  Martin Baulig  <martin@ximian.com>
11174
11175         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
11176         Protect the exception object from being finalized.
11177
11178 2004-06-21  Martin Baulig  <martin@ximian.com>
11179
11180         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
11181         public function.
11182
11183 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
11184
11185         * reflection.c: Load the assembly in mono_reflection_type_from_name,
11186         if it was not loaded before. Fix parts of #60439.
11187
11188 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
11189
11190         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
11191         code that was broken since Ben's change: wrappers are now
11192         dependent on the method signature only again.
11193
11194 2004-06-21  Martin Baulig  <martin@ximian.com>
11195
11196         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
11197         added interface support.
11198
11199 2004-06-21  Martin Baulig  <martin@ximian.com>
11200
11201         * class.c (mono_vtable_get_static_field_data): New public method.
11202
11203 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
11204
11205         * filewatcher.c : Windows build fix to be compliant with API changes.
11206
11207 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11208
11209         * class.h, class.c: more accessors.
11210         * metadata.h, metadata.c: prepare for hiding MonoType and
11211         MonoMethodSignature: people should use the accessors from now on
11212         outside of the tree.
11213
11214 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11215
11216         * *.c, *.h: more API cleanups.
11217
11218 2004-06-18  Jackson Harper  <jackson@ximian.com>
11219
11220         * assembly.c: Trace loading assemblies.
11221         * loader.c: Trace loading native libraries.
11222         * mono-config.c: Trace loading config files.
11223         
11224 2004-06-18  Dick Porter  <dick@ximian.com>
11225
11226         * locales.c: Tell ICU the lengths of strings, it can cope with
11227         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
11228
11229 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
11230
11231         * image.c: swapped name/filename;
11232
11233 2004-06-18  Martin Baulig  <martin@ximian.com>
11234
11235         * mono-debug-debugger.c (write_class): Write the parent class at
11236         the end of the header.
11237
11238 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11239
11240         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
11241
11242 2004-06-17  Raja R Harinath  <rharinath@novell.com>
11243
11244         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
11245         (bundle_obj): New conditional define.
11246         (BUILT_SOURCES): Remove.
11247         ($(bundle_srcs)): Make parallel-make safe.
11248         (libmonoruntime_la_LIBADD): Make unconditional.
11249         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
11250         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
11251
11252 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
11253
11254         * culture-info-tables.h: It was inconsistent with the latest
11255           supp info files.
11256
11257 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
11258
11259         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
11260         be loaded.
11261
11262         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
11263         with gcc 2.95.
11264
11265 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11266
11267         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
11268         cleaned up public header threads.h.
11269
11270 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11271
11272         * Makefile.am, *.c, *.h: more API cleanups.
11273
11274 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
11275
11276         * Makefile.am: removed monosn from compilation.
11277         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
11278         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
11279         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
11280         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
11281         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
11282         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
11283
11284 2004-06-15  Jackson Harper  <jackson@ximian.com>
11285
11286         * assembly.c: Make locales lower case when searching the GAC for
11287         assemblies. gacutil will always make locales lowercase when
11288         installing so this effectively makes them case insensitive.
11289         
11290 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
11291
11292         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
11293         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
11294           parameter which allows to choose whether the wait can be interrupted or 
11295           not. Also added the method mono_monitor_enter(), which locks the monitor
11296           using an infinite wait and without allowing interruption.
11297           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
11298           interrupted.
11299         * object.h: Added new fields in MonoThread. suspend_event holds the event
11300           used to susped/resume the thread. synch_lock is the lock object to use for
11301           modifying the thread state.
11302         * threads.c: Use the new synch_lock object for locking, instead of "this",
11303           which can generate deadlocks.
11304           Moved thread state change in Thread.Sleep and Thread.Join from managed
11305           to unmanaged code. This avoids a deadlock when the thread was suspended
11306           just after acquiring the thread lock.
11307           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
11308           Implemented Thread.Suspend using an event instead of ThreadSuspend,
11309           which is not fully implemented in the io-layer.
11310         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
11311
11312 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
11313
11314         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
11315         threads-types.h: more API cleanups.
11316
11317 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11318
11319         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
11320         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
11321         threadpool.c, threads.c: first pass at the exported API cleanup.
11322
11323 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
11324
11325         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
11326
11327 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11328
11329         * icall.c: added internalGetHome.
11330
11331 2004-06-14  Dick Porter  <dick@ximian.com>
11332
11333         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
11334         possible to return successfully when '.' or '..' were the only
11335         entries in a directory, but were skipped.  The MonoIOStat was not
11336         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
11337         Fixes bug 59574.
11338
11339 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
11340
11341         * reflection.c: make binaries run on .Net 1.1 by default.
11342
11343 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
11344
11345         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
11346
11347 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
11348
11349         * marshal.c: keep track of struct size with explicit layout
11350         (bug #59979).
11351
11352 2004-06-12  Martin Baulig  <martin@ximian.com>
11353
11354         * mono-debug-debugger.c: Comment out a debugging g_message().
11355
11356 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11357
11358         * reflection.c, reflection.h: do not free custom attrs that are cached.
11359         * icall.c: use braces to make code clearer.
11360
11361 2004-06-11  Martin Baulig  <martin@ximian.com>
11362
11363         * class.h (MonoInflatedField): New type.
11364         (MonoClassField): Replaced `MonoType *generic_type' with
11365         `MonoInflatedField *generic_info'.
11366
11367         * icall.c
11368         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
11369
11370 2004-06-11  Martin Baulig  <martin@ximian.com>
11371
11372         * reflection.c (mono_image_create_method_token): Correctly encode
11373         varargs methods.
11374
11375 2004-06-11  Martin Baulig  <martin@ximian.com>
11376
11377         * metadata.c (mono_metadata_parse_method_signature): When parsing
11378         a MethodDef which has VarArgs, also set sentinelpos if we don't
11379         have any parameters.
11380
11381 2004-06-11  Martin Baulig  <martin@ximian.com>
11382
11383         * verify.c (mono_method_verify): In CEE_CALL, use
11384         mono_method_get_signature() to get the method's signature, unless
11385         we're a PInvoke method.
11386
11387 2004-06-10  Jackson Harper  <jackson@ximian.com>
11388
11389         * assembly.c: Use <path>/lib/mono/gac for the extra paths
11390         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
11391         logical name as the supplied path is just a prefix to the gac not
11392         the direct path to it.
11393         
11394 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
11395
11396         * reflection.c: make the token for a created method match
11397         the token of the MethodBuilder it was created from
11398         (IKVM requires this behaviour now).
11399
11400 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
11401
11402         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
11403         reflection.c, socket-io.c: leak fixes.
11404
11405 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
11406
11407         * icall.c: handle sentinel pos in vararg methods in position different
11408         from 0.
11409
11410 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11411
11412         * culture-info-tables.h: freshly generated.
11413
11414 2004-06-09  Martin Baulig  <martin@ximian.com>
11415
11416         * loader.c (mono_get_method_constrained): Call `mono_class_init
11417         (constrained_class)'.   
11418
11419 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
11420
11421         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
11422         any methods. Fixes #59629.
11423
11424 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11425
11426         * culture-info-tables.h: reflecting locale-builder updates.
11427
11428 2004-06-08  Dick Porter  <dick@ximian.com>
11429
11430         * object.h:
11431         * locales.c: Fixed compile warnings, including a real bug in
11432         CompareInfo_internal_compare.
11433         
11434 2004-06-08  Dick Porter  <dick@ximian.com>
11435
11436         * locales.c
11437         (ves_icall_System_Globalization_CompareInfo_internal_index):
11438         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
11439         Double-check the resuls of usearches, because ICU currently
11440         ignores most of the collator settings here.  Fixes bug 59720.
11441         
11442 2004-06-08  Dick Porter  <dick@ximian.com>
11443
11444         * locales.c
11445         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
11446         Fix memory leak and segfault-causing typo.  No idea how this one
11447         lasted so long without being noticed.
11448
11449 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
11450
11451         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
11452         any methods. Fixes #59629.
11453
11454 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11455
11456         * assembly.c:
11457         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
11458         own the critical section before). Removed dead code (that's done
11459         in the preload hook).
11460
11461         (mono_assembly_load_with_partial_name): call the preload hook.
11462
11463 2004-06-08  Martin Baulig  <martin@ximian.com>
11464
11465         * metadata.c (mono_metadata_signature_alloc): Default
11466         `sentinelpos' to -1.
11467
11468         * reflection.c (mono_image_get_array_token): Likewise.
11469
11470 2004-06-08  Martin Baulig  <martin@ximian.com>
11471
11472         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
11473
11474         * metadata.c (mono_metadata_parse_method_signature): When parsing
11475         a MethodDef which has VarArgs, set sentinelpos.
11476
11477         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
11478         `gint16' since we're using -1 for non-varargs methods.
11479
11480         * reflection.c
11481         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
11482         (method_encode_signature): Added varargs support.
11483         (method_builder_encode_signature): Likewise.
11484         (mono_image_get_varargs_method_token): New static method.
11485         (mono_image_create_method_token): New public method; this is
11486         called via an icall instead of mono_image_create_token() when
11487         calling a varargs method.       
11488
11489 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
11490
11491         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
11492
11493 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11494
11495         * culture-info-tables.h : Reflecting the latest locale-builder that
11496           fixed empty array representation ({} to {0}).
11497
11498 2004-06-07  Jackson Harper  <jackson@ximian.com>
11499
11500         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
11501         looking up extra gac paths. This allows MONO_GAC_PATH to act
11502         exactly like a prefix.
11503         
11504 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
11505
11506         * reflection.c (mono_reflection_type_from_name): Make a copy of the
11507         type name before modifying it. Fixes #59405.
11508
11509 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11510
11511         * culture-info.h: added fields for "all datetime patterns".
11512         * locales.c: (  ves_icall_System_Globalization_CultureInfo
11513           _construct_datetime_format ()): fill xxx_patterns fields.
11514         * object.h: added fields for "all datetime patterns" to
11515           MonoDateTimeFormatInfo.
11516         * culture-info-tables.h: reflecting locale-builder updates.
11517
11518 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
11519
11520         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
11521         the event has no add and remove methods. Fixes #59629.
11522
11523 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
11524
11525         * object.c: Fixed possible integer overflow when allocating large
11526         strings.
11527
11528 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
11529
11530         * culture-info-tables.h: reflecting locale-builder updates.
11531
11532 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
11533
11534         * culture-info-tables.h: reflecting locale-builder updates.
11535
11536 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
11537
11538         * culture-info-tables.h: reflecting locale-builder updates.
11539
11540 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
11541
11542         * threads.c: Made Thread.Sleep abortable.
11543
11544 2004-06-02  Martin Baulig  <martin@ximian.com>
11545
11546         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
11547
11548         * debug-mono-symfile.h: Bumped symbol file version number to 37.
11549
11550 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
11551
11552         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
11553
11554 2004-05-30  Jackson Harper  <jackson@ximian.com>
11555
11556         * reflection.c: Do not hardcode assembly versions or public key
11557         tokens anymore. All of this except the corlib section was dead
11558         code anyways.
11559         
11560 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
11561
11562         * object.c (mono_runtime_invoke_array): Automatically create boxed
11563         objects for byref valuetypes if needed. Fixes #59300.
11564         
11565         * object.c (mono_method_return_message_restore): Handle 
11566         MONO_TYPE_OBJECT as well.
11567
11568 2004-05-28  Jackson Harper  <jackson@ximian.com>
11569
11570         * reflection.c: The modified type encoding was causing build
11571         problems. Reverted for now.
11572         
11573 2004-05-28  Jackson Harper  <jackson@ximian.com>
11574
11575         * reflection.c/h: Take an assembly ref so that we dont create
11576         fully qualified names when encoding types in the same assembly as
11577         the custom attribute being emitted.
11578         * appdomain.c: Increment version number.
11579         
11580 2004-05-26  Duncan Mak  <duncan@ximian.com>
11581
11582         * icall.c
11583         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
11584         Set the full version number (major, minor, build, revision).
11585
11586 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
11587
11588         * marshal.c (emit_struct_conv): increment src/dst after blit
11589         (mono_marshal_get_managed_wrapper,
11590         mono_marshal_get_native_wrapper): make sure we have marshalling
11591         info before marshalling params (info computation affects
11592         blittable)
11593
11594         * class.c (class_compute_field_layout): correctly deal with
11595         blittable
11596         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
11597         value types (as per what windows dows by default)
11598         (mono_class_setup_mono_type): System.ValueType is blittable
11599         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
11600         blittable
11601
11602         * marshal.c (mono_marshal_load_type_info): flag types  as
11603         non-blittable if the native layout doesn't match the managed
11604         layout
11605
11606 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11607
11608         * appdomain.c: don't add stuff in the private search path that is
11609         above the application base. If application base is not set, there's
11610         no private search path.
11611
11612 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
11613
11614         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
11615         byref struct arguments in native->managed marshalling.
11616
11617 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
11618
11619         * marshal.c (mono_marshal_get_runtime_invoke): correctly
11620         cache methods using signature (special case for methods
11621         that are value type or string class)
11622         
11623         * image.c (mono_image_close): clean up allocated GSList's
11624         in runtime_invoke_cache.
11625
11626 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11627
11628         * mono-config.c: set the correct path for mono_cfg_dir on windows when
11629         there's no MONO_CFG_DIR environment variable defined.
11630
11631 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11632
11633         * threads.c: windows version must be >= 0x0500 to include OpenThread.
11634
11635 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
11636
11637         * threadpool.c: Really wait for 500ms after the async call, even if the wait
11638           is interrumped.
11639         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
11640           before waiting for it, and call CloseHandle after the wait to unref it.
11641           This will make sure that handles are not disposed too early.
11642
11643 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11644
11645         * appdomain.c:
11646         * appdomain.h:
11647         * icall.c: removed
11648         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
11649         needed now.
11650
11651         * object.c: se the application_base only for the domain that runs
11652         Main. Fixes bug #59216,
11653
11654 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11655
11656         * appdomain.c:
11657         * object.c: only the domain in which Main is run have
11658         SetupInformation.ConfigurationFile set, so moved a few lines from
11659         appdomain.c to object.c.
11660
11661 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11662
11663         * appdomain.c: we tried to load [name].(dll|exe), but according
11664         to bug #57710, we must also try [culture]/[name].(dll|exe) and
11665         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
11666         There's a test case attached to bug #58922.
11667
11668 2004-05-27  Dick Porter  <dick@ximian.com>
11669
11670         * icall.c:
11671         * file-io.c: Implemented icalls for locking and unlocking regions
11672         in a file.
11673         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
11674         FALSE on error (fixes both compiler warning and real bug.)
11675
11676 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
11677
11678         * culture-info-tables.h: reflecting locale-builder updates.
11679
11680           (Added missing ChangeLog entry for 05/26)
11681
11682 2004-05-27  Jackson Harper  <jackson@ximian.com>
11683
11684         * locales.c: Fix some cut and paste errors.
11685         
11686 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11687
11688         * mono-config.c: set the correct path for config. directory on windows.
11689
11690 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11691
11692         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
11693           on win32.
11694
11695 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11696
11697         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
11698         from pinvoke functions.
11699         
11700         * marshal.c (mono_ftnptr_to_delegate): Implement this.
11701
11702 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11703
11704         * culture-info-tables.h: reflecting locale-builder updates.
11705
11706 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11707
11708         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
11709         #59086.
11710
11711 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
11712
11713         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
11714         * icall.c: Modified icalls for RNG.
11715         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
11716         Windows (CryptoAPI).
11717
11718 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11719
11720         * locales.c: Fix build.
11721
11722 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
11723
11724         * culture-info-tables.h: reflecting locale-builder updates.
11725
11726 2004-05-25  Jackson Harper  <jackson@ximian.com>
11727
11728         * locales.c: When creating the current culture use the $LANGs
11729         specific culture. So DateTimeFormat and NumberFormat entries are created.
11730         
11731 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11732
11733         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
11734         a char array as parameter.
11735
11736 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
11737
11738         * image.c: In mono_image_open(), always use an absolute path name to
11739           look for already loaded images.
11740
11741 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
11742
11743         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
11744         missing in the windows build (like older cygwin include files).
11745
11746 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
11747
11748         * icall.c: Fixed check for possible integer overflow in Buffer_
11749         BlockCopy icall. Replaced comments style // by /* */.
11750
11751 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
11752
11753         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
11754         
11755         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
11756         check after MONO_VTADDR. Fixes pinvoke2.exe.
11757
11758         * marshal.h marshal.c metadata.h: Add beginnings of support for
11759         ftnptr -> delegate marshalling.
11760
11761 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
11762
11763         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
11764         * threads.c: Fix warnings.
11765
11766 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
11767
11768         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
11769         * icall.c: Registered icalls for Suspend and Resume.
11770         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
11771           Thread.Abort.
11772         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
11773         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
11774         * process.c: Use WaitForSingleObjectEx.
11775         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
11776           checkpoints.
11777         * threads.c, threads.h: Make use of new Ex wait methods. Improved
11778           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
11779           for Suspend and Resume. Added new mono_thread_stop, used for stoping
11780           background threads. Added basic support for Abort in Windows.
11781           Start new threads using a managed delegate invoke wrapper. This wrapper
11782           has an interruption checkpoint that is needed since an interruption
11783           can be requested before the thread leaves the unmanaged code that starts 
11784           the thread.
11785         * marshal.c: Added interruption checkpoint after every native call, and
11786           also before managed calls for wrappers called from unmanaged code to
11787           go into managed code.
11788         * object.h: Added new field in MonoThread to keep track of interruption
11789           requests.
11790
11791 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
11792
11793         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
11794         calls.
11795
11796 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11797
11798         * appdomain.c:
11799         * assembly.c:
11800         * gc.c:
11801         * locales.c:
11802         * mono-config.c:
11803         * rand.c: getenv -> g_getenv (windows!)
11804
11805         * process.c: complete_path is also used on non-windows platforms.
11806
11807 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11808
11809         * icall.c: new signature for Process_Start.
11810
11811         * process.[ch]: new signature for Process_Start. If we're on windows
11812         and UseShellExecute is false, we have to search for the program by
11813         ourselves if we don't get a full path.
11814
11815 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
11816
11817         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
11818         marshalling and call CleanUpNativeData if needed. Fixes #58646.
11819
11820 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11821
11822         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
11823         Fixes bug #58373.
11824
11825 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11826
11827         * process.c: use double quotes to quote program name and arguments on
11828         windows. Fixes bug #58575.
11829
11830 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11831
11832         * file-io.c: don't return "." and ".." when using windows Find*File.
11833
11834 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
11835
11836         * marshal.c: Don't pass wrappers to message init because method 
11837         addressed used to lookup metadata. part of remoting[2|3] fix.
11838
11839 2004-05-15  Jackson Harper  <jackson@ximian.com>
11840
11841         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
11842         path is essentially the same as MONO_PATH except that it points to
11843         GACs instead of lib directories.
11844         * loader.h: The user gac is gone so we dont need function to
11845         enable/disable it.
11846         * mono-config.c: user gac option is now gone.
11847         
11848 2004-05-15  Jackson Harper  <jackson@ximian.com>
11849
11850         * culture-info.h: Make defines more consistent, add calendar data
11851         to the culture info table.
11852         * culture-info-tables.h: Add basic calendar data. Basically
11853         everyone gets default gregorian until all the data is
11854         updated.
11855         * locales.c: Use the new consistent defines. Set calendar data for
11856         culture info objects.
11857         * object.h: add a field for calendar data to CultureInfo
11858         
11859 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
11860
11861         * image.c: image->runtime_invoke_cache is keyed on signatures now.
11862         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
11863         a signature.
11864         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
11865         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
11866         an extra param that is the pointer of the method to invoke. The IL for
11867         the invoke method is no longer specific to the method, but to the
11868         signature of the method. Thus, we can share the same code for multiple
11869         methods. This reduces the number of methods that have to be compiled.
11870
11871 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
11872
11873         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
11874
11875         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11876
11877         * icall.c: Optimize Buffer.BlockCopy.
11878
11879 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11880
11881         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
11882         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
11883         quote). Changed them to "MMMM yyyy".
11884
11885 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
11886
11887         * rand.c
11888         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
11889
11890 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
11891
11892         * reflection.h: Updated after changes to managed structures.
11893
11894         * appdomain.c: Bump corlib version.
11895
11896 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11897
11898         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
11899         windows.
11900
11901 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11902
11903         * Makefile.am: link to ../os/libmonoos.la on windows.
11904
11905         * assembly.c:
11906                 -If MONO_DEBUG, warn about non-existing directories in
11907                 MONO_PATH.
11908                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
11909                 compile time variable.
11910                 -Removed init_default_path and call mono_set_rootdir from
11911                 libmonoos.a instead (windows only).
11912
11913         * assembly.h: declare mono_assembly_getrootdir().
11914
11915         * domain.c:
11916         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
11917
11918         * loader.c: s/getenv/g_getenv/
11919
11920 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
11921
11922         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
11923
11924         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
11925
11926         * metadata.h: Add new marshalling conversions.
11927
11928         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
11929         function.
11930
11931         * reflection.c (mono_reflection_get_type): Lookup the type in all
11932         modules of a multi-module assembly. Fixes #58291.
11933
11934 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
11935
11936         * threads.c: Before aborting a background, set the StopRequested
11937         state.  This avoids throwing the Abort exception.
11938         In mono_thread_manage, don't continue with the shutdown until all
11939         aborted threads have actually stopped.
11940
11941 2004-05-10  Jackson Harper  <jackson@ximian.com>
11942
11943         * locales.c: Remove the modifier from culture names.
11944         
11945 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11946
11947         * Makefile.am: monosn is not installed any more. It has been deprecated
11948         in favor of sn.
11949
11950 2004-05-07  Jackson Harper  <jackson@ximian.com>
11951
11952         * locales.c
11953         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
11954         Fix array construction, add bailout if the length is 0.
11955
11956 2004-05-07  Dick Porter  <dick@ximian.com>
11957
11958         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
11959         machine doesn't have a DNS entry.  Patch by Urs Muff
11960         (umuff@quark.com), fixes bug 57928.
11961
11962 2004-05-06  Jackson Harper  <jackson@ximian.com>
11963
11964         * reflection.c: Handle null PublicTokens properly. alloc mem for
11965         assembly names culture so we dont crash when freeing it.
11966         
11967 2004-05-06  Jackson Harper  <jackson@ximian.com>
11968
11969         * assembly.c: Check the usergac when loading with partial names.
11970         
11971 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
11972
11973         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
11974         does nothing for now (not required for Linux/Windows) but the class
11975         library can call it (and a newer or modified runtime could need it).
11976         * icall.c: Registred icall.
11977
11978 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11979
11980         * loader.c: prints a message on module loading error we set MONO_DEBUG
11981         environment variable.
11982
11983 2004-05-05  Jackson Harper  <jackson@ximian.com>
11984
11985         * appdomain.c: Handle PublicKeyToken=null properly.
11986         
11987 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
11988
11989         * environment.c|h: Added icall ves_icall_System_Environment_
11990         GetOSVersionString to get the current OS version as a string.
11991         * icall.c: Registred icall.
11992
11993 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
11994
11995         * object.c: in mono_object_get_virtual_method(), take into account that
11996         non-virtual methods don't have a slot in the vtable. Check needed when
11997         the object is a proxy.
11998
11999 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
12000
12001         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
12002         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
12003
12004         * object.c (mono_class_compute_gc_descriptor): Fix warning.
12005
12006         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
12007         passed when a valuetype is expected.
12008
12009         * object.c (mono_unhandled_exception): Only set the exit code if the
12010         exception happens in the main thread. Fixes thread5.exe.
12011
12012         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
12013         invalid names. Fixes #58047.
12014
12015 2004-05-03  Jackson Harper  <jackson@ximian.com>
12016
12017         * assembly.c: This line was committed accidently and is unneeded.
12018         
12019 2004-05-03  Jackson Harper  <jackson@ximian.com>
12020
12021         * icall.c: Add new icall for Assembly::LoadWithPartialName
12022         * assembly.c/.h: new function that probes the GAC to load partial
12023         assembly names by Paolo Molaro.
12024         
12025 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12026
12027         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
12028         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
12029         (type_get_fully_qualified_name): Added PublicKeyToken when building a
12030         full type name.
12031
12032 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12033
12034         * appdomain.c: fixed check for 'neutral' culture and removed warning.
12035         * reflection.c: fix bug when parsing a full type name and Version is not
12036         the last thing in the string.
12037
12038 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
12039
12040         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
12041         crashes when it is freed.
12042
12043 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12044
12045         * assembly.c: print the compat warning to stderr.
12046
12047 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
12048
12049         * assembly.c (mono_assembly_load_references): Add a compatibility
12050         hack to run old applications that might be still referencing the
12051         3300-based assemblies, only do this for System.xxx.
12052
12053 2004-05-01  Jackson Harper  <jackson@ximian.com>
12054
12055         * appdomain.c: If the culture is neutral we set it to "".
12056         
12057 2004-04-29  Jackson Harper  <jackson@ximian.com>
12058
12059         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
12060
12061 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
12062  
12063         * string-icalls.c: added low overhead function for copying chars
12064         * icall.c: added needed icall for the above function
12065  
12066 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12067
12068         * icall.c: fix return value of get_global_assembly_cache.  Implemented
12069         Environment.GetLogicalDrives.
12070
12071 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
12072
12073         * rand.c: try and talk to egd or prngd
12074         for random bytes if opening devices fail.
12075
12076 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
12077
12078         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
12079         alignment for the type using the native alignment of its members 
12080         instead of using klass->min_align.
12081
12082         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
12083
12084 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12085
12086         * file-io.c:
12087         * socket-io.c: added check for sys/aio.h.
12088
12089 2004-04-28  Dick Porter  <dick@ximian.com>
12090
12091         * threads.c: Don't abort a thread thats already aborting, when
12092         terminating everything.
12093
12094 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12095
12096         * icall.c: added 2 new async calls for Socket.
12097
12098         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
12099         IO on *nix systems.
12100
12101         * threadpool.c: removed unused variable.
12102
12103 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
12104
12105         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
12106
12107 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
12108
12109         * locales.c: put back string_invariant_tolower () and
12110         string_invariant_toupper ().
12111
12112 2004-04-26 David Waite <mass@akuma.org>
12113
12114         * file-io.h:
12115         * socket-io.h:
12116         * threads.h:
12117         * unicode.h: remove comma from end of enumeration declarations
12118
12119 2004-04-26 David Waite <mass@akuma.org>
12120
12121         * debug-mono-symfile.h:
12122         * decimal.c:
12123         * mono_debug.h:
12124         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
12125
12126
12127 2004-04-26  Jackson Harper  <jackson@ximian.com>
12128
12129         * appdomain.c: Increment version number.
12130         
12131 2004-04-26  Jackson Harper  <jackson@ximian.com>
12132
12133         * appdomain.c: Set assembly references public token value when
12134         PublicKeyToken is specified, not the hash_value. Free public token
12135         values when free assembly name data. Previously the public key
12136         token was hex decoded, however we are using hex encoded public key
12137         tokens, so this is not neccasary.
12138         * assembly.c: Lookup assemblies in the gac if their public token
12139         value is set. Add function to allow enabling user gac
12140         lookups. Specify whether or not the assembly was loaded from the
12141         GAC. Compare full assembly names when checking the cache for
12142         assemblies (Temporarily disabled see comment in code). Remove
12143         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
12144         specifies trace-loader they get extra info to stdout on the
12145         loading of assemblies.
12146         * image.h: Add a field for an assembly references public token
12147         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
12148         whether an assembly has been loaded from the GAC.
12149         * image.c: Remove a corlib -> mscorlib name mapping.
12150         * loader.h: Add function to enable/disable the user gac.
12151         * mono-config.c: Check if the usergac is enabled in the config
12152         file.
12153         * icall.c: New icall to determine whether or not an assembly has
12154         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
12155         * tabldefs.h: Add constant for assemblyref flag that specifies a
12156         full public key is used instead of a public token.
12157         * reflection.c: Remove mscorlib -> corlib mappings. Set
12158         PublicTokenValue instead of hash value. This value is a hex
12159         string so it does not need to be expanded.
12160
12161 2004-04-26  Martin Baulig  <martin@ximian.com>
12162
12163         * mono-debug-debugger.c (mono_debugger_initialize): Set
12164         `mono_debugger_initialized' before calling mono_debug_lock().
12165
12166 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
12167
12168         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
12169           InternalToUpper/InternalToLower.
12170         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
12171           removed invariant culture shortcut.  This is now done in managed code.
12172         * locales.c: (string_invariant_toupper/tolower) removed.
12173
12174 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12175
12176         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
12177         Added Poll internal call.
12178
12179         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
12180         call for Poll. Select was too heavy for polling a single socket.
12181
12182         * threadpool.[ch]: added mono_threadpool_cleanup.
12183         * threads.c: use it. Don't use Thread_Abort on windows.
12184
12185 2004-04-23  Martin Baulig  <martin@ximian.com>
12186
12187         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
12188
12189 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
12190
12191         * icall.c: Registred new icalls for key pair protection and added an
12192         icall for Environment.GetFolderPath on Windows.
12193         * security.c|h: Added new icalls for key pair protection.
12194
12195 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12196
12197         * socket-io.c: don't display the non-supported family warning for known
12198         families. Now this is not displayed on windows when checking support
12199         for IPv4/IPv6.
12200
12201 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12202
12203         * class.c: don't display the layout warning for static fields.
12204
12205 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
12206
12207         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
12208         * locales.c, locales.h: Added new icalls for culture-specific
12209         Char.ToLower and Char.ToUpper.
12210
12211 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12212
12213         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
12214         by David Waite.
12215
12216 2004-04-20  Martin Baulig  <martin@ximian.com>
12217
12218         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
12219         of the type name before passing it to mono_reflection_type_from_name().
12220
12221 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
12222
12223         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
12224         encodings here. Fixes #56965.
12225
12226 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
12227
12228         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12229         fix test on strstr result not that I can see anything that
12230         relies on the result.
12231
12232 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
12233
12234         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
12235         Fixes #57081.
12236
12237         * marshal.c (mono_marshal_get_string_encoding): New helper function.
12238
12239         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
12240         function to determine which marshalling to use for strings. Fixes
12241         #56965.
12242
12243         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
12244
12245         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
12246
12247 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
12248
12249         * icall.c: #include mono-config.h
12250
12251 2004-04-15  Jackson Harper  <jackson@ximian.com>
12252
12253         * culture-info-tables.h: Fix date formats for en-US culture.
12254         
12255 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
12256
12257         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
12258         ThreadPool.SetMinThreads.
12259         * threadpool.c: Implemented ThreadPool.GetMinThreads and
12260         ThreadPool.SetMinThreads.
12261
12262 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
12263
12264         * mono-config.c: also load the .config file in the directory
12265         where the assembly was found.
12266
12267 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
12268
12269         * assembly.c: load per-assembly config files.
12270         * icall.c: decrapified code to get the config dir and moved to
12271         mono-config.c.
12272         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
12273         per-assembly config files. When doing a dll map lookup give precedence
12274         to the per-assembly data.
12275
12276 2004-04-14  Martin Baulig  <martin@ximian.com>
12277
12278         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
12279         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
12280         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
12281
12282         * mono-debugger-debugger.c: While the debugger is locked, remember
12283         whether the symbol tables have changes and send one single
12284         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
12285
12286 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
12287
12288         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
12289
12290         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
12291         function.
12292
12293         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
12294         account when marshalling string arrays. Fixes #56965.
12295
12296 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
12297
12298         * icall.c: Add new icalls mapping for security.
12299         * security.c|h: Add internal calls for WindowsIdentity,
12300         WindowsImpersonationContext and WindowsPrincipal.
12301
12302 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
12303
12304         * class.c: Added comment to ensure the System.MonoDummy class
12305         is removed when no longer necessary
12306
12307 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
12308
12309         * appdomain.c: Pass arguments to the bootstraping exceptions to
12310         minimize JITed methods at boot
12311
12312         * metadata.c (mono_exception_from_name_two_strings): Allow for the
12313         second string to be null.
12314
12315         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12316         Change the protocol to minimize the JIT methods at startup.  Now
12317         it Returns the internal codepage, if the value of "int_code_page"
12318         is 1 at entry, and we can not compute a suitable code page
12319         number, returns the code page as a string.
12320
12321 2004-04-13  Jackson Harper  <jackson@ximian.com>
12322
12323         * culture-info-tables.h: Fix number of decimal digits for all
12324         english locales.
12325
12326 2004-04-13  Jackson Harper  <jackson@ximian.com>
12327
12328         * icall.c: Clairfy out of sync error message. It is not always
12329         your corlib that is out of sync.
12330
12331 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
12332
12333         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
12334         properties when only the set accessor is overriden. Fixes #55874.
12335
12336 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
12337
12338         * assembly.c (mono_assembly_load_references): Make this thread safe.
12339         Fixes #56327.
12340
12341 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
12342
12343         * monosn.c: Add missing initialization calls.
12344
12345 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
12346
12347         * locales.c:
12348         ves_icall_System_Globalization_CultureInfo_construct_number_format
12349         Fix g_assert so it compiles on fussier compilers re int/ptr
12350         mismatch
12351
12352 2004-04-08  Dick Porter  <dick@ximian.com>
12353
12354         * socket-io.h:
12355         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
12356         53992.  Also rearrange the code so that the internal calls return
12357         an error value and exceptions are thrown from managed code.
12358
12359         * icall.c: Add type info to the socket icalls.
12360
12361 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12362
12363         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
12364         owes me a beer.
12365
12366 2004-04-07  Martin Baulig  <martin@ximian.com>
12367
12368         * class.c (mono_class_from_generic_parameter): Don't default
12369         `klass->parent' to `mono_defaults.object_type'.
12370
12371 2004-04-07  Martin Baulig  <martin@ximian.com>
12372
12373         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12374         `param->pklass->reflection_info'.       
12375
12376 2004-04-07  Jackson Harper  <jackson@ximian.com>
12377
12378         * culture-info-tables.h: Fix date separator symbol.
12379         
12380 2004-04-07  Martin Baulig  <martin@ximian.com>
12381
12382         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
12383         from System.Type to System.MonoType.
12384
12385 2004-04-07  Martin Baulig  <martin@ximian.com>
12386
12387         * reflection.h
12388         (MonoReflectionGenericParam): Added `has_reference_type' and
12389         `has_value_type' fields.
12390
12391         * reflection.c (mono_image_get_generic_param_info): Encode the
12392         correct flags if we have the `class' or `struct' constraint.
12393
12394 2004-04-07  Martin Baulig  <martin@ximian.com>
12395
12396         * reflection.h
12397         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
12398
12399 2004-04-07  Jackson Harper  <jackson@ximian.com>
12400
12401         * appdomain.c: Revert extra patches, just wanted to bump the
12402         version number.
12403         
12404 2004-04-07  Jackson Harper  <jackson@ximian.com>
12405
12406         * Makefile.am: Add culture-info private headers.
12407         * icall.c: Add new icalls for contructing locales.
12408         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
12409         * locales.h: Declare new culture info construction methods.
12410         * object.h: Add new fields used to avoid the CultureMap to
12411         MonoCultureInfo.
12412         * culture-info.h: Definition of structs used in the culture info
12413         tables.
12414         * culture-info-tables.h: Autogenerated tables that contain culture
12415         info data. This file was generated with the locale-builder tool.
12416         * appdomain.c: Incement corlib version number.
12417         
12418 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
12419
12420         * appdomain.c: (mono_runtime_init) move mono_thread_init
12421         to before mono_object_new calls so critical sections
12422         are initialized before use.
12423
12424 2004-04-07  Martin Baulig  <martin@ximian.com>
12425
12426         * icall.c
12427         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
12428         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
12429         (ves_icall_MonoGenericParam_initialize): Removed.
12430         (monogenericparam_icalls): Removed.
12431         (generictypeparambuilder_icalls): Added new table for
12432         System.Reflection.Emit.GenericTypeParameterBuilder.
12433
12434         * reflection.c
12435         (mono_reflection_define_generic_parameter): Removed.
12436         (mono_reflection_initialize_generic_parameter): This is now called
12437         from GenericTypeParameterBuilder's .ctor.
12438
12439 2004-04-06  Martin Baulig  <martin@ximian.com>
12440
12441         * class.c (mono_class_init): Don't inflate nested classes in a
12442         generic instance.
12443         (mono_type_get_name_recurse): Include the generic arguments for
12444         generic instances and generic type declarations.
12445         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
12446         (_mono_class_get_instantiation_name): Removed.
12447         (mono_class_create_generic): Always use `gklass->name' as our name.
12448
12449         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
12450
12451         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
12452         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
12453         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
12454         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
12455         closed generic methods here.
12456
12457         * reflection.c
12458         (mono_reflection_generic_inst_get_nested_types): Removed.
12459         (inflate_mono_method): Copy the generic parameters from the
12460         MonoMethodHeader into out MonoGenericMethod.
12461
12462 2004-04-06  Martin Baulig  <martin@ximian.com>
12463
12464         * row-indexes.h
12465         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
12466
12467         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
12468
12469         * reflection.c (build_compressed_metadata): If we have any entries
12470         in the GenericParam, MethodSpec or GenericParamConstraint tables,
12471         set the header version to 1.1.
12472
12473 2004-04-06  Martin Baulig  <martin@ximian.com>
12474
12475         * class.c (mono_class_init): If we're a generic instance,
12476         initialize our nested classes, too.
12477         (_mono_class_get_instantiation_name): Deal with the new `!%d'
12478         suffix. 
12479
12480 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12481
12482         * process.c: quote the argument passed to the shell on windows.
12483
12484 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
12485
12486         * threads.c (mono_alloc_special_static_data): Allow this to be
12487         called during startup.
12488
12489 2004-04-02  Martin Baulig  <martin@ximian.com>
12490
12491         * icall.c
12492         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
12493
12494 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
12495
12496         * icall.c: Fix build.
12497
12498 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
12499
12500         * Makefile.am: Added security.c|h.
12501         * icall.c: Added icall for get_UserName;
12502         * security.c: New file for security related icalls. Added function
12503         get_UserName for System.Environment (fix #56144).
12504         * security.h: New. Header file for security.c
12505
12506 2004-04-02  Dick Porter  <dick@ximian.com>
12507
12508         * icall.c: Deleted the icalls that were obsoleted some time ago
12509         by the ICU string code, and which were mixed into the icall
12510         rearranging.  Fixes bug 55969.
12511
12512         * string-icalls.h: 
12513         * string-icalls.c: Deleted the code that those icalls reference.
12514
12515 2004-04-01  Martin Baulig  <martin@ximian.com>
12516
12517         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
12518
12519         * class.c (mono_class_from_generic_parameter): Don't set 
12520         TYPE_ATTRIBUTE_INTERFACE.
12521         (my_mono_class_from_generic_parameter): Likewise.
12522
12523 2004-04-01  Martin Baulig  <martin@ximian.com>
12524
12525         * loader.c (find_method): Added an optional `MonoClass *ic'
12526         argument to search in a specific interface.
12527         (mono_get_method_constrained): New public function.
12528
12529 2004-04-01  Martin Baulig  <martin@ximian.com>
12530
12531         * reflection.c (mono_image_get_generic_field_token): Use the
12532         `handleref' cache here.
12533
12534 2004-04-01  Martin Baulig  <martin@ximian.com>
12535
12536         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
12537
12538         * reflection.c (create_generic_typespec): Use the `typespec' hash
12539         here, not the `typeref' one.    
12540
12541 2004-04-01  Martin Baulig  <martin@ximian.com>
12542
12543         * class.c (mono_class_inflate_generic_type): Moved the
12544         functionality into a new static inflate_generic_type() which
12545         returns NULL if it didn't do anything.  Only increment the
12546         `mono_stats.inflated_type_count' if we actually inflated
12547         something.
12548         (mono_class_get_full): Check the classes type to see whether we
12549         need to inflate it; also inflate MONO_TYPE_(M)VAR.
12550
12551 2004-04-01  Jackson Harper  <jackson@ximian.com>
12552
12553         * reflection.c: Set culture for assembly references.
12554         
12555 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
12556
12557         * reflection.[ch], icall.[ch], Fix support for pinning variables.
12558
12559 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12560
12561         * assembly.c:
12562         (do_mono_assembly_open): the critical section also covers
12563         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
12564
12565 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12566
12567         * threads.c:
12568         (mono_manage_threads): abort the background threads when finishing.
12569         Fixes bug #47232.
12570
12571 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12572
12573         * gc.c: only close the done_event handle if there was no timeout.
12574         C-ified comments.
12575
12576 2004-03-30  Martin Baulig  <martin@ximian.com>
12577
12578         * icall.c (icall_entries): It's called "System.Activator", not
12579         "System.Activation".    
12580
12581 2004-03-30  Martin Baulig  <martin@ximian.com>
12582
12583         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
12584         (mono_class_create_from_typespec): Likewise.
12585
12586 2004-03-30  Martin Baulig  <martin@ximian.com>
12587
12588         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
12589         `has_ctor_constraint' and `initialized'.
12590
12591 2004-03-30  Martin Baulig  <martin@ximian.com>
12592
12593         * reflection.c (encode_new_constraint): New static function to add
12594         the constructor constraint attribute to a type parameter.
12595         (encode_constraints): Call encode_new_constraint() if necessary.
12596
12597         * reflection.h
12598         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
12599
12600         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
12601         
12602 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
12603
12604         * reflection.c, icall.c: add support for pinning variables. 
12605
12606 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
12607
12608         * marshal.c (mono_marshal_get_managed_wrapper):
12609         init bool local with zero rather than null.
12610
12611 2004-03-29  Martin Baulig  <martin@ximian.com>
12612
12613         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
12614         the "official" behavior here.
12615         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
12616
12617 2004-03-29  Martin Baulig  <martin@ximian.com>
12618
12619         * icall.c: Reflect latest API changes.
12620
12621 2004-03-29  Martin Baulig  <martin@ximian.com>
12622
12623         * loader.c (mono_get_method_from_token): Also call
12624         mono_metadata_load_generic_params () for abstract and interface
12625         methods; replace the type arguments in the method signature with
12626         the ones which are loaded from the metadata.
12627
12628 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
12629
12630         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
12631         of the lock is not the current thread. MS.NET don't do it, in spite of
12632         what the documentation says. See bug #56157.
12633
12634 2004-03-28  Martin Baulig  <martin@ximian.com>
12635
12636         * class.c (mono_class_init): Don't call init_properties() and
12637         init_events() for generic instances; set `prop->parent' when
12638         inflating properties.
12639
12640         * reflection.c (mono_generic_inst_get_object): Call
12641         `mono_class_init (ginst->klass)'.
12642         (mono_type_get_object): Only create a MonoGenericInst if your
12643         generic type is a TypeBuilder.
12644         (do_mono_reflection_bind_generic_parameters): Only set
12645         `ginst->is_dynamic' if our generic type is a TypeBuilder.
12646
12647 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
12648
12649         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
12650         Fixes #56091.
12651
12652 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12653
12654         * icall.c: added Kill_internal icall.
12655         * process.[ch]: added Kill_internal icall.
12656
12657 2004-03-25  Martin Baulig  <martin@ximian.com>
12658
12659         * class.h (MonoStats): Added `generic_instance_count',
12660         `inflated_method_count', `inflated_type_count' and
12661         `generics_metadata_size'.       
12662
12663 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12664
12665         * reflection.c: no warnings now.
12666
12667 2004-03-25  Martin Baulig  <martin@ximian.com>
12668
12669         * class.c (mono_class_get_full): New public function; does a
12670         mono_class_get(), but also takes a `MonoGenericContext *'.
12671
12672         * loader.c (mono_field_from_memberref): Renamed to
12673         `field_from_memberref', made static and added `MonoGenericContext *'
12674         argument.
12675         (mono_field_from_token): Added `MonoGenericInst *' argument.
12676         (method_from_memberef): Likewise.
12677         (mono_get_method_from_token): Likewise.
12678         (mono_get_method_full): New public function; does a
12679         mono_get_method(), but also takes a `MonoGenericContext *'.
12680
12681         * verify.c (mono_method_verify): Get the method's generic context
12682         and pass it to mono_field_from_token(), mono_get_method_full() and
12683         mono_class_get_full().
12684
12685 2004-03-25  Martin Baulig  <martin@ximian.com>
12686
12687         * class.c (mono_class_inflate_generic_type): Take a
12688         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
12689         `MonoGenericMethod *'.
12690
12691 2004-03-25  Martin Baulig  <martin@ximian.com>
12692
12693         * loader.h (MonoMethodInflated): Store the MonoGenericContext
12694         instead of the MonoGenericMethod here.
12695
12696 2004-03-25  Martin Baulig  <martin@ximian.com>
12697
12698         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
12699         each time we create a new MonoGenericInst, we also create a new
12700         context which points back to us.
12701
12702         * class.c (inflate_method): Use `ginst->context' instead of
12703         creating a new context.
12704
12705         * loader.c (method_from_memberref): Use
12706         `klass->generic_inst->context' instead of creating a new context.
12707
12708 2004-03-25  Martin Baulig  <martin@ximian.com>
12709
12710         * class.h (MonoGenericContext): New struct.
12711         (MonoGenericMethod): Removed `generic_inst'.
12712
12713         * class.c (mono_class_inflate_generic_method): Take a
12714         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
12715
12716 2004-03-25  Martin Baulig  <martin@ximian.com>
12717
12718         * loader.h (MonoMethodInflated): New typedef.
12719
12720         * metadata.h (MonoMethodSignature): Removed `gen_method', make
12721         `generic_param_count' consume just 30 bits, added `is_inflated'
12722         and `has_type_parameters' flags (one bit each).
12723
12724         * class.c (mono_class_inflate_generic_method): Create a
12725         MonoMethodInflated instead of a MonoMethodNormal and set
12726         `is_inflated' in the method signature.
12727
12728         * class.h (MonoGenericMethod): Removed `generic_method'.
12729
12730 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
12731
12732         * image.c: Make sure the name of a MonoImage is always an absolute path.
12733           This fixes bug #54415.
12734
12735 2004-03-24  Martin Baulig  <martin@ximian.com>
12736
12737         * class.c (mono_class_setup_vtable): If we're a generic instance,
12738         use our generic type's vtable size.
12739
12740 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
12741
12742         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
12743         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
12744         problems.
12745
12746 2004-03-23  Martin Baulig  <martin@ximian.com>
12747
12748         * class.h (MonoDynamicGenericInst): Added `int count_events' and
12749         `MonoEvent *events'.
12750
12751         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
12752         (typebuilder_icalls): Added "get_event_info"; calls
12753         mono_reflection_event_builder_get_event_info(). 
12754
12755         * reflection.c (mono_reflection_generic_inst_initialize): Added
12756         `MonoArray *events'.
12757         (mono_reflection_event_builder_get_event_info): New function.
12758
12759 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
12760
12761         * object.h: add mono_type_initialization_init
12762
12763         * object.c (mono_runtime_class_init): 
12764         implement class constructor synchronization rules
12765         to cope with threading issues.  
12766         add mono_type_initialization_init
12767
12768         * appdomain.c (mono_runtime_init): call 
12769         mono_type_initialization_init
12770
12771         * class.h: removing initializing field from MonoVTable
12772
12773 2004-03-23  Martin Baulig  <martin@ximian.com>
12774
12775         * class.c (my_mono_class_from_generic_parameter): Use
12776         `param->name' if it's not NULL. 
12777
12778 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
12779
12780         * class.c: do not insert non-virtual methods in the vtable.
12781         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
12782         that means the method is non-virtual. This never would have
12783         happened before.
12784
12785 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
12786
12787         * profiler.c: Added lock for accessing coverage_hash.
12788
12789 2004-03-22  Martin Baulig  <martin@ximian.com>
12790
12791         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
12792         `method->method->signature->generic_param_count != 0' to make it
12793         work for interface methods.
12794
12795 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12796
12797         * process.c: quote the string passed to the shell using g_shell_quote.
12798
12799 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12800
12801         * threads.c:
12802         (mono_threads_manage): don't remove the finalizer thread and self
12803         from the threads hash table so that mono_thread_manage can be called
12804         more than once.
12805
12806 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12807
12808         * process.c: quote the arguments when UseShellExecute is true. Fixes
12809         bug #55790.
12810
12811 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12812
12813         * threads.c: set mono_thread_detach as a cleanup routine for every
12814         thread. This way it's always executed upon thread termination, either
12815         aborted or finished normally. No more xsp hangs!
12816
12817 2004-03-17  Martin Baulig  <martin@ximian.com>
12818
12819         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
12820         `int count_nested' and a `MonoType **nested'.
12821
12822         * reflection.c (mono_reflection_bind_generic_parameters): Moved
12823         most of the functionality into a new static
12824         do_mono_reflection_bind_generic_parameters() and don't take a
12825         `MonoType *nested_in' argument any more.  Don't compute nested
12826         types here.
12827         (mono_reflection_generic_inst_get_nested_types): New public method
12828         to get nested types.
12829
12830         * class.c (mono_class_create_generic): Set `klass->nested_in' if
12831         we're a nested class.
12832
12833         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
12834         mono_reflection_generic_inst_get_nested_types() to compute the
12835         nested types.
12836
12837 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12838
12839         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
12840         descriptive error message under windows.
12841         
12842 2004-03-17  Martin Baulig  <martin@ximian.com>
12843
12844         * class.c (dup_type): Added `const MonoType *original' argument;
12845         copy the attrs from the original type.
12846
12847 2004-03-17  Martin Baulig  <martin@ximian.com>
12848
12849         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
12850         `m->generic_inst_cache' here.
12851
12852 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12853
12854         * exception.h exception.c: Add stack_overflow_exception.
12855
12856 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12857
12858         * threadpool.c:
12859         (overlapped_callback): call SetEvent *after* invoking the callback.
12860         No need to call CloseHandle.
12861
12862 2004-03-16  Martin Baulig  <martin@ximian.com>
12863
12864         * reflection.c (mono_image_get_fieldref_token): Take a
12865         `MonoReflectionField *' instead of a `MonoClassField *' and a
12866         `MonoClass *'; store the `MonoReflectionField *' in the hash.
12867
12868 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12869
12870         * appdomain.c: don't add the culture to the filename we're looking for
12871         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
12872
12873 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12874
12875         * locales.c: don't ignore symbols when doing case insensitive compares.
12876         Thanks Dick! Fixes bug #54046.
12877
12878         * threads.c: surround 'threads' usage with enter/leave in
12879         mono_thread_manage.
12880
12881 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
12882
12883         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
12884         implicitly marshalled as [Out]. Fixes #55450.
12885
12886         (mono_marshal_get_runtime_invoke): Zero out the result if there is
12887         an exception.
12888
12889 2004-03-16  Martin Baulig  <martin@ximian.com>
12890
12891         * class.c (mono_class_from_generic_parameter): Use the actual
12892         parameter name. 
12893
12894 2004-03-16  Martin Baulig  <martin@ximian.com>
12895
12896         * reflection.c (type_get_signature_size): New static function.
12897         Compues the size of the type in a method signature.
12898         (method_get_signature_size): New static function; calls
12899         type_get_signature_size() to compute the actual size of the
12900         method's signature.
12901         (method_encode_signature): Use method_get_signature_size() to get
12902         the signature's size rather than using `nparams * 10'.
12903
12904 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12905
12906         * file-io.h: define here WapiOverlapped on windows. I don't want the
12907         regular OVERLAPPED one.
12908
12909         * file-io.c:
12910         * threadpool.c: somehow, BindIoCompletionCallback is not found.
12911         Disabling AIO on windows.
12912
12913 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12914
12915         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
12916         bug #55385.
12917
12918 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12919
12920         * appdomain.c: upgraded corlib version.
12921
12922         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
12923         and BeginWrite. Allow opening files for asynchrnous operations.
12924
12925         * file-io.h: new struct that maps FileStreamAsyncResult.
12926         * icall.c: added new icalls.
12927         * process.[ch]: support setting child process environment variables
12928         and use the SHELL or COMSPEC when UseShellExecute is true.
12929
12930         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
12931         callback for async. IO is here and also BindHandle.
12932
12933         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
12934         from here.
12935
12936 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
12937
12938         * reflection.c (create_custom_attr): Allow len == 0.
12939
12940         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
12941         computation on big-endian machines.
12942
12943 2004-03-13  Martin Baulig  <martin@ximian.com>
12944
12945         * class.h (MonoGenericInst): Added `int count_ifaces'.
12946
12947         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
12948         `ginst->count_ifaces' instead `klass->interface_count' since we
12949         may get called before the vtable is created.
12950
12951         * loader.c (mono_method_get_param_names): If we're a generic
12952         instance, return and don't initialize the class.
12953
12954         * reflection.c (mono_reflection_setup_generic_class): Don't call
12955         ensure_runtime_vtable().
12956         (mono_reflection_bind_generic_parameters): Set
12957         `ginst->count_ifaces'.
12958
12959 2004-03-11  Jackson Harper <jackson@ximian.com>
12960
12961         * icall.c:
12962         * unicode.c:
12963         * unicode.h: Remove unused System.Char icalls.
12964         
12965 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
12966
12967         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
12968         code when we P/Invoke the first library in Windows.Forms, instead
12969         of when we first open the assembly.
12970
12971         * assembly.c: Drop the lookup from here.
12972
12973 2004-03-10  Martin Baulig  <martin@ximian.com>
12974
12975         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
12976         class for properties, fields and events.  Finally fixes #54945.
12977
12978 2004-03-10  Martin Baulig  <martin@ximian.com>
12979
12980         * metadata.c (mono_metadata_class_equal): New static function;
12981         checks whether two generic instances or two generic parameters are
12982         equal.
12983         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
12984         compare classes.        
12985
12986 2004-03-10  Martin Baulig  <martin@ximian.com>
12987
12988         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
12989
12990         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
12991         argument and write it into the `reflection_info' field.
12992
12993         * icall.c
12994         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
12995         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
12996
12997 2004-03-09  Jackson Harper  <jackson@ximian.com>
12998
12999         * char-conversions.h: use 8 bits for numeric data its all we need
13000         * icall.c: numeric data is only 8 bits now.
13001
13002 2004-03-09  Martin Baulig  <martin@ximian.com>
13003
13004         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
13005
13006         * class.c (init_properties, init_events): Initialize the new
13007         `parent' field.
13008
13009         * reflection.c (typebuilder_setup_properties): Likewise.
13010         (typebuilder_setup_events): Likewise.
13011
13012         * reflection.h (MonoEventInfo): Replaced `parent with
13013         `declaring_type' and `reflected_type'.
13014
13015         * icall.c (ves_icall_get_property_info): Distinguish between
13016         declaring and reflected type.
13017         (ves_icall_get_event_info): Likewise.
13018
13019 2004-03-09  Martin Baulig  <martin@ximian.com>
13020
13021         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
13022         (ves_icall_Type_GetField): Correctly set field->klass.
13023
13024 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
13025
13026         * loader.h: Fix warning.
13027
13028 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
13029
13030         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
13031         library routine if present.  Notice that it will still continue
13032         executing even if its missing, for those working on the Gtk#
13033         edition of Windows.Forms.
13034
13035         * assembly.c (do_mono_assembly_open): If loading the
13036         System.Windows.Forms call mono_loader_wini_init.
13037
13038 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
13039
13040         * class.h: Added MonoRemoteClass struct.
13041         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
13042         function for MonoStrings.
13043         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
13044         Added internal call for getting the proxy type.
13045         * marshal.c: Get the type of transparent proxies from its remote_class.
13046         Added methods that generate the IL for type checks and casts:
13047         mono_marshal_get_isinst, mono_marshal_get_castclass, 
13048         mono_marshal_get_proxy_cancast.
13049         * marshal.h: Declaration of the previous new methods.
13050         * object.c: Added new moethods for creating and updating MonoRemoteClass
13051         instances: mono_remote_class, mono_upgrade_remote_class, 
13052         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
13053         * verify.c: FIx transparent_proxy_fields layout.
13054         * appdomain.c: Bump corlib version.
13055
13056 2004-03-04  Jackson Harper  <jackson@ximian.com>
13057
13058         * icall.c: Add icall to access char conversion tables.
13059         * char-conversions.h: Character conversion tables.
13060         * Makefile.am: Add char-conversions.h private header file.
13061         
13062 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
13063
13064         * appdomain.c (unload_thread_main): Increase unloading timeout to
13065         10 sec as a temporary workaround for Nant problems.
13066
13067 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
13068
13069         * gc.c: Add checks for GC_enable and GC_disable.
13070
13071         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
13072         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
13073         (bug #54988).
13074         
13075 2004-02-27  Martin Baulig  <martin@ximian.com>
13076
13077         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13078         `MonoReflectionType *' instead of a `MonoType *'.
13079
13080 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
13081
13082         * gc.c (run_finalize): Avoid finalizing the object representing the
13083         finalizer thread.
13084         (finalizer_thread): Fix warning.
13085
13086 2004-02-25  Martin Baulig  <martin@ximian.com>
13087
13088         * class.c (_mono_class_get_instantiation_name): Added `int offset'
13089         argument for nested types.
13090         (mono_class_create_generic): Added support for nested generictypes.
13091
13092         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
13093         `GList *nested'.
13094
13095         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
13096
13097         * reflection.c (method_encode_signature): Increase the minimum
13098         value of `size' from 10 to 11.
13099         (mono_reflection_bind_generic_parameters): Take `int type_argc'
13100         and `MonoType **types' arguments instead of the `MonoArray
13101         *types'; added `MonoType *nested_in'.  Recursively instantiate
13102         nested classes. 
13103
13104 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
13105
13106         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
13107         stack_overflow_ex members which are used by exception handling.
13108
13109         * appdomain.c (mono_runtime_init): Initialize the new members.
13110
13111         * gc.c (mono_gc_enable): New helper function.
13112         * gc.c (mono_gc_disable): New helper function.
13113
13114 2004-02-23  Martin Baulig  <martin@ximian.com>
13115
13116         * icall.c: I must have been really stupid - make it actually work
13117         this time ;-)
13118
13119 2004-02-23  Martin Baulig  <martin@ximian.com>
13120
13121         * loader.c (method_from_memberref): Only inflate the method if
13122         it's in another klass.
13123
13124 2004-02-23  Martin Baulig  <martin@ximian.com>
13125
13126         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
13127         (mono_class_init): If we're a generic instance and an interface,
13128         compute `class->interface_id'; also create `class->interfaces'
13129         here and inflate them.
13130
13131         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
13132         `ginst->is_open'.
13133         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
13134
13135         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
13136
13137 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
13138
13139         * reflection.c (method_encode_code): Improved the error message
13140         generated by the exception.
13141
13142 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13143
13144         * icall.c: Martin did not do what he said in the ChangeLog for
13145         2004-02-18, but put back the changes for properties and events.
13146         Commenting those changes out again and adding comment to bug #54518.
13147         
13148         * process.c: removed warning.
13149
13150 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
13151
13152         * marshal.c (emit_struct_conv): Print an error message instead of
13153         asserting when a type does not have the StructLayout attribute.
13154
13155 2004-02-20  Martin Baulig  <martin@ximian.com>
13156
13157         * reflection.c (mono_type_get_object): Also use the cache for
13158         generic instances.
13159         (mono_reflection_bind_generic_parameters): Always compute
13160         `ginst->ifaces'.        
13161
13162 2004-02-20  Martin Baulig  <martin@ximian.com>
13163
13164         * class.h (MonoGenericMethod): Removed `klass'.
13165
13166         * class.c (mono_class_inflate_generic_method): Added `MonoClass
13167         *klass' argument.
13168
13169 2004-02-20  Martin Baulig  <martin@ximian.com>
13170
13171         * reflection.c (method_encode_methodspec): Actually use the
13172         uninflated signature for the memberref.
13173
13174 2004-02-20  Martin Baulig  <martin@ximian.com>
13175
13176         * class.h (MonoGenericMethod): Removed `declaring'.
13177
13178         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
13179         is NULL, compute it here.
13180
13181 2004-02-20  Martin Baulig  <martin@ximian.com>
13182
13183         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
13184
13185         * metadata.c (mono_metadata_generic_inst_hash): New method.
13186         (mono_metadata_generic_inst_equal): New method.
13187
13188         * reflection.c (mono_reflection_bind_generic_parameters): Use the
13189         `klass->image->generic_inst_cache' cache to avoid creating
13190         duplicate MonoGenericInst's.
13191
13192         * class.c (mono_class_inflate_generic_type): Use the cache.
13193
13194 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
13195
13196         * object.c: fixed gc descriptor calculation for embedded valuetypes.
13197
13198 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13199
13200         * icall.c: added Socket.WSAIoctl icall.
13201
13202         * socket-io.[ch]: implemented
13203         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
13204
13205 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
13206
13207         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
13208
13209 2004-02-18  Urs C Muff  <umuff@quark.com>
13210
13211         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
13212         this work on PPC and other big-endian architectures.
13213
13214         * debug-mono-symfile.h: Prepended the names of all the `guint32'
13215         fields with an underscore to make sure they're only accessed by
13216         the read32() macro.
13217
13218 2004-02-18  Martin Baulig  <martin@ximian.com>
13219
13220         * icall.c: Put the klass->refclass changes back for methods and
13221         fields, but not for properties and events.  We're currently not
13222         distinguishing between DeclaringType and ReflectedType for
13223         properties and events, that's what caused the regressions.
13224
13225 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13226
13227         * object.c:
13228         (mono_async_result_new): the handle can be NULL.
13229
13230         * threadpool.c: Use an event instead of a semaphore, don't initialize
13231         it until needed. This saves quite a few semaphores from being created
13232         when using the threadpool.
13233
13234 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
13235
13236         * object.c (mono_string_is_interned_lookup): Fix interning of long
13237         strings. Fixes #54473.
13238
13239         * domain.c (ldstr_equal): Optimize if the two strings are equal.
13240
13241         * icall.c: Revert the klass->refclass changes since they introduce
13242         regressions (bug #54518).
13243
13244 2004-02-18  Martin Baulig  <martin@ximian.com>
13245
13246         * class.c (mono_class_init): If we're a generic instance and don't
13247         come from a TypeBuilder, inflate our members here.
13248         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
13249         (mono_class_create_generic): New public method.
13250         (mono_class_initialize_generic): Removed.
13251         (get_instantiation_name): Renamed to
13252         _mono_class_get_instantiation_name() and made it public.
13253
13254 2004-02-18  Martin Baulig  <martin@ximian.com>
13255
13256         * class.c (mono_class_inflate_generic_type): Clear the new
13257         instance's `nginst->klass' when inflating a generic instance.
13258         (mono_class_is_subclass_of): Added (basic) support for generic
13259         instances.
13260
13261 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
13262
13263         * appdomain.h, domain.c: use a MonoCodeManager instead of a
13264         MonoMempool to hold compiled native code.
13265
13266 2004-02-17  Martin Baulig  <martin@ximian.com>
13267
13268         * class.h (MonoDynamicGenericInst): Added `count_properties' and
13269         `properties'.
13270
13271         * reflection.c (mono_reflection_generic_inst_initialize): Added
13272         `MonoArray *properties' argument.
13273
13274         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
13275
13276 2004-02-17  Martin Baulig  <martin@ximian.com>
13277
13278         * icall.c (ves_icall_Type_GetFields): Renamed to
13279         ves_icall_Type_GetFields_internal() and added a
13280         `MonoReflectionType *rtype' argument; pass it to
13281         mono_field_get_object() to set the field's "reflected" type.
13282         (ves_icall_Type_GetConstructors): Likewise.
13283         (ves_icall_Type_GetEvents): Likewise.
13284         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
13285         argument; pass it to mono_method_get_object() to set the method's
13286         "reflected" type.       
13287
13288 2004-02-17  Martin Baulig  <martin@ximian.com>
13289
13290         * class.h (MonoDynamicGenericInst): New type.
13291         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
13292
13293         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
13294         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
13295         (ves_icall_MonoGenericInst_GetFields): New interncall.
13296
13297         * class.c (mono_class_from_generic): Don't call
13298         mono_class_initialize_generic() if this is a dynamic instance;
13299         ie. it's being created from a TypeBuilder.
13300         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
13301         `class->byval_arg.type'.
13302
13303         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
13304         to `inflate_method' and made static.
13305         (mono_reflection_inflate_field): Removed.
13306         (mono_reflection_generic_inst_initialize): New public method.
13307
13308         * reflection.h (MonoReflectionGenericInst): Removed `methods',
13309         `ctors' and `fields'; added `initialized'.
13310
13311 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
13312
13313         * debug-helpers.c (mono_method_full_name): Fix output for empty
13314         namespaces.
13315
13316 2004-02-12  Martin Baulig  <martin@ximian.com>
13317
13318         * class.h (MonoClassField): Added `MonoType *generic_type'.
13319
13320         * reflection.c (mono_image_get_fieldref_token): Added support for
13321         instantiated generic types.
13322         (field_encode_inflated_field): Removed.
13323         (mono_image_get_inflated_field_token): Removed.
13324         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
13325
13326         * reflection.h (MonoReflectionInflatedField): Removed.
13327
13328 2004-02-12  Martin Baulig  <martin@ximian.com>
13329
13330         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
13331         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
13332
13333         * reflection.c (mono_image_get_methodspec_token): Take a
13334         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
13335         (mono_image_create_token): Check whether we have a
13336         `method->signature->gen_method' and call
13337         mono_image_get_methodspec_token() if appropriate.
13338         (inflated_method_get_object): Removed.
13339         (mono_reflection_bind_generic_method_parameters): Return a
13340         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
13341         (mono_reflection_inflate_method_or_ctor): Likewise.
13342
13343         * reflection.h (MonoReflectionInflatedMethod): Removed.
13344
13345 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
13346
13347         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
13348         for custom valuetype marshalling.
13349
13350         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
13351
13352 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13353
13354         * icall.c: fixed WSAGetLastError_internal name.
13355
13356 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
13357
13358         * threads.c (mono_thread_attach): Allow this to be called multiple
13359         times for a thread.
13360         
13361         * threads.c (build_wait_tids): Do not wait for ourselves.
13362
13363         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
13364         appdomain list is empty.
13365
13366         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
13367         memory returned by mono_string_builder_to_utf16, since it points into
13368         managed memory. Thanks to Bernie Solomon for noticing this.
13369
13370         * icall.c: Add AppDomainSetup icalls.
13371
13372         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
13373
13374         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
13375         types.
13376
13377         * reflection.c (reflection_methodbuilder_to_mono_method): Save
13378         custom attributes to the method_aux struct. Also fix array indexes etc.
13379
13380         * loader.c (mono_method_get_param_names): Make dynamic case work again.
13381         
13382 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
13383
13384         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
13385         (both static and runtime) and reduce startup time.
13386
13387 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
13388
13389         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
13390         AsAny marshalling conversion instead of crashing.
13391
13392         * marshal.c: Fix warnings.
13393
13394 2004-02-09  Martin Baulig  <martin@ximian.com>
13395
13396         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
13397
13398         * reflection.h (MonoReflectionInflatedMethod): Removed the
13399         `declaring' field, it's now in the unmanaged MonoGenericMethod.
13400
13401         * reflection.c (method_encode_methodspec): Removed the `method'
13402         argument; we get it from `gmethod->declaring'.
13403         (inflated_method_get_object): Removed the `declaring' argument.
13404
13405 2004-02-09  Martin Baulig  <martin@ximian.com>
13406
13407         * class.h (MonoGenericMethod): New type.
13408         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
13409         `generic_method'.
13410
13411         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
13412         a `MonoGenericMethod *gen_method' one.
13413
13414         * class.c (mono_class_inflate_generic_type): Take an additional
13415         `MonoGenericMethod * argument.  This is only non-NULL if we're
13416         inflating types for a generic method.   
13417         (mono_class_inflate_generic_signature): Renamed to
13418         inflate_generic_signature() and made static; take a
13419         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
13420         (inflate_generic_header): Take a `MonoGenericMethod *' argument
13421         instead of a `MonoGenericInst *' one.
13422         (mono_class_inflate_generic_method): Likewise.
13423
13424         * reflection.c (encode_generic_method_sig): Take a
13425         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
13426         (method_encode_methodspec): Likewise.
13427         (inflated_method_get_object): Likewise. 
13428
13429         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
13430         field with a `MonoGenericMethod *gmethod' one.  
13431
13432 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
13433
13434         * class.h (mono_class_has_parent): add parens to expansion
13435         so you can ! this.
13436
13437 2004-02-08  Martin Baulig  <martin@ximian.com>
13438
13439         * image.h (MonoImage): Removed `generics_cache'.
13440
13441         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
13442         instead of a `MonoType *' argument; removed the `inflate_methods'
13443         argument.  Don't inflate methods here.
13444
13445         * loader.c (find_method): If it's a generic instance, call
13446         mono_class_init() on the `sclass->generic_inst->generic_type'.
13447
13448         * metadata.c (mono_type_size): Make this work on uninitialized
13449         generic instances; call it on the `ginst->generic_type's class.
13450
13451         * reflection.c (mono_reflection_bind_generic_parameters): Call
13452         mono_class_from_generic() to create the `ginst->klass'.
13453
13454 2004-02-08  Martin Baulig  <martin@ximian.com>
13455
13456         * class.h (MonoClass): Changed type of `generic_inst' from
13457         `MonoType *' to `MonoGenericInst *'.
13458
13459 2004-02-08  Martin Baulig  <martin@ximian.com>
13460
13461         * icall.c (ves_icall_Type_BindGenericParameters): Just call
13462         mono_type_get_object(), this is now creating a `MonoGenericInst'
13463         for MONO_TYPE_GENERICINST.
13464         (ves_icall_MonoGenericInst_GetParentType): Likewise.
13465         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
13466
13467         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
13468         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
13469         (inflated_method_get_object): Added `MonoClass *refclass' argument.
13470         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
13471         and reflected type.
13472
13473         * reflection.h (MonoReflectionInflatedMethod): Removed
13474         `declaring_type' and `reflected_type'.
13475
13476 2004-02-08  Martin Baulig  <martin@ximian.com>
13477
13478         * class.h (MonoGenericInst): Added `MonoType *parent' and
13479         `MonoType **ifaces'.
13480
13481         * reflection.h (MonoReflectionGenericInst): Removed `klass',
13482         `parent' and `interfaces'.
13483
13484         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13485         `MonoType *' argument and return a `MonoType *'.
13486
13487         * icall.c
13488         (ves_icall_MonoGenericInst_GetParentType): New interncall.
13489         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
13490
13491 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
13492
13493         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
13494         valuetype marshalling.
13495
13496 2004-02-06  Martin Baulig  <martin@ximian.com>
13497
13498         * class.c
13499         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
13500         (my_mono_class_from_generic_parameter): Likewise.
13501
13502 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
13503
13504         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
13505         contents of the symbol files lazily.
13506
13507         * object.h (MonoThread): Add 'name' and 'name_len' fields.
13508
13509         * threads.h threads.c icall.c: New icalls for getting and setting the
13510         threads name.
13511
13512 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
13513
13514         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
13515         Raise an exception when the domain is not found.
13516
13517 2004-02-03  Martin Baulig  <martin@ximian.com>
13518
13519         * reflection.c (mono_image_get_methodspec_token): Use the
13520         uninflated signature; fixes gen-33.
13521
13522 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
13523
13524         * gc.c threads.c: Make the finalizer thread a normal managed thread so
13525         the finalizer code can use thread functionality.
13526
13527         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
13528         the finalizer thread.
13529
13530         * threads.c: Make some functions more robust.
13531
13532         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
13533
13534         * metadata.h: Add new marshalling conventions.
13535
13536         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
13537         stringbuilder marshalling. Fixes #53700.
13538
13539         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
13540
13541         * reflection.c (mono_image_get_type_info): Save declarative security
13542         info.
13543
13544         * reflection.c (mono_image_get_field_info): Handle uninitialized 
13545         unmanaged fields as well.
13546
13547         * appdomain.c: Bump corlib version.
13548
13549 2004-02-01  Martin Baulig  <martin@ximian.com>
13550
13551         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
13552         method type arguments.  
13553
13554 2004-01-30  Duncan Mak  <duncan@ximian.com>
13555
13556         * marshal.h: Add prototype for
13557         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
13558         and
13559         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
13560         fix the build.
13561
13562 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
13563
13564         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
13565         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
13566
13567 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
13568
13569         * marshal.c (mono_marshal_get_native_wrapper): Add support for
13570         custom marshalling of valuetypes.
13571
13572         * marshal.c: Fix some warnings.
13573
13574 2004-01-29  Martin Baulig  <martin@ximian.com>
13575
13576         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
13577         for generic method parameters.
13578
13579         * reflection.c (method_encode_methodspec): Write the uninflated
13580         signature into the methodspec table.
13581         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
13582         is always the uninflated method.
13583         (reflection_methodbuilder_to_mono_method): Copy the generic
13584         parameters from the MethodBuilder into `header->gen_params'.
13585
13586 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
13587
13588         * class.c (mono_class_from_generic_parameter): Fix warning.
13589
13590 2004-01-27  Martin Baulig  <martin@ximian.com>
13591
13592         * class.c (mono_class_from_generic_parameter): Don't create
13593         `klass->methods' here.  
13594
13595 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
13596
13597         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
13598         extension since it does not work with libraries named lib<FOO>.dll.so.
13599
13600 2004-01-25  Martin Baulig  <martin@ximian.com>
13601
13602         * class.c (mono_class_inflate_generic_type): Added support for
13603         MONO_TYPE_GENERICINST.
13604
13605         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
13606         inflate methods on open constructed types.      
13607
13608 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13609
13610         * object.c: fire ProcessExit event in the root AppDomain after running
13611         Main. Fixes bug #53299.
13612
13613 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
13614
13615         * socket-io.c: include the new socket-wrappers.h header.
13616         Use the wrappers instead of the unix socket functions to make the code
13617         more clear.
13618
13619 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
13620
13621         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
13622
13623         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13624         Fixes #22532.
13625
13626 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
13627
13628         * reflection.c (mono_image_create_pefile): Handle the case when the
13629         entry point is not a MethodBuilder.
13630
13631         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13632         field to ReflectionMethod since it is not allways a builder.
13633
13634         * reflection.c (type_get_fully_qualified_name): New helper function to
13635         return the fully qualified name of a type.
13636
13637         * reflection.c (encode_marshal_blob): Always emit the fully qualified
13638         type name for custom marshallers.
13639
13640         * reflection.c (mono_marshal_spec_from_builder): Ditto.
13641
13642         * class.c (mono_class_setup_vtable): If a parent class already 
13643         implements an interface, use the implementing methods from that class.
13644         Fixes #53148.
13645
13646 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13647
13648         * threadpool.c: just return instead of ExitThread to allow for thread
13649         clean up earlier.
13650
13651 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
13652
13653         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
13654         when closing resource modules.
13655
13656         * reflection.c (mono_image_create_pefile): Handle the case when the
13657         entry point is not a MethodBuilder.
13658
13659         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13660         field to ReflectionMethod since it is not allways a builder.
13661
13662 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
13663
13664         * marshal.c (mono_marshal_get_managed_wrapper): 
13665         mono_marshal_alloc takes native int so CONV_I
13666         the arg for 64bits.
13667
13668 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
13669
13670         * reflection.c (fixup_cattrs): New function to fixup the methoddef
13671         tokens in the cattr table. Fixes #53108.
13672
13673 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13674
13675         * loader.c: don't trim ".dll" before looking up in the config file.
13676         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
13677
13678 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
13679
13680         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
13681         Return the module which contains the resource as well.
13682         (ves_icall_System_Reflection_Module_Close): New icall.
13683
13684         * appdomain.c: Bump corlib version number.
13685
13686         * image.c (mono_image_addref): New public function.
13687
13688         * assembly.c: Call mono_image_addref.
13689
13690         * reflection.c (mono_module_get_object): Increase reference count of 
13691         the image.
13692
13693         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13694         Fixes #22532.
13695
13696         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
13697         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
13698         proper exceptions on DllImport problems.
13699
13700 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
13701
13702         * class.c, metadata.c: eliminate CSIZE macro.
13703
13704 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
13705
13706         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
13707         * object.h: Added async_callback field in MonoAsyncResult.
13708         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
13709         * verify.c: Added async_callback in MonoAsyncResult layout.
13710
13711 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
13712
13713         * reflection.c (mono_reflection_get_custom_attrs): Add support
13714         for Modules.
13715
13716 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13717
13718         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
13719         marshalling.
13720         (mono_marshal_method_from_wrapper): Add null pointer check.
13721
13722 2004-01-16  Martin Baulig  <martin@ximian.com>
13723
13724         * debug-mono-symfile.h: Set version number to 36 and reflect
13725         latest symbol writer changes.
13726
13727 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13728
13729         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
13730         multi-dimensional arrays.
13731         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
13732         (mono_class_from_mono_type): Use bounded_array_class_get.
13733         
13734         * class.c (mono_bounded_array_class_get): New function which takes
13735         a 'bounded' bool argument to distinguish vectors from one dimensional
13736         arrays.
13737
13738         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
13739         bounded_array_class_get if the array has bounds.
13740
13741         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13742         Search modules loaded using AssemblyBuilder:AddModule as well.
13743
13744 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13745
13746         * appdomain.c: increased corlib version.
13747         * filewatcher.c: removed g_print.
13748         * icall.c:
13749         (get_property_info): only allocate what is actually requested.
13750         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
13751
13752 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13753
13754         * Makefile.am: added filewatcher.[ch]
13755         * filewatcher.[ch]: FileSystemWatcher runtime support.
13756         * icall.c: added new FSW icalls.
13757
13758 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
13759
13760         * string-icalls.c: fix stringbuilder regression as suggested by
13761         Iain McCoy <iain@mccoy.id.au>.
13762
13763 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
13764
13765         * process.c (process_read_stringtable_block): Recognize '007f' as
13766         a language neutral stringtable block.
13767
13768 2004-01-12  Patrik Torstensson
13769
13770         * object.h (MonoStringBuilder) : Changed layout to support our
13771         new stringbuilder class.
13772         * marshal.c: Change marshalling to support the new layout of 
13773         string builder.
13774         * appdomain.c: increased version number because new layout of
13775         string builder.
13776
13777 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
13778
13779         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
13780         assembly name as an string instead of an AssemblyName, since it is
13781         easier to extract info from it.
13782
13783         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
13784         the culture subdirectories too. Fixes #52231.
13785
13786 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13787
13788         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
13789         It takes 2 new parameters with an optional name for the method to look
13790         for and case ignoring info.
13791
13792         * threadpool.c: removed unused variable.
13793
13794 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13795
13796         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
13797         It takes 2 new parameters with an optional name for the property to look
13798         for and case ignoring info.
13799         Fixes bug #52753.
13800
13801 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
13802
13803         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
13804         Fix #52451.
13805
13806 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13807
13808         * appdomain.c:
13809         * assembly.c: escape the uri before passing it to g_filename_from_uri.
13810         Fixes bug #52630.
13811
13812 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
13813
13814         * reflection.c: Add support for more than one unmanaged resource.
13815
13816         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
13817         in field->def_value, as done in all other cases.
13818
13819         * reflection.c (mono_reflection_get_custom_attrs): Add support for
13820         TypeBuilders.
13821
13822         * reflection.c (mono_reflection_create_runtime_class): Remove 
13823         errorneous assignment to klass->element_class, since it is already
13824         done in mono_reflection_setup_internal_class.
13825
13826 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13827
13828         * gc.c: added missing LeaveCriticalSection.
13829         * icall.c: indented a couple of lines.
13830         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
13831         if we call EndInvoke inside a callback. Fixes bug #52601.
13832
13833 2004-01-07  Martin Baulig  <martin@ximian.com>
13834
13835         * mono-debug-debugger.h
13836         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
13837
13838 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
13839
13840         * appdomain.c: Use messages in NotImplementedException.
13841
13842         * exception.c (mono_get_exception_not_implemented): Now this takes
13843         a message argument.
13844
13845         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
13846         exception instead of g_asserting an aborting when something is not
13847         implemented.
13848
13849         Add some inline docs.
13850
13851 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
13852
13853         * reflection.h: Update after changes to object layout.
13854
13855         * reflection.c: Implement saving of unmanaged aka win32 resources.
13856
13857         * appdomain.c: Bump version number.
13858
13859         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
13860         Handle missing domains gracefully.
13861
13862 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
13863
13864         * file-io.c : On Windows, there are much more invalid_path_chars.
13865
13866 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
13867
13868         * class.h, object.c: prepare for GetType () speedup.
13869
13870 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
13871
13872         * profiler.c: workaround for --profile null reference exception on
13873           cygwin. Patch by Patrik Torstensson.
13874
13875 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
13876
13877         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
13878         make work for unaligned access.
13879
13880 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
13881
13882         * class.c: small cleanup (class->fields [i] -> field).
13883         * image.c: check address of metadata is valid.
13884
13885 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
13886
13887         * assembly.h assembly.c (mono_assembly_loaded): New public function to
13888         search the list of loaded assemblies.
13889
13890         * reflection.c (mono_reflection_type_from_name): Use 
13891         mono_assembly_loaded instead of mono_image_loaded.
13892
13893         * reflection.c: Fix warnings.
13894
13895 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
13896
13897         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
13898         is dynamic. This is needed since an assembly can contain both dynamic and
13899         non-dynamic images.
13900
13901         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
13902         assembly->dynamic.
13903
13904         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
13905
13906         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
13907         to store modules loaded using AddModule.
13908
13909         * reflection.c (mono_image_fill_file_table): Generalize this so it works
13910         on Modules.
13911
13912         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
13913
13914         * reflection.c (mono_image_fill_export_table_from_module): New function to
13915         fill out the EXPORTEDTYPES table from a module.
13916
13917         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
13918         into a separate function. Also handle loaded non-dynamic modules.
13919
13920         * reflection.c (mono_image_basic_init): Fix memory allocation.
13921
13922         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13923
13924         * assembly.c (mono_assembly_load_references): Make this public.
13925
13926 2003-12-19  Martin Baulig  <martin@ximian.com>
13927
13928         * class.c (mono_class_initialize_generic): Made this static, take
13929         a `MonoGenericInst *' instead of a `MonoClass *'.
13930         (mono_class_from_generic): Call mono_class_initialize_generic()
13931         unless we're already initialized or being called from
13932         do_mono_metadata_parse_generic_inst().
13933
13934         * class.h (MonoGenericInst): Added `initialized' and
13935         `init_pending' flags.
13936
13937         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
13938         `mono_class_init (gklass)' or mono_class_initialize_generic()
13939         here; set `generic_inst->init_pending' while parsing the
13940         `type_argv'.
13941
13942 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
13943
13944         * locales.c: include string.h for memxxx prototypes
13945
13946 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
13947
13948         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
13949         constructor when accessing literal fields.
13950
13951 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
13952
13953         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13954
13955         * reflection.c (assembly_add_resource_manifest): New function to fill
13956         the MANIFESTRESOURCE table.
13957
13958         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
13959
13960         * reflection.h: Update to changes in class layout.
13961
13962         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
13963         Reenable call to mono_runtime_is_shutting_down ().
13964
13965         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
13966         determine if the runtime is shutting down.
13967
13968 2003-12-16  Jackson Harper <jackson@ximian.com>
13969
13970         * icall.c: comment out call to mono_runtime_is_shutting_down to
13971         fix build.
13972         
13973 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
13974
13975         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
13976         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
13977
13978 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
13979
13980         * reflection.c: move definition of swap_with_size
13981         to before its first call
13982
13983 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
13984
13985         * appdomain.c (mono_runtime_is_shutting_down): New public function.
13986
13987         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
13988         icall.
13989
13990         * object.c: Fix warnings.
13991
13992         * icall.c (ves_icall_Type_Get...): Only consider inherited static
13993         members if FlattenHierarchy is set.
13994
13995         * reflection.c (mono_image_add_decl_security): New function to emit
13996         declarative security.
13997
13998         * reflection.h reflection.c: Add support for declarative security.
13999
14000         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14001         
14002 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
14003
14004         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14005         
14006         * appdomain.c verify.c: Moved corlib version checking into its own
14007         function in appdomain.c since it needs to create vtables etc.
14008
14009 2003-12-13  Patrik Torstensson <p@rxc.se>
14010
14011         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
14012         instead of unwrapped server.
14013
14014 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
14015
14016         * verify.c (check_corlib): Fix field index.
14017
14018 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
14019
14020         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
14021         GetGacPath icall.
14022
14023 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
14024
14025         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
14026         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
14027         cope with sizeof(size_t) != sizeof(guint32).
14028
14029 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14030
14031         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
14032         in case of failure.
14033
14034 2003-12-10  Mark Crichton <crichton@gimp.org>
14035
14036         * icall.c: removed the GetNonZeroBytes.  We now handle this case
14037         in managed code.
14038
14039         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
14040
14041 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
14042
14043         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
14044         marked as deleted.
14045
14046 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
14047
14048         * verify.c (check_corlib): Handle the case when the version field is 
14049         initialized by a static constructor.
14050
14051 2003-12-08  Patrik Torstensson  <p@rxc.se>
14052
14053     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
14054
14055 2003-12-08  Martin Baulig  <martin@ximian.com>
14056
14057         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
14058         a MonoReflectionGenericParameter, also take the parameter index
14059         and name as arguments.
14060         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
14061         (ves_icall_MonoGenericParam_initialize): New interncall.
14062         (ves_icall_Type_make_byref_type): New interncall.
14063
14064         * reflection.h (MonoReflectionGenericParam): Derive from
14065         MonoReflectionType, not just from MonoObject.  Added `refobj' and
14066         `index' fields.
14067
14068         * reflection.c (mono_reflection_define_generic_parameter): Create
14069         and return a new MonoReflectionGenericParam; don't initialize the
14070         constraints here.
14071         (mono_reflection_initialize_generic_parameter): New public method;
14072         initializes the constraints and creates the `param->pklass'.
14073
14074 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
14075
14076         * reflection.h reflection.c: Use the new fields 'num_types', 
14077         'num_fields' and 'num_methods' to track the number of types etc.
14078
14079         * verify.c (check_corlib): Check corlib version number.
14080
14081 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
14082
14083         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
14084         function works on all methods.
14085
14086 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
14087
14088         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
14089         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
14090         the custom_type_info flag of the transparent proxy.
14091         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
14092         objects that supports IRemotingTypeInfo.
14093         * object.h: Added custom_type_info field in transparent proxy.
14094
14095 2003-12-06  Martin Baulig  <martin@ximian.com>
14096
14097         * class.c (mono_class_create_from_generic): Removed.
14098         (mono_class_from_generic): Check `ginst->klass' before doing
14099         anything else.  This is important to fully support "recursive"
14100         generic types.
14101
14102         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
14103         empty `generic_inst->klass' before doing anything else.
14104
14105 2003-12-06  Dick Porter  <dick@ximian.com>
14106
14107         * verify.c: 
14108         * object.h:
14109         * icall.c:
14110         * locales.c: Use C structs to access class fields.  Don't do a
14111         conversion between MonoString and UChar because both are
14112         platform-endian UTF-16.  Compare now takes startindex and count
14113         parameters.  Add a char overload for IndexOf.  Speed up the
14114         invariant string IndexOf.
14115
14116 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
14117
14118         * Makefile.am (monosn_LDADD): Fix parallel build.
14119
14120 2003-12-04  Martin Baulig  <martin@ximian.com>
14121
14122         * icall.c
14123         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14124         (ves_icall_Type_make_array_type): New interncall.       
14125
14126 2003-12-04  Martin Baulig  <martin@ximian.com>
14127
14128         * locales.c: also change it in the !HAVE_ICU case.
14129
14130 2003-12-04  Dick Porter  <dick@ximian.com>
14131
14132         * icall.c:
14133         * locales.c: construct_compareinfo is now in CompareInfo, not
14134         CultureInfo.
14135
14136 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
14137
14138         * image.c (mono_image_load_file_for_image): Cache loaded images in the
14139         image->files array.
14140
14141         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
14142         table as well.
14143
14144         * assembly.c (mono_assembly_load_references): Only load references
14145         once.
14146
14147         * class.c (mono_class_from_name): Avoid linear search of the 
14148         EXPORTEDTYPE table.
14149
14150         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
14151
14152 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
14153
14154         * image.h (MonoImage): Add 'field_cache' field.
14155
14156         * loader.c (mono_field_from_token): Cache field lookups.
14157         
14158         * reflection.c (mono_module_get_object): Fix name property.
14159
14160         * icall.c (ves_icall_get_enum_info): Update after changes to 
14161         mono_metadata_get_constant_index ().
14162
14163         * icall.c: Get rid of get_type_info icall, use a separate icall for
14164         each type property to avoid needless memory allocations. Fixes #51514.
14165
14166         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
14167         to avoid needless binary searches.
14168
14169         * class.c (class_compute_field_layout): Move the initialization of
14170         field->def_value to mono_class_vtable ().
14171
14172         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
14173         non-corlib types.
14174
14175         * object.c (mono_object_allocate): Make it inline.
14176
14177         * object.c (mono_object_allocate_spec): Make it inline.
14178         
14179 2003-12-02  Dick Porter  <dick@ximian.com>
14180
14181         * locales.c (create_NumberFormat): NumberFormatInfo construction.
14182         Patch by Mohammad DAMT (mdamt@cdl2000.com).
14183
14184 2003-12-01  Dick Porter  <dick@ximian.com>
14185
14186         * threads.c: Fix signature and call in CreateMutex and
14187         CreateEvent.
14188
14189 2003-12-01  Dick Porter  <dick@ximian.com>
14190
14191         * icall.c: 
14192         * locales.c: Implement string compares and searching
14193
14194         * object.h: Add extra Thread field
14195
14196 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
14197
14198         * reflection.c (fixup_method): Add support for MonoCMethod.
14199
14200 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
14201
14202         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
14203
14204         * reflection.c (assembly_name_to_aname): Allow extra characters in
14205         assembly names. Fixes #51468.
14206
14207 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
14208
14209         * exception.c (mono_exception_from_name_domain): New helper function.
14210
14211         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
14212         exception object in the correct domain.
14213
14214         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
14215         formatting + make a copy a the input data.
14216
14217         * loader.c (mono_get_method_from_token): Methods which contain
14218         native code do not have entries in the ImplMap.
14219
14220         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
14221         Thanks to Gonzalo for spotting this.
14222         
14223         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
14224         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
14225
14226         * assembly.h (mono_assembly_load_from): Split the second part of 
14227         assembly loading into a new public function.
14228
14229         * exception.h (mono_get_exception_bad_image_format): New function.
14230
14231 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
14232
14233         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14234         Enumerate all modules inside a dynamic assembly. Fixes #51293.
14235         
14236         * icall.c: Add new icall for creating dynamic methods.
14237
14238         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
14239
14240         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
14241
14242         * reflection.c (mono_reflection_create_dynamic_method): New icall to
14243         create a dynamic method.
14244
14245         * reflection.c (resolve_object): New helper function.
14246
14247         * reflection.c: Generalize ReflectionMethodBuilder and the functions
14248         which manipulate it so they can also work on dynamic methods.
14249
14250         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
14251         creating the MonoReflectionMethodAux structure if it is not needed.
14252         
14253         * reflection.h verify.c: Update after changes to object layout.
14254
14255         * reflection.c (method_builder_encode_signature): Fix compilation on
14256         gcc 2.95.x.
14257
14258 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
14259
14260         * appdomain.h: Added support for context static fields. Added static_data
14261           field to MonoAppContext and renamed thread_static_fields to a more
14262           generic special_static_fields in MonoAppDomain, since it can now contain
14263           context static fields.
14264         * domain.c: Updated hashtable name.
14265         * object.c: Replaced field_is_thread_static() for a more generic
14266           field_is_special_static() which also checks for context static attribute.
14267           In mono_class_vtable(), added support for static context fields.
14268         * threads.c: Changed methods that manage thread static fields to more
14269           generic methods so they can be reused both for thread and context static
14270           data.
14271         * threads.h: Declared some new methods.
14272
14273 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
14274
14275         * reflection.h: Update after changes to the managed types.
14276
14277         * reflection.c (encode_custom_modifiers): New helper function.
14278
14279         * reflection.c (method_encode_signature): Emit custom modifiers.
14280
14281         * reflection.c (field_encode_signature): Emit custom modifiers.
14282
14283 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
14284
14285         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
14286
14287         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
14288         implementation.
14289
14290         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
14291         icall.
14292
14293         * object.c (mono_field_get_value_object): New function.
14294
14295         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
14296         specific.
14297
14298 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
14299
14300         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
14301         return a preallocated out-of-memory exception instance.
14302
14303         * object.c (out_of_memory): Use the new function.
14304
14305         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
14306         flag is before the custom modifiers. Fixes #49802.
14307
14308 2003-11-16  Martin Baulig  <martin@ximian.com>
14309
14310         * class.c (mono_class_is_open_constructed_type): Implemented the
14311         MONO_TYPE_GENERICINST case.
14312
14313 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
14314
14315         * assembly.c (mono_assembly_fill_assembly_name): New function to
14316         fill out the MonoAssemblyName structure.
14317         (mono_assembly_open): Use the new function.
14318
14319         * icall.c (fill_reflection_assembly_name): New helper function.
14320
14321         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
14322         new function.
14323
14324         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
14325
14326 2003-11-15  Martin Baulig  <martin@ximian.com>
14327
14328         * class.c (mono_class_is_open_constructed_type): New public
14329         function; checks whether a type is an open constructed type,
14330         ie. whether it still contains type parameters.
14331         (mono_class_inflate_generic_type): If we're a type parameter and
14332         the inflated type is also a MONO_TYPE_(M)VAR, return the original
14333         type.
14334
14335         * class.h (MonoGenericInst): Added `guint32 is_open'.
14336
14337         * loader.c (method_from_methodspec): Check whether we're an open
14338         or closed constructed type and set `ginst->is_open'.
14339
14340         * reflection.c (mono_reflection_bind_generic_parameters): Check
14341         whether we're an open or closed constructed type and set
14342         `ginst->is_open'.
14343         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
14344         from open constructed types.
14345
14346 2003-11-15  Martin Baulig  <martin@ximian.com>
14347
14348         * reflection.c (mono_reflection_bind_generic_parameters): If we're
14349         a generic instance (instead of a generic type declaration) with
14350         unbound generic parameters, bind them to our actual types.
14351
14352 2003-11-14  Martin Baulig  <martin@ximian.com>
14353
14354         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
14355
14356         * reflection.c (mono_reflection_bind_generic_parameters): If we're
14357         an interface type, populate `res->interfaces' with instantiated
14358         versions of all the interfaces we inherit.
14359
14360 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
14361
14362         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
14363         when MONO_PATH is set but doesn't contain the install dir.
14364
14365 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14366
14367         * icall.c:
14368         (ves_icall_Type_GetInterfaces): don't return an interface twice when
14369         it's also implemented in base classes. Fixes bug #50927.
14370
14371 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
14372
14373         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
14374         if this method is called from a finalizer. Fixes #50913.
14375
14376 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
14377
14378         * threads.c: Implement VolatileRead/VolatileWrite
14379
14380         * icall.c: Add new icalls for VolatileRead/VolatileWrite
14381
14382 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14383
14384         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
14385         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
14386         2.95.3.
14387
14388         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
14389         from Peter Ross (pro@missioncriticalit.com).
14390         
14391 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
14392
14393         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
14394
14395 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14396
14397         * assembly.c (mono_assembly_load_references): Disable check because it
14398         triggers on older corlibs which lots of people have.
14399
14400 2003-11-12  Jackson Harper  <jackson@ximian.com>
14401
14402         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
14403         load corlib.dll if mscorlib.dll is not found.
14404         * assembly.h: Remove corlib name define.
14405         * class.c:
14406         * domain.c:
14407         * image.c: Change corlib name to mscorlib.
14408         
14409 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14410
14411         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
14412
14413 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
14414
14415         * appdomain.h: Added loader_optimization here to sync with the C#
14416         code, and add disallow_binding_redirects field.
14417
14418 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
14419
14420         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
14421
14422         * reflection.c (mono_image_build_metadata): Fix crash on modules
14423         with no types.
14424
14425         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
14426
14427         * icall.c (ves_icall_get_method_info): Return callingConvention as
14428         well.
14429
14430         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
14431         namespaces from the EXPORTEDTYPE table as well.
14432
14433         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
14434         from all modules inside the assembly.
14435         
14436 2003-11-11  Martin Baulig  <martin@ximian.com>
14437
14438         * reflection.c (mono_reflection_bind_generic_parameters): Make
14439         this work for interfaces.
14440
14441 2003-11-11  Martin Baulig  <martin@ximian.com>
14442
14443         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
14444
14445 2003-11-11  Martin Baulig  <martin@ximian.com>
14446
14447         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
14448         "MonoInflatedMethod" and "MonoInflatedCtor".
14449
14450 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
14451
14452         * reflection.c (resolution_scope_from_image): Use the assembly table
14453         from the manifest module, since other modules don't have it.
14454
14455         * debug-helpers.c (mono_type_full_name): New helper function.
14456
14457         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
14458
14459         * image.c (mono_image_load_file_for_image): New public function which
14460         is a replacement for the load_file_for_image in class.c.
14461
14462         * assembly.c (mono_assembly_load_module): A wrapper for the function
14463         above which does assembly association and reference loading too.
14464
14465         * class.c (mono_class_from_name): Call mono_assembly_load_module.
14466
14467 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14468
14469         * appdomain.c: not all of the attributes for the full assembly name
14470         are required and the order doesn't matter. Fixes bug #50787.
14471
14472 2003-11-10  Dick Porter  <dick@ximian.com>
14473
14474         * locales.c: Use platform-endian UTF16
14475
14476 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
14477
14478         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
14479         
14480 2003-11-10  Martin Baulig  <martin@ximian.com>
14481
14482         * metadata.c
14483         (mono_metadata_load_generic_params): Make this actually work.
14484
14485         * reflection.c (mono_reflection_bind_generic_parameters): If our
14486         parent is a generic instance, pass all the `types' to it, no
14487         matter whether it has the same number of type parameters or not.
14488
14489 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
14490
14491         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
14492
14493         * assembly.c (mono_assembly_load_references): Move the image<->assembly
14494         assignment code to this function so it gets called recursively for all
14495         modules.
14496
14497         * image.c (load_modules): Remove the assembly assignment since it is
14498         now done by mono_assembly_load_references.
14499         
14500         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14501         Add 'module' argument.
14502         (mono_module_get_types): New helper function.
14503         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
14504
14505 2003-11-08  Martin Baulig  <martin@ximian.com>
14506
14507         * class.c (mono_class_inflate_generic_method): Interface method
14508         don't have a header.
14509
14510         * reflection.c (mono_image_get_methodspec_token): Take an
14511         additional `MonoGenericInst *' argument instead of reading it from
14512         the header; this is necessary to support interfaces.
14513         (mono_image_create_token): Pass the `MonoGenericInst *' from the
14514         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
14515         (inflated_method_get_object): Take an additional `MonoGenericInst *'
14516         argument.
14517
14518         * reflection.h (MonoReflectionInflatedMethod): Added
14519         `MonoGenericInst *ginst'.
14520
14521 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
14522
14523         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
14524
14525 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
14526
14527         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
14528
14529 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
14530
14531         * reflection.c 
14532         (reflection_methodbuilder_from_method_builder):
14533         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
14534         initialize a ReflectionMethodBuilder structure.
14535         (mono_image_get_methodbuilder_token):
14536         (mono_image_get_ctorbuilder_token): New functions to emit memberref
14537         tokens which point to types in another module inside the same assembly.
14538
14539         * reflection.c: Use the new helper functions.
14540         
14541         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
14542
14543         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
14544         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
14545
14546         * reflection.c (resolution_scope_from_image): Emit a moduleref if
14547         neccesary.
14548
14549         * reflection.c (mono_image_build_metadata): Emit metadata only for the
14550         current module. Emit the manifest only for the main module.
14551
14552         * reflection.c (mono_image_create_token): Add assertion when a 
14553         memberref needs to be created.
14554
14555         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
14556
14557         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
14558         larger buffer for the custom attribute blob. Fixes #50637.
14559         
14560 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14561
14562         * threadpool.c: notify listener on async processing handles after
14563         invoking the async callback. Thanks to Zoltan.
14564
14565 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14566
14567         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
14568         avoid code duplication.
14569
14570         * reflection.h (MonoDynamicImage): New type which is currently unused,
14571         but will be used through the ref.emit code in place of 
14572         MonoDynamicAssembly.
14573
14574         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
14575         object layout.
14576
14577         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
14578         a MonoDynamicImage instead of just a MonoImage.
14579         
14580         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
14581         icalls to ModuleBuilder but keep their semantics, so they will work
14582         with moduleb->assemblyb. This will change later.
14583         
14584 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14585
14586         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
14587         object layout.
14588
14589         * reflection.c (mono_image_build_metadata): Avoid creation of a default
14590         main module, since it is now done by the managed code.
14591
14592 2003-11-03  Martin Baulig  <martin@ximian.com>
14593
14594         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
14595         `ginst->klass' here.
14596         (method_encode_methodspec): Don't use the `ginst->generic_method's
14597         klass if it's a generic instance, use `ginst->klass' in this case.
14598
14599 2003-11-03  Martin Baulig  <martin@ximian.com>
14600
14601         * reflection.c (mono_image_get_generic_method_param_info):
14602         Removed, use mono_image_get_generic_param_info() instead.
14603         (mono_image_get_type_info): Write the GenericParam table before
14604         the Method table.  This is neccessary because in the GenericParam
14605         table, type parameters of the class (ie. '!0' etc.) must come
14606         before the ones from its generic methods (ie. '!!0' etc).
14607
14608 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14609
14610         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
14611
14612 2003-11-02  Martin Baulig  <martin@ximian.com>
14613
14614         * reflection.c (create_generic_typespec): Take a
14615         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
14616         the generic parameters from it.
14617
14618 2003-11-02  Martin Baulig  <martin@ximian.com>
14619
14620         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
14621         instead of a `MonoClassField *' since we just need the type.
14622         (create_generic_typespec): New static function.  Creates a
14623         TypeSpec token for a generic type declaration.
14624         (mono_image_get_generic_field_token): New static function.
14625         (mono_image_create_token): If we're a FieldBuilder in a generic
14626         type declaration, call mono_image_get_generic_field_token() to get
14627         the token.
14628
14629 2003-11-02  Martin Baulig  <martin@ximian.com>
14630
14631         * reflection.h
14632         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
14633         `MonoReflectionGenericInst *declaring_type' and
14634         `MonoReflectionGenericInst *reflected_type' fields.
14635
14636         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
14637         `MonoReflectionGenericInst *declaring_type' and a
14638         `MonoReflectionGenericInst *reflected_type' argument instead of a
14639         single `MonoReflectionGenericInst *type' one.  Set
14640         `res->declaring_type' and `res->reflected_type' from them.
14641         (mono_reflection_inflate_field): Likewise.      
14642
14643 2003-11-02  Martin Baulig  <martin@ximian.com>
14644
14645         * class.c (mono_class_setup_vtable): Don't store generic methods
14646         in the vtable.  
14647
14648 2003-11-02  Martin Baulig  <martin@ximian.com>
14649
14650         * reflection.h (MonoReflectionGenericInst): Added
14651         `MonoReflectionType *declaring_type'.
14652
14653         * reflection.c (mono_reflection_bind_generic_parameters): Use
14654         `if (tb->parent)' instead of `klass->parent'.
14655
14656 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
14657
14658         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
14659         with an empty ASSEMBLY table.
14660
14661         * reflection.c (mono_image_build_metadata): Avoid using the same loop
14662         variable in the inner and outer loops.
14663
14664 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
14665
14666         * metadata.h (mono_metadata_make_token): Put parentheses around macro
14667         argument.
14668
14669         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
14670         
14671         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
14672         icalls. Instead, do everything in managed code. This is needed since
14673         it is hard to restore the original domain etc. in unmanaged code in the
14674         presence of undeniable exceptions.
14675
14676         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
14677         New icalls to push and pop appdomain refs.
14678
14679 2003-10-31  Martin Baulig  <martin@ximian.com>
14680
14681         * class.c (inflate_generic_type): Renamed to
14682         mono_class_inflate_generic_type() and made it public.
14683
14684         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
14685         New interncall.
14686
14687         * loader.c (mono_field_from_memberref): Also set the retklass for
14688         typespecs.
14689
14690         * fielder.c (mono_image_get_inflated_field_token): New static
14691         method; creates a metadata token for an inflated field.
14692         (mono_image_create_token, fixup_method): Added support for
14693         "MonoInflatedField".
14694         (fieldbuilder_to_mono_class_field): New static function.
14695         (mono_reflection_inflate_field): New public function.
14696
14697         * reflection.h
14698         (MonoReflectionGenericInst): Added `MonoArray *fields'.
14699         (MonoReflectionInflatedField): New typedef.     
14700
14701 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
14702
14703         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
14704         for Solaris and other platforms without s6_addr16
14705
14706 2003-10-30  Martin Baulig  <martin@ximian.com>
14707
14708         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
14709         argument instead of two.
14710         (mono_class_inflate_generic_signature): Likewise.
14711         (inflate_generic_header): Likewise.
14712         (mono_class_inflate_generic_method): Likewise.  In addition, if
14713         `ginst->klass' is set, it becomes the new `method->klass'.
14714
14715         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
14716         field.
14717
14718         * reflection.c (encode_generic_method_sig): Write a 0xa as the
14719         first byte. [FIXME]
14720         (method_encode_methodspec): If we have generic parameters, create
14721         a MethodSpec instead of a MethodRef.
14722         (fixup_method): Added support for "MonoInflatedMethod" and
14723         "MonoInflatedCtor".
14724         (mono_image_create_token): Added support for "MonoInflatedMethod"
14725         and "MonoInflatedCtor".
14726         (inflated_method_get_object): New static function; returns a
14727         managed "System.Reflection.MonoInflatedMethod" object.
14728         (mono_reflection_bind_generic_method_parameters): Return a
14729         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
14730         (mono_reflection_inflate_method_or_ctor): Likewise.
14731         (mono_image_get_generic_method_param_info): Initialize unused
14732         fields to zero.
14733         (mono_image_get_generic_param_info): Likewise.
14734
14735         * reflection.h (MonoReflectionInflatedMethod): New public
14736         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
14737         "S.R.MonoInflatedCtor" classes.
14738
14739         * loader.c (method_from_memberref): If we're a TypeSpec and it
14740         resolves to a generic instance, inflate the method.
14741
14742 2003-10-28  Dick Porter  <dick@ximian.com>
14743
14744         * object.c (mono_runtime_run_main): Convert command-line arguments
14745         into utf8, falling back to the user's locale encoding to do so.
14746
14747 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
14748
14749         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
14750         at this time.
14751
14752         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
14753
14754         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
14755         up icalls at method definition time. Partially fixes #33569.
14756
14757 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
14758
14759         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
14760         marshalling of arrays. Fixes #50116.
14761
14762         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
14763
14764         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
14765         points to a vtable in the dying appdomain.
14766
14767         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
14768         listeners into unmanaged code inside the lock.
14769
14770         * object.c (mono_class_vtable): Turn off typed allocation in non-root
14771         domains and add some comments.
14772
14773 2003-10-25  Martin Baulig  <martin@ximian.com>
14774
14775         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
14776
14777         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
14778
14779         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
14780         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
14781         currently parsing.  Create the generic class and store it in
14782         `generic_inst->klass' before parsing the type arguments.  This is
14783         required to support "recursive" definitions; see mcs/tests/gen-23.cs
14784         for an example.
14785         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
14786         to support recursive typespec entries.
14787
14788         * class.c (mono_class_setup_parent): If our parent is a generic
14789         instance, we may get called before it has its name set.
14790         (mono_class_from_generic): Splitted into
14791         mono_class_create_from_generic() and mono_class_initialize_generic().
14792
14793 2003-10-25  Martin Baulig  <martin@ximian.com>
14794
14795         * icall.c (ves_icall_Type_BindGenericParameters): Return a
14796         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
14797         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
14798         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
14799
14800         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
14801         (create_typespec): Likewise.
14802         (mono_reflection_bind_generic_parameters): Return a
14803         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
14804         (mono_reflection_inflate_method_or_ctor): New public function.
14805
14806         * reflection.h (MonoReflectionGenericInst): New typedef.        
14807
14808 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
14809
14810         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
14811         inside the domain lock. Fixes #49993.
14812         
14813         * object.c (mono_class_vtable): When typed allocation is used, 
14814         allocate vtables in the GC heap instead of in the mempool, since the
14815         vtables contain GC descriptors which are used by the collector even
14816         after the domain owning the mempool is unloaded.
14817
14818         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
14819
14820         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
14821         reflect what it does. Also invalidate mempools instead of freeing
14822         them if a define is set.
14823
14824         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
14825         of the appdomain.
14826         
14827         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
14828         hold the finalizable objects in this domain.
14829
14830         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
14831         appdomain.
14832
14833         * appdomain.c (mono_domain_set): New function to set the current
14834         appdomain, but only if it is not being unloaded.
14835
14836         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
14837         appdomain which is being unloaded.
14838         
14839         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
14840         unloading of the root appdomain.
14841
14842         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
14843         icall to execute a method in another appdomain. Intended as a 
14844         replacement for InternalSetDomain, which can confuse the code 
14845         generation in the JIT.
14846
14847         * appdomain.c (mono_domain_is_unloading): New function to determine
14848         whenever an appdomain is unloading.
14849
14850         * appdomain.c (mono_domain_unload): New function to correctly unload
14851         an appdomain.
14852
14853         * assembly.c (mono_assembly_load_references): Check that an assembly
14854         does not references itself.
14855
14856         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
14857         domain manually, it asks the finalizer thread to do it, then waits for
14858         the result. Also added a timeout.
14859
14860         * icall.c: Register the new icalls.
14861
14862         * threads.h threads.c: Export the mono_gc_stop_world and 
14863         mono_gc_start_world functions.
14864         
14865         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
14866         function to fill out the mempool with 0x2a.
14867
14868 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
14869
14870         * reflection.h (MonoReflectionMethodAux): New structure to store
14871         information which is rarely used, thus is not in the MonoMethod
14872         structure.
14873
14874         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
14875         store the aux info.
14876
14877         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
14878         and marshalling info into the aux structure.
14879
14880         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
14881         from the aux structure.
14882
14883         * loader.c (mono_method_get_param_names): Retrieve the param names from
14884         the aux structure.
14885         
14886 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
14887
14888         * exception.h exception.c: Add AppDomainUnloadedException && fix 
14889         warning.
14890
14891 2003-10-21  Dick Porter  <dick@ximian.com>
14892
14893         * socket-io.c
14894         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
14895         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
14896
14897 2003-10-21  Martin Baulig  <martin@ximian.com>
14898
14899         * reflection.c (mono_reflection_bind_generic_parameters):
14900         `klass->parent' is NULL for interfaces.
14901
14902 2003-10-21  Martin Baulig  <martin@ximian.com>
14903
14904         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14905
14906 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
14907
14908         * exception.c (mono_exception_from_name_msg): New helper function for
14909         creating exceptions and initializing their message field.
14910
14911         * exception.c: Simplify functions using the new helper.
14912
14913         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
14914         New function.
14915
14916         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
14917         mono_raise_exception, since otherwise gcc doesn't generate the function
14918         epilog for raise_exception, confusing the stack unwinding in the JIT.
14919         Fixes #45043.
14920
14921         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
14922         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
14923         Fixes #49499.
14924
14925 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14926
14927         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
14928         utf8.
14929
14930 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
14931
14932         * icall.c: Removed GetUninitializedObject method because
14933           AllocateUninitializedClassInstance does the same.
14934
14935 2003-10-18  Martin Baulig  <martin@ximian.com>
14936
14937         * class.c (inflate_generic_signature): Renamed to
14938         mono_class_inflate_generic_signature() and made it public.
14939         (my_mono_class_from_generic_parameter): New static function; if we
14940         don't already have the generic parameter's MonoClass, create a
14941         very simple one which is just used internally in the runtime and
14942         not passed back to managed code.
14943
14944         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
14945
14946         * metadata.h (MonoMethodSignature): Moved the
14947         `MonoGenericParam *gen_params' to the MonoMethodHeader.
14948         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
14949
14950         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
14951         ves_icall_MonoMethod_GetGenericArguments(); this is now an
14952         interncall on the MonoMethod class, not on MethodInfo.
14953         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
14954         calling mono_reflection_bind_generic_method_parameters() directly.
14955
14956         * loader.c (mono_method_get_signature): If this is a MethodSpec;
14957         return the already computed `method->signature'.
14958         (method_from_methodspec): New static function to load a method
14959         from a MethodSpec entry.
14960         (mono_get_method_from_token): Call the new method_from_methodspec()
14961         for MethodSpec tokens.  
14962         (mono_get_method_from_token): If we're a generic method, load the
14963         type parameters.
14964
14965         * reflection.c (mono_image_get_memberref_token): Allow
14966         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
14967         table.
14968         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
14969         (mono_image_create_token): First check whether it's a generic
14970         method (so we'd need to create a MethodSpec), then do the other
14971         two alternatives.
14972         (mono_reflection_bind_generic_method_parameters): Return a
14973         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
14974         called directly from the interncall.
14975
14976 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
14977
14978         * reflection.c (load_public_key): Move loading of the public key
14979         into managed code.
14980
14981         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
14982
14983         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
14984         fields.
14985
14986         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
14987         culture, hash_alg and public_key. Fixes #49555.
14988
14989 2003-10-17  Martin Baulig  <martin@ximian.com>
14990
14991         * class.h (MonoGenericInst): Moved this declaration here and added
14992         `MonoMethod *generic_method'.
14993
14994         * icall.c
14995         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
14996         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
14997
14998         * metadata.c (mono_metadata_type_equal): Two types of
14999         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
15000         index; ie. don't compare the address of the `MonoGenericParam'
15001         structure.
15002         (mono_metadata_load_generic_params): Removed the `MonoMethod
15003         *method' argument.
15004
15005         * metadata.h (MonoGenericInst): Moved declaration to class.h.
15006         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
15007
15008         * reflection.c (method_encode_signature): Encode the number of
15009         generic parameters.
15010         (encode_generic_method_sig): New static function.
15011         (method_encode_methodspec): New static function; creates an entry
15012         in the MethodSpec table for a generic method.
15013         (mono_image_get_methodspec_token): New static function.
15014         (mono_image_create_token): Call mono_image_get_methodspec_token()
15015         for generic methods.
15016         (mono_reflection_bind_generic_method_parameters): New public
15017         function.  Instantiates a generic method.
15018
15019 2003-10-16  Martin Baulig  <martin@ximian.com>
15020
15021         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
15022         *gen_params' here from MonoMethodHeader.
15023
15024         * metadata.c (mono_metadata_parse_method_signature): If we have
15025         generic parameters, initialize `method->gen_params' and then set
15026         the correct `type->data.generic_param' in all the parameters.
15027
15028 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
15029
15030         * threads.c (mono_threads_get_default_stacksize): New function to 
15031         return the default stacksize.
15032
15033         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
15034         termination of the finalizer thread, since the previous method had
15035         race conditions. Fixes #49628.
15036
15037         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
15038         as for the other managed threads.
15039
15040 2003-10-16  Martin Baulig  <martin@ximian.com>
15041
15042         * class.c (inflate_generic_signature): Copy `generic_param_count'
15043         and `gen_params'.
15044
15045         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
15046         New interncall.
15047
15048         * metadata.c (mono_metadata_parse_method_signature): Actually set
15049         the `method->generic_param_count' here.
15050         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
15051
15052 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
15053
15054         * object.h: Add a new field to TypedRef to simplify the implementation
15055         of the REFANY opcodes in the JIT.
15056
15057         * icall.c: Make use of the new field.
15058
15059         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
15060         dynamically.
15061
15062 2003-10-15  Martin Baulig  <martin@ximian.com>
15063
15064         * class.c (mono_class_from_gen_param): Renamed to
15065         mono_class_from_generic_parameter() and moved most of the
15066         functionality from mono_reflection_define_generic_parameter()
15067         here; ie. we create a "real" class here.
15068         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
15069         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
15070         previously been called.
15071
15072         * class.h (MonoGenericParam): Moved the declaration of this struct
15073         here from metadata.h and added `MonoMethod *method'.
15074
15075         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
15076         interncall.
15077
15078         * loader.c (mono_get_method_from_token): If we have any generic
15079         parameters, call mono_metadata_load_generic_params() to read them
15080         from the MONO_TABLE_GENERICPAR.
15081
15082         * metadata.c (mono_metadata_load_generic_params): Added
15083         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
15084
15085         * metadata.h (MonoMethodSignature): Replaced
15086         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
15087         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
15088
15089         * reflection.c (mono_reflection_define_generic_parameter): Moved
15090         most of the functionality into the new
15091         mono_class_from_generic_parameter(); set the `method' field if
15092         we're a method parameter.       
15093
15094 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
15095
15096         * marshal.c (emit_struct_conv): if native size is 0
15097         emit no code.
15098
15099 2003-10-14  Martin Baulig  <martin@ximian.com>
15100
15101         * icall.c: The generics API has changed in the spec since it was
15102         added to System.Type; these modifications make it match the spec
15103         again.
15104         (ves_icall_Type_GetGenericParameters): Renamed to
15105         `ves_icall_Type_GetGenericArguments'.
15106         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
15107         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
15108         `ves_icall_MonoType_get_HasGenericArguments'.
15109         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
15110         `ves_icall_MonoType_get_IsGenericParameter'.
15111         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
15112         this is no interncall anymore.
15113         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
15114         `ves_icall_TypeBuilder_get_IsGenericParameter'.
15115
15116 2003-10-14  Martin Baulig  <martin@ximian.com>
15117
15118         * reflection.c (mono_reflection_bind_generic_parameters): Also
15119         inflate generic methods if we're reading the class from IL.
15120
15121 2003-10-13  Martin Baulig  <martin@ximian.com>
15122
15123         * reflection.c (mono_reflection_define_generic_parameter): This
15124         method isn't called directly from the icall anymore; take a
15125         `MonoReflectionAssemblyBuilder *' so we can use this for type and
15126         method generic parameters.
15127         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
15128         (method_builder_encode_signature): Encode generic parameters.
15129         (mono_image_get_method_info): Write generic params to the
15130         MONO_TABLE_GENERICPARAM table.
15131
15132         * reflection.h (MonoReflectionMethodBuilder): Added
15133         `MonoArray *generic_params'.
15134
15135         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
15136
15137         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
15138         wrapper for mono_reflection_define_generic_parameter().
15139         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
15140
15141 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
15142
15143         * marshal.h: Add missing function to fix build.
15144
15145         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
15146         the SetLastError pinvoke attribute.
15147
15148         * marshal.c (mono_marshal_set_last_error): New helper function called
15149         by the generated code.
15150         
15151         * marshal.c (mono_mb_emit_branch): New helper function.
15152
15153         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
15154
15155         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15156         classes as parameters and return values of delegates. Fixes #29256. 
15157
15158 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
15159
15160         * locales.c: use gint32 in non HAVE_ICU case
15161
15162 2003-10-11  Martin Baulig  <martin@ximian.com>
15163
15164         * mono-debug.c (mono_debug_add_method): Added a workaround for
15165         bug #48591.
15166
15167 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
15168
15169         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
15170         delegates passed to native code must use the STDCALL calling 
15171         convention. Fixes #35987.
15172
15173 2003-10-10  Martin Baulig  <martin@ximian.com>
15174
15175         * class.c (inflate_generic_type): If we're inflating for a generic
15176         type instance (and not for a generic method), return
15177         MONO_TYPE_MVAR unchanged.
15178
15179 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15180
15181         * string-icalls.c: Join ignores null strings in the source array.
15182         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
15183         * threads.c: GetAvailableTheads is slightly more accurate.
15184
15185 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
15186
15187         * threads.h threads.c : add mono_threads_set_default_stacksize
15188         and pass default to CreateThread calls.
15189
15190 2003-10-09  Dick Porter  <dick@ximian.com>
15191
15192         * icall.c:
15193         * locales.h:
15194         * locales.c: Internal calls for constructing CultureInfo and
15195         related objects from libicu (if its available.)
15196
15197 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
15198
15199         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
15200
15201 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15202
15203         * threadpool.c: added an argument to async_invoke_thread that is the
15204         item to process, pass the MonoAsyncResult to the thread start function
15205         when creating a new thread. This way we don't need to acquire any lock
15206         when we're creating a new thread. Readded a semaphore for faster
15207         response times (instead of that Sleep i added).
15208
15209 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
15210
15211         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
15212         get daylight change dates better on Windows, fix handling
15213         of platforms without tm_gmtoff.
15214
15215 2003-10-06  Martin Baulig  <martin@ximian.com>
15216
15217         * class.c (inflate_generic_method): Renamed to
15218         mono_class_inflate_generic_method() and made public.
15219         (mono_class_init): Don't inflate the generic methods here.
15220         (mono_class_from_generic): Added `gboolean inflate_methods'
15221         argument.  Inflate the methods here.
15222
15223         * loader.c (mono_method_get_param_names): Ignore instances of
15224         generic types for the moment.
15225
15226         * reflection.c (fixup_method): Added support for inflated methods.
15227         (mono_image_create_token): Use mono_image_get_methodref_token()
15228         for inflated methods.
15229         (mono_custom_attrs_from_param): Ignore instances of generic types
15230         for the moment.
15231         (mono_reflection_bind_generic_parameters): New public function.
15232         Moved all the functionality from
15233         ves_icall_Type_BindGenericParameters() here and added support for
15234         dynamic types.
15235         (mono_reflection_define_generic_parameter): Initialize
15236         `klass->methods' here.
15237
15238         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
15239         functionality into mono_reflection_define_generic_parameter().
15240         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
15241         TypeBuilder, return that TypeBuilder.
15242
15243 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15244
15245         * appdomain.c: removed mono_delegate_semaphore.
15246
15247         * threadpool.c:
15248         (mono_thread_pool_add): moved hash table creation inside and the thread 
15249         creation outside of the critical region.
15250         (mono_thread_pool_finish): removed obsolete code.
15251         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
15252         continue or exit the thread depending on the queue.
15253
15254 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
15255
15256         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
15257         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
15258         handle more bool marshalling options
15259
15260 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
15261
15262         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
15263         arrays of structs. Also add a more descriptive error message when
15264         a structure member is marshalled as LPArray.
15265
15266 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
15267
15268         * marshal.c (mono_marshal_get_native_wrapper): Add support for
15269         marshalling arrays of complex types. Fixes #29098. Also remove an
15270         usused and incomplete function.
15271
15272 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
15273
15274         * gc.c: report heap_size - free_bytes as total memory allocated
15275         (bug#49362).
15276
15277 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
15278
15279         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
15280         fix timezone handling problems on Windows.
15281         
15282         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
15283         asserts when the year is outside the range handled by ms the functions.
15284
15285         * class.c (setup_interface_offsets): If the class is an interface,
15286         fill out its interface_offsets slot.
15287
15288 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15289
15290         * threadpool.c: mark threadpool threads as background.
15291
15292 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
15293
15294         * decimal.c - define DECINLINE to nothing if not using GCC
15295
15296 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
15297
15298         * assembly.c: More refcount fixes.
15299
15300 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15301
15302         * string-icalls.c: if we're not trimming, return the same string.
15303         When not splitting, don't create a new string.
15304
15305 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15306
15307         * image.c:
15308         (mono_image_open): increment the ref_count inside the critical section.
15309
15310 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
15311
15312         * image.c (mono_image_open): Fix reference counting bug.
15313
15314 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
15315
15316         * marshal.c (mono_marshal_type_size) struct alignment changed for 
15317         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
15318         64bits. Avoid leak in mono_marshal_get_native_wrapper when
15319         mono_lookup_pinvoke_call throws.        
15320
15321 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
15322
15323         * reflection.c (mono_reflection_parse_type): Fix #49114.
15324
15325         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
15326         temporary workaround for cygwin header problem.
15327
15328         * object.c (mono_object_isinst): Synchronize this with the code
15329         generated by the JIT for casts.
15330
15331 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
15332
15333         * reflection.c (encode_type): Fix #38332.
15334
15335 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
15336
15337         * marshal.c (mono_marshal_method_from_wrapper): New function to return
15338         the original method from the wrapper method.
15339
15340 2003-09-25  Martin Baulig  <martin@ximian.com>
15341
15342         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
15343         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
15344         (ves_icall_Type_get_IsGenericInstance): New interncall.
15345
15346 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
15347
15348         * object.c: fix cast warning in big endian code.
15349
15350 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
15351
15352         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
15353         
15354 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15355
15356         * assembly.c: don't call check_env from mono_assembly_load. It's
15357         already done once in mono_assemblies_init and may cause headaches when
15358         multiple threads are loading assemblies.
15359
15360 2003-09-19  Martin Baulig  <martin@ximian.com>
15361
15362         * reflection.c (mono_reflection_define_generic_parameter): Don't
15363         allocate `klass->methods', set `klass->flags' to
15364         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
15365
15366 2003-09-18  Martin Baulig  <martin@ximian.com>
15367
15368         * class.c (mono_class_init): Don't create `class->methods' if it's
15369         already initialized.
15370
15371         * metadata.c (mono_metadata_load_generic_params): Make this
15372         actually work.
15373
15374         * reflection.c (mono_reflection_define_generic_parameter): Set
15375         parent class and interfaces from the constraints.
15376
15377         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
15378         to keep this struct in sync with the declaration in TypeBuilder.cs.
15379
15380 2003-09-17  Martin Baulig  <martin@ximian.com>
15381
15382         * metadata.h (MonoType): Replaced the data's `int type_param'
15383         field with `MonoGenericParam *generic_param'.
15384         (MonoGenericParam): Added `MonoClass *klass'.
15385
15386         * class.c (mono_class_from_gen_param): Removed the
15387         `MonoImage *image' and `int type_num' arguments.
15388
15389         * metadata.c (mono_metadata_parse_generic_param): New static
15390         method; creates a MonoGenericParam which just contains the index.
15391         (do_mono_metadata_parse_type): Call
15392         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
15393         MONO_TYPE_MVAR.
15394
15395         * reflection.c (mono_image_typedef_or_ref): Generic type
15396         parameters may be in the same assembly, but never use a typedef
15397         for them.
15398         (mono_reflection_define_generic_parameter): We're now creating a
15399         "real" class for the type parameter; it's now safe to call
15400         mono_class_from_mono_type() on the class'es type, it'll do the
15401         right thing.
15402
15403 2003-09-16  Martin Baulig  <martin@ximian.com>
15404
15405         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
15406         `symfile->range_entry_size' and `symfile->class_entry_size' here;
15407         the `symfile' data structure must be fully initialized before it
15408         gets added to the table.
15409
15410 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
15411
15412         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
15413
15414         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
15415         class init trampolines.
15416
15417 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
15418
15419         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
15420         to the built-in profiler to turn off time and allocation profiling
15421         respectively.
15422
15423 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
15424
15425         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
15426         g_direct_equal.
15427
15428         * debug-helpers.c (mono_method_full_name): Print the wrapper type
15429         in human readable form.
15430
15431 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
15432
15433         * reflection.c icall.c: Fixed warnings.
15434
15435         * image.c (load_class_names): Use a temporary hash table to hold the
15436         namespaces in order to avoid doing many string comparisons.
15437
15438         * image.h: Fix typo.
15439
15440         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
15441         Pass NULL instead of g_direct_equal to the GHashTable constructor 
15442         since the NULL case is short-circuited inside g_hash_table_lookup, 
15443         leading to better performance.  
15444
15445         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
15446         obtain the first custom attribute for a given index. Depends on the
15447         CustomAttribute table being sorted by the parent field.
15448
15449         * reflection.c (mono_custom_attrs_from_index): Use the new function 
15450         for better performance.
15451
15452 2003-09-07  Martin Baulig  <martin@ximian.com>
15453
15454         * class.c (mono_class_init): If we're a generic instance, inflate
15455         all our methods instead of loading them from the image.
15456         (mono_class_from_generic): Set `class->methods = gklass->methods'.
15457
15458 2003-09-07  Martin Baulig  <martin@ximian.com>
15459
15460         * mono-debug-debugger.c: Added support for constructors.
15461
15462 2003-09-06  Martin Baulig  <martin@ximian.com>
15463
15464         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
15465         New interncall.
15466
15467         * reflection.c (mono_reflection_setup_generic_class): Call
15468         ensure_runtime_vtable() to create the vtable.
15469
15470 2003-09-05  Martin Baulig  <martin@ximian.com>
15471
15472         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
15473         MONO_TYPE_MVAR.
15474
15475 2003-09-04  Martin Baulig  <martin@ximian.com>
15476
15477         * reflection.c (mono_reflection_define_generic_parameter): Generic
15478         parameters start with zero.
15479
15480 2003-09-04  Martin Baulig  <martin@ximian.com>
15481
15482         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15483
15484         * reflection.h (MonoReflectionGenericParam): New typedef.
15485         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
15486         the generic parameters from the managed TypeBuilder.
15487
15488         * reflection.c (mono_reflection_define_generic_parameter): New function.
15489         (mono_reflection_create_runtime_class): Encode generic parameters.
15490         (mono_reflection_setup_generic_class): New function; this is
15491         called after adding adding all generic params to the TypeBuilder.
15492         (encode_type): Added MONO_TYPE_VAR.
15493
15494 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
15495
15496         * class.h class.c (mono_class_needs_cctor_run): Moved this method
15497         here from the JIT.
15498
15499         * assembly.h assembly.c: Moved the AOT loading code into an assembly
15500         load hook.
15501
15502 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
15503
15504         * reflection.h reflection.c class.h class.c: Delete duplicate 
15505         definition of mono_type_get_name () from reflection.c and export the
15506         one in class.c.
15507
15508         * class.c: Class loading fixes from Bernie Solomon 
15509         (bernard@ugsolutions.com).
15510
15511         * reflection.c: Endianness fixes from Bernie Solomon 
15512         (bernard@ugsolutions.com).
15513         
15514 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
15515
15516         * assembly.h assembly.c: Define a file format version for AOT
15517         libraries.
15518         
15519         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
15520
15521         * appdomain.h (MonoJitInfo): New field to determine whenever the
15522         code is domain neutral.
15523         
15524 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
15525
15526         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
15527
15528 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
15529
15530         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
15531         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
15532         Avoid caching the result since strings must be domain specific. Fixes
15533         #48050.
15534
15535 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
15536
15537         * marshal.c (mono_marshal_init): Make this callable multiple times
15538         since it is hard to find a correct place to call it.
15539
15540         * object.c (mono_runtime_class_init): Execute static constructors in
15541         the correct appdomain.
15542
15543         * image.c (build_guid_table): Handle the case when multiple images have
15544         the same GUID.
15545
15546 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15547
15548         * icall.c: added a couple of icalls for System.Web.
15549
15550 2003-08-28  Martin Baulig  <martin@ximian.com>
15551
15552         * icall.c (ves_icall_Type_BindGenericParameters): Use
15553         `klass->generic_inst' instead of `&klass->byval_arg' in the
15554         mono_type_get_object() call.  The returned type must be
15555         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
15556
15557 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
15558
15559         * NOTES: New file.
15560
15561         * object.c (mono_class_proxy_vtable): Make it thread safe.
15562
15563         * pedump.c: Fix warning.
15564
15565         * object.c appdomain.h: Get rid of metadata_section. 
15566         It is no longer needed and it was causing deadlocks with domain->lock.
15567
15568         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
15569
15570 2003-08-26  Martin Baulig  <martin@ximian.com>
15571
15572         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
15573
15574 2003-08-26  Martin Baulig  <martin@ximian.com>
15575
15576         * pedump.c (main): Call mono_metadata_init(),
15577         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
15578         and mono_loader_init().
15579
15580 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
15581
15582         * loader.h: Add missing include to fix build.
15583
15584         * image.h: mono_image_load_references is no more.
15585
15586         * assembly.c: Reworked assembly loading to make it really thread safe.
15587         After these changes, the assembly returned by mono_assembly_open is
15588         fully initialized, i.e. all its references assemblies are loaded.
15589
15590         * assembly.c (mono_image_load_references): Renamed to 
15591         mono_assembly_load_references, and made private, since clients no
15592         longer need to call it.
15593
15594         * class.c: Removed calls to mono_assembly_load_references, since it was
15595         a source of deadlocks.
15596
15597         * loader.h loader.c class.h class.c: Protect data structures using a 
15598         new lock, the loader lock.
15599
15600         * class.c (mono_class_setup_vtable): Create temporary hash tables and
15601         GPtrArrays only when needed.
15602
15603         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
15604         into empty structures by mcs. Fixes pinvoke7.cs.
15605         
15606         * domain.c (mono_init): Call a new initialization function.
15607
15608         * appdomain.c (mono_runtime_init): Call the new initializer function
15609         of the marshal module.
15610
15611         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
15612         inserted into empty structures by mcs. Fixes pinvoke7.cs.
15613
15614         * marshal.h marshal.c: Added locks around the wrapper caches to make
15615         this module thread safe.
15616
15617         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
15618         this argument. Fixes pinvoke1.exe.
15619
15620 2003-08-25  Lluis Sanchez <lluis@ximian.com>
15621
15622         * object.h: Added call_type field to MonoMethodMessage and the corresponding
15623         enumeration of values. Removed fields to store remote call output values in
15624         MonoAsyncResult. Not needed any more.
15625         * object.c: Initialize call_type and async_result fields in mono_message_init.
15626         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
15627         dispatching the message.
15628         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
15629         async call to finish. To do it use a message with EndInvoke call type.
15630
15631 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
15632
15633         * loader.h loader.c (mono_method_hash_marhal_info): New function which
15634         determines whenever a method has marshalling info.
15635
15636 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15637
15638         * assembly.c: fix the build on windows.
15639
15640 2003-08-22 Lluis Sanchez <lluis@ximian.com>
15641
15642         * object.cs: Fixed bug #47785.
15643
15644 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
15645
15646         * string-icalls.c (StringReplace): If their are no occurances of
15647         the old string found return a reference to the supplied
15648         string. This saves some memory and matches MS behavoir.
15649         
15650 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15651
15652         * socket-io.c: fixed compilation for systems that define AF_INET6
15653         and don't define SOL_IP/SOL_IPV6.
15654
15655 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
15656
15657         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
15658         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
15659
15660         * rawbuffer.c rawbuffer.h: Make this module thread safe.
15661
15662         * domain.c: Make this module thread safe.
15663
15664         * domain.c (mono_init): Call new initialization function.
15665
15666         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
15667         reference types too. Fixes #38812.
15668
15669         * image.c (mono_image_init): Fixed warnings.
15670
15671         * class.c (mono_class_from_typeref): Handle assembly load failure
15672         correctly.
15673
15674         * appdomain.c (add_assemblies_to_domain): Handle the case when
15675         the references of an assembly are not yet loaded.
15676
15677         * metadata.c image.c assembly.c: Moved initialization of global
15678         variables to a separate function called at startup since lazy 
15679         initialization of these variables is not thread safe.
15680         
15681         * image.c assembly.c: Made this module thread safe by adding locks in 
15682         the appropriate places.
15683
15684         * domain.c (mono_init): Call the new initialization functions of the
15685         three modules.
15686
15687 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
15688
15689         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
15690           make a direct call. It is proxy's work to make the call asynchronous.
15691           mono_delegate_end_invoke(): If the targe is a proxy, just collect
15692           the return values.
15693         * object.cs: mono_method_call_message_new(): read AsyncResult and
15694           state object from parameters list, if this info is requested.
15695         * object.h: Added fields to store remote call output values in
15696           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
15697
15698 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15699
15700         * object.h: add needed fields to MonoThread.
15701         * threads.c, threads.h: allow registering a function to cleanup data
15702         allocated per thread by the JIT.
15703
15704 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15705
15706         * loader.h: portability fix by Bernie Solomon
15707         * <bernard@ugsolutions.com>.
15708
15709 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
15710
15711         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
15712         return a MonoArray. This simplifies the code and also ensures that
15713         the cache allways contains an object reference as a value.
15714
15715         * icall.c (ves_icall_get_parameter_info): Simplified using the new
15716         function.
15717
15718 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15719
15720         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
15721         fixes a problem with byte ordering when getting the address family for
15722         a socket.
15723
15724 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
15725
15726         * .cvsignore: Added monosn.
15727
15728         * reflection.h reflection.c loader.c: Added support for parameter
15729         marshalling to dynamically created types. Fixes #47295.
15730
15731 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
15732
15733         * rand.c: remove useless warnings.
15734
15735 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15736
15737         * class.c: implemented ldtoken for methods and fieldrefs.
15738
15739 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15740
15741         * threadpool.c: when mono_async_invoke was called, no one took care of
15742         monitoring the queue. So if the method invoked took some time and we
15743         got new async invoke requests after 500 ms (the thread created waited
15744         that long in WaitForSingleObject), the new async invoke was not called
15745         until the previous one finished.
15746
15747         This is fixed now. Thanks to Totte for helping with it.
15748
15749 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15750
15751         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
15752
15753 2003-08-11  Martin Baulig  <martin@ximian.com>
15754
15755         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
15756
15757 2003-08-06  Martin Baulig  <martin@ximian.com>
15758
15759         * mono-debug-debugger.c: Added support for static fields,
15760         properties and methods.
15761
15762 2003-08-06  Martin Baulig  <martin@ximian.com>
15763
15764         * mono-debug-debugger.c: Don't store the MonoString's vtable to
15765         make this work for applications with multiple application domains.
15766
15767 2003-08-04  Martin Baulig  <martin@ximian.com>
15768
15769         * mono-debug-debugger.c: Completely reworked the type support; the
15770         most important thing is that we're now just using one single
15771         `MonoType' instance per type.
15772
15773 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
15774
15775         * mono-endian.h, mono-endian.c, icall.c: Added icall
15776         ves_icall_System_Double_AssertEndianity to assert double word endianity
15777         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
15778
15779 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15780
15781         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
15782         support, icalls and fixes.
15783
15784 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
15785
15786         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
15787         classes that are a punctuation character in .NET is not the same a
15788         g_unichar_ispunct.
15789
15790 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15791
15792         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
15793
15794 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
15795
15796         * icall.c: Add new MemCopy internalcall.
15797         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
15798         Simplified code; It is not necessary to handle all the cases here,
15799         as the C# code takes care of it.  Only handle the case of the name
15800         resource embedded into the assembly.
15801
15802         Changed signature to return the data pointer and the size of the
15803         data. 
15804
15805 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
15806
15807         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
15808         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
15809
15810 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15811
15812         * socket-io.c: ignore EINTR error in select.
15813
15814 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15815
15816         * class.h, class.c: removed unused subclasses field in MonoClass.
15817
15818 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15819
15820         * icall.c: improve fix of get_base_definition(). If the parent class
15821           doesn't have the mehod, look at the parent of the parent.
15822         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
15823           to check if a parameter is an in or out parameter
15824           (PARAM_ATTRIBUTE_IN is not set by default).
15825           mono_method_return_message_restore(): Use mono_class_value_size to
15826           get the size of a value type. mono_type_stack_size (parameterType)
15827           does not return the correct value if parameterType is byRef.
15828           mono_load_remote_field(), mono_load_remote_field_new(),
15829           mono_store_remote_field(), mono_store_remote_field_new():
15830           raise exception if the remote call returns an exception.
15831
15832 2003-07-28  Martin Baulig  <martin@ximian.com>
15833
15834         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
15835         method.  This is a wrapper around mono_runtime_invoke() which
15836         boxes the instance object if neccessary.
15837
15838 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15839
15840         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
15841         metadata.h, row-indexes.h, verify.c: first cut of generics support.
15842
15843 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15844
15845         * icall.c: disable mcs bug workaround.
15846
15847 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
15848
15849         * object.c (mono_runtime_class_init): Take the metadata_section
15850         mutex before obtaining the domain mutex.
15851
15852         * appdomain.h: Added definition of metadata_section mutex here. 
15853
15854         * object.c: define metadata_mutex here.
15855
15856 2003-07-24  Ravi Pratap  <ravi@ximian.com>
15857
15858         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
15859         fixed.
15860
15861 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
15862
15863         * reflection.c: Fix bug #46669
15864
15865 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15866
15867         * exception.c:
15868         * exception.h:
15869         * icall.c:
15870         * object.h: fill in the type name for TypeLoadException.
15871
15872 2003-07-23  Ravi Pratap  <ravi@ximian.com>
15873
15874         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
15875         relationship between TypeBuilders while compiling corlib) and bug
15876         45993 (Array types returned from the runtime while compiling
15877         corlib were from the loaded corlib).
15878
15879 2003-07-22  Martin Baulig  <martin@ximian.com>
15880
15881         * mono-debug-debugger.c: Reworked the type support a bit more;
15882         distinguish between types and classes.
15883
15884 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
15885
15886         * icall.c: add IsArrayImpl icall.
15887
15888 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
15889
15890         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
15891         initializing real_size only once. Also fix bug #46602.
15892
15893 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
15894
15895         * object.c: Renamed mono_metadata_section to metadata_section.
15896
15897 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
15898
15899         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
15900           empty array if the type is an array. Fixed.
15901           ves_icall_MonoMethod_get_base_definition: if the base method
15902           is abstract, get the MethodInfo from the list of methods of
15903           the class.
15904         * reflection.c: ParameterInfo.PositionImpl should be zero-based
15905           and it was 1-based. Fixed in mono_param_get_objects.
15906
15907 2003-07-20  Martin Baulig  <martin@ximian.com>
15908
15909         * mono-debug.h: Set version number to 31.
15910         (mono_debug_init): Added `MonoDomain *' argument.
15911
15912         * mono-debug-debugger.c: Reworked the type support; explicitly
15913         tell the debugger about builtin types; pass the `klass' address to
15914         the debugger.
15915
15916 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
15917
15918         * image.c: Allow new metadata tables to be loaded without a
15919         warning. Also update the warning message to give the new constant value.
15920                 
15921 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
15922
15923         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
15924         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
15925         array type representation changes.
15926
15927 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
15928
15929         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
15930         on Environment.Exit () call.
15931
15932 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15933
15934         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
15935         requires a matching corlib.
15936
15937 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15938
15939         * Changelog: My editor decided to add a CR to each line. Sorry about that.
15940           Committed again without the CRs.
15941         
15942 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15943
15944         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
15945           getting it from the "this" socket instance. Did not work
15946           if the socket is a subclass of Socket.
15947           Also fixed bug #35371.
15948
15949 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
15950
15951         * metadata.c: fixed size for TypedByRef.
15952         * loader.c: when searching for a method, consider the vararg amrker.
15953         * unicode.c, decimal.c: constify some arrays.
15954
15955 2003-07-15  Dick Porter  <dick@ximian.com>
15956
15957         * socket-io.c: Fixed compilation for gcc < 3.2.
15958
15959         Fixed compilation for machines that don't have AF_INET6 (thanks to
15960         Bernie Solomon <bernard@ugsolutions.com> for that part.)
15961
15962         Fixed compile warnings.
15963         
15964         Fixed formatting and line endings.
15965
15966 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
15967
15968         * socket-io.h:
15969         * socket-io.c: Added IPv6 support.
15970
15971 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
15972
15973         * class.c (mono_class_is_assignable_from): New function to implement
15974         the is_assignable_from logic. Used by mono_object_isinst, 
15975         Type::IsAssignableFrom () and the interpreter.
15976
15977         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
15978         Object, even interfaces.
15979         
15980         * object.c (mono_object_isinst): Implement in terms of 
15981         is_assignable_from.
15982
15983         * icall.c (ves_icall_type_is_assignable_from): New icall.
15984
15985 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
15986
15987         * domain.c (foreach_domain): fix compiler warning.
15988
15989 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
15990
15991         * image.c (load_metadata_ptrs): use g_strndup because strndup is
15992         not available on all plattforms
15993
15994 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
15995
15996         * image.h image.c: Store the metadata version string in MonoImage.
15997         * icall.c: New icall to retrieve the image version.
15998         * reflection.c (create_dynamic_image): Fill in the image version field
15999         * reflection.c (build_compressed_metadata): Use the image version
16000         from the image structure.
16001
16002 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16003
16004         * appdomain.c: modified comment.
16005         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
16006         That will be its last iteration when mono_gc_cleanup is called from
16007         mono_runtime_cleanup and before the domain is unloaded.
16008
16009         Fixes bug #45962.
16010
16011 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
16012
16013         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
16014         attributes.
16015
16016 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16017
16018         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
16019         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
16020         Bernie Solomon <bernard@ugsolutions.com>.
16021
16022 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16023
16024         * object.c, object.h: provide mono_object_new_fast() for faster
16025         allocation in some special cases.
16026
16027 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
16028
16029         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
16030         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
16031
16032 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
16033
16034         * threadpool.c: fix leaks.
16035
16036 2003-07-01  Dick Porter  <dick@ximian.com>
16037
16038         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
16039         using MonoGHashTables.  Fixes threadpool bug posted to list.
16040
16041 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
16042
16043         * image.h, image.c: added support to load an assembly from a byte array.
16044         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
16045         assembly bundle support.
16046
16047 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
16048
16049         * threadpool.c (mono_thread_pool_add): keep a reference to the
16050         AsyncResult to prevent GC
16051
16052 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16053
16054         * class.c: leak fix.
16055
16056 2003-06-25  Dick Porter  <dick@ximian.com>
16057
16058         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
16059         for the async object, the WaitHandle object will close the handle.
16060         Fixes bug 45321.
16061
16062 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16063
16064         * class.c: in mono_array_class_get (), lookup from the hash with the
16065         same type we insert: this works around a bug in
16066         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
16067         lluis. The real fix will have to wait for after the release.
16068
16069 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16070
16071         * icall.c: fix memory leak when getting type members.
16072
16073 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16074
16075         * reflection.c: added more pubtoken special cases.
16076
16077 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
16078
16079         * class.c: handle field offset correctly when class size
16080         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
16081
16082 2003-06-20  Martin Baulig  <martin@ximian.com>
16083
16084         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
16085         *image' field.
16086
16087 2003-06-20  Martin Baulig  <martin@ximian.com>
16088
16089         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
16090
16091 2003-06-20  Martin Baulig  <martin@ximian.com>
16092
16093         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
16094         just distinguish between variables in registers and variables at
16095         an offset relative to a register.
16096
16097 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16098
16099         * icall.c: #ifdef out latest changes until mcs is fixed.
16100
16101 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16102
16103         * icall.c: return members in metadata order.
16104
16105 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16106
16107         * icall.c: avoid infinite loop in GetTimeZoneData.
16108
16109 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
16110
16111         * icall.c: added Marshal.Prelink/All icalls.
16112
16113 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16114
16115         * object.c, object.h: fix warnings and do some overflow checking
16116         when creating arrays.
16117
16118 2003-06-17  Dick Porter  <dick@ximian.com>
16119
16120         * file-io.h:
16121         * file-io.c: File attributes need to be tweaked slightly when
16122         passed from the managed to the w32 world.
16123
16124 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16125         * profiler.h profiler-private.h profiler.c: Rework last patch
16126         based on suggestion by Paolo.
16127         
16128 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16129
16130         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
16131         instruction level coverage data collection.
16132         * profiler.h profiler.c (: Added new callback function which can be
16133         used by the profiler to limit which functions should have coverage
16134         instrumentation.
16135         * profiler.c (mono_profiler_load): Call g_module_build_path to
16136         generate the file name of the profiler library.
16137
16138 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16139
16140         * profiler.c, profiler.h, profiler-private.h: added basic block 
16141         coverage profiling API.
16142
16143 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
16144
16145         * reflection.c (mono_reflection_create_runtime_class): Add support
16146         for events in dynamically generated code.
16147
16148         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
16149         not allocated.
16150
16151 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16152
16153         * icall.c: when getting timezone info, return reasonable values if we
16154         can't get the actual data.
16155
16156 2003-06-14  Dick Porter  <dick@ximian.com>
16157
16158         * threads.c (start_wrapper): Remove the reference to the thread
16159         object in the TLS data, so the thread object can be finalized.
16160         This won't be reached if the thread threw an uncaught exception,
16161         so those thread handles will stay referenced :-( (This is due to
16162         missing support for scanning thread-specific data in the Boehm GC
16163         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
16164
16165 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
16166
16167         * reflection.c: ensure streams and tables are first allocated with
16168         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
16169
16170 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16171
16172         * icall.c: fixed GetElementType for byrefs (bug# 44792).
16173
16174 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
16175
16176         * reflection.c (mono_reflection_create_runtime_class): Add support for
16177         properties to dynamically created classes.
16178         * reflection.c: Fix a few places where non-MonoObjects were inserted
16179         into the tokens hashtable.
16180
16181 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16182
16183         * object.c: some support to handle out of memory exceptions.
16184
16185 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
16186
16187         * marshal.c (mono_marshal_get_native_wrapper): support reference
16188         return types
16189
16190 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16191
16192         * object.h, object.c: more portability stuff from Bernie Solomon.
16193         Unexport mono_object_allocate(). Added mono_object_unbox ().
16194         Set exitcode when an unhandled exception is thrown.
16195
16196 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
16197
16198         * marshal.c (mono_marshal_get_native_wrapper): use custom
16199         marshaler for return types.
16200
16201 2003-06-10  Dick Porter  <dick@ximian.com>
16202
16203         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
16204         ip_mreq is available
16205
16206 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
16207
16208         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
16209         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
16210         by Bernie Solomon <bernard@ugsolutions.com>.
16211
16212 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
16213
16214         * gc.c (mono_gc_init): Avoid error message on shutdown when
16215         GC_DONT_GC=1 is used.
16216
16217         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
16218         New icall to return the GUID of a module.
16219
16220 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16221
16222         * class.c: ensure instance size always includes the parent's size
16223         even whem class size is set explicitly (fixes bug#44294).
16224
16225 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
16226
16227         * profiler.h, profiler.c: made the simple profiler thread-safe,
16228         get more accurate timing info. Allow the loading of an
16229         externally-developed profiler module.
16230
16231 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
16232
16233         * marshal.c (mono_marshal_get_native_wrapper): improved
16234         class/byref arguments.
16235         (mono_marshal_get_native_wrapper): better string marshaling support.
16236
16237 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
16238
16239         * class.c: ensure .pack and .size are handled correctly and
16240         simplified layout of static fields.
16241
16242 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
16243
16244         * appdomain.c
16245         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
16246
16247         * loader.c (mono_lookup_pinvoke_call): look for modules in the
16248         current directory (fix bug 44008)
16249
16250 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
16251
16252         * marshal.c (mono_marshal_get_native_wrapper): started support for
16253         custom marshalers.
16254         (mono_delegate_to_ftnptr): consider marshalling specifications
16255
16256 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
16257
16258         * reflection.c, reflection.h: emit custom marshal info.
16259
16260 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16261
16262         * object.c: free the GError.
16263         * icall.c: added CloseEvent_internal.
16264         * threads.[ch]:
16265         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
16266         call.
16267
16268 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
16269
16270         * loader.c (mono_method_get_signature): Add support for dynamic
16271         assemblies.
16272
16273 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
16274
16275         * reflection.c: fixed bug #43905.
16276
16277 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16278
16279         * class.c, domain.c, icall.c, metadata.h, object.h: support for
16280         handling TypedReference and ArgIterator.
16281         * loader.c, loader.h: added function to get signature at call site.
16282
16283 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16284
16285         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
16286         data readonly. Buglets and warning fixes. Some MethodSpec support.
16287
16288 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16289
16290         * class.h, class.c, object.c: remove relative numbering support.
16291
16292 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
16293
16294         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
16295         free the string, until we get a chance to fix Gtk#
16296
16297 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16298
16299         * marshal.c: revert last patch.
16300
16301 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
16302
16303         * icall.c: updates for new mono_class_vtable() not calling
16304         the type constructor anymore.
16305
16306 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16307
16308         * object.h, object.c: separate vtable creation from type
16309         initialization. Make running the .cctor thread safe.
16310
16311 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
16312
16313         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
16314
16315 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
16316
16317         * loader.c (mono_get_method): consider calling convention
16318
16319 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
16320
16321         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
16322         to return the invisible global type for a module.
16323
16324         * reflection.c (mono_image_build_metadata): Emit global fields too.
16325
16326 2003-05-20  Peter Williams  <peterw@ximian.com>
16327
16328         * loader.c (mono_lookup_internal_call): Add a few newlines.
16329
16330 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
16331
16332         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
16333         literal strings.
16334
16335         * appdomain.c (set_domain_search_path): Recalculate search path when
16336         AppDomainSetup.PrivateBinPath changes.
16337
16338         * object.c (mono_class_compute_gc_descriptor): It turns out some
16339         parts of the class libs (like System.Thread) holds pointers to
16340         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
16341         to treat native int a pointer type here.
16342         
16343 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
16344
16345         * appdomain.h, domain.c: add hashtable for jump target resolution.
16346
16347 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
16348
16349         * reflection.h reflection.c icall.c: Added new icalls 
16350         GetManifestResourceInfoInternal, GetModulesInternal and support
16351         infrastructure.
16352
16353 2003-05-16  Dick Porter  <dick@ximian.com>
16354
16355         * icall.c:
16356         * file-io.h:
16357         * file-io.c: Implement System.IO.MonoIO::GetTempPath
16358
16359 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
16360
16361         * object.c: mono_store_remote_field: little fix to previous patch.
16362
16363 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16364
16365         * class.c: add constructors to array classes.
16366         * icall.c: special case array construction for InternalInvoke (),
16367
16368 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
16369
16370         * class.h class.c reflection.c object.c: Added support for field
16371         defaults in dynamically generated classes.
16372
16373 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
16374
16375         * reflection.c: properly encode charset for ddlimport.
16376
16377 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
16378
16379         * threads.c: allow compiling without GC.
16380
16381 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
16382
16383         * appdomain.h, object.c, object.h, threads.c, threads.h: added
16384         handling of thread static data.
16385
16386 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16387
16388         * reflection.h, reflection.c: added mono_custom_attrs_free ().
16389
16390 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
16391
16392         * class.c (mono_array_class_get): always set the serializable flags
16393         (mono_array_class_get): always set the SEALED attribute for array types
16394
16395 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
16396
16397         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
16398         attributes (fix for bug 42021).
16399
16400 2003-05-12  Dick Porter  <dick@ximian.com>
16401
16402         * gc.c: Don't run finalizers when the finalizer thread is
16403         finishing up, because the default domain has already been
16404         destroyed.
16405
16406 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
16407
16408         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
16409         value is null, we should throw an exception.   This is slightly
16410         different than the other conventions used for the constructor.
16411
16412 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16413
16414         * socket-io.c: fixed windows build.
16415
16416 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16417
16418         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
16419
16420 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
16421
16422         * object.c (mono_string_new_wrapper): Compatibility fix for MS
16423         compilers.
16424
16425 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
16426
16427         * class.c (mono_class_layout_fields): Add experimental GC aware
16428         auto layout facility. Requires class library changes to work correctly.
16429
16430         (mono_class_setup_vtable): Avoid overriding explicit interface
16431         method implementations. Fixes iface3.exe test.
16432
16433         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
16434         object reference.
16435         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
16436         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
16437
16438         * metadata.h: Add new type classification macro which determines
16439         whenever the type holds an object reference.
16440
16441 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
16442
16443         * marshal.c (mono_marshal_get_native_wrapper): cleanups
16444
16445 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
16446
16447         * gc.c (finalizer_thread): Work around a GC bug.
16448
16449 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
16450
16451         * marshal.c (emit_struct_conv): allow unions
16452
16453         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
16454
16455 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
16456
16457         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
16458
16459 2003-05-06  Martin Baulig  <martin@ximian.com>
16460
16461         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
16462
16463 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16464
16465         * socket-io.c:
16466         (Select_internal): allow NULLs, don't create arrays if not needed.
16467         Coupled with Socket.cs changes.
16468
16469         * threadpool.c:
16470         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
16471         register a finalizer for it that will close the semaphore handle. This
16472         fixes the leak and make Lupus' test run with > 4080 loops.
16473
16474 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
16475
16476         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
16477         Jerome Laban (bug #42287)
16478
16479 2003-05-02  Martin Baulig  <martin@ximian.com>
16480
16481         * debug-mono-symfile.h
16482         (MonoSymbolFile): Moved declaration into mono-debug.h.
16483         (MonoDebugMethodJitInfo): Likewise.
16484         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
16485         argument.
16486         (_mono_debug_address_from_il_offset): Take a
16487         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
16488
16489         * mono-debug.h
16490         (MonoDebugDomainData): New struct.
16491         (mono_debug_get_domain_data): New function.
16492         (mono_debug_add_method): Take an additional `MonoDomain *'
16493         argument.
16494         (mono_debug_source_location_from_address): Likewise.
16495         (mono_debug_il_offset_from_address): Likewise.
16496         (mono_debug_address_from_il_offset): Likewise.
16497
16498 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
16499
16500         * reflection.c: one more check for null type in custom attrs.
16501
16502 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16503
16504         * reflection.c: avoid warning (comparison is always false due to limited
16505         range of data type).
16506
16507 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16508
16509         * icall.c: throw an exception in Type.GetField if the argument 'name'
16510         is NULL.
16511
16512 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
16513
16514         * reflection.c: fixed handling of enums in named arguments to custom
16515         attributes (bug #42123).
16516
16517 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
16518
16519         * reflection.c: use the right array element type and handle
16520         a null for a Type argument, too.
16521
16522 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
16523
16524         * reflection.c: handle arrays as arguments to custom attributes.
16525
16526 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
16527
16528         * reflection.c: handle a string value in a custom attr
16529         ctor that takes an object.
16530
16531 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
16532
16533         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
16534         (fix bug #42063)
16535
16536 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
16537
16538         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
16539
16540 2003-04-27  Martin Baulig  <martin@ximian.com>
16541
16542         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
16543         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
16544         MONO_DEBUGGER_EVENT_BREAKPOINT.
16545         (mono_breakpoint_trampoline_code): Removed.
16546         (mono_debugger_event_handler): The last argument is now a
16547         `guint32'.
16548         (mono_debugger_insert_breakpoint_full): Removed the
16549         `use_trampoline' argument.
16550         (mono_debugger_method_has_breakpoint): Likewise.
16551         (mono_debugger_trampoline_breakpoint_callback): Renamed to
16552         mono_debugger_breakpoint_callback(); take the method and
16553         breakpoint number as arguments.
16554
16555 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
16556
16557         * metadata.c: fix off by one when loading parameters attributes.
16558
16559 2003-04-24  Martin Baulig  <martin@ximian.com>
16560
16561         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
16562
16563 2003-04-24  Martin Baulig  <martin@ximian.com>
16564
16565         * mono-debug-debugger.c: Moved all code which interacts with the
16566         Mono Debugger here.
16567
16568         * debug-mono-symfile.c: This code now just deals with the symbol
16569         file itself, the debugger code is now in mono-debug-debugger.c.
16570
16571 2003-04-23  Martin Baulig  <martin@ximian.com>
16572
16573         * mono-debug.c (mono_debug_source_location_from_il_offset):
16574         New method; like mono_debug_source_location_from_address(), but
16575         takes an IL offset instead of a machine address.
16576
16577 2003-04-23  Martin Baulig  <martin@ximian.com>
16578
16579         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
16580         `line' field; this is now computed by the debugger.
16581
16582 2003-04-23  Martin Baulig  <martin@ximian.com>
16583
16584         * mono-debug.[ch]: New files.  This is the new debugging interface.
16585
16586         * mono-debug-debugger.[ch]: New files.  Moved all code which
16587         interacts with the Mono Debugger here.
16588
16589 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
16590
16591         * domain.c (mono_init): initialize mono_defaults.monitor_class
16592
16593 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
16594
16595         * reflection.c (method_encode_code): Add a spicy exception to help
16596         future compiler authors.
16597
16598 2003-04-21  Martin Baulig  <martin@ximian.com>
16599
16600         * icall.c
16601         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16602         Make this work with relative pathnames; g_filename_to_uri() needs
16603         an absolute filename.
16604
16605 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
16606
16607         * icall.c: Track name changes in Object and ValueType.
16608
16609 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
16610
16611         * metadata.c (mono_type_stack_size): size should be a multiple of
16612         sizeof (gpointer)
16613
16614 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16615
16616         * gc.c:
16617         (internal_domain_finalize): moved into mono_domain_finalize. No need
16618         to create another thread because the finalizers will be run in the
16619         finalizer thread.
16620         
16621         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
16622         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
16623         to be run (MS does this too).
16624
16625 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
16626
16627         * object.c (mono_class_compute_gc_descriptor): Update comment.
16628
16629         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
16630
16631         * image.h: Add synchronized wrapper cache.
16632
16633         * image.c (do_mono_image_open): Initialize cache.
16634
16635         * reflection.c (create_dynamic_mono_image): Initialize cache.
16636
16637 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16638
16639         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
16640         ves_icall_System_Buffer_ByteLengthInternal.
16641
16642 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16643
16644         * reflection.c: setup klass->nested_in earlier. Allow
16645         a dash in the assembly name.
16646
16647 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
16648
16649         * metadata.c (mono_type_to_unmanaged): dont access
16650         type->data.klass for MONO_TYPE_OBJECT
16651         (mono_type_to_unmanaged): consider System.Delegate class
16652
16653 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
16654
16655         * class.c: just setup supertypes in the proper place instead of
16656         initializing the full element class for arrays.
16657
16658 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16659
16660         * class.c: ensure the element class of arrays is initialized.
16661         Setup the supertype info for array classes, too.
16662
16663 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
16664
16665         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
16666
16667 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16668
16669         * Makefile.am: re-added -m option when running cygpath. This way,
16670         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
16671         separator.
16672         * mono-config.c: same codepath for locating mono config file for WIN32
16673         and the rest.
16674         * assembly.c: if mono_assembly_setrootdir is called, don't override
16675         the value set.
16676
16677 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16678
16679         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
16680         MONO_ASSEMBLIES variable.
16681
16682 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
16683
16684         * icall.c: added Assembly::GetNamespaces() icall.
16685
16686 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16687
16688         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
16689
16690 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
16691
16692         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
16693         * object.c: fixed bug in the construction of vtable for proxies
16694
16695 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
16696
16697         * object.c (mono_array_new): Mark mono_array_new as an icall.
16698
16699 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16700
16701         * class.c: fixed test for public method when overriding interfaces.
16702         Closes bug #40970.
16703
16704 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16705
16706         * appdomain.h, domain.c: added mono_domain_foreach() to
16707         be able to access the currently loaded appdomains.
16708         * object.c: make string interning work across sppdomains.
16709         Mark some functions for use as icalls.
16710
16711 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
16712
16713         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
16714
16715         * reflection.h reflection.c: Allocate long living data using 
16716         GC_MALLOC_ATOMIC so the collector does not need to scan it.
16717
16718         * reflection.c: Double the allocation size in streams instead of
16719         increasing it, to prevent unneccesary copying on large assemblies.
16720         
16721         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
16722         creation if the assembly does not have the Run flag set.
16723
16724 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
16725
16726         * class.h: avoid the C++ keywords in header files (Jerome Laban
16727         spotted and fixed this).
16728
16729 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16730
16731         * object.c:
16732         (mono_unhandled_exception): fill in the arguments for the
16733         UnhandledException event. Only trigger that event for the default
16734         domain (as MS does).
16735
16736 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
16737
16738         * object.c: Improve typed allocation stuff based on suggestions from
16739         Paolo. Also turn it on if the GC library supports it.
16740
16741 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16742
16743         * object.c object.h class.h: Added experimental typed allocation
16744         facility using the interfaces in gc_gcj.h.
16745
16746         * os/gc_wrapper.h: Added new include files.
16747         
16748 2003-04-03  Martin Baulig  <martin@ximian.com>
16749
16750         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
16751         which is not yet enabled by default.
16752
16753         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
16754         functions.
16755         (mono_gc_lock, mono_gc_unlock): New static functions.
16756
16757         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
16758         functions; stop/start the world for the garbage collector.  This
16759         is using the windows API; we need to complete the SuspendThread()/
16760         ResumeThread() implementation in the io-layer to make this work on Unix.
16761         (mono_gc_push_all_stacks): New public function; tells the garbage
16762         collector about the stack pointers from all managed threads.
16763
16764 2003-04-03  Martin Baulig  <martin@ximian.com>
16765
16766         * object.h (MonoThread): Added `gpointer stack_ptr'.
16767
16768         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
16769
16770 2003-04-03  Martin Baulig  <martin@ximian.com>
16771
16772         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
16773
16774 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16775
16776         * reflection.c (typebuilder_setup_fields): Initialize field.first and
16777         field.last.
16778
16779 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
16780
16781         * loader.c (mono_lookup_internal_call): Report the corlib that is
16782         out of sync.
16783
16784 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
16785
16786         * icall.c (ves_icall_type_GetTypeCode): fixed check for
16787         System.DBNull (it's class not valuetype).
16788
16789 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16790
16791         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
16792         if the array method was already assigned a token (fixes bug#40646).
16793
16794 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
16795
16796         * reflection.c (mono_reflection_get_type): Attempt type resolve even
16797         if no assembly is given.
16798
16799 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
16800
16801         * metadata.h: Added the new tables.
16802
16803         * row-indexes.h: Added definitions for new tables.
16804
16805         * metadata.c: Add schemas for new tables, and add support for
16806         computing the sizes of them.
16807
16808         * class.c: Update for handling the new type cases.
16809
16810 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
16811
16812         * metadata.h (MONO_TYPE_IS_VOID): new macro
16813
16814 2003-03-31  Martin Baulig  <martin@ximian.com>
16815
16816         * threads.h (MonoThreadCallbacks): Added `thread_created'.
16817
16818         * threads.c (mono_thread_new_init): Call `thread_created' in the
16819         mono_thread_callbacks.
16820
16821 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
16822
16823         * loader.h: added marshalbyrefobject_class to mono_defaults
16824         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
16825         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
16826           generation of output parameters.
16827           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
16828         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
16829           contextbound and the target object belongs to the context of the caller.
16830         * object.h: added context and unwrapped_server variables in MonoRealProxy.
16831         * object.c: Implemented support for interfaces and abstract classes
16832           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
16833           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
16834
16835 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
16836
16837         * class.h class.c (mono_class_is_subclass_of): New function.
16838         
16839         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
16840         routines for most common case (calls from ArrayList::ToArray).
16841
16842         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
16843         routine so programs which call Environment::Exit() can be profiled.
16844
16845         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
16846         Added MONO_ARCH_SAVE_REGS.
16847
16848         * icall.c (ves_icall_type_is_subtype_of): Use new function.
16849
16850 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
16851
16852         * blob.h: Add a couple of new MonoType types definitions.
16853
16854         * tabledefs.h: Add a couple of new call convs.
16855
16856 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
16857
16858         * reflection.h (MonoReflectionDynamicAssembly): track changes in
16859         the layout of the class.
16860
16861         * reflection.c (alloc_table): double the size on overflow to avoid
16862         unnecessary copying.
16863
16864         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
16865         avoid filling out metadata tables and blobs. Also set mb->ilgen to
16866         null so it can be garbage collected.
16867         
16868 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
16869
16870         * reflection.c (mono_reflection_get_type): Return the resolved type
16871         only if it is in the assembly we searched.
16872
16873         * reflection.c (ensure_runtime_vtable): Initialize method slots.
16874
16875         * class.c (mono_class_setup_vtable): Set the slot of the overriding
16876         method.
16877
16878 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16879
16880         * appdomain.c:
16881         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
16882         the right one is 'file:///blah', but MS allows it.
16883         * assembly.c:
16884         (mono_assembly_open): allow 'file://blah'
16885
16886         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
16887
16888 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
16889
16890         * socket-io.c: fixes bug #40310.
16891
16892 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
16893
16894         * reflection.c (mono_reflection_parse_type): handle deeply nested
16895         types correctly.
16896
16897         * reflection.c (mono_image_create_token): Use unique token values
16898         since they will be put into a hash table.
16899
16900         * class.c (mono_class_setup_vtable): If a method occurs in more than
16901         one place in the vtable, and it gets overriden, then change the
16902         other occurances too.
16903
16904         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
16905         object as return type.
16906
16907 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16908
16909         * icall.c: Deleted "ToString" implementation for double and float
16910         because they are full implemented in managed code.
16911
16912 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16913
16914         * reflection.c, reflection.h: implemented and exported functions
16915         to retrieve info about custom attributes.
16916
16917 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16918
16919         * appdomain.c: moved Uri handling to assembly.c
16920         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
16921         work when using a file Uri in *nix and windows.
16922
16923         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
16924         GetReferencedAssemblies.
16925
16926 2003-03-18  Dick Porter  <dick@ximian.com>
16927
16928         * icall.c: Rename a couple of internal calls
16929
16930         * threads.c: Set the thread state to Stopped when a thread exits.
16931         Fixes bug 39377.
16932
16933 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
16934
16935         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
16936         New icall.
16937
16938         * object.c (mono_class_vtable): fix warning.
16939
16940 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
16941
16942         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
16943
16944         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
16945         memory.
16946         (method_encode_clauses): Create exception info structures in the right
16947         order.
16948         (mono_reflection_setup_internal_class): Initialize supertypes field.
16949
16950         * class.c object.c: Handle interfaces which implement other interfaces 
16951         correctly.
16952
16953         * class.h class.c: Move the supertypes array initialization code into 
16954         a separate function so it can be used for dynamic types too. Also call
16955         it earlier, in mono_class_init(), since it can be used before the
16956         type is initialized.
16957
16958 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16959
16960         * Makefile.am:
16961         * assembly.c:
16962         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
16963
16964         * appdomain.c:
16965         * appdomain.h:
16966         * marshal.c:
16967         * object.c: remove warnings.
16968
16969 2003-03-13  Martin Baulig  <martin@ximian.com>
16970
16971         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
16972         (MonoDebugLexicalBlockEntry): New types.
16973
16974         * debug-mono-symfile.c
16975         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
16976
16977 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16978
16979         * process.c: ret can be any non-zero value accroding to MS doc.
16980
16981 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
16982
16983         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
16984         fixing a warning for a miss-used prototype, would have cause
16985         random memory corruption.
16986
16987 2003-03-07  Martin Baulig  <martin@ximian.com>
16988
16989         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
16990         getting really annoying ....
16991
16992 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
16993
16994         * reflection.c (fixup_method): added support for array methods.
16995
16996 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
16997
16998         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
16999         (pointed out by Michael Adams).
17000
17001 2003-03-04  Dick Porter  <dick@ximian.com>
17002
17003         * icall.c: Temporarily reverted the Double and Single ToString()
17004         change, because it broke nunit.
17005
17006 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
17007
17008         * object.h, threads.h: make include files compatible with C++
17009         (patch by Jerome Laban <jlaban@wanadoo.fr>).
17010
17011 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17012
17013         * icall.c: Erased ToString helper functions for Double and Single.
17014         Now, that implementations ar all in managed code (Double and Single
17015         Formatters).
17016
17017 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
17018
17019         * appdomain.c: Added method for initializing the default context of
17020         a domain. Added internal call for getting the default context.
17021         * appdomain.h: Added context variable in MonoDomain struct.
17022         * domain.c: mono_domain_set also sets the default context of the domain
17023         * icall.c: Mapped internal method InternalGetDefaultContext.
17024         * object.c: mono_object_get_virtual_method returns always a remoting
17025         wrapper if the object is a transparent proxy.
17026         mono_runtime_invoke_array: when creating an object by calling the
17027         constructor, if the created object is a proxy, then the constructor should
17028         be called using the a remoting wrapper.
17029
17030 2003-03-03  Dick Porter  <dick@ximian.com>
17031
17032         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
17033         variable so it compiles on solaris.  Problem spotted by
17034         Christopher Taylor <ct@cs.clemson.edu>
17035
17036 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17037
17038         * appdomain.c:
17039         (get_info_from_assembly_name): don't leak value.
17040
17041         * icall.c:
17042         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
17043         result.
17044
17045 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
17046
17047         * assembly.c: export mono_image_load_references ().
17048         * class.c: handle function pointers. mono_class_from_name() now
17049         supports nested type names directly.
17050
17051 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
17052
17053         * reflection.h reflection.c: Encode already created dynamic methods 
17054         and fields correctly as a DEF instead of a REF.
17055
17056         * reflection.c: Get rid of the force_ref argument to 
17057         mono_image_typedef_or_ref since it was wrong in the first place.
17058
17059         * string-icalls.c: add error checking to string constructors according
17060         to the MSDN docs.
17061
17062         * reflection.c: Emit types in the order their TypeBuilders were 
17063         created. Previously, a new table index was assigned to each type before
17064         the tables were emitted. This was wrong because the signature blob
17065         might already refer to a type by its original table index.
17066
17067 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
17068
17069         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
17070         change.
17071         
17072 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17073
17074         * Makefile.am: make assemblies dir have \ instead of / on windows.
17075
17076 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
17077
17078         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
17079         iterate over the NESTEDCLASS table using a linear search since the
17080         table is not guaranteed to be sorted by the secondary key.
17081
17082         * class.c (mono_class_create_from_typedef): fixed up call to
17083         mono_metadata_nesting_typedef.
17084         
17085 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
17086
17087         * marshal.c (mono_string_to_byvalstr): clear the memory as
17088         suggested by Jerome Laban <jlaban@wanadoo.fr>
17089
17090 2003-02-26  Dick Porter  <dick@ximian.com>
17091
17092         * process.c: Cope with padding in .rsrc blocks
17093
17094 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17095
17096         * metadata.h: reverted the filter_len change, it breaks reflection
17097         
17098 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17099
17100         * metadata.h: added a new field to store the filter_len
17101         
17102
17103 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
17104
17105         * reflection.c: handle custom attributes for types and members
17106         created with Reflection.Emit (bug#38422).
17107
17108 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
17109
17110         * reflection.c: define RTSpecialName automatically for constructors for
17111         compatibility with MS.NET.
17112
17113         * reflection.c (mono_reflection_create_runtime_class): initialize
17114         nested_in field of dynamically created classes.
17115
17116 2003-02-22  Martin Baulig  <martin@ximian.com>
17117
17118         * debug-mono-symfile.h: Incremented version number.
17119
17120 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17121
17122         * object.h icall.c process.c: fix warnings.
17123
17124 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17125
17126         * appdomain.h appdomain.c:
17127         (mono_domain_try_type_resolve): split the 
17128         name_or_tb argument into a name and a tb argument.
17129         (mono_domain_has_type_resolve): new function to check whenever the
17130         application has registered a TypeResolve event handler.
17131         
17132         * icall.c reflection.h reflection.c: move the type resolve logic into
17133         mono_reflection_get_type () so it will be invoked when 
17134         Assembly::GetType () is called.
17135
17136         * reflection.c:
17137         (mono_reflection_get_type): renamed to get_type_internal.
17138         (mono_reflection_get_type): fixed type name generation so it works 
17139         for nested types too.
17140         (mono_reflection_get_type): call has_type_resolve () to avoid the 
17141         costly type name generation if there is no resolve event handler.
17142
17143 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17144
17145         * class.c, image.c: load exported types from file references.
17146
17147 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
17148
17149         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
17150           used to cache the managed methods used to create proxies and make 
17151           remote invocation of methods.
17152         * class.h: Added in MonoVTable a flag to indicate that a class needs 
17153           to be remotely created.
17154         * object.c: Modified the method mono_class_vtable(). It now initializes 
17155           the remote flag of the vtable. Modified mono_object_new_specific(), 
17156           so now it checks the remote flag.
17157         * icall.c: Added a couple of internal methods, one for enabling instance 
17158           creation interception for a type, and one for creating objects bypassing
17159           the remote check.
17160
17161 2003-02-18  Martin Baulig  <martin@ximian.com>
17162
17163         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
17164         New interncall to get a method's metadata token.
17165
17166         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
17167         New interncall for the debugger.
17168
17169 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
17170
17171         * class.c (mono_class_setup_vtable): allocate supertype array
17172
17173 2003-02-18  Martin Baulig  <martin@ximian.com>
17174
17175         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
17176
17177 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17178
17179         * reflection.c:
17180         (assembly_name_to_aname): jump over unknown properties (i've found
17181         something like: 'type, assembly, version=xxx, custom=null, public...',
17182         so now will ignore custom=null and still get the rest of the values).
17183
17184 2003-02-17  Dick Porter  <dick@ximian.com>
17185
17186         * threads.c: Have Thread.Start() wait for a semaphore to signal
17187         that the thread has set up all its local data.  This fixes bug
17188         34323, where Abort() raced the new thread's TLS data.
17189
17190         Also removes the handle_store() call from start_wrapper, because
17191         threads are now always created suspended and there is no longer a
17192         race between the parent and child threads to store the info.
17193
17194 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
17195
17196         * image.c: explain the #- heap issue in a message, hopefully
17197         avoiding FAQs on mono-list.
17198
17199 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17200
17201         * icall.c:
17202         (GetEntryAssembly): if the domain has not invoked
17203         AppDomain.ExecuteAssembly yet, return the assembly of the default
17204         AppDomain.
17205
17206 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
17207
17208         * class.c (mono_ldtoken): make it work in dynamic assemblies.
17209
17210 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
17211
17212         * metadata.c, reflection.c: simple speedup to type hash
17213         and equals code.
17214
17215 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
17216
17217         * image.c, image.h, class.c, assembly.c: move module loading
17218         to MonoImage. When loading metadata, consider alignemnet from
17219         the start of metadata, not from the metadata address in memory.
17220
17221 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
17222
17223         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
17224         AssemblyBuilder objects. Factored out custom attribute creation into
17225         a separate function.
17226         (create_custom_attr): new function to create custom attributes.
17227
17228 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
17229
17230         * Makefile.am: Got tired of typing the full pathname to pedump.
17231         Until there is another option, am installing this.
17232
17233 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
17234
17235         * class.c (class_compute_field_layout): always set field->parent 
17236         (mono_ldtoken): use mono_defaults.fieldhandle_class;
17237
17238 2003-02-11  Dick Porter  <dick@ximian.com>
17239
17240         * threads-types.h:
17241         * monitor.c: Rewrote Monitor, making lock much faster and
17242         Pulse/Wait work as specified.  Also uses much fewer handles, and only
17243         creates them as needed.
17244
17245         * exception.c: Added SynchronizationLockException
17246
17247         * threads.c: Deleted old Monitor implementation.  The new one is
17248         in a new file.
17249
17250 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
17251
17252         * class.c: handled TypedReference type code. Set the correct size for
17253         class data. Setup interface_offsets for interface classes, too.
17254
17255 2003-02-09  Martin Baulig  <martin@ximian.com>
17256
17257         * debug-mono-symfile.h: Reflect latest symbol writer changes.
17258
17259 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
17260
17261         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
17262         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
17263         * object.c: fixed mono_object_get_virtual_method () for interfaces.
17264         * verify.c: check for code that runs after the end of the method.
17265
17266 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17267
17268         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
17269         "System.Math::Round2".
17270         * sysmath.h: Added Floor, Round and Round2 definitions.
17271         * sysmath.c: Modified certain functions that were not 100% compliant
17272         with MS.NET (math precision) and added the implementation of Floor,
17273         Round and Round2.
17274
17275 2003-02-07  Martin Baulig  <martin@ximian.com>
17276
17277         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
17278
17279 2003-02-07  Martin Baulig  <martin@ximian.com>
17280
17281         * debug-mono-symfile.c: Reflected latest symwriter changes.
17282         (mono_debug_create_mono_symbol_file): Removed.
17283         (mono_debug_open_mono_symbol_file): Take an argument which
17284         specifies whether to create a dynamic symbol file.
17285
17286 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
17287
17288         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
17289
17290 2003-02-05  Martin Baulig  <martin@ximian.com>
17291
17292         * reflection.c (mono_image_build_metadata): Make this public,
17293         protect it against being called multiple times, don't create
17294         resources and don't build the compressed metadata here.
17295         (mono_image_create_pefile): Do this here.
17296
17297         * icall.c
17298         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
17299
17300 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17301
17302         * socket-io.c: fixed bug #36322.
17303
17304 2003-02-06  Piers Haken <piersh@friskit.com>
17305
17306         * appdomain.[ch]:
17307         * class.h:
17308         * debug-mono-symfile.c:
17309         * icall.c:
17310         * loader.c:
17311         * mono-config.c:
17312         * monosn.c:
17313         * reflection.c:
17314         * socket-io.c: warning cleanups
17315
17316 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
17317
17318         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
17319         function. works like remoting invoke, but does a check for the Proxy first.
17320
17321 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
17322
17323         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
17324
17325 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
17326
17327         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
17328         array of pointers.
17329         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
17330         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
17331
17332         * object.c (mono_store_remote_field_new): used by the new jit
17333         instead of mono_store_remote_field
17334         (mono_load_remote_field_new): used by the new jit
17335         instead of mono_load_remote_field
17336
17337 2003-02-05  Patrik Torstensson
17338
17339         * appdomain.c: changed unload to take the domain id instead
17340         of domain
17341         
17342         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
17343
17344
17345 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17346
17347         * appdomain.c: don't look for assemblies in ApplicationBase if
17348         PrivateBinPathProbe is set.
17349
17350 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17351
17352         * object.c: make the first argument in main_args contain the absolute
17353         path to the assembly. Fixes bug #37511.
17354
17355 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17356
17357         * icall.c: get correct UTC offset for countries not using daylight
17358         time saving. Fixes bug #30030.
17359
17360 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17361
17362         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
17363         and 1 are the family).
17364
17365 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
17366
17367         * icall.c (ves_icall_InternalExecute): removed wrong assertion
17368
17369         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
17370
17371 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
17372
17373         * reflection.c: added support for SignatureHelper tokens, which is
17374         needed by the Calli opcode.
17375
17376         * reflection.h: track changes to SignatureHelper class.
17377
17378         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
17379
17380 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17381
17382         * appdomain.c: fixed loading assemblies from PrivateBinPath.
17383
17384 2003-02-03  Patrik Torstensson
17385         * appdomain.[c|h], domain.c : 
17386          - Added support for getting a domain via domain id
17387          - Support for setting and getting domain from System.AppDomain 
17388            (used in cross appdomain channel)
17389          - Added support for get/set for a MonoAppContext on a thread 
17390            (Context class in System.Runtime.Remoting.Contexts),
17391          - Removed hack in Get/SetData and ExecuteAssembly.
17392         
17393         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
17394         the managed world to get control when a proxy is created.
17395
17396         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
17397         
17398 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
17399
17400         * icall.c
17401         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17402         Populate the codebase field as well.
17403
17404 2003-02-02  Martin Baulig  <martin@ximian.com>
17405
17406         * debug-mono-symfile.c
17407         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
17408         (mono_debug_symfile_add_method): Allow interncalls.
17409
17410 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17411
17412         * icall.c: throw parse exception if strtod fails or the string is empty.
17413
17414 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
17415
17416         * marshal.c: handle object type separately from defined
17417         class types.
17418
17419 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
17420
17421         * marshal.c: handle NATIVE_LPSTR for strings when it's
17422         explicitly specified.
17423
17424 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
17425
17426         * reflection.c, reflection.h, icall.c: setup the reflection
17427         handle cache for ModuleBuilders and AssemblyBuilders.
17428
17429 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
17430
17431         * reflection.c (reflection_methodbuilder_to_mono_method): set
17432         pinvoke flag
17433
17434 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17435
17436         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
17437
17438 2003-01-29  Dick Porter  <dick@ximian.com>
17439
17440         * threads.c: No need for the fake_thread kludge now that Thread
17441         doesn't run a class constructor
17442         
17443 2003-01-29  Dick Porter  <dick@ximian.com>
17444
17445         * threads.c: Use g_direct_hash instead of the rather bogus
17446         g_int_hash
17447
17448 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
17449
17450         * marshal.c (mono_marshal_get_native_wrapper): add check for null
17451         (fix pinvoke12.exe)
17452         (mono_marshal_get_struct_to_ptr): generate valid IL code
17453         (mono_marshal_get_ptr_to_struct): generate valid IL code
17454         (*): correctly set sig->pinvoke, we need to memdup the signature
17455         to do that
17456
17457 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17458
17459         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
17460         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
17461
17462 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
17463
17464         * profiler.c: provide more callers information.
17465
17466 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
17467
17468         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
17469
17470         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
17471
17472         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
17473
17474 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17475
17476         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
17477         exception instead of going into an infinite loop on dates which it 
17478         can't yet handle.
17479
17480         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
17481         out-of-range exception if needed.
17482
17483         * class.c (mono_class_setup_vtable): allow a virtual method to provide
17484         an implementation for an interface method and to override an inherited
17485         method at the same time. 
17486         Imagine a scenario when a virtual method is used to override a
17487         virtual abstract method in a parent class, and this same method 
17488         provides an implementation for an method inherited from an interface. 
17489         In this case, the interface resolution code will set im->slot, which 
17490         means that the virtual method override pass will skip this method 
17491         which means a pointer to the abstract method inherited from the parent
17492         will remain in the vtable of this non-abstract class.
17493
17494         * class.c: (mono_class_setup_vtable): continue search for a real 
17495         method if only an abstract method is found.     
17496
17497 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
17498
17499         * reflection.c: add size to encoding for ByValStr and ByValArray
17500         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
17501
17502 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17503
17504         * class.c (mono_class_setup_vtable): pass the override info as an
17505         argument.
17506
17507         * class.c (mono_class_setup_vtable): set the slot of overriding methods
17508         correctly.
17509         
17510         * reflection.c (ensure_runtime_vtable); add support for method 
17511         overrides.
17512         
17513 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17514
17515         * reflection.c (resolution_scope_from_image): Hack to work to work with
17516         dynamic assemblies.
17517
17518         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
17519         added a 'force_ref' argument to force this function to allways return 
17520         a TypeRef. This is needed by mono_image_get_memberref_token ().
17521         
17522 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17523
17524         * reflection.c (mono_image_get_type_info): interfaces really don't have
17525         a parent.
17526
17527         * reflection.c (mono_image_basic_init): fill out missing fields of
17528         image structure.
17529
17530         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
17531         dynamic assemblies. This is required so dynamic assemblies show up in
17532         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
17533         Type::GetType() etc. This is consistent with MS behaviour.
17534
17535         * image.c image.h reflection.c: add newly created classes to the name 
17536         cache so mono_class_get () will find them.      
17537
17538 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17539
17540         First part of changes to get IKVM.NET running under mono.
17541         
17542         * appdomain.h, appdomain.c: added new function 
17543         mono_domain_try_type_resolve() which will emit TypeResolve events. 
17544         This function will call AppDomain::DoTypeResolve to do the actual work.
17545
17546         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
17547         moved existing code dealing with dynamic tokens to a new function 
17548         called mono_reflection_lookup_dynamic_token (). This function will 
17549         raise TypeResolve events when appropriate. Since reflection.c is not 
17550         part of libmetadata, a new hook function called 
17551         mono_lookup_dynamic_token() is added to class.c which will call this.
17552
17553         * assembly.h assembly.c: make the invoke_load_hook function public,
17554         so it can be called for dynamic assemblies.
17555
17556         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
17557
17558         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
17559         type isn't found.
17560
17561         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
17562         MonoGHashTable, since it contains pointers to objects which the GC 
17563         needs to track.
17564
17565         * assembly.c (search_loaded): remove unused variable.
17566         
17567 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
17568
17569         * object.c: fixed issue exposed by gcc-generated IL programs
17570         that use RVA data for pointers.
17571
17572 2003-01-25  Martin Baulig  <martin@ximian.com>
17573
17574         * threads.c (start_wrapper): Moved the initialization of
17575         `start_func' above the mono_new_thread_init() call to which we
17576         pass it as argument.
17577
17578 2003-01-24  Martin Baulig  <martin@ximian.com>
17579
17580         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
17581         the MonoThread pointer.
17582
17583 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
17584
17585         * icall.c: Rename `PowImpl' to Pow.
17586
17587 2003-01-23  Dick Porter  <dick@ximian.com>
17588
17589         * threads.c (start_wrapper): Create a Thread object if needed, so
17590         the Main() thread can do the class initialisation in a subthread
17591         that has been set up to allow managed code execution.
17592
17593         Pass the thread ID instead of the MonoThread pointer to the thread
17594         start and attach callbacks.  This change is required, because the
17595         jit thread start callback must be called _before_ the Thread
17596         object can be created.
17597         
17598         (mono_thread_init): Removed much object creation code that is no
17599         longer needed.  No managed code is called from here now.
17600
17601         * object.c (mono_runtime_exec_managed_code): Create a subthread
17602         for Main, and call back to the runtime to use it.
17603         Set the exit code when Main exits.
17604
17605         * gc.c: Make sure domain finalisation happens in a subthread.
17606         Re-enable threaded GC, fixing bug 31333 (again).
17607
17608         * environment.c: System.Environment internall calls (so far just
17609         ExitCode is here, the others are still in icall.c)
17610
17611         * appdomain.c (mono_runtime_cleanup): All threads running managed
17612         code should have finished before mono_runtime_cleanup() is
17613         reached, so no need to clean up threads.
17614
17615 2003-01-22  Martin Baulig  <martin@ximian.com>
17616
17617         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
17618         `gpointer func' arguments.      
17619         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
17620         but added `MonoThread *thread' argument.
17621         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
17622
17623         * threads.c (mono_new_thread_init): Added `gpointer func' argument
17624         and pass it to the mono_thread_start_cb callback.
17625         (mono_install_thread_callbacks): New public function to install a
17626         set of callbacks which are set by the debugger.
17627         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
17628
17629 2003-01-22  Martin Baulig  <martin@ximian.com>
17630
17631         * Makefile.am: Install debug-mono-symfile.h.
17632
17633 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
17634
17635         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
17636
17637 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
17638
17639         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
17640         * class.c (mono_ptr_class_get): correctly set access levels of pointers
17641         (mono_array_class_get): correctly set access levels of arrays
17642
17643 2003-01-20      Patrik Torstensson
17644         * image.h (MonoAssemblyName): changed major, minor, build, revision
17645         from signed to unsigned.
17646
17647 2003-01-20  sean kasun <skasun@azstarnet.com>
17648
17649         * reflection.c (load_cattr_value): Now this handles
17650         MONO_TYPE_SZARRAY.  Fixes bug #35629
17651
17652 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
17653
17654         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
17655         integer value
17656
17657 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17658
17659         * decimal.c: fixed bug #26056.
17660
17661 2003-01-17  Martin Baulig  <martin@ximian.com>
17662
17663         * gc.c: Raise an ExecutionEngineException instead of using g_error().
17664
17665 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17666
17667         * exception.[ch]:
17668         (mono_get_exception_type_initialization): new function.
17669
17670         * object.c: throw a TypeInitializationException when an exception is
17671         thrown invoking the class constructor.
17672
17673 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17674
17675         * reflection.c: fixed attribute reading.
17676
17677 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17678
17679         * icall.c:
17680         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
17681         provided, look for the type in the calling assembly and then in
17682         mscorlib; if the assembly name is provided, only try that one.
17683
17684 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
17685
17686         * object.c: register the vtable before there is a chance it's
17687         queried again recursively.
17688
17689 2003-01-13  Duncan Mak  <duncan@ximian.com>
17690
17691         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
17692         gc-internal.h. 
17693         
17694 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
17695
17696         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
17697
17698 2003-01-11  Martin Baulig  <martin@ximian.com>
17699
17700         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
17701         this to 20 for the release.
17702
17703 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
17704
17705         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
17706
17707         * loader.c (mono_method_get_marshal_info): bug fix
17708
17709         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
17710         structures with explicit layout
17711
17712 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17713
17714         * profiler.c: made the output more readable (and sorted). 
17715         Added caller information for the allocation profiler.
17716
17717 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
17718
17719         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
17720
17721 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17722
17723         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
17724         to get value types.
17725         
17726 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
17727
17728         * object.c, profiler.h, profiler.c, profiler-private.h:
17729         Added object allocation profiler.
17730
17731 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
17732
17733         * reflection.h, reflection.c: handle global methods.
17734         Compress blob entries.
17735
17736 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
17737
17738         * marshal.c: fix compilation.
17739
17740 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
17741
17742         * loader.c (mono_method_get_marshal_info): impl.
17743
17744         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
17745
17746 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17747
17748         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
17749         for reference types.
17750
17751 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
17752
17753         * loader.c: fixed off by one error in loaded parameter names.
17754
17755 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
17756
17757         * marshal.c (mono_marshal_get_icall_wrapper): like
17758         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
17759         instead of a MonoMethod.
17760
17761 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17762
17763         * decimal.c: fixed bug #36537.
17764
17765 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
17766
17767         * marshal.c: throw a missing method exception if a
17768         P/Invoke method is not found.
17769
17770 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17771
17772         * icall.c: allow a null this for constructors.
17773
17774 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
17775
17776         * icall.c: raise the proper exceptions if the arguments to the
17777         internal Invoke are incorrect.
17778
17779 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
17780
17781         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
17782
17783 2003-01-03  Martin Baulig  <martin@ximian.com>
17784
17785         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17786
17787 2002-12-31  Martin Baulig  <martin@ximian.com>
17788
17789         * debug-mono-symfile.c: Completely rewrote the type section.
17790         Instead of using individual malloc()ed fields, we use one big
17791         continuous memory area and offsets into this area.
17792         See the comments in the source code for details.
17793
17794 2002-12-30  Martin Baulig  <martin@ximian.com>
17795
17796         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
17797
17798 2002-12-30  Martin Baulig  <martin@ximian.com>
17799
17800         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
17801         line number table in this data blob instead of using an external
17802         pointer.
17803
17804 2002-12-28  Martin Baulig  <martin@ximian.com>
17805
17806         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17807
17808 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
17809
17810         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
17811         as a boxed return type.
17812
17813 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
17814
17815         * appdomain.c
17816         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
17817         g_build_filename to properly get separators on the filename created.
17818
17819         * object.h: Small change, introduce MonoMarshalByRefObject to
17820         track the layout of that structure in the C# universe as we make
17821         changes there.
17822
17823 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
17824
17825         * object.c: removed assert to allow static fields on interfaces.
17826         * loader.c: a TypeSpec may be used for any type, not just arrays.
17827
17828 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
17829
17830         * class.c, class.h: added mono_class_array_element_size ().
17831         Ignore static methods in interfaces.
17832
17833 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17834
17835         * threads.c: fixed the build under cygwin.
17836
17837 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
17838
17839         * reflection.c: handle nullref constants. Allocate keys for
17840         reflection handles with the GC.
17841
17842 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17843
17844         * threads.c, threads.h: added mono_thread_get_abort_signal()
17845         to get a suitable signal for thread abort.
17846
17847 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17848
17849         * metadata.c: fix handling of ExportedType table.
17850
17851 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17852
17853         * icall.c: added WriteWindowsDebugString internal call.
17854
17855 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17856
17857         * reflection.h: added fields to match C# implementation.
17858
17859 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17860
17861         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
17862
17863 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
17864
17865         * gc.h, gc-internal.h: Rename header for GC internal calls to
17866         gc-internal.h from gc.h as to not clash with Boehm GC having its
17867         header installed as <gc.h> in outside include paths.
17868         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
17869         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
17870
17871 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17872
17873         * icall.c: assign minor, build and revision in FillName.
17874
17875 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
17876
17877         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
17878         Added support for running code generated by Reflection.Emit.
17879
17880 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17881
17882         * appdomain.c: check for NULL argument in LoadFrom.
17883
17884 2002-12-10  Dick Porter  <dick@ximian.com>
17885
17886         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
17887
17888 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17889
17890         * appdomain.c: fix buglet when building exe file name.  Handle full
17891         assembly name (needed after latest changes to AssemblyName).
17892         * image.c:
17893         (mono_image_close): free some hashtables.
17894
17895 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
17896
17897         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
17898         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
17899         on some systems (redhat 7.3) 
17900
17901 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
17902
17903         * threads.c: delete the critical section of a sync block,
17904         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
17905
17906 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
17907
17908         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
17909
17910 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17911
17912         * appdomain.[ch]: handle the assembly preload event to try loading the
17913         assemblies using the paths we have in the current domain.
17914
17915         * assembly.[ch]: created an assembly preload hook that is called to try
17916         loading the assembly by other means that the ones provided here.
17917
17918         * domain.c: initialize the domain search path.
17919
17920         From now on, assemblies (TODO: except corlib and System) are loaded
17921         according to these rules when using mono_assembly_load ():
17922
17923                 1. It tries to load the assembly from the ApplicationBase
17924                 of the current domain appending .dll and .exe (TODO: have to
17925                 try loading from name/name.dll and name/name.exe).
17926
17927                 2. It tries the search path specified in PrivateBinPath for the
17928                 current domain (if any).
17929
17930                 3. Previous behavior.
17931
17932 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
17933
17934         * icall.c: implemented GetInterfaceMap() related icall.
17935         * domain.c, loader.h: load MethodInfo in mono_defaults.
17936
17937 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
17938
17939         * gc.c: disable the finalizer thread for now, untill all the issues
17940         with it are resolved.
17941
17942 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17943
17944         * string-icalls.c: handle embedded nulls in string ctor when the
17945         length is specified.
17946
17947 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
17948
17949         * class.c: look for explicit interface implementation in parent
17950         classes, too.
17951
17952 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
17953
17954         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
17955
17956 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
17957
17958         * gc.c: protect handles with a critical section.
17959
17960 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17961
17962         * icall.c:
17963         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
17964         parameters. If no assembly specified, try getting the type from all
17965         the assemblies in the current domain, else, load the assembly and get
17966         the type from it.
17967
17968 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17969
17970         * marshal.c: applied patch from Aleksey Demakov that fixes
17971         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
17972
17973 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17974
17975         * icall.c: fixed get_location.
17976
17977 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
17978
17979         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
17980         declarations to make it work with older gcc. 
17981
17982         * loader.c (mono_get_method): set signature->pinvoke for native calls
17983
17984 2002-11-20  Dick Porter  <dick@ximian.com>
17985
17986         * threads.c (mono_thread_init): Set the main thread's handle
17987
17988 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
17989
17990         * gc.c: allow compilation without GC support. Changed to match the
17991         mono coding style.
17992
17993 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
17994
17995         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
17996
17997 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
17998
17999         * reflection.c: set a public key token on the core assemblies.
18000
18001 2002-11-18  Dick Porter  <dick@ximian.com>
18002
18003         * threads.c: Split out some thread initialisation so that other
18004         files can set the start callback function.
18005
18006         * gc.c: Run finalisers in a separate thread, to avoid stack
18007         overflow.  Fixes bug 31333.
18008
18009         * appdomain.c: Set up GC finalisation thread.
18010
18011         * reflection.c: 
18012         * object.c: 
18013         * domain.c: Use gc.h macros for GC_malloc
18014         
18015 2002-11-15  Dick Porter  <dick@ximian.com>
18016
18017         * threadpool.c: 
18018         * threads.c:
18019         * appdomain.c: Removed mono_runtime_init_with_attach(),
18020         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
18021         merging the extra parameter with the existing function.  Removed
18022         unneeded code in mono_thread_attach().
18023
18024 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
18025
18026         * image.c (mono_image_loaded_by_guid): a method to get loaded
18027         images by guid. 
18028         (load_metadata_ptrs): we store the guid as string.
18029
18030 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
18031
18032         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
18033
18034         * metadata.c (mono_guid_to_string): imported method form Zoltan
18035         Varga (slightly modified)
18036
18037         * assembly.c (mono_assembly_open): load precompiled code
18038
18039         * loader.h (MonoMethod): we store the method token for use in the
18040         aot compiler. 
18041
18042 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18043
18044         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
18045         the hook function called when an assembly is loaded.
18046         
18047         * domain.c: Modified file.
18048         (mono_domain_assembly_load): removed hash table insertion of assemblies.
18049
18050         Fixes bug #33196.
18051
18052 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
18053
18054         * reflection.c: Map PEFileKind to the value expected by the WinNT
18055         image loader. 
18056
18057 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18058
18059         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
18060         Read until the buffer is filled completely.
18061
18062 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18063
18064         * icall.c: implemented MonoType.InternalGetEvent ().
18065
18066 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18067
18068         * appdomain.c: implemented InitAppDomainSetup. Delayed
18069         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
18070         the entry_assembly.
18071
18072         * assembly.c: base_dir is now an absolute path ending with
18073         G_DIR_SEPARATOR.
18074
18075         * icall.c: modified get_location according to the above changes.
18076
18077         * object.c: init AppDomain.SetupInformation for the default domain after
18078         we have the entry assembly.
18079
18080         * domain.c: when unloading a domain, setup = NULL.
18081
18082 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
18083
18084         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
18085
18086 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
18087
18088         * object.h, object.c: introduced mono_object_get_virtual_method ()
18089         to lookup the method invoked on an object when a callvirt is done on
18090         a method.
18091         * icall.c: make MethodInfo::Invoke() always do a virtual call.
18092
18093 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18094
18095         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
18096         current domain when loaded an assembly and failed to load it.
18097
18098         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
18099
18100 2002-10-31  Dick Porter  <dick@ximian.com>
18101
18102         * icall.c: 
18103         * file-io.h: 
18104         * file-io.c: Return the error status in a parameter, as the
18105         GetLastError() value has long since been blown away if we try and
18106         look it up in a subsequent internal call invocation.  Delete the
18107         GetLastError() internal call, because it's useless.
18108
18109 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
18110
18111         * class.[ch]: added cast_class to fix bug 29517
18112
18113 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
18114
18115         * marshal.c: create valid IL code in the filter clause:
18116         the new JIT is less forgiving:-)
18117
18118 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18119
18120         * icall.c: removed get_property internal call.
18121
18122 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
18123
18124         * appdomain.h domain.c: Added an ID to appdomains.
18125         
18126         * threads.c threads.h icall.c: Implement icall
18127         Thread:GetDomainID(), and remove unused icall 
18128         CurrentThreadDomain_internal.
18129
18130 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18131
18132         * icall.c: Don't recurse through the base types in GetConstructor.
18133         Fixes bug #32063. 
18134
18135 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18136
18137         * mempool.h, mempool.c: added mono_mempool_empty() and
18138         mono_mempool_stats().
18139
18140 2002-10-23  Dick Porter  <dick@ximian.com>
18141
18142         * file-io.c: 
18143         * file-io.h: 
18144         * icall.c: Added MonoIO.GetFileType internal call
18145
18146 2002-10-17  Dick Porter  <dick@ximian.com>
18147
18148         * appdomain.c (mono_runtime_cleanup): Don't signal the async
18149         delegate semaphore before waiting for all threads to finish,
18150         because new threads can also call async delegates.  Fixes bug
18151         32004.
18152
18153         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
18154         of 3 seconds, in case another async job is queued.  (This part is
18155         needed because the bug fix reintroduced the 3s exit lag.)  This
18156         makes the mono_runtime_shutdown flag superfluous.
18157
18158 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18159
18160         * reflection.c: include ehader size in method section headers.
18161         Really check for suplicated modules entries.
18162
18163 2002-10-17  Martin Baulig  <martin@gnome.org>
18164
18165         * debug-mono-symfile.c: Added back support for locals.
18166
18167 2002-10-14  Martin Baulig  <martin@gnome.org>
18168
18169         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
18170         MONO_TYPE_VOID.
18171
18172 2002-10-14  Martin Baulig  <martin@gnome.org>
18173
18174         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
18175         mono_class_get() instead of looking in the class cache. 
18176
18177 2002-10-13  Martin Baulig  <martin@gnome.org>
18178
18179         * debug-mono-symfile.c: Set version number to 28, include the
18180         signature in method names.
18181
18182 2002-10-13  Martin Baulig  <martin@gnome.org>
18183
18184         * debug-mono-symfile.h: Set version number to 27.
18185
18186 2002-10-11  Martin Baulig  <martin@gnome.org>
18187
18188         * gc.c: Don't register/unregister NULL pointers as disappearing links.
18189
18190 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18191
18192         * metadata.c, metadata.h: added helper function to allocate signatures.
18193
18194 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18195
18196         * icall.c: added internal call to get the location of machine.config.
18197
18198 2002-10-08  Martin Baulig  <martin@gnome.org>
18199
18200         * debug-mono-symfile.c: Ignore classes with a pending init for the
18201         moment.
18202
18203 2002-10-03  Dick Porter  <dick@ximian.com>
18204
18205         * threads.c: Freebsd pthread_t is a pointer
18206
18207 2002-10-03  Dick Porter  <dick@ximian.com>
18208
18209         * socket-io.c: Implemented GetHostName_internal
18210
18211 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18212
18213         * mono-config.c:
18214         (mono_config_parse_file): don't leak the text.
18215
18216 2002-10-02  Martin Baulig  <martin@gnome.org>
18217
18218         * debug-mono-symfile.c: Added support for methods.
18219
18220 2002-10-01  Martin Baulig  <martin@gnome.org>
18221
18222         * debug-mono-symfile.c: Don't emit methods and line numbers for
18223         the dynamic symbol file, just write the type table.  We can easily
18224         have an external helper program which creates a symbol file for an
18225         IL file.        
18226
18227 2002-10-01  Dick Porter  <dick@ximian.com>
18228
18229         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
18230         Only add the handle to the cleanup array when we're about to
18231         launch the thread.  Bug 31425 deadlocked when the test was run on
18232         mono under w32.
18233
18234 2002-10-01  Martin Baulig  <martin@gnome.org>
18235
18236         * debug-mono-symfile.c: Added support for properties.
18237
18238 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18239
18240         * reflection.c: unaligned store fix from Mark Crichton
18241         <crichton@gimp.org>.
18242
18243 2002-09-27  Martin Baulig  <martin@gnome.org>
18244
18245         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
18246         New interncall.
18247
18248 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18249
18250         * assembly.h, assembly.c: use a sane API to hook into the assembly
18251         loading process instead of a useless special-purpouse hack
18252         (ngen needs a hook, too, for example).
18253
18254 2002-09-27  Dick Porter  <dick@ximian.com>
18255
18256         * threads.c (mono_thread_init): Call GetCurrentProcess() so
18257         io-layer can set up some process handle info.  Not needed on w32,
18258         but doesn't hurt either.
18259
18260         * process.c: Pass the program name in the second parameter to
18261         CreateProcess, so the path is searched.  Include the working
18262         directory. Implemented process name, process enumeration, and some
18263         process detail internal calls.
18264         
18265         * icall.c: Added internal calls for process lookup, and some
18266         process details
18267
18268 2002-09-26  Martin Baulig  <martin@gnome.org>
18269
18270         * assembly.c (mono_install_open_assembly_hook): New global
18271         function to install a function to be invoked each time a new
18272         assembly is loaded.
18273         (mono_assembly_open): Run this callback function if set.
18274
18275         * debug-mono-symfile.c: Put back line numbers for the dynamic
18276         symbol file and also record the .il file as source file.  This
18277         allows us to install the temporary symbol file as `file.dbg' just
18278         like a compiler-generated one.
18279
18280 2002-09-26  Nick Zigarovich <nick@chemlab.org>
18281
18282         * Corrected typo in gc.c (BOHEM vs BOEHM).
18283
18284 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18285
18286         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
18287         GetProperties. Also avoid calling g_slist_length in GetProperties and
18288         GetMethods.
18289
18290 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18291
18292         * reflection.c: avoid unaligned stores (bug spotted by
18293         Mark Crichton  <crichton@gimp.org>).
18294
18295 2002-09-25  Martin Baulig  <martin@gnome.org>
18296
18297         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
18298         instead of guint64 for addresses and added prologue/epilogue info.
18299
18300 2002-09-25  Martin Baulig  <martin@gnome.org>
18301
18302         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
18303         store line number info.  For the dynamic symbol file, we only need
18304         to provide the JIT generated dynamic line number info for the dynamic
18305         symbol file.
18306
18307 2002-09-25  Martin Baulig  <martin@gnome.org>
18308
18309         * debug-mono-symfile.h: Incremented version number.
18310
18311 2002-09-24  Martin Baulig  <martin@gnome.org>
18312
18313         * class.c (mono_debugger_class_init_func): New global function
18314         pointer variable.
18315         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
18316         call it.
18317
18318         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
18319         function.  This is called via the mono_debugger_class_init_func
18320         hook to add all types to the dynamic type table.
18321         (ves_icall_MonoDebugger_GetType): New interncall to get a class
18322         from its metadata token.
18323
18324         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
18325         New interncall for the debugger.
18326
18327 2002-09-24  Nick Drochak <ndrochak@gol.com>
18328
18329         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
18330         before using it in case it is null.
18331         
18332 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18333
18334         * metadata.c: allow custom modifiers in local var signatures
18335         (bug spotted by Zoltan Varga).
18336
18337 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18338
18339         * class.c: deal with the <Module> class that may have a NULL vtable.
18340         Eliminate warnings.
18341
18342 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18343
18344         * image.c, image.h: more strong name helpers.
18345         * monosn.c: more work: convert pem keys to cryptoapi format.
18346
18347 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18348
18349         * string-icalls.c: speedup IndexOf.
18350
18351 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18352
18353         * icall.c: updates from Zoltan.2.Varga@nokia.com.
18354
18355 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18356
18357         * icall.c: cleanup: use mono_object_domain ().
18358
18359 2002-09-23  Martin Baulig  <martin@gnome.org>
18360
18361         * debug-mono-symfile.c: Improved type support.
18362
18363 2002-09-22  Martin Baulig  <martin@gnome.org>
18364
18365         * debug-mono-symfile.c: Added support for reference types and strings.
18366
18367 2002-09-22  Martin Baulig  <martin@gnome.org>
18368
18369         * debug-mono-symfile.c: Started to work on the type table.
18370
18371 2002-09-21  Martin Baulig  <martin@gnome.org>
18372
18373         * debug-mono-symfile.c: Largely reworked the symbol table format.
18374         The symbol table is now incrementally updated each time a new
18375         method is added.  We're now also using our own magic and version
18376         so that you don't need to recompile all your classes if the
18377         dynamic table changes.
18378         (mono_debug_update_mono_symbol_file): Removed.
18379         (mono_debug_symfile_add_method): New function to add a method.
18380
18381 2002-09-21  Martin Baulig  <martin@gnome.org>
18382
18383         * icall.c
18384         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
18385         New interncall.
18386
18387         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
18388         New interncall to get a method from its metadata token.
18389
18390 2002-09-21  Martin Baulig  <martin@gnome.org>
18391
18392         * debug-mono-symfile.c: Create type table.
18393
18394 2002-09-20  Martin Baulig  <martin@gnome.org>
18395
18396         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
18397
18398 2002-09-20  Martin Baulig  <martin@gnome.org>
18399
18400         * debug-mono-symfile.c: Provide information about params and locals.
18401
18402 2002-09-20  Martin Baulig  <martin@gnome.org>
18403
18404         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
18405         New interncall.
18406
18407         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
18408         interncall to get a method from its metadata token.
18409
18410 2002-09-20  Martin Baulig  <martin@gnome.org>
18411
18412         * debug-mono-symfile.c: Added a few checks for method->header
18413         being non-NULL.  This should never happen, but for the moment
18414         let's use a g_warning() rather than a g_assert().
18415
18416 2002-09-19  Mark Crichton  <crichton@gimp.org>
18417
18418         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
18419         even if support for it isn't present.  Added an #ifdef to fix this.
18420
18421         * socket-io.c: Added checks back for Solaris support.
18422
18423 2002-09-19  Martin Baulig  <martin@gnome.org>
18424
18425         * debug-mono-symfile.c (read_string, write_string): Reflect latest
18426         changes in the symbol file format.
18427
18428 2002-09-18  Martin Baulig  <martin@gnome.org>
18429
18430         * debug-mono-symfile.c: Set version number to 21.
18431
18432 2002-09-18  Dick Porter  <dick@ximian.com>
18433
18434         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
18435         on netbsd.  Fixes bug 30051.
18436
18437 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18438
18439         * reflection.c:
18440         (set_version_from_string): little fix.
18441
18442 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18443
18444         * monosn.c, Makefile.am: added strong name utility.
18445         * reflection.h, reflection.c: implemented delayed signing,
18446         locale, version and hash id assembly attributes.
18447
18448 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18449
18450         * loader.c, metadata.c: load param attributes in signatures.
18451
18452 2002-09-16  Martin Baulig  <martin@gnome.org>
18453
18454         * debug-mono-symfile.c: Added string table with all method names.
18455
18456 2002-09-14  Martin Baulig  <martin@gnome.org>
18457
18458         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
18459         fast method lookup.
18460
18461 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18462
18463         * reflection.c: record the public key token of referenced assemblies.
18464
18465 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18466
18467         * image.c, image.h: added functions to get the strong name and the
18468         public key of an assembly.
18469         * pedump.c: use them.
18470
18471 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
18472
18473         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
18474
18475 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
18476
18477         * marshal.c (mono_marshal_get_managed_wrapper): Added
18478         MONO_TYPE_BOOLEAN 
18479
18480 2002-09-11  Martin Baulig  <martin@gnome.org>
18481
18482         * gc.c: Call GC_unregister_disappearing_link() on all links when
18483         finalizing them, this is necessary to aviod a crash in boehm's
18484         finalize handler.
18485
18486 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18487
18488         * gc.c: handle GetTarget for finalized objects spotted and fixed by
18489         nick@chemlab.org.
18490
18491 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
18492
18493         * icall.c: implemented MonoType::Module.
18494         * reflection.c, reflection.h: mono_module_get_object () from
18495         Tomi Pakarinen <tomi.pakarinen@welho.com>.
18496
18497 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18498
18499         * icall.c: ignore overridden methods in GetMethods ().
18500         Fix for FieldInfo::SetValue().
18501         * object.c: handle float/double in runtime invoke.
18502
18503 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18504
18505         * object.c: allow a constructor to be called again on an object.
18506
18507 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18508
18509         * class.h, class.c: move field layout code to it's own function and
18510         export it. Get an interface id earlier. Move fields in MonoClass
18511         so they are more cache friendly and align the bitfields.
18512         * loader.c: temporary handle get_param_names() for a runtime method.
18513         * reflection.c, reflection.h: more code to handle runtime creation of
18514         types.
18515
18516 2002-09-09  Martin Baulig  <martin@gnome.org>
18517
18518         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
18519         signature with the pinvoke field being set for the actual call.
18520
18521 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18522
18523         * icall.c: removed some unused icalls. Start of map of glib charsets
18524         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
18525
18526 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18527
18528         * debug-helpers.c: break infinite loop (found and fixed by
18529         Holger Arnold <harnold@gmx.de>).
18530
18531 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18532
18533         * icall.c: target may be null in create_delegate.
18534
18535 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18536
18537         * marshal.c: handle a boolean return type.
18538
18539 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18540
18541         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
18542
18543 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18544
18545         * gc.c: fix weakreferences.
18546
18547 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
18548
18549         * icall.c: added icall to get default codepage.
18550
18551 2002-09-03  Dick Porter  <dick@ximian.com>
18552
18553         * threads.h: 
18554         * threads.c: Use MonoThread instead of MonoObject where
18555         apropriate.
18556
18557         Store running thread objects in a hash table, so that we have all
18558         the info to hand when waiting for them to finish
18559         (means we don't need OpenThread() any more, so mingw builds should
18560         be fully functional again.)
18561
18562         * verify.c:
18563         * object.h: Added thread ID to MonoThread
18564
18565 2002-09-03  Martin Baulig  <martin@gnome.org>
18566
18567         * icall.c (System.Reflection.Assembly::get_location): New interncall.
18568
18569 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18570
18571         * icall.c: fixed leak in get_temp_path. Thanks lupus.
18572
18573 2002-09-03  Martin Baulig  <martin@gnome.org>
18574
18575         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
18576         argument to store the end address of the disassembled instruction.
18577
18578         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
18579         here from debug-symfile.h.
18580         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
18581         JIT into this struct.
18582         (MonoSymbolFile): Added `char *image_file' field.
18583         (MonoDebugGetMethodFunc): Removed.
18584         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
18585         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
18586         (mono_debug_find_method): New method.
18587
18588         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
18589         create a full symbol file.
18590         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
18591         and static symbol files.
18592         (mono_debug_find_method): The symbol file keeps an internal method hash,
18593         call this to get a MonoDebugMethodInfo from a MonoMethod.
18594
18595         * debug-symfile.[ch]: Removed.
18596
18597 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
18598
18599         * image.c (do_mono_image_open): Remove linker version check.
18600
18601 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
18602
18603         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
18604         wrappers for instance methods.
18605         
18606 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18607
18608         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
18609
18610 2002-08-28  Dick Porter  <dick@ximian.com>
18611
18612         * Makefile.am: Export HOST_CC for w32 builds
18613
18614 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18615
18616         * file-io.c process.c: MonoString are null terminated, no
18617         need for mono_string_to_utf16() anymore.
18618
18619 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18620
18621         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
18622
18623 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
18624
18625         * icall.c, reflection.h: speedup System.MonoType.
18626
18627 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18628
18629         * reflection.c: allow null as the value of a string argument in
18630         custom attributes constructors.
18631
18632 2002-08-27  Martin Baulig  <martin@gnome.org>
18633
18634         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
18635         `trampoline_address' field.
18636
18637 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
18638
18639         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
18640         check (fixes bug #29486) 
18641
18642 2002-08-27  Martin Baulig  <martin@gnome.org>
18643
18644         * debug-mono-symfile.c: Changed the file format in a way that allows us
18645         open it read-only and to use a specially malloced area for all the
18646         dynamic data.  We can now also generate a symbol file on-the-fly if we're
18647         debugging IL code and there is no MCS generated symbol file for it.
18648
18649 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18650
18651         * object.c: added a define for a good string and array
18652         creation speedup (not enabled by default because we need to deal with
18653         the synch stuff).
18654
18655 2002-08-26  Martin Baulig  <martin@gnome.org>
18656
18657         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
18658         function to create a dynamic symbol file.  This is used by the
18659         debugger to create a symbol file for IL code on-the-fly.
18660
18661 2002-08-26  Martin Baulig  <martin@gnome.org>
18662
18663         * loader.c (mono_lookup_pinvoke_call): Include the error message
18664         from g_module_error() in the error message.
18665
18666 2002-08-24  Martin Baulig  <martin@gnome.org>
18667
18668         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
18669         function to update the symbol file.  The symbol file is mmap()ed
18670         writable, but private.  This allows us to install the symbol file
18671         together with the assembly.
18672
18673 2002-08-24  Martin Baulig  <martin@gnome.org>
18674
18675         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
18676         but they can read the new symbol file format which mcs is now creating.
18677
18678         * debug-symfile.c (mono_debug_find_source_location): Moved to
18679         debug-mono-symfile.c; this is now operating on the new symbol file.
18680
18681 2002-08-23  Martin Baulig  <martin@gnome.org>
18682
18683         * debug-helpers.c (mono_method_desc_from_method): New function to get
18684         a MonoMethodDesc from a MonoMethod.
18685
18686 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18687
18688         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
18689         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
18690
18691 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18692
18693         * string-icalls.[ch]: make helper methods static.
18694
18695 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18696
18697         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
18698         types to it and to SetValueInternal.
18699
18700         * object.c: Moved handle_enum label to its proper place. This was the
18701         f... bug! ;-)
18702
18703         This time i compiled mcs and gtk-sharp and they both work.
18704
18705 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18706
18707         * icall.c: reverted partially my previous patch until 
18708         object.c:set_value handles enums correcly.
18709
18710 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18711
18712         * icall.c:
18713         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
18714         (ves_icall_System_Environment_get_MachineName): removed warning when
18715         compiling under cygwin.
18716
18717 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18718
18719         * object.c: fixed field_get_value() for reference types.
18720
18721 2002-08-22  Dick Porter  <dick@ximian.com>
18722
18723         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
18724         Don't free a buffer while it's still needed.  Patch from Jonathan
18725         Liger <Jonathan.liger@wanadoo.fr>
18726
18727 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
18728
18729         * icall.c (ves_icall_System_Environment_get_Platform): Add new
18730         internal call.
18731
18732 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
18733
18734         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
18735         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
18736
18737         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
18738         we call unmanaged code which throws exceptions.
18739
18740 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18741
18742         * appdomain.h: added per-domain entry_assembly.
18743         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
18744         arguments.
18745         * icall.c: Assembly::GetEntryAssembly icall.
18746         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
18747         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
18748
18749 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18750
18751         * appdomain.h, gc.c: added mono_domain_finalize ().
18752
18753 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18754
18755         * object.c:
18756         (mono_print_unhandled_exception): changed g_warning by g_printerr
18757         because g_log has a 1024 characters limit (yeah, i got a big stack
18758         trace). Don't print exception name, that should be in ToString 
18759         returned string.
18760
18761 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18762
18763         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
18764         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
18765
18766 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18767
18768         * object.c:
18769         (mono_print_unhandled_exception): after previous commit, i realized
18770         that MS calls ToString on the exception. I changed this function to
18771         do that. This way we get stack_trace for free.
18772
18773 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18774
18775         * object.c:
18776         (mono_print_unhandled_exception): invoke Message property instead of
18777         getting 'message' field from Exception. Don't allocate memory for
18778         'trace' and 'message' if not needed.
18779
18780 2002-08-18  Dick Porter  <dick@ximian.com>
18781
18782         * unicode.c: Fix asserts to match Encoder.cs checks
18783
18784 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18785
18786         * marshal.c: fix unaligned store issue and a few wrong
18787         opcode argument types.
18788
18789 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18790
18791         * icall.c: added GetUninitializedObjectInternal internal call.
18792
18793 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
18794
18795         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
18796         to the right domain.
18797
18798 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
18799
18800         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
18801
18802         * class.c (class_compute_field_layout): set blittable to false for Strings
18803
18804         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
18805
18806 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18807
18808         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
18809         first chunk of code to create types at runtime. Code to
18810         handle ReflectedType/DeclaringType. Make reflection handles
18811         domain specific.
18812
18813 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18814
18815         * class.c: set correct name in arrays.
18816
18817 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
18818
18819         * appdomain.c (mono_domain_transfer_object): make it work with
18820         valuetypes. bug fixes.
18821
18822 2002-08-12  Dick Porter  <dick@ximian.com>
18823
18824         * object.h: Rename some parameters to avoid c++ keywords (Patch
18825         from Joseph Wenninger <kde@jowenn.at>)
18826
18827 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
18828
18829         * icall.c: added icall to implement Assembly.GetFile*.
18830
18831 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18832
18833         * reflection.h, reflection.c: code to embed managed resources.
18834
18835 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18836
18837         * class.c: move all the type size stuff into
18838         class_compute_field_layout().
18839
18840 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18841
18842         * class.c: ensure enums have always the correct instance size.
18843         * unicode.c: remove wrong assert.
18844
18845 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18846
18847         * assembly.c: fix mem corruption issue.
18848         * image.h, image.c: added mono_image_get_resource () to access
18849         managed resources.
18850         * icall.c: implemented Assembly.EntryPoint property and some
18851         Managed Resources related internalcalls.
18852
18853
18854 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18855
18856         * image.c, image.h: impemented mono_image_get_entry_point ().
18857         * appdomain.c: use mono_image_get_entry_point.
18858
18859 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18860
18861         * reflection.c: support the object type argument when loading
18862         custom attributes.
18863
18864 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
18865
18866         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
18867         String as return type.
18868
18869 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
18870
18871         * reflection.c: fix encoding of named args for custom attrs to match
18872         the ms implementation. Read them back when instantiating custom
18873         attributes.
18874
18875 2002-08-02  Radek Doulik  <rodo@ximian.com>
18876
18877         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
18878         by Dietmar as quick fix
18879         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
18880         16 as stack size, used on more places as quick fix before Dietmar
18881         will fix it properly
18882
18883 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18884
18885         * object.h, object.c: added accessors for fields and properties.
18886
18887 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18888
18889         * class.c, class.h: made mono_class_get_field_from_name ()
18890         loop on parent types.
18891         Added mono_class_get_property_from_name ().
18892
18893 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18894
18895         * class.c, class.h: move the code to setup the type vtable in its own
18896         function so that it can be reused also for types created at runtime.
18897         Eliminate the "class" identifier from the header file.
18898         * reflection.c: setup the vtable for enums so that we can create
18899         objects for use in SetConstant ().
18900
18901 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
18902
18903         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
18904         instead of the delegate itself as this pointer (bug #28383)
18905
18906 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
18907
18908         * marshal.c (mono_marshal_get_managed_wrapper): added return type
18909         conversions.
18910
18911 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18912
18913         * loader.c: don't set the pinvoke bit on icalls.
18914
18915 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
18916
18917         * debug-helpers.c (mono_method_full_name): only print a number to
18918         indicate wrapper type (so that the output is more readable in traces).
18919
18920 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
18921
18922         * class.c (mono_class_init): include method override patch from Paolo
18923
18924 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
18925
18926         * icall.c: fixed GetTypeCode().
18927
18928 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
18929
18930         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
18931         use real delegate invoke function to make it work with multicast
18932         delegates (fix bug# 28291).
18933
18934 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18935
18936         * object.c: load constant strings.
18937
18938 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18939
18940         * reflection.c: no magic numbers.
18941         * tabledefs.h: security action enum.
18942
18943 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18944
18945         * assembly.c: fix possible memory corruption.
18946
18947 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18948
18949         * reflection.h, reflection.c: added support for linking resources.
18950         * verify.c: check we have an updated corlib.
18951
18952 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
18953
18954         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
18955         string arrays.
18956         (mono_marshal_string_array): null terminate unmanaged string arrays.
18957         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
18958
18959 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18960
18961         * icall.c: Type.GetType () can now return also types from the
18962         calling assembly.
18963
18964 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
18965
18966         * loader.h, loader.c: stack walking support.
18967         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
18968         GetCallingAssembly.
18969
18970 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
18971
18972         * marshal.c: added optimisations for blittable types 
18973
18974         * class.c (mono_array_class_get): do not set blittable attribute on arrays
18975         (mono_class_setup_mono_type): set blittable attribute for single
18976         and double.
18977
18978         * marshal.c (mono_string_utf8_to_builder): impl.
18979         (mono_string_builder_to_utf8): impl.
18980         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
18981
18982 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
18983
18984         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
18985         (mono_marshal_get_managed_wrapper): impl. byref types
18986
18987 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18988
18989         * icall.c:
18990         (search_method): don't display debug message. 
18991
18992 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
18993
18994         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
18995
18996 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
18997
18998         * appdomain.c: set the missing filename when throwing exception.
18999
19000 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19001
19002         * metadata.c (mono_type_size): code cleanup
19003         (mono_type_stack_size): removed some test code
19004
19005 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
19006
19007         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
19008         mono_get_exception_file_not_found now.
19009
19010         * exception.c (mono_exception_from_name_two_strings): New version
19011         that will call a constructor with two string arguments. 
19012         (mono_get_exception_file_not_found): New helper routine, used to
19013         report file-not-found errors.
19014
19015 2002-07-20  Dick Porter  <dick@ximian.com>
19016
19017         * process.h:
19018         * process.c: Pass file handles to CreateProcess
19019         
19020         * icall.c:
19021         * file-io.h:
19022         * file-io.c: Implemented CreatePipe
19023
19024 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19025
19026         * metadata.c (mono_get_param_info): set alignment for value types
19027
19028 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19029
19030         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
19031         Constify mono_domain_assembly_open().
19032         * loader.c: handle null namespace in icalls.
19033
19034 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19035
19036         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
19037         (emit_str_to_ptr_conv): marshal object as structs
19038
19039         * metadata.c (mono_type_to_unmanaged): marshal object as structs
19040
19041         * marshal.c (mono_marshal_get_runtime_invoke): support value types
19042
19043 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
19044
19045         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
19046         (mono_marshal_get_native_wrapper): we an now return value types
19047
19048 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19049
19050         * verify.c: more checks implemented.
19051
19052 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
19053
19054         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
19055         (fix bug #27695)
19056         (mono_marshal_get_native_wrapper): allow byref arguments
19057         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
19058         impl. PtrToStringXXX methods
19059         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
19060         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
19061         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
19062         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
19063         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
19064
19065 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19066
19067         * reflection.c: fix buglet in parsing an assembly name.
19068
19069 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19070
19071         * marshal.c (emit_ptr_to_str_conv): first impl.
19072
19073 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19074
19075         * object.c, class.h: cache the vtable in the class as suggested by
19076         vargaz@freemail.hu (Zoltan Varga).
19077
19078 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19079
19080         * class.h, loader.c: added mono_field_from_token().
19081         * verify.c: first cut of type checking code.
19082
19083 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19084
19085         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
19086
19087 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
19088
19089         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
19090         (fix bug #27782)
19091         (mono_marshal_get_remoting_invoke): impl.
19092         (mono_delegate_begin_invoke): impl.
19093         (mono_mb_emit_save_args): impl.
19094         (mono_delegate_end_invoke): impl.
19095         (mono_marshal_get_delegate_begin_invoke):
19096         (mono_marshal_get_delegate_end_invoke):
19097         (mono_marshal_get_delegate_invoke): generate a special name for
19098         those methods (including the signature) and associate them whith
19099         the delegate class. 
19100
19101 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
19102
19103         * reflection.[ch]: 
19104         (mono_reflection_type_from_name): now it has a MonoImage parameter
19105         which is used as the default image to search the type in. If the image
19106         is NULL or getting the type from it fails, it defaults to corlib.
19107
19108         * icall.c: changed 1 call to mono_reflection_type_from_name to match
19109         new parameter.
19110
19111 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19112
19113         * reflection.c: update the parameter table index.
19114
19115 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19116
19117         * domain.c: don't include the mark byte in the string hash.
19118
19119 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19120
19121         * icall.cs: icall for Type.GetTypeCode ().
19122         * verify: a couple of fixes and disabled local initialization checks.
19123
19124 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
19125
19126         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
19127
19128         * debug-helpers.c (mono_method_full_name): print the type of the
19129         runtime wrapper
19130
19131         * metadata.c (mono_signature_hash): a hash function for signatures
19132         (mono_signature_hash): better hash algorithm
19133
19134         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
19135
19136         * debug-helpers.c (mono_method_full_name): this can now generate
19137         method names with signatures
19138
19139         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
19140         method dont have this pointers.
19141
19142 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19143
19144         * reflection.c: fixup typebuilder tokens.
19145         * image.c: fix buglet.
19146         * marshal.h: remove whitespace.
19147         * metadata.h, metadata.c: reinstate code that was removed.
19148         * verify.c: handle catch directives and fix another couple of bugs.
19149
19150 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
19151
19152         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
19153         (mono_marshal_get_native_wrapper): make it comp. with the old code
19154         (mono_marshal_get_native_wrapper): support boolean
19155         (mono_marshal_get_managed_wrapper): support more types
19156
19157 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
19158
19159         * class.c (class_compute_field_layout): compute class->blittable attribute.
19160
19161 2002-07-09  Dick Porter  <dick@ximian.com>
19162
19163         * threads.c: Make the thread cleaning up cope with threads that
19164         call ExitThread()
19165
19166 2002-07-08  Radek Doulik  <rodo@ximian.com>
19167
19168         * reflection.c (method_encode_code): use non-translated values to
19169         compute finally_start, this fixes exception handling on ppc, yay!
19170
19171         * decimal.h (struct signscale): fix endianess
19172
19173 2002-07-07  Radek Doulik  <rodo@ximian.com>
19174
19175         * reflection.c: swap box_val and not val
19176
19177 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19178
19179         * reflection.c, reflection.h: handle full assembly info in type name.
19180         Handle Type arguments when loading custom attributes.
19181         * icall.c: updated to use new mono_reflection_type_from_name () method.
19182
19183 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19184
19185         * loader.c:
19186         (method_from_memberref): also print assembly name when method not found.
19187
19188 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19189
19190         * icall.c:
19191         (ves_icall_TypeGetProperties): fixed bug #27473. 
19192
19193 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19194
19195         * reflection.c: display image name and token when cannot find the
19196         .ctor for an attribute.
19197
19198 2002-07-05  Martin Baulig  <martin@gnome.org>
19199
19200         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19201
19202 2002-07-04  Dick Porter  <dick@ximian.com>
19203
19204         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
19205         compile on mingw.  This will cause mingw builds to not wait for
19206         subthreads to terminate after the main thread does.  I've lodged a
19207         bug with the mingw developers for them to wrap OpenThread().
19208
19209 2002-07-03  Dick Porter  <dick@ximian.com>
19210
19211         * threads.c: Store thread IDs instead of handles, because
19212         GetCurrentThread() returns a pseudohandle and therefore stores
19213         useless values.  mono_thread_cleanup() continues checking the
19214         array of threads until it is empty, to cope with subthreads
19215         spawning new threads after the main thread has finished.
19216
19217         * profiler.h:
19218         * profiler.c:
19219         * profiler-private.h: Pass the thread ID to thread profiler
19220         functions, instead of a handle
19221
19222 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19223
19224         * verify.c: fixes to make it more usable.
19225         * pedump.c: added --verify code to verify IL code in an assembly.
19226
19227 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19228
19229         * reflection.c: turn errors into warnings to allow compiling corlib.
19230
19231 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19232
19233         * reflection.c: add special cases to compile corlib.
19234
19235 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19236
19237         * reflection.c: handle properties with only a set method.
19238
19239 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19240
19241         * opcodes.h: add enum with opcodes in opval order.
19242
19243 2002-07-01  Dick Porter  <dick@ximian.com>
19244         
19245         * object.h:
19246         * object.c (mono_runtime_run_main): Removed unneeded argument
19247
19248 2002-06-28  Martin Baulig  <martin@gnome.org>
19249
19250         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19251
19252 2002-06-27  Dick Porter  <dick@ximian.com>
19253
19254         * threads.c: Store the handle in both the parent thread and in the
19255         subthread, to minimise the time between starting a new thread and
19256         storing its ID.
19257
19258 2002-06-26  Dick Porter  <dick@ximian.com>
19259
19260         * appdomain.c (mono_runtime_cleanup): Close the socket library
19261         after all the threads have finished, not before
19262
19263 2002-06-26  Martin Baulig  <martin@gnome.org>
19264
19265         * debug-symfile.c (mono_debug_find_source_location): Added
19266         `guint32 *line_number' argument.  If it's not NULL, store the line number
19267         there and return the file name without the line number.
19268
19269 2002-06-25  Dick Porter  <dick@ximian.com>
19270
19271         * icall.c:
19272         * process.h:
19273         * process.c: Process forking and other support functions
19274
19275 2002-06-25  Dick Porter  <dick@ximian.com>
19276
19277         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
19278         things dont happen when the image is closed.
19279         (mono_image_lookup_resource): Walk the resource section looking
19280         for a particular entry
19281
19282         * cil-coff.h: PE resource section decoding
19283
19284 2002-06-25  Dick Porter  <dick@ximian.com>
19285         
19286         * assembly.h:
19287         * assembly.c: 
19288         (mono_assembly_foreach): Accessor functions to walk the list of
19289         loaded assemblies
19290         (mono_assembly_set_main):
19291         (mono_assembly_get_main): Process methods need to know which
19292         assembly is the "main" one
19293
19294         * object.c (mono_runtime_run_main): Record the main assembly
19295
19296         * debug-helpers.c: Fix typo
19297
19298 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
19299
19300         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
19301         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
19302
19303 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19304
19305         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
19306
19307 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
19308
19309         * image.c (do_mono_image_open): Initialize reference count,
19310         otherwise we leak the MonoImage.
19311
19312 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19313
19314         * reflection.c: small tweak to handle self-hosting.
19315
19316 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19317
19318         * reflection.c: fix type name parse code.
19319
19320 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19321
19322         * reflection.c: break out of the loop.
19323         * image.c: special case corlib.
19324
19325 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19326
19327         * reflection.c: add all the custom attrs at the end to ensure the
19328         ctors have been properly initialized when the attributes are defined
19329         in the current assembly.
19330
19331 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19332
19333         * reflection.c: handle correctly multiple-nested types.
19334
19335 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
19336
19337         * row-indexes.h: fix typos.
19338         * reflection.c: adjust for typos and fix method_def_or_ref
19339         encoding in MethodImpl table.
19340
19341 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19342
19343         * reflection.c: fix entry point patching (thanks Serge!).
19344
19345 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
19346
19347         * verify.c: add check for System.Exception
19348
19349 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19350
19351         * image.c, class.c: minifix for code just c&p'ed.
19352         * reflection.c: warning fix.
19353         * object.h, loader.h, domain.c: load also StringBuilder.
19354
19355 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19356
19357         * marshal.h, marshal.c: some support code to handle complex marshaling.
19358
19359 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19360
19361         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
19362         Better signatures with vtable error dump.
19363
19364 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
19365
19366         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
19367
19368 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
19369
19370         * icall.c (ves_icall_Type_GetField): impl.
19371
19372 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19373
19374         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
19375         to retrieve a marshal description blob for a field or param.
19376
19377 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19378
19379         * reflection.h, reflection.c: change order of nested type emission
19380         to avoid table corruption. The NestedTypes table is sorted.
19381         * icall.c: change order of GetConstructor results to workaround mcs bug.
19382
19383 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19384
19385         * reflection.h, reflection.c: handle field and param marshal
19386         information.
19387
19388 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19389
19390         * icall.c, marshal.c marshal.h: more Marshal class implementation.
19391
19392 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19393
19394         * reflection.c: fix call convention.
19395
19396 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19397
19398         * reflection.h, reflection.c: mono_image_get_memberref_token()
19399         takes a type instead of a class, now. Added
19400         mono_image_get_array_token() to create tokens for the special
19401         multi-dim array methods.
19402
19403 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19404
19405         * assembly.c: handle modules (no assembly table). Split
19406         loading references in its own function.
19407         * class.c: handle moduleref resolution scope.
19408         * image.c, image.h: cache module name in image.
19409
19410 2002-06-07  Martin Baulig  <martin@gnome.org>
19411
19412         * reflection.c (mono_image_get_type_info): Only add a class layout entry
19413         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
19414
19415 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19416
19417         * icall.c: more signature fixes that used uint instead of int.
19418
19419 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19420
19421         * reflection.c: fixed signature of field refs.
19422
19423 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19424
19425         * class.c, reflection.c: handle typerefs of nested types
19426         (both on read and when writing files).
19427
19428 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
19429
19430         * icall.c: fix method signatures that tried to workaround the previous
19431         typo, d'oh!
19432
19433 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19434
19435         * debug-helpers.c: fix typo.
19436
19437 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19438
19439         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
19440         rewrote the PE/COFF writing code (our programs are understood by the
19441         ms runtime, now).
19442
19443 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19444
19445         * gc.c, gc.h, icall.c: weakreference support.
19446
19447 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19448
19449         * Makefile.am, mono-config.c: use $(sysconfdir).
19450
19451 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19452
19453         * icall.c: changed default precision of Double.ToString() to 15.
19454         Fixed memory leak. Unified with Single.ToString.
19455
19456 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
19457
19458         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
19459
19460 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19461
19462         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
19463         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
19464         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
19465         and myself.
19466
19467 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19468
19469         * debug-symfile.c, sysmath.c: yet more compilation fixes.
19470
19471 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19472
19473         * reflection.c, socket-io.c: more compilation fixes.
19474
19475 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19476
19477         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
19478         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
19479         unicode.c: warning and compiler compatibility fixes.
19480
19481 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19482
19483         * class.h, metadata.c: fixed warnings/compilation errors.
19484
19485 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19486
19487         * Makefile.am, mono-config.c, mono-config.h: configuration file
19488         support routines.
19489         * loader.c, loader.h: make Dll mapping configurable at runtime in the
19490         config file. Export methods to insert and lookup mappings.
19491
19492 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19493
19494         * reflection.c: handle types and boxed objects in custom attr
19495         constructors.
19496
19497 2002-05-30  Martin Baulig  <martin@gnome.org>
19498
19499         * debug-symfile.c
19500         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
19501
19502 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
19503
19504         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
19505         to lookup the implmap row for a P/Invoke method.
19506         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
19507         P/Invoke method from the runtime on an as needed basis.
19508
19509 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
19510
19511         * metadata.c (mono_metadata_parse_signature): impl.
19512
19513 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19514
19515         * class.c: handle .pack directive.
19516
19517 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19518
19519         * object.c: initialize static fields with RVA data.
19520
19521 2002-05-25  Martin Baulig  <martin@gnome.org>
19522
19523         * debug-symfile.c
19524         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
19525
19526 2002-05-24  Martin Baulig  <martin@gnome.org>
19527
19528         * debug-symfile.c
19529         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
19530         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
19531         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
19532
19533 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19534
19535         * object.c: special case string ctros in invoke.
19536         * gc.c: silly whitespace changes.
19537
19538 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
19539
19540         * threadpool.[ch]: impl. a threadpool that can
19541         be used by mint and mono.
19542
19543 2002-05-22  Martin Baulig  <martin@gnome.org>
19544
19545         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
19546         The first argument is now a `MonoReflectionModuleBuilder *', the return
19547         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
19548         `methods' field to get the method builder.  The `token' argument is the
19549         unfixed token.
19550
19551         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
19552         invalid characters instead of g_assert_not_reached()ing.  This seems
19553         to be the behaviour of mscorlib.
19554
19555 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
19556
19557         * object.c (mono_runtime_invoke_array): applied patch from Rachel
19558         Hestilow to fix bug #25104
19559
19560 2002-05-21  Martin Baulig  <martin@gnome.org>
19561
19562         * debug-symfile.c (mono_debug_find_source_location): New function.
19563         Looks up an IL offset in the line number table and returns the source
19564         location as a string.
19565
19566 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19567
19568         * icall.c:
19569         (mono_double_ToStringImpl): changed %f by %g until we have something
19570         better.
19571
19572 2002-05-21  Nick Drochak  <ndrochak@gol.com>
19573
19574         * icall.c : Use different name for Math.Pow's icall.  Needed to check
19575         parameters first in C#.
19576
19577 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19578
19579         * icall.c, reflection.h: added icall to get info about an event.
19580
19581 2002-05-20  Radek Doulik  <rodo@ximian.com>
19582
19583         * object.c (mono_value_box): don't use memcpy for boxing on BIG
19584         endian
19585         (mono_value_box): don't use memcpy for small sizes on
19586         architectures with unaligned access
19587
19588 2002-05-20  Martin Baulig  <martin@gnome.org>
19589
19590         * reflection.c (mono_reflection_setup_internal_class): Don't crash
19591         if `tb->parent == NULL'.
19592         (mono_reflection_create_internal_class): New function.  This is
19593         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
19594         for enum types.
19595
19596         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
19597         New interncall.
19598
19599 2002-05-19  Martin Baulig  <martin@gnome.org>
19600
19601         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
19602         argument to get the length, don't default to the array length.
19603
19604 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
19605
19606         * assembly.c (mono_assembly_setrootdir): New function used to
19607         override the MONO_ASSEMBLIES directory.
19608
19609 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19610
19611         * icall.c: ValueType_GetHashCode() initialize local var.
19612
19613 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19614
19615         * reflection.c: sort custom attributes table.
19616
19617 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19618
19619         * reflection.c: support named args in custom attributes (write support).
19620
19621 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19622
19623         * reflection.c: fix finally position calculation.
19624
19625 2002-05-15  Radek Doulik  <rodo@ximian.com>
19626
19627         * reflection.c: fixed endianess at many places
19628
19629         * icall.c (ves_icall_InitializeArray): comment out debug msg
19630
19631 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
19632
19633         * object.c (mono_unhandled_exception): new function to handle
19634         unhandled exceptions.
19635         (mono_unhandled_exception): call the UnhandledException event.
19636         (mono_runtime_delegate_invoke): impl.
19637
19638 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
19639
19640         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
19641         returns the RVA, not the direct pointer to the data. Handle the case
19642         when the class size is fixed.
19643
19644 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19645
19646         * reflection.c: fix some endianess issues.
19647
19648 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
19649
19650         * object.c (mono_runtime_invoke): is now able to catch exceptions.
19651
19652         * threads.c (mono_thread_init): added a callback which is invoked
19653         at thread start.
19654
19655 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19656         
19657         * icall.c: make GetHashCode return non-negative values.
19658
19659 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19660
19661         * object.c, icall.c, gc.c: revert to address-based hashcode.
19662
19663 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
19664
19665         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
19666
19667 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19668
19669         * icall.c, class.c: special case <Module>.
19670
19671 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
19672
19673         * icall.c: fix bug in GetNow().
19674
19675 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
19676
19677         * object.c (mono_runtime_class_init): make sure that we call all
19678         static class constructors.
19679
19680 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19681
19682         * reflection.c: sort methodsemantics table.
19683
19684 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19685
19686         * reflection.h, reflection.c: honour init locals setting.
19687
19688 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
19689
19690         * icall.c: copied Double ToStringImpl for Single ToStringImpl
19691
19692 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19693
19694         * reflection.c: support ContructorBuilders in attribute blob creation.
19695
19696 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19697
19698         * reflection.c: some changes to build a binary that can be run
19699         directly in windows.
19700
19701 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19702
19703         * loader.c: print a big message when an icall can't be found.
19704
19705 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19706
19707         * string-icalls.c: fix bug 24248.
19708
19709 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19710
19711         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
19712         icall.c, reflection.h: separate assembly loading by pathname and by
19713         assembly name. Use the MONO_PATH env var to search for assemblies.
19714
19715 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19716
19717         * assembly.c, image.h: add some support for assemblies
19718         with multiple modules.
19719         * class.c, class.h: export mono_class_from_typeref().
19720         * loader.c: remove duplicated code and use mono_class_from_typeref(),
19721         instead.
19722
19723 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19724
19725         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
19726         documentation says (the ECMA one is correct).
19727
19728 2002-05-02  Dick Porter  <dick@ximian.com>
19729
19730         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
19731         Don't name the synchronisation mutex.
19732
19733 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
19734
19735         * rand.c
19736         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
19737         Make the prototypes match.
19738         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
19739         Same.
19740
19741         * icall.c
19742         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
19743         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
19744         all systems have tm.tm_zone, so use strftime() with %Z to print
19745         the timezone abreviation into a temp string.
19746
19747         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
19748         rather than mono_array_addr() on a MonoString on Big Endian
19749         machines.
19750
19751 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
19752
19753         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
19754         fix bug 24041
19755
19756 2002-04-30  Dick Porter  <dick@ximian.com>
19757
19758         * socket-io.c: Cope with SOCKET being an integer rather than a
19759         pointer now.
19760
19761         * threads.c: Added Thread_free_internal, to deal with thread
19762         handle cleanup.  Moved calls to handle_store() and handle_remove()
19763         to start_wrapper(), so each can only be called once.  Allocate
19764         synchronisation blocks with GC_malloc(), and use GC finalisation
19765         to close the handles.
19766
19767         * icall.c: added System.Threading.Thread::Thread_free_internal
19768
19769 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19770
19771         * icall.c: support Environment.Exit, CommandLineArgs().
19772
19773 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19774
19775         * object.c, object.h: added mono_runtime_run_main () and
19776         mono_runtime_get_main_args () for use in System.Environment.
19777
19778 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19779
19780         * gc.c: fix thinko, enable actual finalization since the jit is now
19781         fixed.
19782
19783 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19784
19785         * gc.c, object.c: take into account that an object may be offset wrt the address
19786         returned by GC_malloc().
19787
19788 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
19789
19790         * image.c: handle files without entries in the assembly table (modules).
19791
19792 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
19793
19794         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
19795         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
19796         allowed to be null when it's System.Object class setup.
19797
19798 2002-04-27  Martin Baulig  <martin@gnome.org>
19799
19800         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
19801         if `tb->parent == NULL' rather than crashing.
19802
19803 2002-04-28  Nick Drochak  <ndrochak@gol.com>
19804
19805         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
19806         calling acos() where asin() should have been called.
19807
19808 2002-04-26  Martin Baulig  <martin@gnome.org>
19809
19810         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
19811         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
19812         there's a subdirectory called `System', but we don't want to read that
19813         subdirectory as an assembly.
19814
19815 2002-04-25  Martin Baulig  <martin@gnome.org>
19816
19817         * debug-symfile.c: Reflect latest MonoString changes.
19818
19819 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19820
19821         * rand.c, rand.h: instance method icalls need to have an explicit
19822         this pointer as first argument in the C implementation.
19823
19824 2002-04-25  Nick Drochak <ndrochak@gol.com>
19825
19826         * icall.c: Fix typo in map for GetNonZeroBytes
19827
19828 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19829
19830         * string-icalls.c : String does now passes unit tests without any 
19831         errors, the following changes has been made:
19832         
19833         Implemented replace methods.
19834         Renaming of methods to (try) follow the standard.
19835         Fixed compare ordinal
19836         Made all memory allocated directly to function instead of via icall function.
19837         Small performance fix in is_in_array function
19838                         
19839  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
19840
19841         c (mono_string_Internal_ctor_charp_int_int):
19842         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
19843         sindex < 0, throw ArgumentOutOfRangeException instead of
19844         ArgumentNullException.
19845
19846         Added new check for length == 0, however
19847         I need to make it return String.Empty from the C code.
19848         
19849         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
19850         that calculate the length for us here.
19851         
19852         (mono_string_Internal_ctor_sbytep_int_int): Replaced
19853         mono_string_new_utf16 with mono_string_new, since value is utf8.
19854
19855 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19856
19857         * object.c: register the object for finalization if needed.
19858         Allocate one more char in the string for the terminating 0 char.
19859
19860 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19861
19862         * class.c, class.h, image.c: check if a type implemenst a destructor.
19863         Use the proper key for array class lookups.
19864         * icall.c: register the icalls in the System.GC class.
19865         * gc.c, gc.h: GC-related functions and icalls.
19866
19867 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19868
19869         * icall.c:
19870         * socket-io.c:
19871         * unicode.c: free some strings gotten from mono_string_to_utf8 and
19872         changed a couple of free () by g_free ().
19873
19874         * decimal.c: one-liner in the comments for decimal2string ().
19875
19876 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19877
19878         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
19879
19880 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19881
19882         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
19883         * object.c (mono_runtime_invoke_array) : handle null in params
19884
19885 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19886
19887         * string-icalls.c: fixed bug in split (one off bug)
19888
19889 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19890
19891         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
19892         * icalls.c: added String::Equals as internal method
19893
19894 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19895
19896         * threads.c: fixed bug in the double interlocked functions
19897
19898 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
19899
19900         * threads.c: implemented all of the new interlocked icalls.
19901         * string-icalls.c: fix a bug in insert.
19902         * icalls.c: added the icalls for interlocked, removed old string functions.
19903         
19904 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19905
19906         * loader.c: fix off-by-one error when reading argument names.
19907
19908 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19909
19910         * profiler.c: win32 counter implementation (untested).
19911         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
19912         (the latter needs testing and more complete impl. from win32 folks).
19913
19914 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
19915
19916         * object.c: mono_array_new_full workaround mono_array_class_get
19917         problem.
19918
19919 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19920
19921         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
19922         * object.h (mono_string_chars): Changed casting type.
19923
19924 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19925
19926         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
19927                            method signatures to use gunichar2 instead of gint16.
19928
19929 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
19930
19931         * object.h, object.c: domain-specific versions of mono_object_new and
19932         mono_array_new.
19933
19934 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
19935
19936         * object.c: changed String layout
19937
19938         * string-icalls.c (mono_string_Internal_ctor_chara): added
19939         internal string constructors.
19940
19941 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
19942
19943         * threads.c: pass 'this' to the thread start routine.
19944
19945 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19946
19947         * string-icalls.c: fix IndexOf and LastIndexOf. Now
19948         InternalCompareStr don't call twice mono_string_cmp_char for the last
19949         character. Improved performance in mono_string_cmp_char.
19950
19951 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19952
19953         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
19954         code into its own library: libmonoruntime.
19955
19956 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
19957
19958         * object.h, object.c: changed array format so that szarrays do not
19959         require a bounds structure.
19960         * icall.c, appdomain.c: support for new szarray format.
19961
19962 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19963
19964         * metadata.c: compare also the retuns type when comparing signatures:
19965         we didn't do this as an optimization since really overloaded methods
19966         must differ also in the arguments, but this doesn't work with
19967         low-level IL code (or when using explicit conversion operators: see
19968         bug#23498 for an example).
19969
19970 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19971
19972         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
19973
19974 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19975
19976         * icall.c: make MonoType::GetElementType its own icall.
19977
19978 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19979
19980         * icall.c: remove MonoMethod_get_Name().
19981         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
19982         object.
19983
19984 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19985
19986         * string-icalls.c: optimized a few methods.
19987
19988 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19989
19990         * icall.c: added all new string internal calls
19991         * string-icalls.c: added, new string internal call implementation.
19992         * object.c: added mono_string_new_size for allocating a string a size
19993
19994 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
19995
19996         * object.c (mono_object_isinst): use the same code as in the
19997         optimized x86 version.
19998
19999 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20000
20001         * profiler.c: TSC-based timer code (faster and more accurate).
20002         Not hooked up in configure, yet (set USE_X86TSC to 1).
20003
20004 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
20005
20006         * profiler.c, profiler.h: track time spent compiling methods.
20007         * threads.c: track thread creation/destruction.
20008
20009 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
20010
20011         * profiler.c, profiler.h, profiler-private.h: profiling interface
20012         and sample implementation. Moved here so that it can be used also by
20013         the jit.
20014
20015 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
20016
20017         * reflection.c, reflection.h: keep types and other handles separate in
20018         the hash tables for referred tokens. Add guid for modules.
20019
20020 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20021
20022         * assembly.c: fix bugs found with valgrind.
20023         * metadata.h, metadata.c: added mono_metadata_guid_heap().
20024
20025 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
20026
20027         * threads: added icall support for getting current domain for
20028                    the thread.
20029  
20030 2002-04-13  Martin Baulig  <martin@gnome.org>
20031
20032         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
20033         (MonoDebugVarInfo): Added `index' field for register based addresses.
20034         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
20035         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
20036         `MonoDebugVarInfo *params' and `guint32 this_offset' with
20037         `MonoDebugVarInfo *this_var'.
20038
20039         * debug-symfile.c (relocate_variable): New static function to write
20040         a location description for a local variable or method parameter.
20041
20042 2002-04-12  Martin Baulig  <martin@gnome.org>
20043
20044         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
20045         stack offset and begin/end scope address of a local variable.
20046         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
20047         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
20048         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
20049
20050         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
20051         Added new relocation types for start/end scope of a local variable.
20052
20053 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20054
20055         * object.h: add mono_object_domain() macro.
20056         * reflection.c: handle typespecs.
20057         * icall.c: MonoMethod::get_Name() implementation.
20058
20059 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20060
20061         * icall.c: String::GetHashCode() icall implementation.
20062
20063 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20064
20065         * icall.c: String::IndexOfAny icall.
20066         * object.c, object.h: make array->max_length more useful.
20067         Intrduced mono_object_class() and mono_string_length() macros.
20068
20069 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20070
20071         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
20072         instead of g_unichar_isdigit.
20073
20074 2002-04-11  Nick Drochak  <ndrochak@gol.com>
20075
20076         * icall.c: Implement a simple Double.ToString().
20077
20078 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20079
20080         * appdomain.h: only io-layer.h is supposed to be included.
20081         * icall.c: explicitly import environ. Fix warning.
20082
20083 2002-04-10  Nick Drochak  <ndrochak@gol.com>
20084
20085         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
20086                 return true even if it's not Daylight Savings time.
20087                 Only return false for the case where the function isn't
20088                 implemented for a plaform (read Windows).
20089
20090 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20091
20092         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
20093         data with a mutex.
20094
20095 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
20096
20097         * mempool.c (mono_mempool_alloc): only use g_malloc when
20098         absolutely necessary.
20099
20100 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20101
20102         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
20103
20104         * class.c (mono_class_vtable): use domain mempool to allocate vtable
20105         (mono_class_proxy_vtable): use domain mempool
20106
20107 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20108
20109         * appdomain.h, appdomain.c: split initialization that requires the
20110         execution engine support into mono_runtime_init().
20111
20112 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20113
20114         * class.c (mono_class_init): don't include vtable inside MonoClass
20115         to save some memory, gather some statistics.
20116         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
20117
20118 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20119
20120         * icall.c: internalcall implementation for ValueType.Equals().
20121
20122 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
20123
20124         * object.c (mono_message_init): moved 
20125         (mono_runtime_exec_main): new arch. independent impl.
20126         (mono_runtime_invoke_array): new method - like
20127         mono_runtime_invoke, but you can pass an array of objects.
20128         (mono_remoting_invoke): new arch. independent impl.
20129         (mono_message_invoke): new arch. independent impl.
20130         (mono_runtime_class_init): new arch. independent impl.
20131         (mono_runtime_object_init): new arch. independent impl.
20132
20133 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20134
20135         * metadata.c, object.c, reflection.c: documented the exported
20136         functions.
20137
20138 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
20139
20140         * icall.c: simpler code to pass the assembly builder data to corlib.
20141         Implement GetNestedTypes() internalcall.
20142
20143 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20144
20145         * class.c: warn if a type can't be loaded.
20146
20147 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
20148
20149         * image.h: typedef MonoImageOpenStatus
20150         * types.h: removed unused file
20151         
20152 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
20153
20154         * icall.c: Enum_ToObject accepts enum value arguments.
20155
20156 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20157
20158         * class.c: move initialization of properties, events and nested
20159         classes, so that they happen for interfaces, too.
20160
20161 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20162
20163         * icall.c: cleanup some ugly casts in Array_SetValue*.
20164
20165 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20166
20167         * icall.c: the values array fro enums is of the correct type, now.
20168         Implement (correctly) getFullName instead of assQualifiedName for
20169         MonoType.
20170         * reflection.h, reflection.c: added mono_type_get_name ().
20171
20172 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20173
20174         * assembly.c, image.h: for each MonoImage, record from wich assembly
20175         it was loaded.
20176         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
20177         Make Type.Assembly work.
20178
20179 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
20180
20181         * debug-symfile.h: use char* instead of gpointer to avoid
20182         unnecessary casts.
20183
20184         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
20185
20186         * icall.c (ves_icall_InternalExecute): impl. FielSetter
20187         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
20188
20189 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
20190
20191         * icall.c (mono_message_init): impl. (code cleanup)
20192         (ves_icall_InternalExecute): impl. FieldGetter
20193
20194         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
20195         defined we call all (non-static)methods through the vtable. 
20196
20197 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
20198
20199         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
20200         finalizer even though the memory is still referenced (and the chunk of
20201         memory is not freed).
20202
20203 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
20204
20205         * assembly.c: fix brokeness.
20206
20207 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
20208
20209         * class.c: kill some warnings. Check explicit interface method
20210         implementation also without considering the namespace.
20211         Load also literal strings in static class data.
20212
20213 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
20214
20215         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
20216         (default_assembly_name_resolver): Make the resolver take the
20217         "base" directory where the assembly was originally defined, so we
20218         can load DLLs that are in the same directory as the assembly that
20219         is being referenced.
20220
20221 2002-03-28  Dick Porter  <dick@ximian.com>
20222
20223         * file-io.h: 
20224         * file-io.c:
20225         * socket-io.c: 
20226         * unicode.h: 
20227         * unicode.c: Warning cleanups
20228
20229 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
20230
20231         * object.h, reflection.h: use the correct type instead of MonoObject.
20232
20233 2002-03-28  Martin Baulig  <martin@gnome.org>
20234
20235         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
20236         (mono_debug_update_symbol_file): Initialize classes if necessary.
20237
20238 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
20239
20240         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
20241         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
20242
20243 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
20244
20245         * assembly.h: fix function prototype.
20246         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
20247         * mono-endian.h: use const cast.
20248
20249 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20250
20251         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
20252
20253 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20254
20255         * loader.c: don't assert when a typeref can't be loaded, give
20256         a chance to the runtime to trow an exception instead.
20257         * loader.h: fix warning.
20258
20259 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20260
20261         * class.c (mono_class_proxy_vtable): added proxy support
20262
20263 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
20264
20265         * icall.c: removed last of PAL calls, added System.Environment
20266         * file-io.h, file-io.c: MonoIO implementation
20267         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
20268
20269 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20270
20271         * appdomain.c: do not use the byte marker in ldstr table lookup.
20272         * debug-helpers.c: allow two ':' to separate class and method name.
20273         * object.c: allocate arrays bounds with the GC, too.
20274         * verify: add a few more checks.
20275
20276 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
20277
20278         * reflection.c: output also literal strings. Allocate parameter data
20279         with GC_malloc() (thanks, Martin, for catching this!).
20280
20281 2002-03-26  Martin Baulig  <martin@gnome.org>
20282
20283         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
20284         include the `this' offset in the `param_offsets'.
20285
20286 2002-03-25  Martin Baulig  <martin@gnome.org>
20287
20288         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
20289         mono_debug_get_class() function to get the classes. Added new
20290         relocation types for arrays and strings.
20291         (mono_debug_get_class): New static function to search in all
20292         referenced assemblies for a metadata token.
20293
20294         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
20295
20296 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
20297
20298         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
20299         hold gc-allocated objects. Make the string heap a stream like the
20300         others. Removed duplicated code when writing stream info.
20301         Added asserts to catch possible buffer overflows. Set the sorted map
20302         for tables that need sorting. Added some documentation.
20303
20304 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
20305
20306         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
20307         for interned strings and vtables.
20308
20309 2002-03-24  Martin Baulig  <martin@gnome.org>
20310
20311         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
20312         it in the array since it was created with g_slist_prepend().
20313
20314 2002-03-24  Martin Baulig  <martin@gnome.org>
20315
20316         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
20317         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
20318         (mono_debug_method_from_token): Renamed to
20319         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
20320         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
20321
20322         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
20323         relocation types.
20324
20325         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
20326
20327 2002-03-24  Martin Baulig  <martin@gnome.org>
20328
20329         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
20330         (mono_debug_method_from_token): New func.
20331
20332         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
20333         New interncall, calls mono_debug_local_type_from_signature().
20334         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
20335         calls mono_debug_method_from_token().
20336
20337 2002-03-23  Martin Baulig  <martin@gnome.org>
20338
20339         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
20340         specifies the number of bytes to be converted, not the array size.
20341         Return the number of chars, not the number of bytes.
20342         (ves_icall_iconv_get_chars): The `byteCount' argument
20343         specifies the number of bytes to be converted, not the array size.
20344
20345 2002-03-23  Martin Baulig  <martin@gnome.org>
20346
20347         * reflection.h (MonoReflectionSigHelper): New type.
20348
20349         * reflection.c (mono_reflection_sighelper_get_signature_local),
20350         (mono_reflection_sighelper_get_signature_local): New functions.
20351
20352         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
20353         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
20354         interncalls.
20355
20356 2002-03-23  Martin Baulig  <martin@gnome.org>
20357
20358         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
20359         is_writeable is set.
20360         (mono_raw_buffer_update): New function to write the modified map
20361         back to disk.
20362
20363         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
20364
20365         * debug-symfile.c (mono_debug_update_symbol_file): Call
20366         mono_raw_buffer_update() when done writing.
20367
20368 2002-03-23  Martin Baulig  <martin@gnome.org>
20369
20370         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
20371
20372         * debug-symfile.c: Added support for arguments and local variables.
20373
20374 2002-03-23  Dick Porter  <dick@ximian.com>
20375
20376         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
20377         protected by ifdefs, hence breaking the w32 build.
20378
20379 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20380
20381         * object.c: implement is_interned() the right way.
20382
20383 2002-03-21  Martin Baulig  <martin@gnome.org>
20384
20385         * debug-symfile.[ch]: New files to handle debugging information
20386         files. There's also support to dynamically update these symbol
20387         files to include machine dependent information.
20388
20389 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
20390
20391         * threads.c (mono_thread_create): new function to create thread
20392         from C
20393
20394 2002-03-20  Martin Baulig  <martin@gnome.org>
20395
20396         * icall.c (ves_icall_InternalInvoke): Create a new object if the
20397         method is a constructor.
20398         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
20399         points to ves_icall_InternalInvoke().
20400
20401 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
20402
20403         * file-io.c: Flush shouldn't throw exceptions.
20404
20405 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
20406
20407         * file-io.c: FileStream flush support; FileSetLength now
20408         restores file pointer.
20409
20410 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
20411
20412         * class.c: set image for pointer classes.
20413
20414 2002/03/19  Nick Drochak <ndrochak@gol.com>
20415
20416         * sysmath.c: Forgot one.
20417
20418 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
20419
20420         * sysmath.c: Avoid redefining existing names.
20421
20422 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
20423
20424         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
20425         handled by runtime as icall rather than dllimport from libm.so
20426         * file-io.c, file-io.h: fixed handle argument type.
20427
20428 2002-03-18  Dick Porter  <dick@ximian.com>
20429
20430         * reflection.c (mono_image_get_type_info): rename interface to
20431         iface, because of "#define interface struct" on windows.
20432
20433 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
20434
20435         * class.c, class.h: rename and export mono_ptr_class_get().
20436         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
20437         * reflection.c, reflection.h, icall.c: better/saner type name
20438         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
20439         method signatures.
20440
20441 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
20442
20443         * class.c (mono_class_init): removed hardcoded GHC_SLOT
20444
20445         * icall.c (ves_icall_InternalInvoke): impl.
20446
20447 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20448
20449         * reflection.c: output the interface map table, too.
20450
20451 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
20452
20453         * class.c (class_compute_field_layout): separate computation of 
20454         static field layout
20455
20456 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
20457
20458         * icall.c: added System.Buffer support.
20459         * file-io.c: moved file icalls from PAL to FileStream.
20460
20461 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
20462
20463         * icall.c (ves_icall_System_Object_GetHashCode): impl.
20464
20465 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
20466
20467         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
20468
20469 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20470
20471         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
20472
20473 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
20474
20475         * debug-helpers.{c,h}: moved here from monograph some useful functions
20476         to locate a method by name/signature in a class or image. Included
20477         also a small and flexible IL disassembler.
20478
20479 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20480
20481         * reflection.c: fixup tokens in methods with small header size, too.
20482
20483 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
20484
20485         * object.c (mono_string_to_utf8): remove assert(!error), instead
20486         print a warning. 
20487
20488 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
20489
20490         * icall.c: update to the new mono_Array_class_get interface.
20491
20492 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
20493
20494         * appdomain.c, object.c: Boehm-GC enable.
20495         * icall.c: make get_data_chunk() support split data requests.
20496         Ensure a class is initialized in more cases. Return only the first
20497         property found in GetProperties() or the compiler gets confused. 
20498         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
20499         * reflection.h, reflection.c: add fixup mechanism for field and method
20500         tokens. Initialize assembly->typeref in a single place. Output
20501         properties after events. Support custom attributes for events, too.
20502         Typo fix for paramter custom attrs.
20503
20504 2002-03-07  Martin Baulig  <martin@gnome.org>
20505
20506         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
20507
20508 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
20509
20510         * class.c (mono_array_class_get): fix. for multi. dim. arrays
20511
20512 2002-03-06  Martin Baulig  <martin@gnome.org>
20513
20514         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
20515         non-zero lower bounds. See testcases #F10-#F13.
20516
20517 2002-03-05  Martin Baulig  <martin@gnome.org>
20518
20519         * exception.c (mono_get_exception_argument_out_of_range): New exception.
20520
20521         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
20522         ves_icall_System_Array_GetValue(), only calculate the absolute array position
20523         here.
20524         (ves_icall_System_Array_SetValue): Likewise.
20525         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
20526         as argument and does the actual work. This function is used when copying a
20527         multi-dimensional array.
20528         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
20529         now do all the widening conversions of value types.
20530         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
20531
20532 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20533
20534         * class.c: remove some magic numbers and use the smbolic names,
20535         instead. Added init_events() to load event info at class init time.
20536         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
20537         and mono_metadata_methods_from_event().
20538         * reflection.h, reflection.c: added support for writing out the evnets
20539         related information.
20540
20541 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
20542
20543         * reflection.h, icall.c: use a different method (GetInterfaces)
20544         to gather interface info and add isbyref, isprimitive and
20545         ispointer to the ves_icall_get_type_info() return value.
20546
20547 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
20548
20549         * class.h: stared adding support for events.
20550         * icall.c: split find_members implementation. Added debug icall to get
20551         the address of an object.
20552         * reflection.c: handle TypeBuilders in mono_type_get_object().
20553
20554 2002-03-01  Martin Baulig  <martin@gnome.org>
20555
20556         * icall.c (ves_icall_System_Array_GetLength): This must throw an
20557         ArgumentOutOfRangeException(), not an ArgumentException().
20558         (ves_icall_System_Array_GetLowerBound): Likewise.
20559         (ves_icall_System_Array_GetValue): Improved argument checking.
20560         (ves_icall_System_Array_SetValue): Improved argument checking.
20561
20562 2002-03-01  Martin Baulig  <martin@gnome.org>
20563
20564         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
20565         called with invalid arguments rather than just dying with g_assert().
20566         (ves_icall_System_Array_SetValue): Likewise.
20567         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
20568         raise a NotImplementedException instead.
20569         (ves_icall_System_Array_GetLength): Added argument checking.
20570         (ves_icall_System_Array_GetLowerBound): Added argument checking.
20571
20572 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
20573
20574         * object.h (mono_assert): new macros mono_assert and
20575         mono_assert_not_reached
20576
20577 2002-02-28  Martin Baulig  <martin@gnome.org>
20578
20579         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
20580         and "System::String::IsInterned" to "System::String::_IsInterned".
20581
20582 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
20583
20584         * icall.c: remove hacks for typebuilder. Added icall to create a
20585         modified type from a tybebuilder.
20586         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
20587         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
20588         to create a backing MonoClass for a TypeBuilder.
20589
20590 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20591
20592         * class.c, class.h: more refactoring of class init.
20593         Export mono_class_setup_mono_type() and mono_class_setup_parent().
20594
20595 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
20596
20597         * marshal.c, marshal.h: start of marshaling interface.
20598
20599 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
20600
20601         * icall.c: fix order in assembly qualified name icall.
20602
20603 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
20604
20605         * class.c: do not free str, since we store it in the hash table.
20606         * reflection.h: add label field to MonoILExceptionInfo.
20607         * reflection.c: handle references to more than one assembly. Handle
20608         case when there isn't a module created in the assembly.
20609
20610 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20611
20612         * class.c: Fix typo. Start refactoring of class init code.
20613
20614 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20615
20616         * appdomain.c: exit with 1 on error.
20617         * class.c: we already have the name in MonoClassField.
20618         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
20619         MonoStreamHeader instead of an offset of image->raw_metadata.
20620
20621 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
20622
20623         * appdomain.c (mono_init): Be even more descriptive about the error.
20624
20625 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
20626
20627         * appdomain.c: give the user an informative message when corlib can't
20628         be loaded.
20629
20630 2002-02-26  Martin Baulig  <martin@gnome.org>
20631
20632         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
20633         New icall to get the time zone data.
20634
20635 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20636
20637         * reflection.c: set virtual and raw size of section correctly.
20638         * threads.c: transfer domain information to newly created threads.
20639
20640 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20641
20642         * class.c: when instancing a class in a domain, load the default
20643         vaules for static fields from the constant table. Fix System.Enum to
20644         not be an enum.
20645         * icall.c: implement Object::GetType() internalcall. Implemented
20646         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
20647         Fixed checking of binding flags in find_members().
20648         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
20649         * reflection.c: handle enumerations when writing to the constant
20650         table. Use a different object cache for types.
20651
20652
20653 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
20654
20655         * object.c (mono_object_isinst): fix for arrays
20656
20657         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
20658
20659 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20660
20661         * object.c: don't use mprotect ()  and fix intern pool hash table
20662         lookup for big endian systems.
20663
20664 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20665
20666         * icall.c: change type_is_subtype_of () signature.
20667
20668 2002-02-21  Mark Crichton  <crichton@gimp.org>
20669
20670         * rand.c, rand.h: Added random number generator for
20671         System.Security.Cryptography classes.
20672
20673         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
20674
20675         * icall.c: Added System.Security.Cryptography calls.
20676
20677 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
20678
20679         * class.c, icall.c, metadata.c: better support for pointer types.
20680         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
20681         * reflection.c: Add support for getting custom attrs for properties
20682         and simplify some code.
20683
20684 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20685
20686         * icall.c: change getToken () and add custom attribute GetBlob()helper
20687         method.
20688         * reflection.h: add custom attrs array to the reflection builder structures.
20689         * reflection.c: encode and emit custom attributes for all the relevant
20690         reflection objects. Cache fieldref and methodref tokens. Change
20691         mono_image_create_token() interface to take a MonoDynamicAssembly.
20692         More complete custom attributes decoder. Load custom attributes for
20693         Assembly, Field, Method and Constructor objects, too. Make the
20694         returned array an Attribute[] one, not object[]. Added
20695         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
20696         custom attribute constructor.
20697
20698 2002-02-20  Dick Porter  <dick@ximian.com>
20699
20700         * icall.c:
20701         * rawbuffer.c:
20702         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
20703         problem code out for now).
20704
20705 2002-02-19  Radek Doulik  <rodo@ximian.com>
20706
20707         * object.c (mono_ldstr): use hash table to avoid multiple swapping
20708
20709 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
20710
20711         * icall.c: register the GetCustomAttributes method.
20712         * object.c, object.h: add mono_string_new_len ().
20713         * reflection.h, reflection.c: added mono_runtime_invoke(),
20714         mono_install_runtime_invoke(). Added
20715         mono_reflection_get_custom_attrs () to load custom attributes and
20716         create the attribute objects.
20717
20718 2002-02-19  Dick Porter  <dick@ximian.com>
20719         * threads-dummy-types.c:
20720         * threads-dummy-types.h:
20721         * threads-dummy.c:
20722         * threads-dummy.h:
20723         * threads-pthread-types.c:
20724         * threads-pthread-types.h:
20725         * threads-pthread.c:
20726         * threads-pthread.h:  Deleted obsolete files
20727
20728 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
20729
20730         * class.c (mono_class_vtable): runtime init the class when we
20731         allocate static class data.
20732
20733         * icall.c (ves_icall_System_Array_SetValue): check for null values.
20734
20735         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
20736         and String - but we will need generic marshalling support in the
20737         future. 
20738         (mono_init): set the domain name in a ms compatible way
20739
20740         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
20741         String[].
20742
20743 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
20744
20745         * object.c (mono_array_clone): use alloca() instead of g_malloc  
20746         for sizes
20747
20748         * appdomain.c (mono_domain_unload): impl.
20749
20750 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20751
20752         * appdomain.c, object.c: fix intern pool implementation.
20753         * class.c: fix alignment code.
20754
20755 2002-02-16  Radek Doulik  <rodo@ximian.com>
20756
20757         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
20758         and s2 > s1, just copy lower bytes to be compatible with little
20759         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
20760         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
20761
20762         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
20763         force big_endian to be 1 for big endian machines 
20764         (ves_icall_iconv_new_decoder): ditto
20765
20766 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
20767
20768         * socket-io.c (convert_sockopt_level_and_name): If the system
20769         doesn't define SOL_IP or SOL_TCP, get them by hand using
20770         getprotobyname() and caching the values (because this could be a
20771         slow operation).
20772         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
20773         Use the appropriate struct when the system does support it. Ie,
20774         not all systems have struct ip_mreqn so use struct ip_mreq when
20775         appropriate.
20776
20777 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
20778
20779         * reflection.c: handle finally clauses.
20780
20781 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
20782
20783         * socket-io.c: use g_snprintf() instead of snprintf.
20784
20785 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20786
20787         * reflection.c (mono_param_get_objects): Cast second argument to
20788         mono_method_get_param_names to a const char** to silence the
20789         compiler warning.
20790
20791         * appdomain.c (mono_domain_assembly_open): Put parens around the
20792         truth statement in the for-loop.
20793
20794         * unicode.c (iconv_convert): Got rid of a compiler warning about
20795         int i being unused when the system has a new iconv.
20796         (iconv_get_length): Same.
20797
20798         * image.c (load_class_names): Cast the second argument to
20799         g_hash_table_insert() to char* to hush compiler warnings about the
20800         arg being a const.
20801         (mono_image_open): Same here.
20802
20803         * socket-io.c: Don't conditionally include sys/filio.h or
20804         sys/sockio.h here anymore since we now get them from
20805         io-layer/io-layer.h
20806         (inet_pton): If the system doesn't support inet_aton, implement
20807         using inet_addr and also #define INADDR_NONE if it isn't defined
20808         by the system.
20809
20810 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
20811
20812         * metadata.c, metadata.h: added function to get packing and size info
20813         of a typedef.
20814         * reflection.h, reflection.c: handle field RVA data. Save info about
20815         the table layout if needed. Assign typedef indexes to all the types
20816         before dumping the info about them to avoid forward reference problems.
20817
20818 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
20819
20820         * socket-io.c (convert_sockopt_level_and_name): ifdef
20821         SO_ACCEPTCONN because it is not defined on my system (old debian)
20822
20823 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20824
20825         * opcode.c: use stddef.h to get NULL.
20826
20827 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20828
20829         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
20830         for FIONBIO, FIONREAD and SIOCATMARK.
20831         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
20832         define INADDR_NONE and besides, inet_addr() is deprecated and
20833         should not be used. Use inet_pton() instead - it also has the
20834         added bonus that it can easily handle IPv6 addresses as well.
20835         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
20836
20837 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
20838
20839         * decimal.c: remove _MSC_VER conditional.
20840
20841 2002-02-13  Dick Porter  <dick@ximian.com>
20842
20843         * socket-io.c: 
20844         * icall.c: Internal calls for Blocking, Select, Shutdown,
20845         GetSocketOption and SetSocketOption
20846
20847 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20848
20849         * assembly.cs: better resolver: use it instead of some kludgy
20850         code.
20851
20852 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
20853
20854         * reflection.c: the best way to speed-up the compiler is to avoid
20855         infinite loops.
20856
20857 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
20858
20859         * class.c (mono_class_vtable): changed the object layout
20860         (obj->vtable->class). 
20861         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
20862
20863 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20864
20865         * assembly.c: look for assemblies in the assembly dir, too.
20866
20867 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20868
20869         * class.c: fix thinko in mono_class_from_type().
20870
20871 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20872
20873         * exception.h, exception.c: added TypeLoadException.
20874         * object.h, object.c: added mono_array_clone ().
20875         * icall.c: handle throwOnError in AssemblyGetType().
20876         Added Array.Clone().
20877         * opcode.h, opcode.c: use a single value for the opcode val.
20878         Compile fix for non-gcc compilers.
20879
20880 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
20881
20882         * opcodes.c, opcodes.h: export interesting info about opcodes.
20883
20884 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
20885
20886         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
20887         icalls. 
20888
20889         * class.c (class_compute_field_layout): set element_class for enums
20890         (mono_class_create_from_typedef): set element_class for normal classes
20891
20892         * icall.c (ves_icall_System_Enum_get_value): impl.
20893
20894         * class.c (mono_class_create_from_typedef): do not set valuetype
20895         flag for System.ValueType and System.Enum
20896
20897 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
20898
20899         * unicode.c (iconv_convert): fix big endian problem.
20900
20901 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20902
20903         * class.c: add asserts if we are ever going to scribble over memory.
20904         * socket-io.c: not all systems have AF_IRDA defined.
20905
20906 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
20907
20908         * class.c (class_compute_field_layout): do not consider static
20909         fields to compute alignment
20910
20911 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
20912
20913         * appdomain.c (mono_appdomain_get): impl.
20914         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
20915
20916 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
20917
20918         * icall.c: ignore "file://" prefix when loading an assembly.
20919
20920 2002-01-23  Dick Porter  <dick@ximian.com>
20921
20922         * socket-io.c:
20923         * icall.c:
20924         * Makefile.am: Added socket support
20925
20926 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20927
20928         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
20929         code back.  This should return the assemblies that are loaded by
20930         the runtime on behalf of an application domain. 
20931
20932         The current implementation is still broken, it just returns every
20933         assembly loaded, but until we get real applications domain this
20934         will do.
20935
20936 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
20937
20938         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
20939         AppDomain object.
20940
20941 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20942
20943         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
20944         the mono_class_from_name lookup.
20945         (ves_icall_get_parameter_info): ditto.
20946         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
20947         method.
20948         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
20949
20950 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
20951
20952         * class.c: load also nested classes on class init.
20953         System.ValueType instance methods gets passed boxed
20954         values, unless methods in derived classed that get a pointer to the
20955         data.
20956         * icall.c: use better name parsing code in GetType().
20957         * image.c, image.h: add mono_image_loaded ().
20958         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
20959         * reflection.c, reflection.h: added mono_reflection_parse_type().
20960
20961 2002-01-22  Veronica De Santis <veron78@interfree.it>
20962
20963         * icall.c : Added mapping of internal calls for Manual and Auto reset events
20964         * threads.c : Added the implementation of internal calls for events
20965         * threads.h : Added prototypes of internal calls for events
20966         
20967 2002-01-21  Radek Doulik  <rodo@ximian.com>
20968
20969         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
20970
20971 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
20972
20973         * class.c (mono_class_init): set min_align to 1 (instead of 0)
20974         (mono_class_value_size): use min_align
20975
20976 2002-01-20  Dick Porter  <dick@ximian.com>
20977
20978         * threads.h:
20979         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
20980         so it compiles on w32.
20981
20982 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
20983
20984         * metadata.c (mono_type_stack_size): impl.
20985
20986         * class.c (mono_class_get_field): impl. memberref token
20987
20988 2002-01-16 Veronica De Santis <veron78@@interfree.it>
20989
20990         * icall.h : Added the internal calls mapping for CreateMutex_internal
20991                     and ReleaseMutex_internal.
20992         * threads.h : Added the prototype of mutexes internal calls.
20993         * threads.c : Added the implementations of mutexes internal calls.
20994
20995 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20996
20997         * metaparse.h: removed unused file.
20998         * reflection.c, reflection.h: added stream_data_align () function 
20999         to align data in streams and keep stream aligned. Add support for
21000         exception support in method headers.
21001
21002 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
21003
21004         * unicode.c: make iconv_convert () return the number of bytess written
21005         in the output buffer.
21006
21007 2002-01-15  Dick Porter  <dick@ximian.com>
21008         * threads.c: Make the runtime's idea of infinite timeouts coincide
21009         with the class library's
21010
21011         Fix a particularly egregious bug in mono_thread_cleanup(). That
21012         code was so utterly bogus it must have been written on a Monday.
21013
21014 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21015
21016         * reflection.h: add subtypes field to TypeBuilder.
21017         * reflection.c: encode constants for literal fields.
21018         Handle subtypes. Fix user string token (and add a zero byte)
21019         at the end.
21020         
21021 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
21022
21023         * class.c (mono_class_init): bug fix: assign slot numbers for
21024         abstract methods.
21025
21026 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21027
21028         * reflection.c: don't try to output a code RVA for abstract methods.
21029         Small fixes for method header format. Output parameter info to the
21030         ParamDef table. Save method overriding info to MethodImpl table.
21031         Fix property support. Allow typedef.extends to be a type in the
21032         building assembly.
21033         * verify.c: fix off-by-one error.
21034
21035 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
21036
21037         * class.c: fix mono_class_from_mono_type () for szarray types.
21038         Remove unused cache check in mono_class_from_type_spec().
21039         * icall.c: *type_from_name () functions handle simple arrays and byref.
21040         * reflection.c: handle byref and szarray types. Handle methods without
21041         body (gets P/Invoke compilation working). Handle types and fields in
21042         get_token ().
21043         * reflection.h: add rank to MonoTypeInfo.
21044
21045 2002-01-10  Dick Porter  <dick@ximian.com>
21046
21047         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
21048         internal calls
21049
21050 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21051
21052         * icall.c: initialize class in type_from_handle ().
21053         Loop also in parent classes for get_method ().
21054         * reflection.c: properly encode class and valuetype types.
21055         Start on encoding TypeBuilder types. Handle fieldrefs.
21056         Use correct length when registering a user string.
21057         Handle ConstructorBuilder and MonoMethod in get_token ().
21058         Make mono_type_get_object () aware of cached types.
21059         * object.c: back out change to mono_string_new ().
21060
21061 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
21062         * object.c: mono_string_new should return a NULL when the string 
21063         passed in is NULL -- not try to deference it.
21064         
21065 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21066
21067         * icall.c: hack to make IsSubType work for TypeBuilders.
21068         * reflection.c: emit constructors before methods.
21069         Retrieve param names in mono_param_get_objects().
21070
21071 2002/01/05  Nick Drochak  <ndrochak@gol.com>
21072
21073         * Makefile.am: fix list of headers and sources so automake 1.5
21074         doesn't complain. Removed \# at end of list.
21075
21076 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21077
21078         * reflection.c: get token for a method ref. Set return type of
21079         constructor to void.
21080         * loader.c: debug message.
21081         * class.c: typo fix.
21082
21083 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
21084
21085         * icall.c: fix array init with rank > 1. FindMembers
21086         loops in parent class as well.
21087         * image.c: do not insert nested types in name cache.
21088         * reflection.c: warning fix.
21089         * reflection.h: add override method (for interface impl).
21090
21091 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
21092
21093         * metadata.c: fix customattr decoding.
21094
21095 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
21096
21097         * rawbuffer.cs: Added native Win32 implementation, avoids using
21098         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
21099
21100 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
21101
21102         * class.c: make the low-level routines handle the cache.
21103
21104 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
21105
21106         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
21107
21108 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
21109
21110         * class.c: fix mono_array_element_size() for objects.
21111         * class.h, class.c: add properties to MonoClass and load them
21112         at init time.
21113         * icall.c: check with isinst() when assigning a value to an array
21114         instead of requiring the classes to match exactly.
21115         Implemented icall for System.Type::GetType().
21116         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
21117         enums. Handle bindingflags when looking for methods and fields.
21118         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
21119         and mono_metadata_methods_from_property().
21120         * reflection.h, reflection.c: added structures for propreties,
21121         parameters and enums. Implemented mono_property_get_object() and
21122         mono_param_get_objects().
21123
21124 2001-12-18  Dick Porter  <dick@ximian.com>
21125
21126         * file-io.c: Use mono_string_to_utf16() instead of
21127         mono_string_chars()
21128
21129         * object.c: Added mono_string_to_utf16(), which copies the non
21130         NULL-terminated MonoString into a new double-null-terminated
21131         buffer.
21132
21133 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
21134
21135         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
21136
21137 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
21138
21139         * file-io.c: raise exceptions if handle is invalid.
21140
21141 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
21142
21143         * assembly.c: yet another check for mscorlib.
21144         * class.c, class.h: load nesting info for classes.
21145         * icall.c: many new functions to support the Reflection classes.
21146         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
21147         * reflection.h, reflection.c: mono_image_create_token(),
21148         mono_assembly_get_object(), mono_type_get_object(),
21149         mono_method_get_object(), mono_field_get_object(): methods to return
21150         objects that parallel the C representation of assemblies, types,
21151         methods, fields.
21152
21153 2001-12-11  Dick Porter  <dick@ximian.com>
21154
21155         * icall.c:
21156         * file-io.c: Internal calls for file IO.
21157
21158 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
21159
21160         * tabledefs.h: missing FileAttributes.
21161         * verify.h, verify.c: use is_valid_string () to simplify and check for
21162         valid strings more correctly. Fix warnings and speeling.
21163         Check more tables: Filed, File, ModuleRef, StandAloneSig.
21164         Check code: branches, maxstack, method calls.
21165
21166 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
21167
21168         * object.c (mono_object_allocate): removed static, so that the jit
21169         can allocate value types.
21170
21171         * icall.c (ves_icall_System_DateTime_GetNow): impl.
21172
21173 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21174
21175         * class.c: init enum types right away and register the
21176         token->MonoClass map in mono_class_create_from_typedef ().
21177         * verify.h, verify.c: first cut of the verifier.
21178         * pedump.c: add --verify switch to verify metadata tables.
21179         * tabledefs.h: add some missing enums.
21180
21181 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
21182
21183         * class.c (mono_install_runtime_class_init): impl.
21184         (mono_class_init): renamed mono_class_metadata_init to
21185         mono_class_init, also removed the metadata_inited flag
21186
21187         * object.c (mono_object_isinst): use faster algorithm
21188
21189 2001-11-30  Radek Doulik  <rodo@ximian.com>
21190
21191         * mono-endian.h: reverted last change
21192         added function prototypes
21193
21194         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
21195         add mono-endian.c back
21196
21197         * mono-endian.c: returned back, as Paolo pointed out, it's needed
21198         for unaligned access, I've mistaked it with endianess. I am
21199         sorry.
21200         (mono_read16): fix reverted endianess
21201         (mono_read64): ditto
21202         (mono_read32): ditto
21203
21204 2001-11-30  Dick Porter  <dick@ximian.com>
21205
21206         * exception.c: Implement mono_exception_from_name()
21207
21208 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21209
21210         * metadata.h, metadata.c: remove params_size and locals_size and their
21211         calculation from the metadata code: they are only usefult to the
21212         interp.
21213
21214 2001-11-29  Radek Doulik  <rodo@ximian.com>
21215
21216         * object.c (mono_ldstr): swap bytes here, it's probably not the
21217         best place, but works for me now, I'll redo it once I know mono
21218         better, also note that I add PROT_WRITE and don't reset back, also
21219         note that it's only affects big endians, so x86 should be OK
21220
21221         * mono-endian.h (read16): use just glib macros for both endians
21222
21223         * mono-endian.c: removed as glib macros are used in in
21224         mono-endian.h so we don't need to care about endianess for read
21225         macros as glib does that for us already
21226
21227 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
21228
21229         * class.h, class.h: take minimum alignment into consideration so
21230         that the fields of a class remain aligned also when in an array.
21231
21232 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21233
21234         * loader.h, loader.c: add mono_method_get_param_names().
21235         * class.c: 0-init class fields.
21236
21237 2001-11-26  Dick Porter  <dick@ximian.com>
21238
21239         * icall.c:
21240         * threads-types.h:
21241         * threads.c: New file that handles System.Threading on all platforms
21242
21243         * object.c: 
21244         * object.h: Remove the synchronisation struct from MonoObject,
21245         replace it with a pointer that gets initialised on demand
21246
21247         * Makefile.am: Replace all the system-specific threading code with
21248         a single file that uses the new wrapper library
21249
21250 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
21251
21252         * class.c, class.h: add mono_install_trampoline() so that the runtime
21253         can register a function to create a trampoline: removes the ugly
21254         requirement that a runtime needed to export arch_create_jit_trampoline.
21255         * object.h, object.c: added mono_install_handler() so that the runtime
21256         can install an handler for exceptions generated in C code (with
21257         mono_raise_exception()). Added C struct for System.Delegate.
21258         * pedump.c: removed arch_create_jit_trampoline.
21259         * reflection.c: some cleanups to allow registering user strings and
21260         later getting a token for methodrefs and fieldrefs before the assembly
21261         is built.
21262         * row-indexes.h: updates and fixes from the new ECMA specs.
21263
21264 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
21265
21266         * class.h, class.c: add enum_basetype field to MonoClass.
21267         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
21268         to get index in the constant table reated to a field, param or
21269         property.
21270         * reflection.h, reflection.c: handle constructors. Set public-key and
21271         version number of the built assembly to 0.
21272         * row-indexes.h: update from new ECMA spec.
21273
21274 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
21275
21276         * class.h, class.c: add a max_interface_id to MonoClass.
21277         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
21278         since it's used to do that. Added mono_type_type_from_obj().
21279         Make GetType() return NULL instead of segfaulting if the type was not
21280         found. Handle simple arrays in assQualifiedName.
21281         * object.h: add a struct to represent an Exception.
21282         * reflection.c: output call convention in method signature.
21283         Add code to support P/Invoke methods and fixed offsets for fields.
21284
21285 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
21286
21287         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
21288         the value.
21289         * icall.c: use mono_array_addr instead of array->vector: fixes the
21290         reflection image writing.
21291         * reflection.c: init call convention byte to 0 in method signature.
21292         Encode the property signature. Don't output property-related methods
21293         twice. Really process the properties for a type (don't cast a field to
21294         a property, my mom always told me that).
21295         Fix 64 bit issues in pointer alignment in a different and more
21296         readable way.
21297
21298 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
21299
21300         * loader.h: Removed type class from MonoDefaults, added monotype
21301
21302         * loader.c: Loaded MonoType, removed loading of Type
21303
21304         * icall.c (my_mono_new_object): Now returns a System.MonoType,
21305         and fills in System.Type._impl with a RuntimeTypeHandle rather
21306         than the actual MonoClass *
21307
21308         (ves_icall_type_from_handle): change from type_class to
21309         monotype_class
21310
21311         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
21312         implemented
21313
21314         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
21315         implemented
21316
21317         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
21318
21319         (ves_icall_System_Reflection_Assembly_GetType): implemented
21320
21321         (ves_icall_System_MonoType_assQualifiedName): implemented
21322
21323         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
21324
21325 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
21326
21327         * assembly.c (mono_assembly_open): Implement a cache for the
21328         assemblies. 
21329
21330         (mono_assembly_close): only destroy the assembly when the last
21331         reference is gone.
21332         
21333 2001-11-09  Dick Porter  <dick@ximian.com>
21334
21335         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
21336
21337 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
21338
21339         * class.c (mono_class_metadata_init): bug fix: compute the right slot
21340
21341 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21342
21343         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
21344         from Martin Weindel.
21345         * object.h: add mono_string_chars ().
21346
21347 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
21348
21349         * reflection.c (build_compressed_metadata): Eliminates warnings
21350         and uses 64-bit clean code.
21351
21352         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
21353         (mono_type_equal): Change signature to eliminate warnings.
21354
21355 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21356
21357         * icall.c, loader.c: remove the internalcall array constructors.
21358         Changes to match the new MonoArray structure.
21359         * object.h, object.c: an array object doesn't allocate an extra
21360         vector. Add mono_array_new_full () to create jagged arrays easily.
21361
21362 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
21363
21364         * metadata.h, metadata.c: add mono_metadata_field_info () to
21365         retreive all the info about a field from vairous tables.
21366         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
21367         * class.h, class.c: augment MonoClassField with more info.
21368         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
21369         policy and load a field's RVA if needed.
21370
21371 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
21372
21373         * class.c (mono_class_metadata_init): create a trampoline for all
21374         virtual functions instead of actually compiling them.
21375
21376 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
21377
21378         * class.h, class.c: include name in MonoClassField.
21379         * class.c: fix fundamental type of System.Object and System.String.
21380         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
21381         tokens in ldtoken.
21382         * icall.c: remove internalcalls for the Reflection stuff that is now
21383         done in C# code.
21384         * loader.c: mono_field_from_memberref () implementation.
21385         * mono-endian.c: thinko (s/struct/union/g).
21386         * object.c, object.h: make the mono_string_* prototypes actually use
21387         MonoString instead of MonoObject.
21388         * reflection.c, reflection.h: updates for changes in the reflection
21389         code in corlib: we use C structures that map to the actual C# classes.
21390         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
21391         fat method header if needed and use the info from the ILGenerator for
21392         methods. Handle fields in types. Misc fixes.
21393
21394 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
21395
21396         * class.c (mono_class_metadata_init): bug fix: always allocate
21397         space for static class data
21398
21399 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
21400
21401         * class.c (mono_compute_relative_numbering): use relative
21402         numbering to support fast runtime type checks.
21403
21404 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
21405
21406         * class.c (mono_class_create_from_typeref): added debugging output
21407         to print class name when MonoDummy is returned instead of real class
21408
21409 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
21410
21411         * class.c (mono_class_metadata_init): interface offset table now
21412         contains pointers into the vtable - this is more efficient for the jit
21413
21414 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
21415
21416         * class.c (mono_class_metadata_init): use a temporary vtable (the
21417         old algorithm only worked for the interpreter, but not for the jit)
21418
21419 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
21420
21421         * loader.c (method_from_memberref): use mono_class_get to get the
21422         class of an array instead of using System.Array directly.
21423         (mono_get_method): also add MEMBERREF methods to the method cache
21424         which usefull for arrays.
21425
21426 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
21427
21428         * pedump.c (arch_compile_method): added to compute vtable entry
21429
21430         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
21431         number of interfaces.
21432         
21433         * class.h: merged MonoArrayClass into MonoClass
21434
21435         * class.c (mono_class_create_from_typedef): compute the vtable size and
21436         allocate space to include the vtable inside MonoClass
21437         (mono_class_metadata_init): initialize the vtable
21438
21439 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
21440
21441         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
21442         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
21443         * image.c: endian fixes by Laurent Rioux.
21444         * object.h, object.c: rename MonoStringObject to MonoString and
21445         MonoArrayObject to MonoArray. Change some function names to conform to
21446         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
21447         guint16* as first argument, so don't use char*.
21448         Provide macros to do the interesting things on arrays in a portable way.
21449         * threads-pthread.c: updates for the API changes and #include <sched.h>
21450         (required for sched_yield()).
21451         * icall.c: updates for the API changes above.
21452         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
21453         platforms that need them.
21454
21455 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21456
21457         * class.c: set the correct type for all the fundamental
21458         type when loading the class.
21459
21460 2001-10-05  Dick Porter  <dick@ximian.com>
21461
21462         * threads-pthread.c (pthread_mutex_timedlock): Simple
21463         compatibility version for C libraries that lack this call.
21464
21465 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21466
21467         * class.c: MonoTypes stored in MonoClass are stored as
21468         fundamental MonoTypes when the class represents a
21469         fundamental type (System.Int32, ...).
21470         The TypeHandle return by ldtoken is a MonoType*.
21471         * icall.c: ves_icall_get_data_chunk () write out all the
21472         PE/COFF stuff. Implement ves_icall_define_method (),
21473         ves_icall_set_method_body (), ves_icall_type_from_handle ().
21474         * image.c: properly skip unknown streams.
21475         * loader.h, loader.c: add type_class to mono_defaults.
21476         * metadata.c, metadata.h: export compute_size () as
21477         mono_metadata_compute_size () with a better interface.
21478         Typo and C&P fixes.
21479         * pedump.c: don't try to print the entry point RVA if there is no entry point.
21480         * reflection.c, reflection.h: many cleanups, fixes, output method
21481         signatures and headers, typedef and typeref info, compress the metadata
21482         tables, output all the heap streams, cli header etc.
21483         * row-indexes.h: typo fixes.
21484
21485 2001-10-04  Dick Porter  <dick@ximian.com>
21486
21487         * object.h: Add a synchronisation mutex struct to MonoObject
21488
21489         * object.c (mono_new_object): Initialise the object
21490         synchronisation mutexes
21491
21492         * icall.c: System.Threading.Monitor internal calls
21493         
21494         * threads-pthread.h:
21495         * threads-pthread.c: System.Threading.Monitor internal calls
21496
21497         * threads-types.h: New file, includes the system-specific thread
21498         structures
21499         
21500         * threads-pthread-types.h:
21501         * threads-pthread-types.c: New files, handle pthread-specific
21502         synchronisation types
21503
21504         * threads-dummy-types.h: 
21505         * threads-dummy-types.c: New files of dummy support for
21506         thread-specific types
21507
21508         * metadata.c:
21509         * image.c:
21510         * pedump.c: include mono-endian.h not endian.h
21511         
21512         * Makefile.am: More threads files.
21513         Name mono-endian.h not endian.h
21514
21515 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
21516
21517         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
21518         stuff and implement a few more bits.
21519         * icall.c: a field needs to be dereferenced twice. Do not use the same
21520         name for two variables in the same scope.
21521         * image.c, image.h: cleanups.
21522
21523 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
21524
21525         * class.c (mono_class_metadata_init): bug fix: compute the right size
21526
21527 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
21528
21529         * icall.c: implemented some of the Reflection internalcalls.
21530         * image.c, image.h: start writing out the PE/COFF image.
21531         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
21532         that does the reverse than decode_blob_size ().
21533         * object.c: use mono_metadata_encode_value (). Move here
21534         temporary implementation of mono_string_to_utf8 ().
21535         * rawbuffer.c: make malloc_map static.
21536
21537 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21538
21539         * metadata.c: fix type comparison for arrays.
21540         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
21541         Added a couple of new classes to monodefaults.
21542         * icall.c: added a couple of Reflection-related internalcalls.
21543         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
21544         Added a byval_arg MonoType to MonoClass.
21545
21546 2001-09-28  Dick Porter  <dick@ximian.com>
21547
21548         * icall.c:
21549         * threads-pthread.h: 
21550         * threads-pthread.c: Implemented internal calls for
21551         LocalDataStoreSlot operations.  Applied mutexes around all shared
21552         data.  Reworked the thread creation and Start() operations to
21553         avoid a race condition.
21554         
21555         * threads-dummy.h:
21556         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
21557
21558 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
21559
21560         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
21561
21562 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
21563
21564         * class.c, loader.c: warn and return NULL instead of erroring out.
21565         * icall.c: added System.AppDomain::getCurDomain().
21566         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
21567
21568 2001-09-25  Dick Porter  <dick@ximian.com>
21569
21570         * threads-pthread.h:
21571         * threads-pthread.c: Implemented timed thread joining and added
21572         System.Threading.Thread::Join_internal internal call
21573
21574         * icall.c: Added System.Threading.Thread::Join_internal internal call
21575
21576         * threads-dummy.h:
21577         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
21578
21579 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
21580
21581         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
21582         mono_string_intern () to implement the semantics of the ldstr opcode
21583         and the interning of System.Strings.
21584         * icall.c: provide hooks to make String::IsIntern and String::Intern
21585         internalcalls.
21586
21587 2001-09-23  Dick Porter  <dick@ximian.com>
21588
21589         * threads-dummy.c: 
21590         * threads-dummy.h: New files of dummy threading routines
21591
21592         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
21593         support code based on system specifics
21594
21595         Rename PTHREAD_LIBS to THREAD_LIBS
21596         
21597 2001-09-23  Dick Porter  <dick@ximian.com>
21598
21599         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
21600         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
21601         internal calls.
21602         (mono_thread_init): Set up a Thread object instance to return when
21603         the main thread calls Thread.CurrentThread
21604         (mono_thread_cleanup): Wait for all subthreads to exit
21605
21606         * icall.c: New internal calls for System.Threading.Thread::Sleep
21607         (including Schedule) and CurrentThread
21608
21609         * threads.h: New file, to insulate thread-specific stuff from the
21610         rest of the code
21611
21612 2001-09-21  Dick Porter  <dick@ximian.com>
21613
21614         * threads-pthread.h: 
21615         * threads-pthread.c: New file, for handling pthreads-style
21616         threading support.  Start() now starts a new thread and executes
21617         the ThreadStart delegate instance.
21618
21619         * icall.c: Added the internalcall for
21620         System.Threading.Thread::Start_internal
21621
21622         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
21623
21624 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
21625
21626         * loader.c: work around the different signatures for delegates
21627         constructors csc generates in compiled code vs the ones compiled in mscorlib.
21628
21629 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21630
21631         * class.h, class.c: add mono_class_get_field_from_name ().
21632         * *: Fix C comments and other ANSI C issues.
21633
21634 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
21635
21636         * endian.h, assembly.c: fix some endianness issues.
21637
21638 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
21639
21640         * loader.h, load.c: add delegate_class to mono_defaults.
21641         Handle runtime provided methods in mono_get_method ().
21642
21643 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
21644
21645         * loader.c (mono_get_method): use pinvoke for internal call
21646
21647         * icall.c: use pinvoke for internal call
21648
21649         * loader.c (method_from_memberref): set the method name
21650
21651 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
21652
21653         * metadata.c: help the compiler generate better code for
21654         mono_class_from_mono_type ().
21655
21656 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
21657
21658         * class.c (mono_class_metadata_init): delayed computing of the
21659         class size to mono_class_metadata_init ()
21660
21661 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
21662
21663         * class.c, class.h: add an interfaces member to MonoClass.
21664         * image.c, image.h: add assembly_name field to MonoImage
21665         from the assembly table.
21666         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
21667
21668 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21669
21670         * class.c: Handle Array in mono_class_from_mono_type ().
21671         * metadata.c, pedump.c: some endian fixes.
21672
21673 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21674
21675         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
21676         * metadata.c: fix small problem introduced with the latest commit.
21677
21678 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
21679
21680         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
21681         We don't need a MonoMetadata pointer anymore to compare signatures in
21682         mono_metadata_signature_equal (), update callers.
21683         Reduced memory usage an number of allocations for MonoMethodHeader and
21684         MonoMethodSignature.
21685
21686 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
21687
21688         * metadata.c: added compare for szarray.
21689
21690 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
21691
21692         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
21693         and add a couple more types to it and mono_defaults. Give an hint on
21694         classes that need implementing in our corlib and are referenced
21695         in mscorlib.
21696
21697 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
21698
21699         * class.h, class.c: keep track if a class is also an Enum.
21700         * loader.c: Implement a couple more types for use in libffi
21701         marshalling. Gives better diagnostics when failing to dlopen
21702         a library. Set method->klass for P/Invoke methods, too.
21703
21704 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
21705
21706         * class.c, class.h: add a MonoType this_arg to MonoClass that
21707         represents a pointer to an object of the class' type that
21708         can be used by the interpreter and later the type cache.
21709         Add best guess alignment info for valuetype objects.
21710
21711 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
21712
21713         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
21714         into MonoType: one less level of indirection and allocation and
21715         simplifies quite a bit of code. Added cache for MonoTypes that are
21716         used frequently, so that we don't need to allocate them all the time.
21717
21718 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
21719
21720         * class.c (mono_class_create_from_typedef): System.Enum is also a
21721         value type, although it does not derive from System.ValueType
21722         (maybe a bug in the ms compiler?)
21723
21724         * metadata.c (mono_type_size): return the right size for value types
21725
21726         * loader.c (mono_get_method): only initialize method header if not abstract
21727
21728         * class.c (mono_class_from_mono_type): use mono_default values. 
21729
21730 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
21731
21732         * *: use MonoClass pointers instead of <type_tokens>
21733         
21734         * class.h: new flag: metadata_inited.
21735
21736         * class.c (mono_class_metadata_init): impl.
21737         (mono_class_instance_size): impl.
21738         (mono_class_data_size): impl.
21739
21740 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21741
21742         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
21743         MonoClass now has the name and name_space fields. 
21744         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
21745         mono_get_method () takes and optional MonoClass as argument.
21746         Removed mono_typedef_from_name() and added mono_class_token_from_name()
21747         instead that takes advantage of a map from class names to typedef
21748         tokens in MonoImage.
21749
21750 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
21751
21752         * metadata.c: zero is not a valid alignment boundary.
21753         Merge MONO_TYPE_VOID in default decoding code.
21754
21755 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
21756
21757         * image.h: merged MonoMetadata into MonoImage
21758
21759         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
21760         identify the type of elements.
21761
21762 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
21763
21764         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
21765         * cil-coff.h: split MonoMSDOSHeader and add size info.
21766         * image.c: add some consistency checks.
21767         * metadata.c: fix row size computation: one programmer
21768         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
21769         add explanation for the locator routine.
21770         Fix decoding of size in method header.
21771         
21772 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
21773
21774         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
21775         (g_concat_dir_and_file): Bring g_concat_dir_and_file
21776         function from gnome-libs.  This uses the right path separator
21777         based on the OS, and also works around a bug in some systems where
21778         a double slash is not allowed. 
21779         (default_assembly_name_resolver): Use g_concat_dir_and_file
21780         (mono_assembly_open): ditto.
21781
21782 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
21783
21784         * metadata.c (mono_metadata_signature_equal): impl.
21785
21786         * *: void is now a realy MonoType (instead of using NULL)
21787         
21788         * metadata.c (do_mono_metadata_parse_type): use
21789         mono_metadata_parse_type to parse void value.
21790
21791 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
21792
21793         * metadata.c, metadata.h: in the signature and method header store
21794         only the space required for holding the loca vars and incoming arguments.
21795
21796 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
21797
21798         * metadata.c (do_mono_metadata_parse_type): treat void like any
21799         other type (instead of assigning NULL);
21800
21801 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
21802
21803         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
21804
21805 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
21806
21807         * image.c (do_mono_image_open): added a cache for arrays.
21808
21809 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21810
21811         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
21812         decode a single column from a row in a metadata table and changes
21813         to take advantage of it in the typedef locator (gives a nice speed up).
21814         Store offset info for function params.
21815
21816 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
21817
21818         * image.h (MONO_IMAGE_IS_CORLIB): removed 
21819
21820 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
21821
21822         * assembly.c: how could mono_assembly_close () had ever worked?
21823         * metadata.c, metadata.h: provide offset info for local vars.
21824         Implement mono_type_size () to take care of alignment as well
21825         as size (it was mono_field_type_size in cli/class.c before).
21826
21827 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
21828
21829         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
21830
21831         * assembly.h (CORLIB_NAME): set to corlib.dll
21832
21833         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
21834
21835 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21836
21837         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
21838         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
21839         tokentype.h: massive namespace cleanup.
21840
21841 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21842
21843         * metadata.h, metadata.c: decode exception clauses when parsing method header.
21844
21845 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
21846
21847         * metadata.c (mono_metadata_free_type): added check for type !=
21848         NULL (void) before calling mono_metadata_free_type()
21849
21850 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
21851
21852         * metadata.h, row_indexes.h: added header with enumerations to use
21853         to index in the columns from tables in metadata and to decode coded
21854         tokens: we should start using this instead of embedding magic numbers
21855         all over the code.
21856
21857 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
21858
21859         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
21860         Move metadata_t info from cli_image_info_t to MonoImage, where
21861         it's easily accessible. Changed all the uses accordingly.
21862         Added the method and class caches to MonoImage.
21863         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
21864         and mono_metadata_decode_value () signature to be more consistent
21865         with the other parse functions (and simplify code). Taken advantage
21866         of zero-length array allocation with GCC. Removed reduntant (and
21867         wrong) MonoFieldType struct and use MonoParam instead. Changed
21868         mono_metadata_parse_field_type () to use common code for parsing.
21869         Added mono_metadata_typedef_from_field () and
21870         mono_metadata_typedef_from_method () to lookup a typedef index from a
21871         field or method token.
21872         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
21873
21874 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
21875
21876         * metadata.c (mono_metadata_parse_field_type): Implement. 
21877         (do_mono_metadata_parse_type): Split engine from
21878         mono_metadata_parse_type, so that we can create smaller structures
21879         for things that just have one pointer to the MonoType (look at
21880         the MonoFieldType)
21881
21882 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
21883
21884         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
21885         as Jan Gray found out, it is incorrect. 
21886
21887 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
21888
21889         * assembly.c: Implement asssembly loading.  This loads an image
21890         and loads all the referenced assemblies.  Come to think of it, we
21891         could always do lazy loading of the assemblies. 
21892
21893         * image.c (mono_image_open): Keep loaded images in a hashtable.
21894
21895         * image.h (MonoImage): Add reference count.
21896
21897 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
21898
21899         * assembly.c (mono_assembly_open): Keep track of the file name in
21900         case the assembly has no ASSEMBLY table.
21901
21902         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
21903         from get.c here.
21904
21905 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
21906
21907         * metadata.c, metadata.h: decode local vars in method header
21908         parse function. Change callers accordingly.
21909
21910 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
21911
21912         * metadata.h, cil-coff.h: protect against multiple inclusion.
21913         Added some new structures to hold information decoded from metadata:
21914         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
21915         and relevant decoding/free functions.
21916         * metadata.c: implement decoding functions. Add warning for out of bounds
21917         index in mono_metadata_locate(). Implement mono_get_method () to retreive
21918         all the info about a method signature and invocation. Remove check on
21919         uninitialized local var in parse_mh() and fix memory leak.
21920
21921 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
21922
21923         * metadata.h: More macros.
21924
21925         * tokentype.h: New file.
21926
21927 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
21928
21929         * assembly.c: added a consistency check and initialize
21930         some structures with g_new0().
21931         * metadata.c: fixed a couple more bugs in table size computation
21932         and add other checks for out-of bound access to metadata.
21933
21934 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
21935
21936         * metatada.c: fix bugs computing table sizes. Spew a
21937         warning when index in string heap is out of bounds.
21938
21939 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
21940
21941         * metadata.h: Add a couple of macros to manipulate tokens. 
21942
21943 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21944
21945         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
21946         cli_section_tables).
21947
21948 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
21949
21950         * metadata.c (mono_metadata_user_string): New function, provides
21951         access to the UserString heap. 
21952
21953 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
21954
21955         * metadata.c: Add inline documentation.
21956
21957 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
21958
21959         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
21960         files. 
21961
21962 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
21963
21964         * typeattr.h: New file, TypeAttribute flags. 
21965
21966 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
21967
21968         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
21969         mono_assembly_ensure_section): Section loading code.
21970         (load_section_tables): Load the sections.
21971
21972         * mono/metadata/metadata.c (mono_metadata_locate_token,
21973         mono_metadata_locate): Functions to locate the information
21974         definition given a token or a table and an index.
21975         (mono_metadata_compute_table_bases): New.
21976         (compute_size): New function to compute the sizes of the various
21977         tables.
21978
21979         * mono/metadata/metadata.h: Finish listing the different index
21980         types. 
21981
21982         * mono/metadata/pedump.c: Improve to dump new information.
21983
21984 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
21985
21986         * mono/metadata/metadata.c: Entered all the tables matching
21987         Beta2. 
21988
21989         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
21990
21991
21992