Fix a bug in the previous change.
[mono.git] / mono / metadata / ChangeLog
1 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
2
3         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
4         returning a vtype.
5
6         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
7         reflection.c: Use mono_field_get_name () for accessing a field's name.
8
9         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
10         class.c
11
12         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
13         field.
14
15         * loader.c (find_method_in_class): Reenable the metadata optimization by
16         not using it for generic instances.
17
18         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
19         data/def_type fields from MonoClassField into a separate structure.
20         (struct MonoClassField): Remove data/def_type fields.
21         (struct _MonoClass): Add a 'field_def_values' array to store the default
22         values/RVA for fields.
23
24         * class.c reflection.c: Update after the changes.
25         
26         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
27         for accessing field->data.
28
29         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
30
31         * loader.c (find_method_in_class): Revert the last change for now as
32         it breaks Mono.C5 unit tests.
33
34         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
35         'field_generic_types' and 'field_objects' which contain the information
36         previously stored in MonoInflatedField.
37         (MonoInflatedField): Delete.
38         (struct _MonoClassField): Delete 'generic_info' field.
39
40         * reflection.c: Store the information which was previously in 
41         field->generic_info in MonoDynamicGenericClass instead.
42
43         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
44         MonoClassField changes.
45
46 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
47
48         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
49         store the value inside the data array of the MonoMethodWrapper.
50         This saves memory, is faster and fixes the lifetime issues (methods
51         were never removed from the hash previously). May also fix bug#436996.
52
53 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
54
55         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
56         generic instances, compute the type from the generic definition instead of
57         looking in field->generic_info.
58
59         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
60         for inflated fields, the only user was get_fieldref_token () which no
61         longer needs it.
62
63         * class.c (mono_class_init): Revert the last change as it seems to cause
64         crashes.
65
66         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
67         bytes on 64 bit platforms.
68
69         * object.c (mono_class_create_runtime_vtable): Fix a warning.
70         
71         * object.c (mono_class_create_runtime_vtable): Don't initalize
72         field->data/field->def_type here, it is done lazily by 
73         mono_class_get_field_default_value ().
74
75         * icall.c (ves_icall_get_enum_info): Call 
76         mono_class_get_field_default_value () instead of directly accessing
77         field->data and field->def_type.
78
79         * object.c (get_default_field_value): Ditto.
80
81         * class.c (mono_field_get_data): Ditto.
82         
83         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
84         call for generic instances.
85
86         * loader.c (find_method_in_class): If klass != from_class, then inflate
87         the method with the context of from_class, since the caller assumes this.
88
89 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
90
91         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
92         call for generic instances.
93         (mono_class_setup_properties): Call setup_properties () before accessing
94         gklass->properties.
95
96         * loader.c (find_method_in_class): Search directly in metadata to avoid
97         calling mono_class_setup_methods ().
98
99         * class.c (mono_class_get_virtual_methods): New helper function to iterate
100         over the virtual methods of a class using metadata if possible, avoiding the
101         creation of MonoMethod's for non-virtual methods.
102         
103         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
104         get_virtual_methods () to iterate over the virtual methods of classes.
105
106         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
107         for accessing method->slot.
108
109 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
110
111         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
112
113 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
114
115         * class.c (mono_method_get_vtable_index): Use
116         mono_method_get_vtable_slot () for accessing method->slot.
117
118         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
119         accessing klass->methods.
120
121         * class.c (mono_method_get_vtable_slot): New helper function.
122         (mono_class_get_vtable_entry): Ditto.
123         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
124         accessing method->slot.
125
126         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
127         method to get_inflated_method ().
128
129         * class.c (mono_class_get_inflated_method): New helper method to obtain
130         a method of an inflated class without calling setup_methods ().
131         (mono_class_get_cctor): Use get_inflated_method.
132
133         * generic-sharing.c (mono_class_get_method_generic): Ditto.
134         
135         * marshal.c image.c: Lazily create all the marshal caches.
136
137         * image.c (mono_image_init): Move initialization of runtime_invoke
138         caches to marshal.c.
139
140         * marshal.c (get_cache): New helper function to lazily initialize a 
141         wrapper cache.
142         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
143
144         * debug-helpers.c (mono_method_full_name): Include generic arguments.
145
146 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
147
148         * loader.c: fixed check for interface type.
149
150 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
151
152         * appdomain.c: check for NULL setup before it's referenced.
153
154 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
155
156         * class.c: remove the unused old vtable setup code.
157
158 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
159
160         * class.c: don't depend on interface order in
161         setup_interface_offsets (bug #435777).
162         * reflection.c: sort the InterfaceImpl table (patch from
163         Jb Evain  <jbevain@novell.com>).
164
165 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
166
167         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
168         the low level assemblies lock.
169
170 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
171
172         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
173         object.c, reflection.c, socket-io.c, threads.c: introduced
174         mono_framework_version () to return the major framewrok version,
175         changed the code that was using more complex patterns to use it.
176         Return the correct value for PlatformID for OSX.
177
178 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
179
180         * icall-def.h, process.h, process.c: added an icall to get info about
181         processes using mono-proclib.
182
183 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
184
185         * mono-perfcounters.c: use the mono-proclib functions to
186         access process information.
187
188 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
189
190         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
191         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
192         reflection.c: remove rawbuffer usage: mmap support is more sanely
193         provided by utils/mono-mmap.
194
195 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
196
197         * gc.c: use posix semaphores when possible so that
198         mono_gc_finalize_notify() is signal safe.
199
200 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
201
202         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
203         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
204         be #ifdef-ed out, the linker will remove the rest.
205
206         * marshal.c: Implement DISABLE_COM.
207
208         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
209
210 2008-10-11  Miguel de Icaza  <miguel@novell.com>
211
212         * locales.c (string_invariant_compare_char): Optimization: do not
213         call g_unichar_type unless we actually need the information.
214
215 2008-10-10  Mark Probst  <mark.probst@gmail.com>
216
217         * object.c, class-internals.h: Also create remoting trampolines
218         for generic methods.  Pass the domain to the remoting trampoline
219         creation function, too.
220
221 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
222
223         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
224
225 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
226
227         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
228         Vector4ui.
229
230 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
231
232         * assembly.c:
233         * locales.c: remove the use of g_strdown. Fixes bug #322313.
234
235 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
236
237         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
238         for the least possible amount of time (extending the fix in r113458).
239
240 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
241
242         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
243
244 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
245
246         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
247         as possible simd intrinsic types.
248         Optimized the test to check for the common prefix first.
249
250 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
251
252         * class.c: back out part of a broken optimization committed on
253         May 23th (bug #433908).
254
255 2008-10-09  Mark Probst  <mark.probst@gmail.com>
256
257         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
258         Win32.  Should fix #432388 for most cases until we have the new
259         profiler on Win32.
260
261 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
262
263         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
264         instead of using inst->id so the hash is stable for AOT.
265
266 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
267
268         * appdomain.c:
269         * icall.c: create a .ini file for shadow-copied assemblies that
270         contains the location of the original assembly. Use this to return the
271         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
272         Also fix the number of '/' for windows when returning the CodeBase.
273         Fixes bug #430920.
274
275 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
276
277         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
278
279         Code is contributed under MIT/X11 license.
280
281 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
282
283         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
284           if if the class vtable needs initialized.
285
286         Code is contributed under MIT/X11 license.
287
288 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
289
290         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
291           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
292           STRING->BSTR, and CLASS->INTERFACE.
293
294         Code is contributed under MIT/X11 license.
295
296 2008-10-07  Marek Habersack  <mhabersack@novell.com>
297
298         * sysmath.h: changed the declaration of the
299         ves_icall_System_Math_Round2 icall by adding an extra
300         away_from_zero parameter.
301
302         * sysmath.c (ves_icall_System_Math_Round2): added support for
303         away from zero rounding. The icall now takes an extra boolean
304         parameter to signal that away from zero operation is requested.
305
306 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
307
308         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
309         the delegate klass so it can work with full-aot.
310         (mono_marshal_get_delegate_end_invoke): Ditto.
311         (mono_marshal_get_delegate_invoke): Ditto.
312
313 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
314
315         * gc.c, attach.h, attach.c: remove a bad pattern:
316         add_finalizer_callback () is not implemented correctly, it can't
317         without adding more overhead to the finalizer loop and it's not
318         even needed, since we know exactly what we need to call, so there is
319         no need to do so through an expensive function pointer.
320
321 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
322
323         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
324         for the no-gc case.
325         * attach.c (mono_attach_init): Remove the #ifdef.
326
327 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
328
329         * attach.c (mono_attach_init): Don't use
330         mono_gc_add_finalizer_thread_callback when compiling without GC.
331         Fixes #432306.
332         
333         Code is contributed under MIT/X11 license.
334
335 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
336
337         * class.c (mono_class_create_from_typedef): Remove the 
338         #ifndef DISABLE_SIMD stuff.
339
340 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
341
342         * class-internals.h (MonoClass): Added simd_type bit field.
343
344         * class.c (mono_class_create_from_typedef): Check if type is a simd
345         intrinsic.
346
347 2008-10-03  Mark Probst  <mark.probst@gmail.com>
348
349         * object.c (mono_method_add_generic_virtual_invocation): Only add
350         instantiations to the thunk whose count is at least as large as
351         the threshold.
352
353 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
354
355         * icall.c: changed the Type of the exception thrown when trying to
356         invoke a constructor on an abstract class. Part of the fix for bug
357         #324185.
358
359 2008-10-02  Mark Probst  <mark.probst@gmail.com>
360
361         * class.c, class-internals.h (mono_method_get_vtable_index): New
362         function which returns the index into the vtable and properly
363         handles inflated virtual generic methods.
364
365 2008-10-01  Mark Probst  <mark.probst@gmail.com>
366
367         * object.c, domain.c, object-internals.h, domain-internals.h:
368         Generalize IMT thunk machinery to also handle thunks for virtual
369         generic method invokes.  When a virtual generic method is invoked
370         more than a number of times we insert it into the thunk so that it
371         can be called without lookup in unmanaged code.
372
373         * generic-sharing.c, class-internals.h: Fetching a
374         MonoGenericInst* for a method from an (M)RGCTX.
375
376 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
377
378         * marshal.c (emit_marshal_string): Applied a variant of a patch by
379         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
380         marshalling. Fixes #431304.
381
382 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
383
384         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
385           handle when ref is specified without In or Out.
386
387         Code is contributed under MIT/X11 license.
388
389 2008-09-30  Mark Probst  <mark.probst@gmail.com>
390
391         * loader.c (mono_get_method_constrained): Don't expand method with
392         the class's context, because it's already a method of that class.
393
394 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
395
396         * attach.c : should be correct build fix.
397
398 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
399
400         * attach.c: Fix the previous change.
401
402 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
403
404         * attach.c : quick w32 build fix.
405
406 2008-09-27  Miguel de Icaza  <miguel@novell.com>
407
408         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
409         crashes MonoDevelop: #430455.
410
411 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
412
413         * domain-internals.h (struct _MonoDomain): Move most fields used only by
414         the JIT do MonoJitDomainInfo in ../mini/mini.h.
415
416         * domain.c: Remove initialization/cleanup of the removed fields.
417
418 2008-09-27  Mark Probst  <mark.probst@gmail.com>
419
420         * class.c (mono_class_generic_sharing_enabled): Enable generic
421         code sharing for PPC.
422
423 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
424
425         * attach.c : Fixing the Windows builds.
426
427         Code is contributed under MIT/X11 license.
428
429 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
430
431         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
432         the default generic sharing mode to 'all'.
433
434 2008-09-25  Mark Probst  <mark.probst@gmail.com>
435
436         * generic-sharing.c, class-internals.h: New function for checking
437         whether a method needs a static RGCTX invoke wrapper.  A few
438         funtions moved from mini/generic-sharing.c.
439
440         * icall.c: New function used.
441
442 2008-09-25  Mark Probst  <mark.probst@gmail.com>
443
444         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
445         Static RGCTX invoke wrapping applies to value type methods, too.
446
447         * class.c (mono_class_setup_vtable_general): In generic-shared
448         value types, wrap methods with a static RGCTX invoke wrapper.
449
450 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
451
452         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
453         osx build.
454
455 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
456
457         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
458         register a callback which is called when the finalizer thread is woken
459         up.
460         (finalizer_thread): Call the callback if it exists.
461
462         * attach.h attach.c: New files, implementing the attach mechanism.
463
464         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
465         
466         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
467         by the previous change.
468
469 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
470
471         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
472         loader.c, marshal.c, metadata-internals.h, metadata.c,
473         method-builder.c, object.c, reflection.c: introduced specific functions
474         to allocate from the domain and image mempools and cleaned up most of
475         the code to use them (still missing a few in reflection.c).
476         Keep the loader bytes counter updated.
477
478 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
479
480         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
481         loader-related counters.
482
483 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
484
485         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
486         added more MS-compatible counters.
487
488 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
489
490         * class.c (mono_class_setup_fields): Call setup_fields before accessing
491         class->blittable. Fixes #428217.
492
493 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
494
495         * reflection.c (mono_image_get_field_on_inst_token): Call 
496         field_encode_signature () since that handles custom modifiers too.
497         Fixes #424663.
498
499 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
500
501         * reflection.c (add_custom_modifiers): New helper function to merge custom
502         modifiers stored in objects to a MonoType.
503         (fieldref_encode_signature): Encode custom modifiers.
504         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
505         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
506
507 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
508
509         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
510         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
511         64-bit IL only images because imports are not resolved for IL only images.
512         Special thanks to Bill Holmes for finding this bug and testing the patch.
513         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
514
515         Contributed under MIT/X11 license.
516
517 2008-09-19  Miguel de Icaza  <miguel@novell.com>
518
519         * mono-config.c (dllmap_start): Add support for the bits keyword
520         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
521
522 2008-09-19  Mark Probst  <mark.probst@gmail.com>
523
524         * reflection.c (inflate_mono_method): When the class the method is
525         to be inflated for is itself not inflated, just return the method.
526
527 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
528
529         * mono-perfcounters.c: use more user friendly process instance names.
530
531 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
532
533         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
534           handle "[in] ref" and "[in][out] ref" cases.
535
536         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
537           to mono_mb_create_method.  This was causing problems calling native to
538           managed passing Variants by value.
539
540         Code is contributed under MIT/X11 license.
541
542 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
543
544         * class.c (can_access_internals): Call mono_assembly_load_friends ()
545         before accessing the friend_assembly_names field.
546
547         * assembly.c (mono_assembly_load_friends): Make this callable multiple
548         times.
549         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
550         called lazily when it is needed.
551
552         * metadata-internals.h (struct _MonoAssembly): Add 
553         'friend_assembly_names_inited' flag.
554
555 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
556
557         * mono-perfcounters-def.h: fix the types of a few counters.
558         * mono-perfcounters.c: implemented the instance names getter
559         and a few bugfixes.
560
561 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
562
563         * culture-info-table.h : regenerated.
564
565 2008-09-17  Robert Jordan  <robertj@gmx.net>
566
567         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
568         context bound objects. Fixes #415577.
569
570         Code is contributed under MIT/X11 license.
571
572 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
573
574         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
575         implementation (bug #423582).
576
577 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
578
579         * object.c (mono_object_get_virtual_method): Handle the case method->slot
580         is not set. Fixes #426309.
581
582 2008-09-16  Jb Evain  <jbevain@novell.com>
583
584         * class.c (mono_class_from_name): fix the exported type look up
585         when the type is defined in a referenced assembly.
586
587 2008-09-16  Jb Evain  <jbevain@novell.com>
588
589         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
590         increment the next index counter on each iteration to make that work
591         for more than one type forwarder. Unmanaged part to fix #422929.
592
593 2008-09-15  Mark Probst  <mark.probst@gmail.com>
594
595         * object-internals.h: enum ComInterfaceType in
596         MonoInterfaceTypeAttribute is guint32, not guint16.
597
598 2008-09-12  Mark Probst  <mark.probst@gmail.com>
599
600         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
601         writing code.
602
603 2008-09-11  Mark Probst  <mark.probst@gmail.com>
604
605         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
606         not gboolean.
607
608 2008-09-11  Mark Probst  <mark.probst@gmail.com>
609
610         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
611         Endianness fixes for MonoSymbolFileOffsetTable.
612
613 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
614
615         * process.c (complete_path) : Removing quotes from the 
616           input path.  The glib file routines do not handle file paths
617           that have quotes around them.
618
619         Code is contributed under MIT/X11 license.
620
621 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
622
623         * socket-io.h : Adding a comment to provide locations where 
624           changes to MonoSocketAsyncResult need to be synced.
625
626         Code is contributed under MIT/X11 license.
627
628 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
629
630         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
631         parameters as well. Fixes #425001.
632
633 2008-09-08  Miguel de Icaza  <miguel@novell.com>
634
635         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
636         windows build.
637
638 2008-09-07  Miguel de Icaza  <miguel@novell.com>
639
640         * console-io.c: Add support for tracking the window size if it
641         changes.
642
643         The setup is very simple: the TtySetup function will now return a
644         pointer to a location in memory that tracks the current console
645         size.  The managed code checks its current value every time its
646         queried against the last value set, and updates accordingly.
647
648         With this setup we can work with multiple consoles, and we do not
649         require to poke into managed code from a signal handler.
650
651         Additionally, the environment for COLUMNS and LINES is now handled
652         in unmanaged code.
653
654         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
655
656 2008-09-07  Mark Probst  <mark.probst@gmail.com>
657
658         * marshal.c (mono_type_native_stack_size): Treat
659         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
660
661 2008-09-04  Jb Evain  <jbevain@novell.com>
662
663         * class.c (mono_class_is_assignable_from): fix assignability of nullables
664         to nullables.
665
666 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
667
668         * verify.c (verify_type_compatibility_full): Revert change
669         to allow converting a native int to unmanaged pointer be verifiable
670         under non-strict mode.
671         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
672
673         * verify.c: Added some TODOs.
674
675 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
676
677         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
678           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
679           Changed to use GlobalAlloc for the memory returned on Windows platforms.
680
681         Code is contributed under MIT/X11 license.
682
683 2008-09-02  Jb Evain  <jbevain@novell.com>
684
685         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
686
687 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
688
689         reflection.c (typebuilder_setup_fields): Handle classes with
690         explicit size.
691
692 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
693
694         class.c (mono_class_setup_events): Add memory barrier due to
695         double checked locking.
696         
697         class.c (mono_class_setup_properties): Same.
698
699 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
700
701         * class.c (mono_class_is_assignable_from): Fix the build.
702         
703         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
704         before accessing klass->interface_bitmap. Fixes #421744.
705
706 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
707
708         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
709         the runtime into no-exec mode, useful when running the AOT compiler.
710
711         * appdomain.c gc.c object.c: Avoid executing managed code when running
712         in no-exec mode.
713         
714         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
715
716         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
717         special case when the mono_assembly_loaded () returns NULL because the 
718         search hook is not installed.
719
720 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
721
722         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
723         crashes in bstr marshalling on linux.
724
725 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
726
727         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
728         with more than one parameter.
729
730 2008-08-24  Miguel de Icaza  <miguel@novell.com>
731
732         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
733         start/stop flow control as well when turning off ICANON (allows
734         C-s and C-q to be read by Console.ReadKey).
735
736 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
737
738         * class.c (mono_class_init): Move the initialization of nested classes
739         into mono_class_get_nested_types (). Fixes #418433.
740
741         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
742         flag.
743
744         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
745         iterating tough the nested classes of a class.
746
747 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
748
749         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
750         on arm.
751
752 2008-08-22  Miguel de Icaza  <miguel@novell.com>
753
754         * console-io.c (sigcont_handler): Support signal chaining for
755         SIGCONT.
756
757         (console_set_signal_handlers): Use best practices with sigaction,
758         clear the structure before using it. 
759
760 2008-08-22  Robert Jordan  <robertj@gmx.net>
761
762         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
763         Fix the Windows build.
764
765 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
766
767         * class.c (mono_class_generic_sharing_enabled): Make the default
768         sharing mode 'corlib'.
769
770 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
771
772         * console-io.c (console_set_signal_handlers): Fix a warning.
773
774         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
775         method normally, the JIT will take care of avoiding recursion.
776
777 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
778
779         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
780
781         Code is contributed under MIT/X11 license.
782
783 2008-08-20  Miguel de Icaza  <miguel@novell.com>
784
785         * console-io.c (sigcont_handler): We need to restore the entire
786         termios state, not only the original settings, as things like echo
787         can be controlled after this (Booish exposes this issue with its
788         own ReadLine implementation).
789
790         Additionally, we need to set the terminal back into keypad_xmit
791         mode.
792         
793         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
794         string as a paramter as well.   Otherwise we get different
795         keyboard sequences.
796
797 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
798
799         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
800         delegates with byref out parameter passing. Fixes #351520.
801
802         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
803         a generic context.
804         (mono_type_get_desc): Add the type arguments for GENERICINST.
805         (mono_method_full_name): Stringify the class name using mono_type_full_name
806         so it picks up generic arguments.
807
808 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
809
810         * console-io.c: Removed debug output.
811
812 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
813
814         reflection.c (mono_reflection_create_runtime_class): Alloc
815         the nested classes linked list using the dynamic image mempool.
816         Fixes leak in corlib compilation.
817
818 2008-08-19  Miguel de Icaza  <miguel@novell.com>
819
820         * console-io.c: Fix incredibly annoying behavior on the console
821         after resuming execution after control-z.   This affected every
822         console application.
823
824 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
825
826         * mempool-internals.h: Header for mono private mempool functions. The first
827         two function are for allocating glib linked lists using pools.
828
829         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
830
831         * Makefile.am: Added mempool-internals.h.
832
833 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
834
835         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
836         (mono_domain_free): Ditto.
837
838         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
839         be used by the JIT to store its domain-specific information, instead of putting
840         it directly into MonoDomain.
841
842         * domain.c (mono_install_create_domain_hook): New helper function to install
843         a hook which initializes domain->runtime_info.
844
845         * domain.c (mono_install_free_domain_hook): Ditto.
846         
847 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
848
849         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
850         asserting if the ares parameter is null.
851
852         * mono-perfcounters.c: Fix warnings.
853
854         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
855         is not needed, don't check for interruptions either.
856         (mono_marshal_get_delegate_end_invoke): Ditto.
857
858 2008-08-15  Marek Habersack  <mhabersack@novell.com>
859
860         * mono-perfcounters.c (predef_readonly_counter): added support for
861         reading the ASP.NET Requests Queued counter from another process.
862
863 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
864
865         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
866         MonoImage to simplify the AOT code.
867
868 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
869
870         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
871         marshalling. Fixes #416078.
872
873 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
874         
875         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
876         it is set, looking up the icall address is deferred to the JIT, since 
877         in embedded scenarios, the icall might not be registered in the runtime
878         doing the AOT compilation. Backported from the 2.0 branch.
879
880 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
881
882         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
883         Fixes #415621.
884
885 2008-08-05  Marek Habersack  <mhabersack@novell.com>
886
887         * Makefile.am: added support for cross-compilation.
888
889 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
890
891         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
892
893 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
894
895         * mono-perfcounters.c: jitted methods and jitted bytes counters.
896
897 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
898
899         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
900         mono-perfcounters.c: performance counters implementation.
901
902 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
903
904         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
905         to gpointer, letting the AOT code decide what to store in it.
906
907 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
908
909         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
910           mono_class_setup_methods if the methods are not initialized.
911
912         Code is contributed under MIT/X11 license.
913
914 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
915
916         * verify.c: Remove some debug code I commited by accident.
917
918         * verify.c (mono_method_is_valid_in_context): Change the return value
919         to make possible to distinguish between invalid and unverifiable.
920
921         * verify.c (verifier_load_method): Don't return NULL for unverifiable
922         methods.
923
924 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
925
926         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
927         constraints. Fixes regression in gtest-253.
928
929 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
930
931         * verify.c (mono_verifier_verify_class): Don't allow generic types
932         with explicit layout.
933
934         * verify.c (mono_method_verify): Check locals and argument types.
935
936 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
937
938         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
939         wait if the thread is in StopRequested state.
940
941         * class.c (mono_class_from_name): Refactor the module searching code into
942         a separate function so it can be reused in the AOT case too.
943
944 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
945
946         * verify.c (mono_type_is_valid_in_context): Improve the error message.
947         Check both the type and it's generic type definition for loader errors.
948         
949         * verify.c (mono_method_is_valid_in_context): Don't generate another
950         error when a type errors occur, this leads to the wrong exception been
951         thrown.
952
953 2008-07-28  Dick Porter  <dick@ximian.com>
954
955         * icall-def.h
956         * process.c
957         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
958         New internal calls to duplicate and close a process handle.
959
960 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
961
962         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
963
964 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
965
966         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
967
968 2008-07-27  Robert Jordan  <robertj@gmx.net>
969
970         * class.c (mono_class_init): Don't compute class.has_finalize for
971         valuetypes. Fixes #412477.
972
973 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
974
975         * verify.c: Implement constraint equivalence checking.
976         This is required when a generic parameter is used as
977         argument to a constrained one.
978
979         Fixes #410637.
980
981 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
982
983         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
984
985         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
986
987         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
988         synch with managed object layout.
989
990 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
991
992         * verify.c (do_branch_op): Handle valuetypes and generic
993         arguments properly.
994
995         * verify.c (do_cmp_op): Same.
996
997         Fixes #410383.
998
999 2008-07-24  Mark Probst  <mark.probst@gmail.com>
1000
1001         * generic-sharing.c: Fix memory leaks.
1002
1003         * class.c, class-internals.h: Make
1004         mono_class_inflate_generic_type_with_mempool() non-static.
1005
1006 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
1007
1008         * pedump.c (dump_verify_info): Dump full class name.
1009
1010 2008-07-24  Mark Probst  <mark.probst@gmail.com>
1011
1012         * generic-sharing.c: Removed some old code that didn't do anything.
1013
1014 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
1015         * profiler.c: Added runtime_initialized_event,
1016         mono_profiler_install_runtime_initialized and
1017         mono_profiler_runtime_initialized. This new hook tells the profiler
1018         when the runtime is sufficiently initialized to be able to call
1019         mono_thread_attach on the root appdomain.
1020         * profiler.h, profiler-private.h: Likewise.
1021
1022 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
1023
1024         * verify.c (do_cast): Do boxing for generic arguments as well.
1025
1026         * class.c (is_nesting_type): Drop generic instantiations before
1027         checking for nesting.
1028
1029         * class.c (can_access_instantiation): Allow access to generic
1030         arguments.
1031
1032 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
1033
1034         * verify.c (verify_class_for_overlapping_reference_fields):
1035         On some cases, the field size might be zero, guard against that.
1036         Fix the explicit layout check to work as expected.
1037
1038 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
1039
1040         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
1041         mono_thread_resume () during shutdown, since the thread we want to abort
1042         might be suspended.
1043
1044 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
1045
1046         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
1047         warning.
1048
1049         * debug-mono-symfile.c: Fix a warning.
1050
1051         * mono-perfcounters.c (get_cpu_times): Fix a warning.
1052
1053         * object.c (mono_class_vtable): Check if exception_type is set, and return
1054         NULL as defined by the function comments.
1055
1056 2008-07-22  Mark Probst  <mark.probst@gmail.com>
1057
1058         * mempool.c: Use malloc for every single mempool allocation if the
1059         configure option is set.  This makes it easier to track mempool
1060         allocations with tools like Valgrind.
1061
1062 2008-07-22  Jb Evain  <jbevain@novell.com>
1063
1064         * reflection.c (create_dynamic_mono_image): emit the same
1065         metadata version that SL2 does when creating a SL2 image.
1066
1067 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
1068
1069         * icall-def.h:
1070         * icall.c: New icall System.Enum:get_hashcode. This function
1071         avoids the overhead of boxing the enum to the underlying type.
1072
1073 2008-07-21  Mark Probst  <mark.probst@gmail.com>
1074
1075         * reflection.c (mono_method_get_object): Don't let static RGCTX
1076         invoke wrappers get into MonoReflectionMethods.
1077
1078 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
1079
1080         * object-internals.h:
1081         * object.c: New mono_runtime_class_init_full function
1082         that makes throwing the exception optinal.
1083
1084         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
1085         for the case where the exception object is supplied.
1086
1087 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
1088
1089         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
1090         old ld versions.
1091
1092         Contributed under MIT/X11 license.
1093
1094 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1095
1096         * string-icalls.c (ves_icall_System_String_InternalSplit):
1097         Optimize array allocation by caching the MonoClass of the
1098         array type.
1099
1100         * icall.c (ves_icall_Type_GetMethodsByName): Same.
1101
1102         * reflection.c (mono_param_get_objects): Same.
1103
1104 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1105
1106         * icall-def.h:
1107         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
1108         It inflates the given type using the class context.
1109
1110 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1111
1112         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
1113         the vtable if it already exists.
1114
1115         * object-internals.h: Add mono_class_try_get_vtable as part of the
1116         internal API.
1117
1118         * reflection.c (mono_type_get_object): Use the MonoObject from the
1119         vtable when possible. Reduces locking contention on reflection heavy
1120         code.
1121
1122 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
1123
1124         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
1125         g_bit_nth_msf () since that macro is not implemented in eglib.
1126
1127 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
1128
1129         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
1130         on platforms which do not support it.
1131
1132 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
1133
1134         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
1135
1136 2008-07-11  Martin Baulig  <martin@ximian.com>
1137
1138         * mono-debug-debugger.h
1139         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
1140
1141         * mono-debug-debugger.c
1142         (_mono_debugger_interruption_request): New global volatile variable.
1143         (mono_debugger_check_interruption): New public function.
1144
1145         * threads.c
1146         (mono_thread_current_check_pending_interrupt): Call
1147         mono_debugger_check_interruption().
1148         (mono_thread_interruption_checkpoint_request): Likewise.
1149
1150 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1151
1152         * verify.c: Add more type checks for loaded types. Verify the result
1153         handle from ldtoken.
1154
1155 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1156
1157         * loader.c (field_from_memberref): Don't crash if the field
1158         wasn't found.
1159
1160 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1161
1162         * verify.c: Verify if type and method instantiations
1163         don't have invalid VAR or MVAR arguments.
1164
1165 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1166
1167         * verify.c: Fix double free of function pointer list.
1168
1169 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1170
1171         * object.c (mono_string_to_utf8): Comment the new code as it
1172         breaks under eglib.
1173
1174 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
1175
1176         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
1177
1178 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
1179
1180         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
1181           is not throw too many times.
1182
1183         Code is contributed under MIT/X11 license.
1184
1185 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
1186
1187         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
1188         debugging is turned off.
1189
1190 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
1191
1192         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
1193
1194 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1195
1196         * class-internals.h, class.c: Added new generic sharing option:
1197         Share only stuff in System.Collections.Generic, which is now the
1198         default.
1199
1200 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1201
1202         * generic-sharing.c, class-internals.h: New function for getting a
1203         generic method in a generic class given the corresponding method
1204         for a different instantiation of the class.  Partly refactored
1205         from mini-trampolines.c.
1206
1207         * class.c: Make sure generic methods have a class_inst if they are
1208         part of a generic class.
1209
1210         * metadata.c (mono_type_stack_size_internal): Handle type
1211         variables.
1212
1213 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1214
1215         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
1216         Signifies whether information on the this/vtable/mrgctx variable
1217         is available.
1218
1219 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1220
1221         * object.c, object-internals.h, icall.c: New function
1222         mono_delegate_ctor_with_method(), which does the same as
1223         mono_delegate_ctor(), but takes an explicit method argument
1224         instead of taking the method from the jit info.
1225
1226         * marshal.c: When creating a delegate with an inflated method take
1227         the "this" argument as the target class for the castclass.
1228
1229 2008-07-03  Mark Probst  <mark.probst@gmail.com>
1230
1231         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
1232         mono_jit_info_table_find() to perform very badly in some cases.
1233
1234 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
1235
1236         * icall.c (type_from_typename): Handle 'string'.
1237
1238         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
1239         wrappers into the wrapper_hash, since the key is not a MonoMethod.
1240
1241 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
1242
1243         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
1244
1245         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
1246         number of available managed allocator types.
1247
1248         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
1249         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
1250
1251 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
1252
1253         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
1254         which is a low level lock protecting just the 'jit_code_hash' hash table.
1255
1256         * domain.c: Initialize+cleanup jit_code_hash_lock.
1257         
1258 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
1259
1260         * coree.c (mono_load_coree): Set coree_module_handle global variable only
1261         after initialization.
1262
1263         * coree.h: Make MonoFixupExe internal.
1264
1265         Contributed under MIT/X11 license.
1266
1267 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
1268
1269         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
1270         because that is platform independent. Check NumberOfRvaAndSizes in PE32
1271         as well.
1272         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
1273         image being loaded is a CLI image and _CorValidateImage gets called.
1274
1275         * coree.h: Add MonoLoadImage.
1276
1277         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
1278         instead of LoadLibrary.
1279
1280         Contributed under MIT/X11 license.
1281
1282 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
1283
1284         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
1285         for any primitive type.
1286
1287 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
1288
1289         * object.c (mono_array_new_specific): Optimize this and the other allocation
1290         functions a bit.
1291         
1292         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
1293         domains too if mono_dont_free_domains is set.
1294
1295         * domain-internals.h (mono_dont_free_domains): New internal option controlling
1296         whenever to free appdomain data after it has been unloaded.
1297
1298         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
1299         
1300 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
1301
1302         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
1303         (mono_method_get_equivalent_method): Fix a warning.
1304
1305         * object.c (mono_message_init): Avoid looking up array types for each call.
1306
1307 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
1308
1309         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
1310         call.
1311
1312         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
1313         even more.
1314
1315         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
1316         each iteration.
1317
1318         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
1319         fields of an enum.
1320
1321 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
1322
1323         * object.c (mono_value_box): Fix boxing of nullables.
1324
1325 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
1326
1327         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
1328         mono_module_handle that is defined by the linker; no initialization required.
1329         * coree.h: Remove mono_module_handle, add __ImageBase, update
1330         mono_image_open_from_module_handle.
1331         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
1332         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
1333         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
1334         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
1335         to 4 GB away from image base address. IA64 version is not tested but was very
1336         easy to implement and should work if we ever need it.
1337         * domain.c (mono_init_internal): Avoid system error message boxes.
1338         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
1339         with has_entry_point. Handle do_mono_image_load fauilre correctly.
1340         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
1341         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
1342         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
1343
1344         Contributed under MIT/X11 license.
1345
1346 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1347
1348         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
1349         as part of the private mono API.
1350         
1351         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
1352         Do proper argument checking for methods that belong to generic classes.
1353         Do proper type resolution for GMFH/2.
1354         Fixes #377324.
1355         
1356 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1357
1358         * verify.c (do_switch): Fix a memory corruption bug with
1359         the jump index is out of bound.
1360
1361 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1362
1363         * verify.c: Disable debug code.
1364
1365 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1366
1367         * reflection.c (mono_image_get_methodbuilder_token): Use
1368         mono_image_get_methodspec_token_for_generic_method_definition
1369         instead of mono_image_get_memberref_token. We cache more memberef
1370         entries now.
1371
1372 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1373
1374         * verify.c: Inflate exception clause types.
1375         Fixes #402606.
1376         
1377 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1378
1379         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
1380         name.
1381
1382         * reflection.c (mono_image_get_ctorbuilder_token): Same.
1383
1384         * reflection.c (mono_image_create_method_token): Same.
1385
1386 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1387
1388         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
1389         It does the same as mono_image_get_methodref_token but works on
1390         MethodBuilder.
1391
1392         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
1393         and always generate a methodspec. This follows the old behavior and fixes
1394         the regressions in System.Core. 
1395
1396 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
1397
1398         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
1399         don't event mono_class_get () succeeds. Fixes #402182.
1400
1401 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
1402
1403         * metadata-internals.h: Added MonoDynamicImage::methodspec
1404         hashtable to store methodspec tokens created for MethodBuilders.
1405
1406         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
1407         MethodBuilders as open instantiations if a methodspec was requested.
1408
1409         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
1410
1411         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
1412
1413         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
1414
1415         Fixes bug #349190.
1416
1417 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
1418
1419         * loader.c (method_from_methodspec): Avoid crashing if the
1420         method lookup fails.
1421
1422 2008-06-20  Dick Porter  <dick@ximian.com>
1423
1424         * socket-io.c (get_socket_assembly): Cope with Moonlight network
1425         classes being in a different assembly.  Fixes bug 399184.
1426
1427 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
1428
1429         * loader.c (mono_loader_init): Make this callable multiple times.
1430         (mono_dllmap_insert): Call mono_loader_init () so this works even before
1431         the runtime is initialized. Fixes #401755.
1432
1433 2008-06-19  Dick Porter  <dick@ximian.com>
1434
1435         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
1436         Fixes bug 349688.
1437
1438 2008-06-19  Dick Porter  <dick@ximian.com>
1439
1440         * socket-io.c:
1441         * icall-def.h: Implement Socket generic Send() and Receive()
1442         methods.  Fixes bug 395168.
1443
1444 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
1445
1446         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
1447
1448         Contributed under MIT/X11 license.
1449
1450 2008-06-18  Martin Baulig  <martin@ximian.com>
1451
1452         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
1453         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
1454         set to 80.0.  The debugger <-> runtime interface is now frozen as
1455         well.   
1456
1457         * mono-debug.c
1458         (mono_debug_debugger_version): Bump to 4.
1459
1460 2008-06-18  Martin Baulig  <martin@ximian.com>
1461
1462         * debug-mono-symfile.c
1463         (load_symfile): Don't check the minor version.
1464
1465         * debug-mono-symfile.h: Bump the version number to 50.0.
1466
1467 2008-06-18  Martin Baulig  <martin@ximian.com>
1468
1469         * debug-mono-symfile.c
1470         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
1471         minimum required version.
1472
1473 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
1474
1475         * reflection.c (mono_custom_attrs_from_property): Fix support for
1476         retriveving cattrs of dynamic inflated generic types.
1477
1478         * reflection.c (mono_custom_attrs_from_event): Same.
1479
1480         * reflection.c (mono_custom_attrs_from_field): Same;
1481
1482         * reflection.c (typebuilder_setup_events): Same cattrs of events.
1483
1484         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
1485         Moved to metadata.c.
1486
1487         * metadata.c: New functions to retrive the equivalent field, event
1488         of property from the generic type definition.
1489
1490         * metadata-internals.h: Added new functions from metadata.c.
1491
1492 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
1493
1494         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
1495         to cached in a mempool is used.
1496
1497         * metadata.c (free_generic_class): In some situations field generic_info type
1498         is not properly dup'ed and leads to double free'ing.
1499
1500         Fixes #400643.
1501
1502 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1503
1504         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
1505         this arguments (will be needed later for generic methods).
1506         Collect stats.
1507
1508 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1509
1510         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
1511         Create a static RGCTX invoke wrapper for methods which require it.
1512
1513 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1514
1515         * object.c, class-internals.h: New function for checking whether
1516         an individual field is special static.
1517
1518 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
1519
1520         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
1521         linear search since the table is sorted.
1522
1523         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
1524         Fixes #324180.
1525
1526 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
1527
1528         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
1529         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
1530
1531         * gc.c (mono_domain_finalize): Allow an infinite timeout.
1532
1533         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
1534         
1535         * threads.c (mono_thread_request_interruption): Get rid of locking, use
1536         InterlockedCompareExchange to query and modify 
1537         thread->interruption_requested.
1538
1539         * object-internals.h (struct _MonoThread): Change interruption_requested
1540         to a gint32 so it can be modified by atomic operations. Add 
1541         'critical_region_level' from the managed side, change small_id to a guint32,
1542         add new set of 'unused' fields.
1543
1544         * appdomain.c: Bump corlib version.
1545
1546 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
1547
1548         * class.c (mono_class_from_name): Search modules as well. Fixes
1549         #322332.
1550
1551 2008-06-13  Mark Probst  <mark.probst@gmail.com>
1552
1553         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
1554         templates.  Templates are generalized with an additional type_argc
1555         argument.  RGCTX templates have type_argc==0, MRGCTX templates
1556         have type_argc>0.
1557
1558         * domain-internals.h, domain.c: New hash table for looking up
1559         MRGCTXs.
1560
1561         * metadata.c, metadata-internals.h: Rename hash and equal
1562         functions for MonoGenericInst's and make them public.
1563
1564         * class-internals.h: New data structures for the MRGCTX.  Macros
1565         for distinguishing slots in the RGCTX and the MRGCTX.
1566
1567 2008-06-13  Mark Probst  <mark.probst@gmail.com>
1568
1569         * object.c (mono_method_get_imt_slot): Put the same methods of
1570         different instantiations of the same generic interface in the same
1571         IMT slots, to make generic sharing simpler.
1572
1573 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
1574
1575         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
1576
1577         * metadata.c (mono_metadata_field_info_with_mempool): Added.
1578         This function works just like mono_metadata_field_info, but
1579         accept a mempool as argument to be used allocating memory.
1580
1581         * marshal.c (mono_marshal_load_type_info): Use new function
1582         to load marshal data into image mempool.
1583
1584 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
1585
1586         * class.c (mono_class_inflate_generic_type_with_mempool):
1587         This function allows to inflate a generic type using
1588         a mempool.
1589
1590         * class.c (inflate_generic_type): Take a mempool as argument
1591         and use it to do type dup'ing.
1592
1593         * class.c (mono_class_setup_fields): Field type for generic
1594         generic classes are allocated from the image mempool.
1595
1596         * metadata.c (free_generic_class): Inflated field type is
1597         now allocated in the image mempool.
1598
1599 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
1600
1601         * threads.c (thread_cleanup): Free MonoThread::name.
1602
1603 2008-06-12  Marek Habersack  <mhabersack@novell.com>
1604
1605         * appdomain.c (ensure_directory_exists): avoid unnecessary
1606         mkdir(2) calls when the shadow directory already exists.
1607         (mono_make_shadow_copy): copy also satellite assemblies from the
1608         private bin directories.
1609
1610 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
1611
1612         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
1613         
1614         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
1615         a page boundary. Fixes #396219.
1616
1617 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1618
1619         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
1620         due to double-checked locking.
1621
1622 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1623
1624         * assembly.c (build_assembly_name): Release memory on failure.
1625
1626         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
1627
1628 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1629
1630         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
1631         memory on failure.
1632
1633 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1634
1635         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
1636         memory on failure.
1637
1638 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1639
1640         * loader.c (field_from_memberref): Check if field signature type is equal
1641         to the non-inflated type of the field. Fixes #398980.
1642
1643 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
1644
1645         * assembly.c (mono_assembly_load_from_full): Call 
1646         mono_assembly_load_friends () outside the assemblies lock, since it can
1647         acquire the loader lock. Fixes #323696.
1648
1649         * reflection.c (resolve_object): Inflate the inst with the context for
1650         FieldOnTypeBuilderInst. Fixes #399010.
1651
1652 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1653
1654         * reflection.c (mono_image_get_field_on_inst_token): Don't
1655         inflate the field to encode it's signature. If it's a
1656         VAR or MVAR it should stay that way in the signature.
1657         Fixes #399047.
1658
1659 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1660
1661         * reflection.c (resolve_object): Release memory of inflated types.
1662
1663 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1664
1665         * loader.c (mono_method_get_signature_full): Remove assert about
1666         loading a methodspec to a generic method. We have such methods, such as
1667         System.Threading.Interlocked::CompareExchange<T>.
1668         This assert was removed since it crashes the verifier when it checks
1669         methods calling CompareExchange<T>.
1670
1671 2008-06-10  Marek Safar  <marek.safar@gmail.com>
1672
1673         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
1674         of Type array and not MonoType.
1675
1676 2008-06-10  Marek Habersack  <mhabersack@novell.com>
1677
1678         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
1679         <lupus@ximian.com>
1680
1681 2008-06-10  Martin Baulig  <martin@ximian.com>
1682
1683         * debug-mono-symfile.h
1684         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
1685         changes to the file format, but we were generating incorrect
1686         source file indices in the line number table due to a bug, which
1687         made backtraces report an incorrect source file.
1688
1689 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1690
1691         * mono-debug.c: Moved mono_debug_free_method_jit_info from
1692         mini/debug-mini.c to here.
1693
1694         * mono-debug.c (il_offset_from_address): Free memory from find_method.
1695
1696         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
1697         use it to release structs returned by mono_debug_find_method.
1698
1699 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
1700
1701         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
1702         since it needs to set method->slot for all interface methods.
1703
1704 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
1705
1706         * class-internals.h: Forgot to add.
1707
1708 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
1709
1710         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
1711
1712         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
1713         Lookup the custom attributes from property_hash.
1714
1715         * reflection.c (mono_save_custom_attrs): Save the custom attributes
1716         in property_hash. Allocate all data using the image mempool.
1717
1718         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
1719         for dynamic_custom_attrs to checks if the image is dynamic.
1720
1721 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
1722
1723         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
1724         assemblies array.
1725         
1726         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
1727         runtime functions while holding the domain assemblies lock.
1728
1729 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
1730
1731         * verify.c: Reapplied the last bit of the reverted changes.
1732
1733 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
1734
1735         * verify.c: Reapplied more of the reverted changes.
1736
1737 2008-06-09  Martin Baulig  <martin@ximian.com>
1738
1739         * debug-mono-symfile.c (load_symfile): Check the major version
1740         first; if it's wrong, don't print the minor version in the error message.
1741
1742 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
1743
1744         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
1745         lock instead of the domain lock to avoid deadlocks, since the thread might
1746         already hold the loader lock.
1747
1748         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
1749         (mono_thread_attach): Ditto.
1750
1751         * monitor.c: Use a TLS variable for holding the current thread id instead
1752         of calling pthread_self ().
1753         (mono_monitor_init_tls): New internal function to initialize the TLS
1754         variable.
1755         (mono_monitor_try_enter_internal): Put the owner == id check after the
1756         owner == 0 check.
1757
1758         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
1759         missed optimizations when using gcc-4.3.
1760
1761 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
1762
1763         * reflection.c (mono_dynamic_image_free): Free the memory
1764         used by MonoGenericParam in MonoDynamicImage::gen_param.
1765
1766         * reflection.c (mono_reflection_setup_generic_class): Allocate
1767         container from mempool.
1768
1769         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
1770         container from mempool.
1771
1772 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
1773
1774         * threads.c (mono_set_pending_exception): New internal function to set the
1775         pending exception of the current thread.
1776         (mono_thread_get_and_clear_pending_exception): Check for 
1777         thread->pending_exception as well.
1778
1779         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
1780
1781         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
1782         it can trigger a collection.
1783
1784 2008-06-06  Martin Baulig  <martin@ximian.com>
1785
1786         Merged the `debugger-kahalo' branch.
1787
1788         * mono-debug.h
1789         (MONO_DEBUGGER_VERSION): Bumped to 72.
1790
1791         * debug-mono-symfile.h
1792         (MonoSymbolFileMethodIndexEntry): Removed.
1793         (MonoSymbolFileMethodEntry): New public typedef.
1794         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
1795         (MonoSymbolFileSourceEntry): Remove everything except `index' and
1796         `data_offset'.
1797         (MonoSymbolFileMethodEntry): Removed.
1798         (MonoSymbolFileLexicalBlockEntry): Removed.
1799         (MonoSymbolFileLineNumberEntry): Removed.
1800         (MonoDebugLexicalBlockEntry): Removed.
1801         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
1802         removed `num_il_offsets' and `il_offsets'.
1803         (MonoSymbolFile): Replace `version' with `major_version' and
1804         `minor_version'.
1805         (MONO_SYMBOL_FILE_VERSION): Replace with
1806         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
1807         `MONO_SYMBOL_FILE_MINOR_VERSION'.
1808
1809         * debug-mono-symfile.c
1810         (mono_debug_symfile_lookup_location): Add support for the new line
1811         number table format.
1812
1813 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
1814
1815         * metadata.c (free_generic_class): Release the inflated
1816         MonoClass of dynamic generic classes if it's not a generic
1817         type definition.
1818
1819 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
1820
1821         * verify.c: Reapplied more of the reverted changes.
1822
1823 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
1824
1825         * reflection.c (lookup_custom_attr): Clean the cached flag or
1826         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
1827         for SRE types.
1828
1829 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
1830
1831         * verify.c: Reapplied a small part of the reverted changes.
1832
1833 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
1834
1835         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1836
1837         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
1838         previously in managed code.
1839         (mono_monitor_exit): Ditto.
1840         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
1841
1842         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
1843         the managed definition.
1844
1845 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
1846
1847         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
1848
1849 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
1850
1851         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
1852         
1853         * monitor.c: Add some micro optimizations.
1854
1855         * icall.c (type_from_typename): Handle 'bool'.
1856
1857 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
1858
1859         * verify.c: Implement constructor verification per P III 1.8.1.4.
1860         Fixes #396716.
1861
1862 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
1863
1864         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
1865         holding the assemblies lock here too.
1866
1867 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
1868
1869         * verify.c: Kill stack_top function.
1870
1871 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
1872
1873         * verify.c: Kill stack_get function.
1874
1875 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
1876
1877         * verify.c (mono_method_verify): Last change broke the build. Fixed.
1878
1879 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
1880
1881         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
1882         more reliable.
1883
1884         * verify.c (mono_method_verify): Inflate params and locals to avoid
1885         mismatch when checking for compatibility.
1886
1887 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
1888
1889         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
1890         Length prefix should be size in bytes. Fix bug #339530.
1891         
1892         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
1893         Length prefix should be size in bytes. Fix bug #339530.
1894
1895         Code is contributed under MIT/X11 license.
1896
1897 2008-06-05  Bill Holmes <billholmes54@gmail.com>
1898
1899         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
1900
1901         Contributed under MIT/X11 license.
1902
1903 2008-06-05  Martin Baulig  <martin@ximian.com>
1904
1905         * mono-debug-debugger.c
1906         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
1907
1908 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
1909
1910         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
1911         while holding the assemblies lock to prevent deadlocks. Handle the case
1912         where the search hook returns NULL but the assembly was still loaded.
1913         Fixes #323696.
1914
1915         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
1916         modify domain state.
1917
1918 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
1919
1920         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
1921         * Makefile.am (pedump_LDADD): Post-process object files and
1922         add dtrace-generated object file, if necessary.
1923
1924         Code is contributed under MIT/X11 license.
1925
1926 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
1927
1928         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
1929
1930 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
1931
1932         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
1933
1934 2008-06-04  Mark Probst  <mark.probst@gmail.com>
1935
1936         * threads.c: Try to free everything from the delayed free table
1937         when shutting down threads, and set the variable to NULL after the
1938         table is freed so that calling
1939         mono_thread_hazardous_try_free_all() when shutting down the root
1940         domain doesn't crash.
1941
1942 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
1943
1944         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
1945         the caller if resulting type was inflated.
1946
1947         * class.c (mono_class_create_from_typespec): Free the MonoType if it
1948         was inflated.
1949
1950         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
1951
1952
1953 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
1954
1955         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
1956         class library tests.
1957
1958         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
1959         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
1960         #396989.
1961
1962 2008-06-04  Mark Probst  <mark.probst@gmail.com>
1963
1964         * domain.c, domain-internals.h: The JIT infos are now freed by the
1965         JIT info table code.  They are freed immediately if there only a
1966         single JIT info table in circulation.  If there is more, the free
1967         is delayed via a queue.
1968
1969         * threads.c, threads-types.h: New hazard pointer function for
1970         freeing all freeable delayed items in one sitting.
1971
1972 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
1973
1974         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
1975
1976         * reflection.c (typebuilder_setup_properties): Same.
1977
1978         * reflection.c (typebuilder_setup_events): Same.
1979
1980 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
1981
1982         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
1983         and use it for allocating memory.
1984
1985         * reflection.c (mono_marshal_spec_from_builder): Same.
1986
1987         * reflection.c: Change code to use new signatures.
1988
1989         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
1990
1991 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
1992
1993         * decimal.c (rescale128): Put back one line which was accidently commented
1994         out.
1995         
1996         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
1997         to cause crashes.
1998
1999 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2000
2001         * reflection.c (mono_reflection_generic_class_initialize): Name must
2002         be always malloc'ed so we can free it later on. Do this for field, property
2003         and event.
2004
2005         * metadata.c (free_generic_class): Free field, property and event names.
2006
2007 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2008
2009         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
2010         instead of g_memdup.
2011
2012         * reflection.c (typebuilder_setup_fields): Same.
2013
2014 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2015
2016         * decimal.c (rescale128): Optimize this function a bit more.
2017
2018 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2019
2020         * metadata.c (free_generic_class): Release some memory from
2021         SRE generic classes.
2022
2023 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2024
2025         * reflection.c (mono_image_get_generic_field_token): No reference
2026         to name is kept, free it.
2027
2028         * reflection.c (mono_reflection_generic_class_initialize): Free
2029         more memory of the inflated field.
2030
2031 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2032
2033         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
2034         code.
2035
2036 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
2037
2038         * reflection.c (mono_dynamic_image_free): Release memory used by
2039         MonoDynamicImage::array_methods elements.
2040
2041         * reflection.c (assembly_add_win32_resources): Release memory after
2042         encoding.
2043
2044 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
2045
2046         * decimal.c (log2_32): Use an optimized version for this function too.
2047         
2048         * decimal.c (log2_64): Fix this on 32 bit machines.
2049
2050 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
2051
2052         * class.c (mono_dup_array_type): Implement allocation using a mempool.
2053
2054         * class.c (mono_metadata_signature_deep_dup): Same.
2055
2056         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
2057         a mempool.
2058
2059         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
2060
2061         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
2062
2063         * metadata-internals.h: Added mono_metadata_signature_dup_full.
2064
2065         * class-internals.h: Update signatures to take a MonoMemPool.
2066
2067 2008-06-02  Dick Porter  <dick@ximian.com>
2068
2069         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
2070         * icall-def.h: Add
2071         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
2072         FormatMessage API to get the error text.  Fixes bug 321827.
2073
2074 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
2075
2076         * decimal.c: Add some micro optimizations to make decimal operations faster.
2077
2078 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2079
2080         * reflection.c (method_encode_clauses): Take a mempool
2081         as parameter and use it to allocate the clause array.
2082
2083         * reflection.c (mono_image_get_field_on_inst_token): Free
2084         the inflated type after encoding it.
2085
2086         * reflection.c (mono_dynamic_image_free): Free each element
2087         of MonoDynamicImage::gen_params.
2088
2089         * reflection.c (reflection_methodbuilder_to_mono_method):
2090         Allocate the generic param array from the mempool.
2091         Allocate signature params from the mempool.
2092
2093         * reflection.c (mono_reflection_generic_class_initialize):
2094         Free inflated fields after been used.
2095
2096 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
2097
2098         * icall.c: Reapply the memory leak fixes as they no
2099         longer make mono crash.
2100
2101 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
2102
2103         * reflection.c (mono_type_get_object): Don't store the suplied
2104         MonoType with type_hash. A caller which pass a type that
2105         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
2106         might end with a pointer to freed memory.
2107         The solution is to use byval_arg or this_arg from the associated
2108         MonoClass of the supplied type.
2109
2110 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
2111
2112         * icall.c: Revert the rest of the last change as it breaks the build too.
2113
2114 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2115
2116         * icall.c: Revert a leak fix as it's breaking the build.
2117
2118 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2119
2120         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
2121
2122 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2123
2124         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
2125
2126 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2127
2128         * icall.c: Fix some memory leaks.
2129
2130 2008-05-29  Dick Porter  <dick@ximian.com>
2131
2132         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
2133         async socket operations from the pending list when a socket
2134         closes.  Leaving it until the threadpool services the event
2135         exposes a race condition when a socket descriptor is reused.
2136         Fixes bug 377589.
2137
2138 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2139
2140         * object.c: Fix negative index check for array alocation.
2141
2142 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2143
2144         * icall.c, marshal.c: Delegate wrappers should skip visibility.
2145         This check is performed by the verifier for IL created delegates
2146         and by Delegate::CreateDelegate for programatically created ones.
2147         Fixes #372406.
2148
2149 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2150
2151         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
2152         Fix code to use mono_array_size_t instead of int.
2153
2154         Based on patch by Luis F. Ortiz.
2155         Contributed under X11 license.
2156         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2157
2158 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2159
2160         * icall.c: Added ves_icall_System_Array_GetLongLength and
2161         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
2162         arrays.
2163
2164         * icall.h: Export both new functions.
2165
2166         Based on patch by Luis F. Ortiz.
2167         Contributed under X11 license.
2168         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2169
2170 2008-05-28  Martin Baulig  <martin@ximian.com>
2171
2172         The debugger now requires exactly r103463.
2173
2174         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
2175         This version is not supported by the debugger, wait for 72.
2176
2177 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2178
2179         * object.h: Changed array related functions to use
2180         mono_array_size_t instead of guint32. Forgot to commit this file.
2181
2182         Patch by Luis F. Ortiz.
2183         Contributed under X11 license.
2184         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2185
2186
2187 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2188
2189         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
2190         don't define it. Use the number literal instead.
2191
2192 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2193
2194         * icall.c: Changed array related functions to use
2195         mono_array_size_t instead of guint32.
2196
2197         * icall.c (ves_icall_System_Array_GetLength): Check for length
2198         overflow under MONO_BIG_ARRAYS.
2199
2200         Based on patch by Luis F. Ortiz.
2201         Contributed under X11 license.
2202         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2203
2204 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2205
2206         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
2207
2208         Based on patch by Luis F. Ortiz.
2209         Contributed under X11 license.
2210         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2211
2212 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2213
2214         * object.c, object.h: Changed array related functions to use
2215         mono_array_size_t instead of guint32.
2216
2217         Patch by Luis F. Ortiz.
2218         Contributed under X11 license.
2219         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2220
2221 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2222
2223         * object.h: Introduced mono_array_size_t typedef. This must be used
2224         in all places an array length is expected. This is 64bits wide if
2225         MONO_BIG_ARRAYS is enabled.
2226
2227         Patch by Luis F. Ortiz.
2228         Contributed under X11 license.
2229         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2230
2231 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
2232
2233         * security-manager.c class.c: Set the class exception info by calling
2234         mono_class_set_failure ().
2235
2236         * class.c (mono_class_get_exception_data): New accessor function.
2237         (mono_class_set_failure): Store exception_data in the property hash.
2238
2239         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
2240         the struct as a property.
2241
2242         * loader.c (mono_get_method_full): Store the lookup result for method
2243         tokens in method_cache, the others in methodref_cache to decrease the memory
2244         usage of hash tables.
2245
2246         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
2247         (mono_image_init): method_cache is lazy inited now.
2248
2249         * metadata-internals.h (struct _MonoImage): Change method_cache to
2250         a MonoValueHashTable, add a separate methodref_cache.
2251
2252 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
2253
2254         * number-formatter.h: Fix tables to avoid arithemtic overflow in
2255           Double.ToString as exposed by Bug #383531.
2256
2257 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
2258
2259         * number-formatter.h: Make some tables static.
2260
2261         * class.c (mono_method_set_generic_container): New accessor function.
2262         (mono_method_get_generic_container): Ditto.
2263
2264         * class-internals.h (struct _MonoMethod): Remove rarely used 
2265         'generic_container' field, store it in the property hash instead. Add 
2266         'is_generic' boolean field instead.
2267
2268         * image.c (mono_image_init): Initialize property_hash.
2269         (mono_image_close): Destroy property_hash.
2270
2271         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
2272         hold rarely used fields of runtime structures belonging to this image.
2273
2274         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
2275         to get/set method->generic_container.
2276
2277         * loader.c (mono_get_method_from_token): Avoid loading the method header for
2278         generic methods.
2279
2280 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
2281
2282         * class.c (mono_class_inflate_generic_method_full): Don't increase
2283         mono_stats.inflated_method_count for methods found in the cache.
2284
2285         * threads.c (mono_thread_request_interruption): Add a comment about 
2286         QueueUserAPC ().
2287
2288 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
2289
2290         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
2291         interface_offsets_packed table.
2292         
2293         * class.c (mono_class_init): Remove some dead code.
2294
2295         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
2296         mono_class_setup_vtable () when CAS is active to detect security problems.
2297
2298 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
2299
2300         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
2301
2302         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
2303         parameters as it's irrelevant for delegate checking.
2304
2305 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
2306
2307         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
2308
2309         * class.c (mono_class_init): Control the creation of a generic vtable using
2310         a global which is true by default, but set to false by the runtime startup code.
2311         
2312         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
2313         Disabled for now since it breaks the embedding API.
2314         Move the setup of class->methods for arrays to mono_class_setup_methods ().
2315         (mono_class_setup_methods): Add a memory barrier.
2316
2317         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
2318         when mono_class_init () doesn't compute the generic vtable.
2319         
2320 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
2321         * profiler.c: Added mono_profiler_install_statistical_call_chain,
2322         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
2323         to support call chains (backtrace) in the stat profiler.
2324         * profiler.c, profiler-private.h: Likewise.
2325
2326 2008-05-22  Mark Probst  <mark.probst@gmail.com>
2327
2328         * generic-sharing.c: Init generic class when a method of it is
2329         requested via a runtime generic context.
2330
2331 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
2332
2333         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
2334
2335         * reflection.c (mono_type_get_object): Add a FIXME.
2336
2337         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
2338
2339         * class.c (mono_class_get_method_by_index): New helper function, returning an
2340         entry in the class->methods array.
2341
2342 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
2343
2344         * class.c (mono_class_init): Only do the array optimization for szarrays. 
2345         Avoid creating a generic vtable for generic instances as well.
2346         (mono_class_get_method_from_name_flags): Don't search in the metadata for
2347         generic instances.
2348
2349 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
2350
2351         * loader.c (mono_get_method_constrained): Inflate the signature
2352         with class context. Fix #325283.
2353
2354 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
2355
2356         * object.c (mono_class_create_runtime_vtable): Add a comment.
2357
2358         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
2359         where needed.
2360         (setup_interface_offsets): Handle the case when this is called twice for arrays.
2361         (mono_class_setup_vtable_general): Add an assert.
2362         (mono_class_init): Avoid creating a generic vtable for arrays.
2363
2364         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
2365         here, let mono_class_init () do that.
2366
2367         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
2368         interfaces in mscorlib.
2369
2370         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
2371         interfaces. Add some comments.
2372         (mono_class_init): Call mono_class_setup_methods () here since it is no
2373         longer called by mono_class_setup_vtable ().
2374
2375         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
2376         not set in class->vtable.
2377         (mono_class_create_runtime_vtable): Reenable the disabled code.
2378
2379         * object.c (mono_class_create_runtime_vtable): Disable the last change for
2380         now as it causes some test failures.
2381
2382         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
2383         if using the vtable trampoline. Also remove some strange code which put the
2384         generic methods themselves into the vtable slots. Remove the AOT init_vtable
2385         stuff as it is no longer needed.
2386
2387 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2388
2389         * pedump.c: Give make --verify all option check code as well.
2390         Using --verify code won't check for metadata now.
2391
2392 2008-05-19  Martin Baulig  <martin@ximian.com>
2393
2394         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
2395
2396         * mono-debug.c
2397         (_mono_debug_using_mono_debugger): New global variable; it's set
2398         directly by the debugger, so mono_debug_using_mono_debugger() also
2399         works after attaching.
2400
2401 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2402
2403         * object.c (mono_class_create_runtime_vtable): Use memory barriers
2404         as we do double checked locking on MonoClass::runtime_info and
2405         MonoClassRuntimeInfo::domain_vtables.
2406
2407 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
2408
2409         * debug-helpers.c (print_field_value): Fix a warning.
2410
2411 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
2412
2413         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
2414         set in the AOT case.
2415
2416 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
2417
2418         * class.c (mono_class_setup_vtable_general): Use memory barriers
2419         as we do double checked locking on MonoClass::vtable.
2420
2421 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
2422
2423         * reflection.c (resolve_object): Inflate only if the generic context
2424         is not null. Fixes #389886.
2425
2426 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
2427
2428         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
2429         instead of g_free.
2430
2431         Code is contributed under MIT/X11 license.
2432
2433 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2434
2435         * class.c: Revert unrelated change.
2436
2437 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2438
2439         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
2440         a generic instantiation, use mono_class_from_mono_type instead of playing
2441         with MonoType directly.
2442
2443 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2444
2445         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
2446         checks must ignore generic instantiations, so mono_class_has_parent is not
2447         suitable. Fixes #390128.
2448
2449 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
2450
2451         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
2452         it to avoid registering tokens during metadata generation. Fixes #390023.
2453
2454 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
2455
2456         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
2457         consistent.
2458
2459         Contributed under MIT/X11 license.
2460
2461 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
2462
2463         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
2464         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
2465         to fixup the EXE image.
2466         (mono_cleanup): Use mono_close_exe_image.
2467         (mono_close_exe_image): New function.
2468         * image.c: Include "marshal.h".
2469         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
2470         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
2471         counting when the image is loaded outside of mono_image_open_full. Set status
2472         based on GetLastError.
2473         * coree.c: Include required headers. Add init_from_coree.
2474         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
2475         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
2476         (_CorExeMain): Set init_from_coree.
2477         (CorExitProcess): Only call ExitProcess for now.
2478         (CorBindToRuntimeEx): New stub implementation.
2479         (CorBindToRuntime): New function.
2480         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
2481         (MonoFixupExe): ILONLY executables require no fixups.
2482         (mono_set_act_ctx): New function to set activation context.
2483         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
2484         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
2485         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
2486         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
2487         as MONO_INTERNAL.
2488         * domain-internals.h: Add mono_close_exe_image.
2489
2490         Contributed under MIT/X11 license.
2491
2492 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2493
2494         * metadata.c (mono_metadata_compute_size): Correctly calculate field
2495         size for generic param and event tables. Fixes #388977.
2496
2497 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
2498
2499         * loader.c (mono_method_signature): Use memory barriers because of the double
2500         checked locking pattern.
2501
2502         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
2503         aborting or aborted as well. Fixes #376391.
2504         
2505         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
2506         existing runtime state in the Suspend handler during shutdown.
2507
2508 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
2509
2510         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
2511
2512         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
2513         which are starting up or shutting down.
2514
2515         * threads.c (mono_threads_set_shutting_down): Don't return a value since
2516         this function never returns if the runtime is already shutting down.
2517
2518         * icall.c (ves_icall_System_Environment_Exit): Update after 
2519         mono_threads_set_shutting_down () signature change.
2520         
2521 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
2522
2523         * class.c: Added can_access_instantiation to verify if the instantiation
2524         is visible. Fix access check for nested types as they returned TRUE
2525         before doing type and generic instantiation visibility checks.
2526
2527 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
2528
2529         * reflection.c (mono_reflection_create_generic_class): The created type
2530         must have a different container from its TypeBuilder. Otherwise they
2531         will end sharing generic arguments, which is wrong.
2532
2533         Due to the sharing, making a generic instance of the created type using
2534         the TypeBuider generic arguments resulted in the generic type definition
2535         been returned, which is wrong as well.
2536
2537         As a bonus the code was leaking the type_params array. This memory should
2538         be allocated from the image mempool.
2539
2540         This fixes bug #354047.
2541
2542 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
2543
2544         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
2545         to here         as they are now used in assembly.c new code.
2546         Added a skipverification flag to MonoAssembly.
2547         New internal function mono_assembly_has_skip_verification.
2548
2549         * assembly.c: New function mono_assembly_has_skip_verification. It checks
2550         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
2551         part of #387274.
2552
2553 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
2554
2555         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
2556         needed. Fixes #387034.
2557
2558         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
2559
2560 2008-05-06  Miguel de Icaza  <miguel@novell.com>
2561
2562         * assembly.c (mono_assembly_load_reference): Prevent crash while
2563         disassembling Silverlight 2.0 executables while we still do not
2564         have GACed libraries.
2565
2566 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
2567
2568         * reflection.c: Special case generic type definitions as well. Fixes #383444.
2569
2570 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
2571
2572         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
2573         of the dynamic case. Fixes #387404.
2574
2575 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2576
2577         *verify.c (mono_verifier_is_class_full_trust): If under
2578         verify_all and the verifier mode was not set, only
2579         gac and corlib types are fulltrust. This makes --verify-all
2580         usable to detect unverifiable code, which is the expected
2581         use case.
2582
2583 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2584
2585         * verify.h: Ops, commited the header with debug
2586         enabled.
2587
2588 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2589
2590         * verify.c (merge_stack): Use the new value on unverifiable
2591         stack merges.
2592
2593         * verify.c (verify_type_compatibility_full): Comparison
2594         of nullable types can't use mono_class_is_assignable_from.
2595
2596         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
2597         that makes all verification errors be reported.
2598
2599         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
2600         mono_method_verify.
2601
2602 2008-05-05  Robert Jordan  <robertj@gmx.net>
2603
2604         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
2605         support for value types. See #386415.
2606
2607         * object.c: comments.
2608
2609         Code is contributed under MIT/X11 license.
2610
2611 2008-05-05  Martin Baulig  <martin@ximian.com>
2612
2613         * debug-mono-symfile.h
2614         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
2615         for old pre-terrania symbol files.
2616
2617 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
2618
2619         * mono-config.c: Add ppc64 architecture.
2620
2621         Code is contributed under MIT/X11 license.
2622
2623 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
2624
2625         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
2626           PPC64 uses function descriptors as well.
2627
2628         Code is contributed under MIT/X11 license.
2629
2630 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
2631
2632         * object.c (compute_class_bitmap): Ignore literal static fields.
2633
2634         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
2635         var has an invalid format.
2636         (describe_ptr): Add some sanity checks for the vtable.
2637         (add_nursery_frag): Clear unused nursery fragments.
2638         (major_collection): Clear all remaining nursery fragments.
2639
2640 2008-05-03  Robert Jordan  <robertj@gmx.net>
2641
2642         * image.c, metadata-internals.h: add thunk_invoke_cache.
2643
2644         * marshal.c, marshal.h: implement
2645         mono_marshal_get_thunk_invoke_wrapper ().
2646
2647         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
2648
2649         Code is contributed under MIT/X11 license.
2650
2651 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
2652
2653         * verify.c (do_leave): Empty the stack.
2654
2655 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
2656
2657         * class.c (mono_class_is_assignable_from): Variance
2658         doesn't work between reference and value types. For example,
2659         given type C<T+>, C<int32> is not assignable to C<object>.
2660         Break the argument checking loop on first error. 
2661
2662 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
2663
2664         * icall.c : base64_to_byte_array() needs some more strict
2665           check for sequence of '=' characters. Patch by Santa
2666           Marta (http://deee.g.hatena.ne.jp/santamarta).
2667
2668           Contributed under MIT/X11 license.
2669           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
2670
2671 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
2672
2673         * domain.c: Disable LoadLibrary support to fix Win32 build.
2674
2675         Code is contributed under MIT/X11 license.
2676
2677 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
2678
2679         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
2680         to help with cache behaviour.
2681
2682 2008-05-01  Miguel de Icaza  <miguel@novell.com>
2683
2684         * appdomain.c (mono_domain_from_appdomain): Add new accessor
2685         method. 
2686
2687 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
2688
2689         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
2690
2691 2008-05-01  Dick Porter  <dick@ximian.com>
2692
2693         * process.c (process_get_fileversion): Only pass 16 bits of
2694         language ID to VerLanguageName.  Fixes bug 381204.
2695
2696 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2697
2698         * verify.c (mono_method_verify): Fix the comparison
2699         operator for code bounds check.
2700
2701 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2702
2703         * verify.c (mono_method_verify): Check the bounds of
2704         all access of the code array.
2705
2706 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
2707
2708         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
2709
2710 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
2711
2712         * image.c (mono_image_strong_name_position): Fix return value when the rva is
2713         not valid.
2714
2715 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
2716
2717         * loader.c (mono_get_method_from_token, mono_method_signature): Add
2718         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
2719         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
2720         fixup main EXE images when using mono.exe for mixed-mode assembly support.
2721         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
2722         mono_runtime_load.
2723         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
2724         runtime initialization from metadata.
2725         * assembly.c: Remove obsolete ceGetModuleFileNameA.
2726         (mono_set_rootdir): Use mono_get_module_file_name.
2727         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
2728         handles.
2729         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
2730         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
2731         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
2732         MonoCLIImageInfo. Add support for module handles.
2733         (load_cli_header): Update mono_cli_rva_image_map signature.
2734         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
2735         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
2736         (mono_image_rva_map): Add support for module handles.
2737         (mono_image_ensure_section_idx): Add support for module handles.
2738         (mono_image_close): Add support for module handles.
2739         (do_load_header): Add support for module handles.
2740         (mono_image_open_from_module_handle): New function for internal use.
2741         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
2742         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
2743         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
2744         handles.
2745         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
2746         * image.h: Add mono_image_fixup_vtable.
2747         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
2748         support.
2749         * coree.h: New file.
2750         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
2751         unsupported native code.
2752         (mono_marshal_set_callconv_from_modopt): New function splitted from
2753         mono_marshal_get_managed_wrapper.
2754         (mono_marshal_get_managed_wrapper): Use
2755         mono_marshal_set_callconv_from_modopt.
2756         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
2757         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
2758         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
2759         that results in a deadlock when the runtime is loaded in _CorDllMain.
2760         * Makefile.am: Add coree.c and coree.h.
2761
2762         Contributed under MIT/X11 license.
2763
2764 2008-04-28  Mark Probst  <mark.probst@gmail.com>
2765
2766         * generic-sharing.c: Search for type arguments in array element
2767         types as well.
2768
2769 2008-04-28  Mark Probst  <mark.probst@gmail.com>
2770
2771         * class-internals.h, generic-sharing.c: New, small runtime generic context.
2772
2773         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
2774
2775         * object.c: Don't setup the RGCTX when the vtable is created,
2776         because we're setting it up lazily now.
2777
2778 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
2779
2780         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
2781         64 bit support.
2782
2783 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
2784
2785         * verify.c (verify_class_for_overlapping_reference_fields): 
2786         If class is under fulltrust allow reference types to overllap
2787         if they have the same RVA.
2788
2789 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
2790
2791         * pedump.c: Added new flag valid-only, that makes the verifier
2792         behaves just like --security=validil. It won't fail type load
2793         due to unverifiable restrictions.
2794
2795 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
2796
2797         * class-internals.h (struct MonoMethod): Added a verification_success
2798         field to cache verifier executions. Reduced MonoMethod:slot size by
2799         one bit.
2800
2801 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
2802
2803         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
2804         instead of a 'vt' argument to save an indirection and to allow these to be used
2805         for valuetypes.
2806         (scan_vtype): New helper function to scan an area using a gc descriptor.
2807         (mono_gc_wbarrier_value_copy): Implement this.
2808         (handle_remset): Add support for REMSET_VTYPE.
2809         (find_in_remset_loc): Ditto.
2810         (mono_gc_base_init): Allow some debugging options to be controlled through the
2811         use of the MONO_GC_DEBUG env variable.
2812         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
2813         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
2814
2815 2008-04-23  Martin Baulig  <martin@ximian.com>
2816
2817         * domain.c (mono_domain_create): Move the call to
2818         mono_debug_domain_create() down, after allocating the domain id.
2819
2820 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
2821
2822         verify.c (verify_class_for_overlapping_reference_fields): Skip
2823         static fields while verifying for overlapping fields as they
2824         don't matter at all.
2825
2826 2008-04-23  Marek Habersack  <mhabersack@novell.com>
2827
2828         * domain-internals.h: added a declaration of
2829         mono_make_shadow_copy.
2830
2831         * assembly.c (mono_assembly_open_full): shadow copying of
2832         assemblies moved to here, so that all the assemblies within the
2833         application domain's private binary directories can be
2834         processed. Fixes bug #380546
2835
2836         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
2837         mono_make_shadow_copy and made non-static. The decision whether
2838         to shadow-copy an assembly is made based on its location - it's
2839         copied if it's in one of the private application domain binary
2840         directories and its different to the target file in the shadow
2841         directory. Fixes bug #380546
2842
2843 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
2844
2845         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
2846
2847         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
2848         types.
2849
2850         * reflection.c (mono_image_create_token): Handle 
2851         Method/ConstructorOnTypeBuilderInst.
2852         (resolve_object): Ditto.
2853         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
2854         so it can be called from resolve_object. Also handle the case when the inflated
2855         class already has its methods setup.
2856
2857 2008-04-21  Martin Baulig  <martin@ximian.com>
2858
2859         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
2860
2861 2008-04-20  Geoff Norton  <gnorton@novell.com>
2862
2863         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
2864         pointer dereference.
2865
2866 2008-04-15  Marek Habersack  <mhabersack@novell.com>
2867
2868         * appdomain.c (try_load_from): if IOMAP is in effect, call the
2869         portability API to look up the assembly file. Fixes behavior in
2870         situations when the application has a bin/ directory, but the
2871         assembly search patch refers to Bin/ (and thus the requested file
2872         name is Bin/SomeLibrary.dll). Fixes bug #379888
2873
2874 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
2875
2876         verify.c (mono_type_is_generic_argument): Extracted this check
2877         from a dozen places to here.
2878
2879         verify.c: Fixed all issues related to boxing generic arguments
2880         and their constraints.
2881
2882 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
2883
2884         verify.c (mono_class_interface_implements_interface): Fix win32 build.
2885
2886 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
2887
2888         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
2889         isn't finished yet. Fixes #363447.
2890
2891 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
2892
2893         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
2894         Fixes #346419.
2895
2896 2008-04-13  Jb Evain  <jbevain@novell.com>
2897
2898         * domain.c: update the 2.1 profile versions.
2899         Merged from the Moonlight 2 branch.
2900
2901 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
2902
2903         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
2904         mscorlibs for the non-refonly case as well.
2905
2906         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
2907         in mono_assembly_load_from_full (). Fixes #378924.
2908
2909 2008-04-11  Geoff Norton  <gnorton@novell.com>
2910
2911         * icall.c: The global extern environ doesn't exist on Mac.  We
2912         need to call NSGetEnviron instead.
2913
2914 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
2915
2916         verify.c: Add generic method constraint verification.
2917
2918 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
2919
2920         class.c (mono_class_inflate_generic_method_full): Add a long
2921         explanation to the is_mb_open hack. Remove the FIXME.
2922
2923 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
2924
2925         * verify.c (mono_method_verify): Mark all unknown opcodes
2926         as invalid. Mark jmp as unverifiable.
2927
2928 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
2929
2930         * verify.c: Add code to do type constraint verification on class instances.
2931
2932         * verify.c (mono_verifier_verify_class): Use the type constraint 
2933         verification code.
2934
2935 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
2936
2937         * class.c (mono_class_get_field_default_value): Don't pass cindex
2938         as hint to mono_metadata_get_constant_index. The local is not initialized
2939         and should contain garbage most of the time. This could only work
2940         with a lot of luck.
2941
2942 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
2943
2944         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
2945
2946 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
2947
2948         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
2949
2950         * class.c (mono_class_from_generic_parameter): Save the token of the
2951         generic param in MonoClass::sizes.generic_param_token.
2952
2953         * reflection.c (mono_custom_attrs_from_class): If the class type is
2954         VAR or MVAR retrieve the attributes of the generic param.
2955
2956 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
2957
2958         * class.c (mono_class_init): Do class verification if the verifier
2959         is enabled.
2960
2961 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
2962
2963         * verify-internal.h: Added mono_verifier_verify_class.
2964
2965         * verify.c: Added mono_verifier_verify_class. It checks for
2966         classes with explicit layout that have overlapping reference fields.
2967
2968         * pedump.c: Init the verifier state prior to verification. Fixed
2969         command line arguments.
2970
2971 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
2972
2973         * Makefile.am: Added verify-internals.h, hopefully fix the build.
2974
2975 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
2976
2977         * verify-internals.h: Fix a warning.
2978
2979 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
2980
2981         * verify-internals.h: New header with the verifier configuration
2982         extracted from mini.c.
2983
2984         * verify.c: Implemented the new functions exported by verify-internals.h.
2985
2986 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
2987
2988         * verify.c: Add proper verification of ckfinite.
2989
2990 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
2991
2992         * verify.c (do_conversion): Improved error message to something
2993         more meanfull.
2994
2995         * verify.c (check_is_valid_type_for_field_ops): Fix to work
2996         with primitive types.
2997
2998 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
2999
3000         * verify.c: Added tail prefix checking. Marked icall
3001         as unverifible.
3002
3003 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3004
3005         * verify.c: Fix the detection of branches to the middle
3006         of an instruction.
3007
3008 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
3009
3010         * verify.c: Implemented verification of volatile. and
3011         unaligned. prefix. Check if a type is valid after retrieving it.
3012
3013 2008-04-01  Dick Porter  <dick@ximian.com>
3014
3015         * process.c (process_get_fileversion): If there's no string block,
3016         set the file language to en_US.  Fixes the other new part of bug
3017         374600.
3018
3019 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
3020
3021         * class.c: New functions mono_method_can_access_field_full and
3022         mono_method_can_access_method_full. They perform type visibility
3023         and type site check.
3024
3025         * class-internal.h: Added exported functions.
3026
3027         * verify.c: Use new functions to implement proper visibility checks.
3028
3029 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
3030
3031         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
3032
3033 2008-03-28  Dick Porter  <dick@ximian.com>
3034
3035         * process.c (process_get_fileversion): Use the first language ID
3036         we see, rather than insisting on an invariant language.  Fixes bug
3037         374600.
3038
3039 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
3040
3041         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
3042         the streams to fix reading of invalid memory later.
3043
3044         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
3045         to ease debugging.
3046
3047 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
3048
3049         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
3050         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
3051
3052 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
3053         * threads.h: Added MonoThreadManageCallback type and
3054         mono_thread_set_manage_callback prototype
3055         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
3056         (used to store the mono_thread_manage callback).
3057         * threads.c: Added mono_thread_set_manage_callback, and handle
3058         "MonoThread->manage_callback" in build_wait_tids.
3059
3060 2008-03-26  Dick Porter  <dick@ximian.com>
3061
3062         * process.c (process_get_fileversion): Set FileVersionInfo strings
3063         to Empty when the resource doesn't have the particular info.
3064         Fixes bug 355717.
3065
3066 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
3067
3068         * verify.c (mono_method_verify): Proper prefix validation.
3069
3070 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
3071
3072         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
3073         itself in a separate argument instead of throwing them. Fixes #373448.
3074
3075         * appdomain.c: Bump corlib version.
3076
3077 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3078
3079         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
3080
3081 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
3082
3083         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
3084         version macros.
3085
3086 2008-03-20  Mark Probst  <mark.probst@gmail.com>
3087
3088         * generic-sharing.c, class-internals.h: Code for putting
3089         reflection types into the runtime generic context.
3090
3091 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3092
3093         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
3094         Fixes #340662. 
3095
3096
3097 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
3098
3099         * verify.c (VerifyContext): Added instruction prefix data to the struct.
3100
3101         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
3102
3103         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
3104
3105         * verify.c (do_cast): Let the result value keep the boxed status.
3106
3107         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
3108
3109 2008-03-17  Jb Evain  <jbevain@novell.com>
3110
3111         * reflection.c: when running on a 2.0 runtime, emit
3112         unconditionally the #~ header version as 2.0, and the
3113         CLI header version as 2.5, for symmetry's sake with csc.
3114
3115 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
3116
3117         * class.c: Remove the unused cache_interface_offsets stuff.
3118
3119         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
3120         profiler.c: Fix warnings.
3121
3122 2008-03-16  Mark Probst  <mark.probst@gmail.com>
3123
3124         * generic-sharing.c, class-internals.h: Support for putting
3125         methods into the runtime generic context.
3126
3127 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
3128
3129         * class.c (mono_class_setup_fields): Ignore calls made to this function for
3130         classes which are generic instances of not-yet finished typebuilders. Fixes
3131         #351172.
3132
3133         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
3134
3135 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
3136
3137         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
3138
3139         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
3140         field, replace it with a hash table in MonoDynamicImage.
3141
3142         * reflection.c (inflate_mono_method): Access the generic definition object from
3143         image->generic_def_objects instead of imethod->reflection_info.
3144
3145         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
3146
3147         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
3148         
3149         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
3150         function in reflection.c so it is easier to keep in sync with the dynamic image
3151         creation code.
3152
3153         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
3154         mono_image_close ().
3155
3156 2008-03-15  Mark Probst  <mark.probst@gmail.com>
3157
3158         * class.c (mono_class_generic_sharing_enabled): Disable generic
3159         sharing for all architectures except AMD64 and x86 to fix build.
3160
3161 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
3162
3163         * verify.c: Use the generic definition MonoGenericContext when available.
3164         Remove code for checking generics instance compatibility in favor of
3165         mono_class_is_assignable_from.
3166
3167 2008-03-14  Mark Probst  <mark.probst@gmail.com>
3168
3169         * marshal.c, marshal.h, metadata-internals.h, image.c,
3170         wrapper-types.h: New wrapper for invoking a shared static method
3171         without having to pass the runtime generic context argument.
3172
3173 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
3174
3175         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
3176
3177 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
3178
3179         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
3180         
3181         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
3182         create a token from a FieldOnTypeBuilderInst.
3183         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
3184         (resolve_object): Ditto.
3185
3186         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
3187         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
3188
3189 2008-03-14  Martin Baulig  <martin@ximian.com>
3190
3191         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
3192
3193         * debug-mono-symfile.h
3194         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
3195         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
3196
3197 2008-03-10  Martin Baulig  <martin@ximian.com>
3198
3199         * debug-mono-symfile.h
3200         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
3201         `lexical_block_table_offset'.
3202         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
3203         `lexical_blocks'.
3204         (MonoSymbolFile): Added `version'.
3205
3206         * mono-debug.h
3207         (MonoDebugLexicalBlockEntry): Removed.
3208         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
3209         `lexical_blocks'.
3210
3211         * mono-debug.c (mono_debug_add_method): Don't compute lexical
3212         blocks here; the debugger now does this internally.
3213
3214 2008-02-27  Martin Baulig  <martin@ximian.com>
3215
3216         * object.c (mono_runtime_exec_main): Call
3217         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
3218         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
3219
3220 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3221
3222         * verify.c (verify_type_compatibility_full): Allow native int to be converted
3223         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
3224
3225 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3226
3227         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
3228         ldftn with a virtual method.
3229
3230 2008-03-13  Geoff Norton  <gnorton@novell.com>
3231
3232         * decimal.c:  Only include memory.h if the platform has it.
3233
3234 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
3235
3236         * assembly.c, class.c, metadata-internals.h: make sure public key
3237         tokesns are compared in a case-insensitive way. Also, all
3238         the lookups in the GAC use a lowercase public key token
3239         (gaacutil already does the lowercasing on install). Fixes
3240         bug #369541.
3241
3242 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
3243
3244         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
3245         and return value.
3246
3247 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
3248
3249         * image.c: when someone loads a mscorlib from a file, return the
3250         currently loaded mscorlib (fixes bug #369253).
3251
3252 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
3253
3254         * class.c: handle types with no parents by forcing them to have
3255         System.Object as a parent and marking them as broken (this currently
3256         allows the first part of bug #369173 to work as well, likely because
3257         we don't check for typeload exceptions everywhere yet).
3258
3259 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
3260
3261         * class.c: more complete check that types belong to corlib
3262         (fixes second part of bug #369173).
3263
3264 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
3265
3266         * generic-sharing.c:  Including glib.h for the MSVC builds to define
3267           "inline" to "__inline" before including mono-membar.h.
3268           
3269         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
3270           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
3271           MSVC builds.
3272
3273         Contributed under MIT/X11 license.
3274
3275 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
3276
3277         * verify.c (do_invoke_method): Remove return type validation.
3278
3279         * verify.c (do_ret): Do return type validation at return site instead of
3280         call site.
3281
3282 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
3283
3284         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
3285
3286         * verify.c: Some todos cleaned and improved a few error messages.
3287
3288 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
3289
3290         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
3291
3292 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
3293
3294         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
3295         system types correctly.
3296
3297         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
3298         function.
3299
3300 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
3301
3302         * assembly.c (build_assembly_name): Fix a warning.
3303
3304 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
3305
3306         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
3307         the called function takes an object type argument. Fixes storing or
3308         valuetypes across remoting as well as reducing memory usage.
3309         * image.c, metadata-internals.h: remove now unused ldfld_remote and
3310         stfld_remote wrapper caches.
3311
3312 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
3313
3314         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
3315         is not found.
3316
3317         * reflection.c (mono_image_register_token): New helper function to save
3318         a token->object mapping.        
3319
3320         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
3321         managed code.
3322
3323         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
3324         one dimension arrays. Fixes #367670.
3325         (mono_reflection_get_type_internal): Ditto.
3326
3327 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
3328
3329         * marshal.c: mono_load_remote_field_new() always returns object.
3330         so use the proper signature (fixes bug #366445).
3331
3332 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
3333         
3334         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
3335         add an 'inline_failure' flag instead.
3336
3337 2008-03-04  Mark Probst  <mark.probst@gmail.com>
3338
3339         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
3340         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
3341         contains the location of "this", used for exception handling.
3342
3343 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
3344
3345         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
3346         their size on all platforms for perf reasons.
3347
3348 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3349
3350         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
3351         object-internal.h
3352
3353         * object-internal.h: Same.
3354
3355 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3356
3357         * reflection.h: Fix the build I just broke.
3358
3359 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3360
3361         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
3362         Test if a token is valid, this remove explicit usage of 
3363         MonoDynamicImage::tokens from the verifier code.
3364
3365         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
3366
3367         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
3368         instead of direct access to MonoDynamicImage::tokens.
3369
3370 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3371
3372         * verify.c (token_bounds_check): Fix the build I just broke.
3373
3374 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3375
3376         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
3377
3378         * verify.c (verifier_load_method): Fixed the errors message.
3379
3380         * verify.c (mono_method_verify): Fixed a debug message.
3381
3382 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
3383
3384         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
3385         mono-perfcounters.h, class-internals.h: support for predefined
3386         writable counters, query of categories and counters, bugfixes.
3387
3388 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
3389
3390         * verify.c (do_refanytype): Verify the refanytype opcode.
3391
3392         * verify.c (mono_method_verify): Use do_refanytype.
3393
3394 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
3395
3396         * verify.c (do_mkrefany): Verify the mkrefany opcode.
3397
3398         * verify.c (mono_method_verify): Use do_mkrefany.
3399
3400 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
3401
3402         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
3403         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
3404         implementation.
3405
3406 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
3407
3408         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
3409         the type load exception.
3410
3411 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
3412
3413         * verify.c: Added a few FIXME for method signatures
3414
3415         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
3416         of mono_method_get_signature and get vararg call working. Removed unused
3417         checks for return value.
3418
3419         * verify.c (do_refanyval): Verify the refanyval opcode.
3420
3421         * verify.c (mono_method_verify): Implemented verification of arglist and
3422         use do_refanyval.
3423
3424 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
3425
3426         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
3427         vtypes to marshal.c.
3428
3429         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
3430         it works for AOT as well.
3431
3432 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
3433
3434         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
3435         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
3436         the system time is adjusted.
3437
3438 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
3439
3440         * icall.c, icall-def.h: use the new time functions (fixes the
3441         non-monotonic behaviour of TickCount).
3442
3443 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
3444
3445         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
3446         it breaks the build.
3447         
3448         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
3449         cattr is not finished yet.
3450
3451 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
3452
3453         * verify.c: Proper token validation for field, method and type.
3454
3455 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
3456
3457         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
3458
3459         * loader.c (method_from_memberref): Generate type load error instead of method missing
3460         if the type is not found.
3461
3462 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
3463
3464         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
3465         some of the conversions caused the generation of a marshal directive exception.
3466
3467 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
3468
3469         verify.c: Report which exception should be thrown by the JIT.
3470         Added a lot of FIXME notes.
3471
3472 2008-02-22  Mark Probst  <mark.probst@gmail.com>
3473
3474         * generic-sharing.c: Runtime generic context slots are not
3475         instantiated on init anymore.  Instead, provide function to do the
3476         instantiating on demand.
3477
3478         * class-internals.h: Added vtable to runtime generic context.
3479         Macros for encoding direct and indirect slot offsets in one
3480         guint32.
3481
3482 2008-02-21  Mark Probst  <mark.probst@gmail.com>
3483
3484         * object.c, generic-sharing.c: Moved some generic sharing code
3485         from object.c to generic-sharing.c.
3486
3487         * generic-sharing.c: Added support for extensible runtime generic
3488         context.
3489
3490         * metadata-internals.h: Two new hash tables in MonoImage for
3491         extensible runtime generic context support.
3492
3493         * domain.c: Unregister generic vtables upon domain unloading.
3494
3495         * image.c: Destroy new hash tables upon image unloading.
3496
3497         * metadata.c: Unregister generic subclasses upon image unloading.
3498
3499         * class-internals.h: New data structure for runtime generic
3500         context template.  New fields in the runtime generic context for
3501         extensible part.
3502
3503         * Makefile.am: Added generic-sharing.c.
3504
3505 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
3506
3507         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
3508         there is a pending loader exception, raise it.
3509
3510         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
3511         same.
3512
3513         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
3514         same.
3515
3516         Fixes #363450.
3517
3518 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
3519
3520         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
3521
3522         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
3523         
3524         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
3525         ref-only requests for compatibility with MS.
3526
3527 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
3528
3529         * reflection.c (mono_custom_attrs_from_method): Don't silently
3530         return an empty list for generic method instances.
3531         (mono_custom_attrs_from_param): Likewise.
3532
3533 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
3534             Raja R Harinath  <harinath@hurrynot.org>
3535
3536         Fix #354757
3537         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
3538         * class.c (mono_class_inflate_generic_method_full): Initialize it
3539         when a fully-open method is instantiated.
3540         * metadata.c (inflated_method_equal, inflated_method_hash): Update
3541         to new field.
3542         * reflection.c (inflate_mono_method): Don't create a temporary context.
3543
3544 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
3545
3546         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
3547         Compute correct value, to prepare for imethod->reflection_info going away.
3548
3549 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
3550
3551         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
3552
3553 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
3554
3555         * verify.c: Implement skip visibility flag.
3556
3557 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
3558
3559         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
3560         which contains an extra field to tell the kind of exception that should be thrown.
3561
3562         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
3563
3564 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
3565
3566         * loader.c (mono_method_get_param_names): Initialize 'klass' after
3567         'method' is updated.
3568
3569 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
3570
3571         * class.c (mono_class_layout_fields): Set class->min_align for classes using
3572         explicit layout as well. Fixes #360375.
3573
3574 2008-02-11  Geoff Norton  <gnorton@novell.com>
3575
3576         * loader.c: Guard and dereference against inflated generic methods
3577
3578 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
3579
3580         * class.c: Include Retargetable spec in assembly name.
3581         * assembly.c: Always include PublicKeyToken spec in assembly name
3582         (with value "null" if assembly is not signed), and include
3583         Retargetable spec.
3584         * icall-def.h: Added icall for Assembly.get_fullname.
3585         * icall.c: Added icall returning the fullname of an assembly.
3586
3587 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
3588
3589         * class.c (mono_class_setup_vtable_general): Add a missing call to
3590         mono_class_setup_methods () which is needed in the AOT case.
3591
3592 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
3593
3594         * verify.c (mono_type_get_stack_name): Added. Return the name for the
3595         stack type of the given MonoType.
3596
3597         * verify.c (verify_type_compatibility_full): Handle the void type.
3598
3599         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
3600         way stack merging works.
3601
3602         * verify.c (store_local): Improved verification message.
3603
3604         * verify.c (do_branch_op): If the merging is invalid, the method
3605         is unverifiable and not invalid. Improved error message.
3606
3607         * verify.c (merge_stacks): Properly merge a boxed valuetype and
3608         a reference type diferent than System.Object. Improved error
3609         message.
3610
3611 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
3612
3613         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
3614
3615         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
3616         type of an enum even if the argument is byref.
3617
3618         * verify.c: Replace all explicit uses of enumtype and enum_basetype
3619         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
3620
3621         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
3622
3623         *verify.c (verify_type_compatibility_full): Make enum types
3624         compatible with their base types.
3625
3626         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
3627         types are compatible for the special case of a boxed valuetype and
3628         System.Object.
3629
3630         * verify.c (verify_stack_type_compatibility): The function
3631         is_compatible_boxed_valuetype was extracted from here.
3632
3633         * verify.c (push_arg): Only set ctx->has_this_store if the method
3634         is not static.
3635
3636         * verify.c (do_ldelem): Fixed a typo in an error message and added
3637         strict check for mixing int32 and native int as the array type
3638         and ldelem type.
3639
3640         * verify.c (merge_stacks): Consider boxed valuetypes in the
3641         compatibility checks.
3642
3643 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
3644         * profiler.h: (MonoGCEvent): Added start-stop the world events.
3645
3646 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
3647         *class.c: use_new_interface_vtable_code: renamed the env var to have
3648         a "MONO_" prefix, and fix the logic to enable it by default.
3649
3650 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
3651         *class.c:
3652         mono_class_setup_vtable_general: rewrote the way in which interface
3653         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
3654         makes the code more maintainable.
3655         For now the old code is still there, and can be activated setting
3656         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
3657
3658 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
3659
3660         * verify.c: guarded some debug functions around and #ifdef.
3661
3662         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
3663
3664 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
3665
3666         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
3667         changes for now since they seem to break too many things.
3668
3669 2008-02-05  Mark Probst  <mark.probst@gmail.com>
3670
3671         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
3672         mono_marshal_find_nonzero_bit_offset): Added macro and function
3673         for finding the byte- and bit-offset of a bitfield within a
3674         struct.
3675
3676 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
3677
3678         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
3679         (mono_marshal_get_struct_to_ptr): Ditto.
3680
3681         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
3682         cctor_signature.
3683
3684 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
3685
3686         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
3687         between methods for non-corlib types.
3688
3689 2008-02-02  Geoff Norton  <gnorton@novell.com>
3690
3691         * loader.c (mono_method_get_param_names): Populate the parameter name for 
3692         generic parameters as well. (Fixes #342536)
3693
3694 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
3695
3696         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
3697
3698         * verify.c (do_invoke_method): Fix for calling with byref structs.
3699
3700         * verify.c (do_cast): push a boxed value type based on the type token and not
3701         the type of stack.
3702
3703 2008-01-31  William Holmes  <billholmes54@gmail.com>
3704
3705         * process.c (process_module_string_read): Check the size returned form 
3706           VerQueryValue to avoid out of memory exception. 
3707
3708 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
3709
3710         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
3711         Handle properly modules which are not in the moduleref table. Fixes
3712         #356938.
3713
3714 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
3715
3716         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
3717         the dynamic case which is now in managed code.
3718         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
3719
3720         * marshal.c (mono_string_to_bstr): Fix a warning.
3721         (init_com_provider_ms): Ditto.
3722
3723         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
3724
3725         * exception.c (mono_get_exception_out_of_memory): New helper function.
3726
3727 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
3728
3729         * marshal.c: Add support for BSTR marshalling
3730         using other COM systems.
3731
3732         Code is contributed under MIT/X11 license.
3733
3734 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
3735
3736         * object.c (mono_runtime_invoke_array): reverted previous
3737         commit as it breaks the build.
3738
3739 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
3740
3741         * object.c (mono_runtime_invoke_array): Verify arguments for
3742         invalid types. Fixes #348522.
3743
3744 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
3745
3746         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
3747         non-final virtual calls using call. 
3748
3749         * verify.c (do_invoke): fixed some TODOs.
3750
3751         * verify.c (push_arg): set has_this_store for "ldarga 0".
3752
3753 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
3754
3755         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
3756         which belong to an inflated class. Fixes #356531.
3757
3758 2008-01-26  Robert Jordan  <robertj@gmx.net>
3759
3760         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
3761         which resort to FindFirstFile when a certain error condition
3762         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
3763         Code is contributed under MIT/X11 license.
3764
3765 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
3766
3767         * marshal.c (emit_marshal_string): Fix out string marshalling
3768         to use specified encoding. Fixes #323900.
3769
3770         Code is contributed under MIT/X11 license.
3771
3772 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
3773
3774         * class.c (mono_class_inflate_generic_method_full): Don't modify
3775         iresult->context after cache check.
3776
3777 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
3778
3779         * class.c (mono_class_inflate_generic_method_full): Change the
3780         struct assignments to memcpy for better visibility and add some comments.
3781
3782 2008-01-23  Dick Porter  <dick@ximian.com>
3783
3784         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
3785         procedure, and make it work on windows.
3786
3787 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
3788
3789         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
3790         a MonoReflectionTypeBuilder since it is always of that type.
3791
3792         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
3793
3794         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
3795
3796         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
3797         
3798         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
3799
3800         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
3801
3802         * reflection.c (mono_reflection_create_runtime_class): Remove already created
3803         instantiations from the type cache.
3804
3805 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
3806
3807         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
3808
3809         * verify.c (do_unbox_value): push a controled mutability managed pointer.
3810
3811 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
3812
3813         * verify.c (do_ldstr): added, verifies if the #US token is valid.
3814
3815         * verify.c (mono_method_verify): removed old TODO
3816
3817 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
3818
3819         * verify.c (do_newobj): add visibility check.
3820
3821 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
3822
3823         * verify.c (do_load_function_ptr): add visibility check.
3824
3825 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
3826         *class.c:
3827         mono_generic_class_get_class: hook profiler events.
3828         mono_field_get_offset: added to support heap-shot in the new profiler.
3829         *class.h: exported mono_field_get_offset.
3830         * reflection.c:
3831         mono_reflection_setup_internal_class: hook profiler events.
3832
3833 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
3834
3835         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
3836         argument here too and use it to avoid checking for pending exceptions if 
3837         possible.
3838
3839 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
3840
3841         * assembly.c (build_assembly_name): add arg for passing the assembly
3842         flags. Do not consider a PublicKey with value "null" valid.
3843         (mono_assembly_name_parse_full): added boolean argument that will be
3844         set if the assembly name contains a PublicKeyToken spec. Added support
3845         for the Retargetable spec for which only Yes or No are allowed as valid
3846         value. Consider assembly name invalid if Retargetable spec is set, but
3847         either version, culture or public key (token) are not specified.
3848         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
3849         with implementation in assembly.c.
3850         * icall.c (fill_reflection_assembly_name): also copy assembly flags
3851         from MonoAssemblyName.
3852         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
3853         introduced argument for mono_assembly_name_parse_full to know if the
3854         assembly name has a PublicKeyToken spec, and if it has instruct
3855         fill_reflection_assembly_name to use default value for keyToken (if
3856         PublicKeyToken is null).
3857
3858 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
3859
3860         * verify.c (mono_method_verify): fixed ovf ops with
3861         float values. They are unverifiable now.
3862
3863 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
3864
3865         * class.c (set_failure_from_loader_error): add BadImageException to the
3866         list of exceptions that can cause a type to fail to load.
3867
3868         * class.c (mono_class_get_exception_for_failure): same.
3869
3870 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
3871
3872         * verify.c (in_any_exception_block): added, check if offset
3873         is part of any exception handling clause.
3874
3875         * verify.c (get_stack_type): added VAR and MVAR types.
3876
3877         * verify.c (do_stobj): better error messages.
3878
3879         * verify.c (do_cpobj): added, check cpobj.
3880
3881         * verify.c (do_initobj): added, check initobj.
3882
3883         * verify.c (do_sizeof): added, check sizeof.
3884
3885         * verify.c (do_localloc): added, check localloc.
3886
3887         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
3888
3889 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
3890
3891         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
3892         save_lmf/restore_lmf opcodes.
3893
3894         * threads.c (mono_threads_install_notify_pending_exc): New function to
3895         install a callback notifying the JIT there is a pending exception on a thread.
3896         (mono_thread_request_interruption): Call the new callback.
3897         (mono_thread_get_and_clear_pending_exception): New function to return the
3898         exception pending on a thread.
3899
3900         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
3901         to turn off checking for pending exceptions.
3902         (mono_marshal_get_native_wrapper): Ditto.
3903
3904 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
3905
3906         * threads-types.h: Get rid of the unnecessary extern declarations.
3907
3908 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
3909
3910         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
3911         return field from parent class if not private.
3912         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
3913         returns fields from parent class if they are not private.
3914         (method_nonpublic): added function to determine if a given method
3915         should be considered non-public. Returns false for private methods
3916         on parent class, and internal methods from parent on the 1.0 profile.
3917         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
3918         use method_nonpublic function to determine whether method should be
3919         returned.
3920         (property_accessor_public): use newly introduced method_nonpublic
3921         function to determine whether accessor is non-public. 
3922         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
3923         event from parent class if not private. Only return static event if
3924         Static flag is set, and only return static event from parent class if
3925         FlattenHierarchy flag is set.
3926         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
3927         include non-private events from parent class.
3928
3929 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
3930
3931         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
3932         warning.
3933
3934 2008-01-16  Wade Berrier <wberrier@novell.com>
3935
3936         * security.c: Add assembly.h header to appease some warnings
3937
3938 2008-01-16  Dick Porter  <dick@ximian.com>
3939
3940         * process.c (process_module_string_read): Remove trailing null
3941         when saving string.
3942
3943 2008-01-16  Mark Probst  <mark.probst@gmail.com>
3944
3945         * class-internals.h: A new data structure describing the layout of
3946         a runtime generic context (MonoRuntimeGenericContextTemplate).
3947
3948         * metadata-internals.h: Added a hash table to MonoDomain that maps
3949         from open generic classes to their runtime generic context
3950         templates.
3951
3952         * object.c: Building of the runtime generic context, including
3953         proper handling of generic type arguments of superclasses.
3954         Building of the runtime generic context according to the template.
3955
3956 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
3957
3958         * class.c (mono_class_setup_fields): Set field.count for generic instances.
3959         Fixes #350856.
3960
3961         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
3962         mono_portability_find_file (). Fixes #325466.
3963         (mono_image_get_public_key): Fix a warning.
3964
3965 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
3966
3967         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
3968         Fixes #353550.
3969         (mono_class_from_name_case): Ditto.
3970
3971 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
3972
3973         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
3974           common storage for the tables used in the System/NumberFormatter class.
3975
3976 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
3977
3978         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
3979
3980 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
3981
3982         * verify.c (get_boxable_mono_type): check if the token is valid.
3983
3984         * verify.c (set_stack_value): changed to add an error if an
3985         invalid type is set on stack. Changed all callers due to signature change.
3986
3987         * verify.c (do_stobj): implement stobj validation.
3988
3989 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
3990
3991         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
3992         set container->is_method, it was set earlier.
3993
3994         * metadata.c (type_in_image): Handle MVARs which belong to not finished
3995         generic methods.
3996
3997         * reflection.c (mono_reflection_initialize_generic_parameter): Set
3998         is_method of the generic container to TRUE for methods.
3999
4000 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
4001
4002         * metadata.c (type_in_image): Handle type parameters properly.
4003
4004         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
4005         memory ownership of this structure.
4006
4007 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
4008
4009         * verify.c (get_boxable_mono_type): make typedref types been just
4010         unverifiable. check for void type.
4011
4012         * verify.c (do_unbox_any): added, verify opcode unbox.any.
4013
4014         * verify.c (do_load_function_ptr): accept method spec tokens.
4015
4016 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
4017
4018         * marshal.c (mono_class_native_size): Always set *align even if this is called
4019         recursively.
4020
4021 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
4022
4023         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
4024         out-of-date.
4025
4026 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
4027
4028         * verify.c: removed some old unused tables. A huge bunch of small fixes
4029         to things found while testing the verifier with mono basic.
4030
4031         * verify.c (dump_stack_value): dump null literal flag to.
4032
4033         * verify.c (verify_type_compatibility_full): fix comparison
4034         for types that have a generic super type.
4035
4036         * verify.c (verify_stack_type_compatibility): fix compatibility
4037         between null literals and reference types. fix compatibility between
4038         boxed valuetypes and object. fix corner case test for enums.
4039
4040         * verify.c (do_cmp_op): proper verification of cgt.un in case
4041         of reference types.
4042
4043         * verify.c (do_invoke_method): fix error message.
4044
4045         * verify.c (do_store_indirect
4046
4047         * verify.c (check_is_valid_type_for_field_ops): proper verification
4048         of managed pointers to valuetypes and boxed valuetypes. proper verification
4049         of null literals.
4050
4051         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
4052         allow token to be a reference type.
4053
4054         * verify.c (do_cast): proper handling of boxes valuetypes.
4055
4056         * verify.c (do_stelem): proper handling of storing a boxed valuetype
4057         in object[].
4058
4059         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
4060         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
4061         fixed the decoding of unbox_any
4062
4063 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
4064
4065         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
4066
4067 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
4068
4069         * verify.c (do_newobj): do delegate verification.
4070
4071         * verify.c (verify_delegate_compatibility): perform delegate
4072         verification.
4073
4074         * verify.c (verify_ldftn_delegate): perform tests related to
4075         ldftn delegates.
4076
4077         * verify.c (mono_delegate_signature_equal): perform the
4078         slightly diferent signature comparison required by delegates.
4079
4080         * metadata.c (mono_metadata_type_equal_full): added and exported
4081         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
4082         allows signature only comparison.
4083
4084         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
4085         as MONO_INTERNAL.
4086
4087 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
4088
4089         * verify.c: added a bunch of stack_slot_* functions to
4090         make access to stack slot type easier. This is required to
4091         allow optional flags, like null literal, boxed value and
4092         this pointer.
4093         All access paths to IlStackDesc::stype have been changed 
4094         to use these new funcions.
4095         Removed a bunch of unused functions and cleared all warnings.
4096         This patch introduces the usage of the this pointer and 
4097         boxed value flags.
4098
4099 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
4100
4101         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
4102
4103 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
4104
4105         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
4106         match managed version.
4107
4108         * appdomain.c: Bump corlib version.
4109         
4110         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
4111         argument.
4112
4113 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
4114
4115         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
4116         Set public key token to zero-length byte array if assembly is not
4117         strongnamed.
4118
4119 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
4120
4121         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
4122         writing a vtype array elem.
4123
4124 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
4125
4126         * assembly.c (build_assembly_name): return FALSE if length of token is
4127         not 16 (if not "null").
4128         (mono_assembly_name_parse_full): return FALSE if value of version,
4129         culture, token or key is 0.
4130         * icall.c (fill_reflection_assembly_name): add boolean arguments to
4131         specify whether public key and public key token must be set to default
4132         value (zero-length byte array) if not available. Set versioncompat to
4133         SameMachine. If public key is available or the default is set, then
4134         set PublicKey flag.
4135         (ves_icall_System_Reflection_Assembly_FillName): if no public key
4136         is available, use empty byte array as default value. On the 2.0
4137         profile, use default value for public key token if not set.
4138         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
4139         profile, use default value for public key if not set. On the 2.0
4140         profile, use default value for public key token if not set.
4141         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
4142         default values for public key and public key token.
4143
4144 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
4145
4146         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
4147         field to keep it in synch with the managed object.
4148
4149         * marshal.c (emit_marshal_object): Add support for byref marshalling of
4150         delegates. Fixes #351520.
4151
4152         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
4153         contains defined memory.
4154         
4155         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
4156
4157         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
4158         
4159         * sgen-gc.c (check_consistency): New helper function to do a consistency check
4160         of the GC data structures.
4161
4162         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
4163
4164         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
4165         
4166         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
4167         barrier.
4168         (mono_array_clone_in_domain): Ditto.
4169         (mono_array_clone_in_domain): Ditto.
4170
4171         * threads.c (start_wrapper): Register the thread start argument as a GC root.
4172         (cache_culture): Use a write barrier.
4173
4174         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
4175         (ves_icall_get_property_info): Ditto.
4176
4177         * object.h (MONO_STRUCT_SETREF): New macro.
4178
4179         * class-internals.h (MonoStats): Add some GC statistics.
4180
4181         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
4182
4183 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
4184
4185         * exception.c (mono_exception_from_name_two_strings):
4186         Break from loop after method is found.
4187
4188 2008-01-04  Dick Porter  <dick@ximian.com>
4189
4190         * process.c (process_module_string_read): Rename variable to
4191         reflect correct usage, after fixing bug 345972.
4192
4193 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
4194
4195         * verify.c (mono_type_create_fnptr_from_mono_method): 
4196         created a MonoType function pointer instance to be used during
4197         verification. The verifier releases this memory at end.
4198
4199         * verify.c (mono_method_is_constructor): extracted repeated
4200         checks for constructor into a single class.
4201
4202         * verify.c (do_push_field): use new extracted method
4203         for constructor check.
4204
4205         * verify.c (do_newobj): same.
4206
4207         * verify.c (do_ldftn): renamed to do_load_function_ptr
4208         and make it verify ldvirtftn too.
4209
4210         * verify.c (mono_method_verify: proper verification
4211         of ldvirtftn. release created MonoMethod instances.
4212
4213 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
4214
4215         * verify.c (token_bounds_check): added.
4216
4217         * verify.c (do_ldftn): added.
4218
4219         * verify.c (mono_method_verify): proper verificartion of ldftn.
4220
4221 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
4222
4223         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
4224         than the table row count. It's the resposibility of the caller to
4225         make the bounds check and raise the correct error.
4226
4227         * metadata.c (mono_metadata_decode_row_col): Same.
4228
4229         * loader.c (mono_get_method_from_token): perform bounds check
4230         on token for methoddef table.
4231
4232 2007-12-29  Miguel de Icaza  <miguel@novell.com>
4233
4234         * icall.c
4235         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
4236         assert into a negative result, the managed code already coped with
4237         that.
4238
4239         Some folks on Windows reported this error. 
4240
4241 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
4242
4243         * appdomain.c: Bump corlib version.
4244         * icall.c:
4245         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
4246         CultureInfo.CreateCulture to create CultureInfo for name.
4247         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
4248         create CultureInfo for name. Fixes bug #347174.
4249
4250 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
4251
4252         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
4253         flags.
4254
4255         * verify.c (is_valid_branch_instruction): allow branching to the
4256         first instruction of the protected block.
4257
4258         * verify.c (is_valid_cmp_branch_instruction): same.
4259
4260         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
4261         avoid double initialization.
4262
4263         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
4264         detect which cases the eval stack should just be copied.
4265
4266         * verify.c (mono_method_verify): check if the eval stack
4267         is empty when entering a protected block.
4268
4269 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
4270
4271         * verify.c: added is_clause_in_range, is_clause_inside_range,
4272         is_clause_nested and verify_clause_relationship. They perform
4273         the verifications stated in P1 12.4.2.7.
4274
4275         * verify.c (mono_method_verify): remove some unused variables,
4276         add the new exception clause checks, add instruction border
4277         checks for protected block start/end, improved some error 
4278         messages and fixed a bug in the way invalid instruction access
4279         is detected.
4280
4281 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
4282
4283         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
4284         from GC 7.0 if available.
4285
4286         * object.c: Remove an unused define.
4287         
4288         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
4289
4290         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
4291
4292         * null-gc.c (mono_gc_make_descr_for_array): Implement.
4293
4294         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
4295
4296         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
4297         to take the same arguments as the other make_descr functions.
4298
4299         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
4300
4301         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
4302         directly.
4303
4304         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
4305         mini.c.
4306
4307         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
4308         call to boehm-gc.c.
4309
4310         * boehm-gc.c (mono_gc_register_root): Fix a warning.
4311
4312         * null-gc.c (mono_gc_register_root): Fix a warning.
4313
4314         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
4315
4316         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
4317         (mono_gc_base_init): Call GC_init ().
4318
4319         * null-gc.c: Define mono_gc_register_root () as a no-op.
4320
4321         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
4322
4323 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
4324
4325         * verify.c: add prototype for merge_stacks at top
4326
4327         * verify.c (do_switch): added.
4328
4329         * verify.c (merge_stacks): on some cases the stack merging
4330         was not happening properly. Unequal stack sizes at merge
4331         points should be invalid.
4332
4333         * verify.c (mono_method_verify): added more debug info on stack state.
4334         verify switch properly.
4335
4336 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
4337
4338         * method-builder.h: New file, moved the mono_mb_ declarations here from 
4339         marshal.h.
4340
4341         * boehm-gc.c marshal.c: Include method-builder.h.
4342
4343         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
4344
4345         * marshal.c: Remove some code which is now in method-builder.c.
4346
4347 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
4348
4349         * method-builder.c: New file, extraction of the method builder functionality 
4350         from marshal.c.
4351
4352         * marshal.c: Move the mb functions into method-builder.c.
4353
4354         * marshal.h marshal.c: Export some mono_mb_... functions.
4355
4356         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
4357
4358         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
4359         the caller.
4360
4361         * class.c (mono_class_get_full): Check the token type in the dynamic case.
4362
4363         * loader.c (mono_field_from_token): Ditto.      
4364
4365         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
4366         type as well.
4367         
4368         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
4369         Fixes #342565.
4370
4371         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
4372         a helper function for setting it.
4373
4374         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
4375
4376         
4377         * assembly.c: Significally simplify code now that referenced assemblies are 
4378         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
4379
4380         * threads.h: Don't include  the internal threads-types.h header file. Fixes
4381         #349952.
4382
4383 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
4384
4385         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
4386         instructions that were target of branches or are at protected block boundaries.
4387
4388         * verify.c (in_same_block): handle filter clauses.
4389
4390         * verify.c (is_valid_branch_instruction): added. checks the target of
4391         instructions br or brtrue/false.
4392
4393         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
4394         binary branch instructions such as beq and bge.
4395
4396         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
4397         and made it pin the instruction as been part of the exception block.
4398
4399         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
4400         of in_same_block.
4401
4402         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
4403         of in_same_block.
4404
4405         * verify.c (do_ret): ret from a protected block is unverifiable and
4406         not invalid.
4407
4408         * verify.c (do_static_branch): verify br and br.s instructions.
4409
4410         * verify.c (merge_stacks): add extra param to support detection
4411         of branches in the middle of instructions.
4412         
4413         * verify.c (mono_method_verify): verify branches and exception blocks
4414         that target the middle of instructions. Proper verification of br and br.s.
4415
4416 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
4417
4418         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
4419         skip_visibility field.
4420         (reflection_methodbuilder_from_dynamic_method): Ditto.
4421
4422         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
4423         registrations. Fixes #348193.
4424
4425         * threads.h: Move the internal mono_thread_get_pending_exception () to
4426         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
4427
4428 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
4429
4430         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
4431         icall registration. Fixes #348193.
4432
4433         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
4434         for corlib classes into object. Fixes #349621.
4435
4436 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
4437
4438         * icall.c (property_accessor_nonpublic): new function to determine
4439         whether an accessor allows a property to be considered non-public.
4440         Returns false for private accessor(s) from parent class, and internal
4441         accessor(s) from parent on 2.0 profile (and higher).
4442         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
4443         to determine whether property should be included if NonPublic flag
4444         is set. Fixes bug #349078.
4445
4446 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
4447
4448         * verify.c (init_stack_with_value): added.
4449
4450         * verify.c (mono_method_verify): extracted common
4451         code for exception initialization into init_stack_with_value.
4452
4453         * verify.c (mono_method_verify): initialize the exception
4454         for handler clauses as well.
4455
4456         * verify.c (mono_method_verify): fix the exception clause
4457         ordering rules, it should use handler end offset and not
4458         start offset.
4459
4460 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
4461
4462         * rawbuffer.c: remove useless warning.
4463
4464 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
4465
4466         * threads.h, threads-types.h: move functions to the correct header
4467         (fixes bug#349952).
4468
4469 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4470
4471         * verify.c (mono_method_verify): proper verification
4472         of exception handling clauses ranges and fallthru in
4473         and out of protected blocks.
4474
4475 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4476
4477         * verify.c (mono_method_verify): fixed compilation issue.
4478
4479 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4480
4481         * verify.c (mono_method_verify): a printf slipped in, changed
4482         to use verifier debug macro.
4483
4484 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
4485
4486         * verify.c (is_correct_leave): check for filter clauses.
4487
4488         * verify.c (do_filter): added.
4489
4490         * verify.c (mono_method_verify): property verification of leave.
4491
4492
4493 2007-12-18  Mark Probst  <mark.probst@gmail.com>
4494
4495         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
4496         Win32 build, until we figure out how to do the proper thing on
4497         Win32.
4498
4499 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
4500
4501         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
4502         by the previous patch.
4503         
4504         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
4505         the assembly resolve handler for refonly assemblies.
4506
4507 2007-12-17  Mark Probst  <mark.probst@gmail.com>
4508
4509         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
4510         Make sure only one thread is allowed to commence shutdown, and
4511         don't allow new threads to be started once shutdown is in
4512         progress.
4513
4514 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
4515
4516         * verify.c (is_correct_endfilter): added.
4517
4518         * verify.c (is_unverifiable_endfilter): added.
4519
4520         * verify.c (do_endfilter): added.
4521
4522         * verify.c (mono_method_verify): property verification of endfilter
4523         and fixed a corner case or endfinally.
4524
4525 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
4526
4527         * verify.h: new flags to support fail fast of unverifiable code and
4528         do non-strict verification. Non-strict verification is required to
4529         have MS runtime compatibility. There are a huge amount of unverifiable
4530         code that it accepts as verifiable. The strict mode verifies the code
4531         as the specs says.
4532         Non-strict mode will be required in cases where code needs to be
4533         accepted as verifiable but fails under strict mode.
4534
4535         * pedump.c: added support to fail fast and non-strict verification.
4536
4537         * verify.c: added support for both fail fast and non-strict verification.
4538
4539 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
4540
4541         * verify.c (is_correct_endfinally): added.
4542
4543         * verify.c (mono_method_verify): property verification of endfinally.
4544
4545 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
4546
4547         * verify.c (in_any_block): check for filter clauses.
4548
4549         * verify.c (is_correct_rethrow): added.
4550
4551         * verify.c (mono_method_verify): property verification of rethrow.
4552
4553         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
4554
4555 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
4556
4557         * verify.c (do_throw): added.
4558
4559         * verify.c (mono_method_verify): property verification of throw
4560
4561 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
4562
4563         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
4564         assemblies. Fixes #346425.
4565
4566 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
4567
4568         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
4569         FieldBuilders.
4570
4571         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
4572
4573         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
4574         prevent asserts when this is called with a token which might not be valid.
4575
4576         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
4577         lookup_dynamic_token_class with valid_token == FALSE.
4578
4579         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
4580
4581         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
4582
4583         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
4584         
4585 2007-12-10  Mark Probst  <mark.probst@gmail.com>
4586
4587         * gc.c: Don't delay threadpool thread finalization unless Mono is
4588         shutting down.
4589
4590 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
4591
4592         * threads.c: turn an assert into a non-fatal warning.
4593
4594 2007-12-09  Robert Jordan  <robertj@gmx.net>
4595
4596         * icall.c (GetVirtualMethod): Add missing argument validation.
4597
4598 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
4599
4600         * verify.c (do_cast): added.
4601
4602         * verify.c (mono_method_verify): property verification of castclass and isinst.
4603
4604
4605 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
4606
4607         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
4608
4609         * verify.c (do_stelem): added.
4610
4611         * verify.c (mono_method_verify): property verification of stelem.X.
4612
4613 2007-12-07  Mark Probst  <mark.probst@gmail.com>
4614
4615         * class.c, class-internals.h: Introduce an environment variable
4616         (MONO_GENERIC_SHARING) through which the extent of generic code
4617         sharing can be controlled (share all classes, share only corlib
4618         classes, or share nothing).
4619
4620         * object.c: Only create runtime generic context for classes for
4621         which sharing is enabled.
4622
4623 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
4624
4625         * verify.c (do_ldelem): refactor it to work with ldelem.any.
4626
4627         * verify.c (mono_method_verify): property verification of ldelem.any.
4628
4629 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
4630
4631         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
4632         added ldelem.X opcodes.
4633
4634         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
4635
4636         * verify.c: proper verification of ldelem.X 
4637
4638 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
4639
4640         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
4641
4642 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
4643
4644         * verify.c (mono_method_verify): null literal requires special handling,
4645         the value pushed on stack need to be flagged as so.
4646
4647         * verify.c (do_ldelema): Verify ldelema properly.
4648
4649 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
4650
4651         * verify.c: Verify ldlen properly.
4652
4653 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
4654
4655         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
4656         to the target object's type. Fixes #346160.
4657
4658 2007-12-05  Dick Porter  <dick@ximian.com>
4659
4660         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
4661         Solaris needs the same workaround as BSD-derived systems.  Fixes
4662         bug 323524, patch by Burkhard Linke
4663         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
4664
4665 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
4666
4667         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
4668         handle to use when error dialog is shown; otherwise, update mask
4669         to show no error dialog when an error occurs.
4670
4671 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
4672
4673         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
4674
4675         * class.c (mono_class_get_field_default_value): New helper function to initialize
4676         field->def_type and field->data.
4677
4678 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
4679
4680         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
4681         the general one.
4682
4683         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
4684
4685         * marshal.c: Avoid depending on delegate->method_info being set.
4686
4687         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
4688         
4689         * object.c (mono_delegate_ctor): Set delegate->method.
4690
4691         * object-internals.h (struct _MonoDelegate): Add 'method' field.
4692
4693         * appdomain.c: Bump corlib version.
4694
4695 2007-11-27  Raja R Harinath  <harinath@gmail.com>
4696
4697         * metadata.c (mono_generic_inst_equal_full): Short-circuit
4698         equality check if we're comparing canonicalized MonoGenericInsts.
4699
4700 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
4701
4702         * class.c (generic_array_methods): Call mono_class_setup_methods () before
4703         accessing class->methods.
4704
4705 2007-11-22  Dick Porter  <dick@ximian.com>
4706
4707         * threads.c: Ensure that the synch_cs is set before trying to use
4708         it.
4709
4710 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
4711
4712         * profiler.c: r89126 broke the statistial profiler, unbreak.
4713
4714 2007-11-22  Martin Baulig  <martin@ximian.com>
4715
4716         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
4717
4718         * mono-debug.c
4719         (mono_debug_debugger_version): Bump to 3.
4720         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
4721         -> mono_debugger_class_initialized().
4722
4723         * mono-debug-debugger.c
4724         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
4725
4726         * class.c
4727         (mono_debugger_start_class_init_func): Removed.
4728         (mono_debugger_class_loaded_methods_func): Added.
4729         (mono_class_setup_methods): Call it here.
4730
4731 2007-11-22  Martin Baulig  <martin@ximian.com>
4732
4733         * mono-debug.c
4734         (mono_debug_add_delegate_trampoline): New public method.
4735         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
4736
4737         * mono-debug.h
4738         (MonoSymbolTable): Added `global_data_table'.
4739         (MonoDebuggerTypeKind): Removed.
4740
4741 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
4742
4743         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
4744         these methods.
4745
4746         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4747         
4748 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
4749
4750         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
4751
4752 2007-11-20  Martin Baulig  <martin@ximian.com>
4753
4754         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
4755
4756         * mono-debug-debugger.c
4757         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
4758         (mono_debugger_remove_breakpoint): Likewise.
4759         (mono_debugger_check_breakpoints): Likewise.
4760         (mono_debugger_register_class_init_callback): New public method.
4761         (mono_debugger_remove_class_init_callback): Likewise.
4762         (mono_debugger_add_type): Likewise.
4763
4764         * mono-debug-debugger.h
4765         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
4766
4767 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
4768
4769         * class.c: more interface implementations needed for the
4770         array enumerator (fixes bug #341112).
4771
4772 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
4773
4774         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
4775         fix ParamName of ArgumentNullExceptions.
4776
4777 2007-11-17  Miguel de Icaza  <miguel@novell.com>
4778
4779         * reflection.c (mono_reflection_encode_sighelper): Generate the
4780         modopts and modreqs.   I have a useless test that crashes monodis,
4781         but that shows the code working.
4782
4783 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
4784
4785         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
4786         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
4787
4788 2007-11-15  Dick Porter  <dick@ximian.com>
4789
4790         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
4791         When joining a thread, it's the thread that's calling Join that
4792         gets WaitSleepJoin state not the target.  Fixes the standalone
4793         test case in bug 334740, and hopefully the whole bug too.
4794
4795 2007-11-15  Dick Porter  <dick@ximian.com>
4796
4797         * process.c: Read file version info from the files pointed at by
4798         process modules, not the current process.  Fixes bug 315969.
4799
4800         Use windows typedef names in some places to fix warnings on the
4801         windows build.
4802
4803 2007-11-15  Mark Probst  <mark.probst@gmail.com>
4804
4805         * image.c, metadata-internals.h: Added a generic_class_cache hash
4806         to MonoImage for looking up generic classes when sharing generics.
4807
4808 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
4809
4810         * sgen-gc.c: warning cleanups.
4811
4812 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
4813
4814         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
4815         inherited properties.
4816
4817 2007-11-14  Mark Probst  <mark.probst@gmail.com>
4818
4819         * object.c, class-internals.h: Added more information to the
4820         runtime generic context.
4821
4822 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
4823
4824         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
4825         instead of just the target method. Generalize the abstract method handling to
4826         handle any non-static method.
4827
4828         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
4829         mono_marshal_get_delegate_invoke () signature change.
4830
4831 2007-11-13  Mark Probst  <mark.probst@gmail.com>
4832
4833         * class.c, class-internals.h: Made
4834         mono_type_get_basic_type_from_generic () public.  Fixed member
4835         access check for shared generics.
4836
4837         * loader.c: Don't insert field into field cache if it's part of a
4838         non-inflated generic class.
4839
4840         * domain.c, domain-internals.h: The generic sharing context is now
4841         part of the jit info data structure.  Added two accessor
4842         functions.
4843
4844 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
4845
4846         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
4847         the array Get/Set/Address methods, since the JIT inlines them.
4848
4849         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
4850
4851         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
4852         (mono_image_init): Initialize runtime_invoke_direct_cache.      
4853
4854         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
4855         mono_marshal_get_delegate_invoke signature change.
4856
4857         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
4858         an additional argument. Add support for invoking abstract methods.
4859
4860         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
4861
4862         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
4863
4864 2007-11-09  Mark Probst  <mark.probst@gmail.com>
4865
4866         * class.c: Do field layout for open generic classes as well.
4867
4868 2007-11-09  Mark Probst  <mark.probst@gmail.com>
4869
4870         * gc.c, gc-internal.h: Don't finalize threadpool threads with
4871         other objects, because the threadpool is still around.  Put them
4872         in a list instead and after finalizing all other objects in the
4873         root domain shut down the thread pool and then finalize the
4874         threads.  Fixes bug #337383.
4875
4876         * threads.c, thread-types.h: New mono_thread_create_internal()
4877         function for marking a thread with the threadpool flag before it
4878         started.  Set synch_cs to NULL after freeing it.
4879
4880         * threadpool.c: Mark threadpool threads before they start.
4881
4882 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
4883
4884         * reflection.h, reflection.c: don't export random functions
4885         and lazy load dbnull and missing objects.
4886
4887 2007-11-07  Jonathan Chambers <joncham@gmail.com>
4888
4889         * class.c: Initialize COM types if COM interfaces
4890         are present (not just COM classes).
4891         
4892         Code is contributed under MIT/X11 license.
4893
4894 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
4895         * reflection.c:
4896         create_dynamic_mono_image: hook module profiler events (dynamic case).
4897         mono_image_basic_init: hook assembly profiler events (dynamic case).
4898
4899 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
4900         * profiler.c:
4901         simple_appdomain_unload: completely terminate the profiler
4902         instead of only processing the statistical samples.
4903         simple_shutdown: make sure this is really called exactly once,
4904         even in multithreaded applications, and always listen to
4905         appdomain events.
4906         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
4907         here, the "[un]load" functions will do it.
4908         Fixes bugs #333791 and #325261.
4909
4910 2007-11-07  Geoff Norton  <gnorton@novell.com>
4911
4912         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
4913         rather than depend on __APPLE__.
4914
4915 2007-11-07  Mark Probst  <mark.probst@gmail.com>
4916
4917         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
4918
4919 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
4920
4921         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
4922         UTF16 MonoString. Fix the crash from bug #335488
4923
4924 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
4925
4926         * marshal.c: Correct (for non-Win32 OS) length != size in 
4927         mono_string_from_bstr. Fix #339530.
4928
4929 2007-11-06  Geoff Norton  <gnorton@novell.com>
4930
4931         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
4932         to succeed
4933
4934 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
4935
4936         * process.c: Added run-time GetProcessId API detection for Windows.
4937
4938 2007-11-04  Miguel de Icaza  <miguel@novell.com>
4939
4940         * reflection.c  (mono_param_get_objects): If a parameter has the
4941         attribute [System.Runtime.InteropServices.Optional] we should
4942         set the DefaultValue of the ParameterInfo to be
4943         System.Reflection.Missing instead of DBNull.
4944
4945         See bug #339013.
4946
4947         (mono_get_reflection_missing_object): New method,
4948         returns the System.Reflection.Missing.Value singleton instance.
4949
4950 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
4951
4952         * culture-info-table.h : regenerated.
4953
4954 2007-11-02  Jonathan Chambers <joncham@gmail.com>
4955
4956         * icall.c: Use GetEnvironmentStrings on windows
4957         so we are using the same environment block as 
4958         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
4959         #333740.
4960         
4961         Code is contributed under MIT/X11 license.
4962
4963 2007-10-31  Martin Baulig  <martin@ximian.com>
4964
4965         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
4966
4967         * mono-debug-debugger.h
4968         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
4969
4970 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
4971
4972         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
4973         classes.
4974
4975 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
4976
4977         * culture-info-table.h : regenerated.
4978
4979 2007-10-30  Robert Jordan  <robertj@gmx.net>
4980
4981         * icall-def.h, icall.c:
4982         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
4983
4984         Code is contributed under MIT/X11 license.
4985
4986 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
4987
4988         * class.c (mono_class_setup_vtable): Find the inflated methods in the
4989         inflated class instead of inflating them again.
4990         
4991         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
4992         dynamic case.
4993
4994         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
4995         Call setup_supertypes () after klass->parent is set.
4996         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
4997
4998         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
4999         for inflated instances of not yet created dynamic generic classes.
5000         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
5001         times from inflated_method.
5002         (methodbuilder_to_mono_method): Ditto.
5003
5004 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
5005
5006         * gc.c: code cleanup and removed old untested option of not creating the
5007         finalizer thread.
5008
5009 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
5010
5011         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5012         creating a jump trampoline for dynamic methods.
5013
5014 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
5015
5016         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
5017         generic TypeBuilders when called from another method of the same type (bug #335131).
5018
5019
5020 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
5021
5022         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
5023         doesn't seem to work perfectly.
5024         
5025         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
5026         called multiple times.
5027         (methodbuilder_to_mono_method): Ditto.
5028         (resolve_object): Inflate FieldBuilder's.
5029
5030 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
5031
5032         * string-icalls.c, string-icalls.h, appdomain.c: patch from
5033         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
5034         RemoveEmptyEntries in the string.Split implementation (bug #322375).
5035
5036 2007-10-26  Dick Porter  <dick@ximian.com>
5037
5038         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
5039         Thread initialisation changes
5040
5041 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
5042
5043         * verify.c: fix compatibility check between arrays and System.Array
5044
5045 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
5046
5047         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
5048         too. Fixes #336999.
5049
5050 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
5051
5052         * object.c (mono_value_box): Use typed allocation here.
5053
5054 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
5055
5056         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
5057         trampoline instead of compiling the method right away.
5058
5059         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
5060
5061 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
5062
5063         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
5064         related fields for dynamic classes. Fixes #334493.
5065
5066 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
5067
5068         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
5069         
5070         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
5071
5072         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
5073         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
5074
5075         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
5076
5077         * reflection.c (create_generic_typespec): Initialize klass->generic_container
5078         if needed.
5079         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
5080
5081 2007-10-18  Jonathan Chambers <joncham@gmail.com>
5082
5083         * marshal.c: Use correct key when removing item
5084         from ccw_hash.
5085         
5086         Code is contributed under MIT/X11 license.
5087
5088 2007-10-17  William Holmes  <billholmes54@gmail.com>
5089
5090         *marshal.c: Adding a case to marshal booleans to U1
5091
5092         Code is contributed under MIT/X11 license.
5093
5094 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
5095
5096         * class.c (mono_class_from_name): Search the modules compromising dynamic
5097         assemblies. Fixes #331601.
5098
5099 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
5100
5101         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
5102         exception if the type name contains an assembly component. Fixes #334203.
5103
5104         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
5105         modules inside dynamic assemblies. Fixes #334200.
5106         
5107         * reflection.c: Set image->public_key and image->public_key_length;
5108
5109         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
5110         fields.
5111
5112         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
5113         
5114 2007-10-16  Mark Probst  <mark.probst@gmail.com>
5115
5116         * metadata.c: Implemented correct comparing of generic classes.
5117         An inflated generic class can be equal to a non-inflated one if it
5118         is inflated with generic type variables as type arguments.  Fixes
5119         bug #333798.
5120
5121 2007-10-15  Dick Porter  <dick@ximian.com>
5122
5123         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
5124         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
5125         81646.
5126
5127         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
5128         instead of a monitor lock.  This means that monitor_try_enter and
5129         co can set the thread state safely.
5130         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
5131         thread_interrupt_requested, so interrupt actually works.
5132
5133         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
5134         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
5135         state accessor function
5136
5137 2007-10-15  Martin Baulig  <martin@ximian.com>
5138
5139         * mono-debug.h
5140         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
5141         the debugger with the current runtime.
5142
5143 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
5144
5145         * object.c, object-internals.h: added the ability to set a single
5146         trampoline for all the slots in a vtable.
5147
5148 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5149
5150         * marshal.c: deal with a possible race condition during multicast
5151         delegate invocation.
5152
5153 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5154
5155         * class.c: ensure value type methods don't have the synchronized
5156         flag set.
5157
5158 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
5159
5160         * string-icalls.c, string-icalls.h: reverted unapproved patch that
5161         breaks the build.
5162
5163 2007-10-11  Joel Reed  <joelwreed@comcast.com>
5164
5165         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
5166         to take an options parameter so that empty entries can be removed during
5167         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
5168
5169 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
5170
5171         * marshal.c: make sure we don't store the signature from a dynamic
5172         method into the runtime invoke cache (bug #327189).
5173
5174 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5175
5176         * marshal.c: make sure the wrapper methods are properly initialized.
5177
5178 2007-10-11  Mark Probst  <mark.probst@gmail.com>
5179
5180         * metadata.c, metadata-internals.h: Generalized
5181         mono_type_stack_size() to mono_type_stack_size_internal() which
5182         takes an additional argument specifying whether it allows open
5183         types.
5184
5185 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5186
5187         * verify.c (do_invoke_method): handle typedbyref params
5188         correctly and check for unverifiable return values.
5189
5190         * verify.c (do_newobj): fix a warning.
5191
5192 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5193
5194         * verify.c: don't tread typedbyref as allways unverifable,
5195         so uses, like (ld/st)loc.0 are valid. verify for the cases
5196         that it matters, like boxing related operations.
5197
5198 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5199
5200         * verify.c: add verification of the newobj opcode. verification
5201         of delegate instantation still missing due ldftn and virldftn not
5202         pushing the function type on stack
5203
5204 2007-10-08  Mark Probst  <mark.probst@gmail.com>
5205
5206         * class-internals.h: Runtime generic context data structure
5207         definition.
5208
5209         * object.c: Initialization of runtime generic context at runtime
5210         vtable creation time.
5211
5212 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
5213         * class.c (mono_class_create_from_typedef,
5214         mono_class_from_generic_parameter, mono_ptr_class_get,
5215         mono_fnptr_class_get, mono_bounded_array_class_get)
5216         * domain.c (mono_domain_create, mono_domain_free)
5217         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
5218         * image.c (do_mono_image_load, mono_image_close):
5219         Hooked up load-unload profiler events.
5220
5221 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
5222
5223         * domain.c: track statistics about the actual amount of native code
5224         allocated.
5225
5226 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
5227
5228         * class.c: the valuetype enumerators don't have the additional
5229         supertypes interfaces.
5230
5231 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5232
5233         * class.c: need more interfaces setup for the IEnumerator<T>
5234         object created for arrays (tests/ienumerator-interfaces.2.cs).
5235
5236 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
5237
5238         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
5239
5240 2007-10-05  Alp Toker  <alp@atoker.com>
5241
5242         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
5243         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
5244         #315863.
5245
5246 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
5247
5248         * verify.c (verify_type_compatibility_full): verification of
5249         compatibility improved, validates correctly non-strict checks between
5250         native int and I4 types different than (unsigned)int32.
5251
5252         * verify.c (do_store_indirect): added, do all verification of
5253         ldind.X opcodes. 
5254
5255         * verify.c (get_load_indirect_mono_type): renamed to
5256         get_indirect_op_mono_type, as it now returns the MonoType for 
5257         ldind.X and stind.X opcodes.
5258
5259 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
5260
5261         * reflection.c: Fix the encoding of generic type definition for
5262         TypeBuilders.
5263
5264         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
5265         mono_image_typedef_or_ref but allows to specify if typespec lookups should
5266         be made. Typespec check is done prior to typeref cache lookup.
5267
5268         * reflection.c (mono_image_typedef_or_ref): now just delegate to
5269         mono_image_typedef_or_ref_full.
5270
5271         * reflection.c (encode_generic_class): encode the generic class
5272         directly instead of calling encode_type.
5273
5274         * reflection.c (encode_type): encode the generic type definition
5275         MonoClass as a generic instantiation.
5276
5277         * reflection.c (create_typespec): cache typespec tokens in
5278         the assembly->typespec cache. Don't create typespec for a generic
5279         instance MonoClass. Create typespec for the generic type defintion.
5280
5281         * reflection.c (create_generic_typespec): encode the generic
5282         class directly instead of calling encode_type.
5283
5284         * reflection.c (mono_image_create_token): encode the generic
5285         type definition not using a typespec for MonoType instances.
5286
5287
5288 2007-10-04  Raja R Harinath  <rharinath@novell.com>
5289
5290         Fix #328812
5291         * class.c (mono_image_init_name_cache): Don't return nested
5292         'protected internal' classes.
5293         (mono_class_from_name_case): Likewise.
5294
5295 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
5296
5297         * icall-def.h, icall.c : get_bundled_machine_config() is now the
5298           common function used by both DefaultConfig in System.dll and
5299           InternalConfigurationHost in System.Configuration.dll.
5300
5301 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
5302
5303         * class.c: automatically add to vectors only a few essential explicit
5304         generic interfaces. The rest of the interfaces that arrays should
5305         provide are currently implicitly added (but still not lazily, see the
5306         design in the discussion of bug#325495 for the details of what is
5307         needed for that). Additionally, implicit interfaces are assigned the
5308         same vtable slot as the explicit interfaces (as they are compatible):
5309         this enables huge memory savings since we don't need to instantiate
5310         as many memthods and as large vtables anymore. Also, Since
5311         GetEnumerator<T> returns an instance of a type that is required to
5312         support a similarly large set of interfaces as arrays, we add
5313         implicit interfaces and interface offset sharing support to those
5314         types, too. This change adds all the required interfaces so that
5315         the anonarray.cs test case in the bug report works (we don't add
5316         all the interfaces to arrays of arrays 3-level deep and more because
5317         of the memory requirements explained in the bug and since they are much
5318         less common: the lazy-loading support will enabled them to work, too).
5319
5320 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
5321
5322         * verify.c (merge_stacks): major clean up, all type compatibility
5323         checks are done by verify_type_compatibility. This fix my earlier lack
5324         of understanding of the CLR type system and merge_stacks no longer looks
5325         scary.
5326
5327         * verify.c: fixed some bad spelling.
5328
5329 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
5330
5331         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
5332         a given stack slock.
5333         
5334         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
5335         verify_type_compatibility_full. This removed a near indentical function and fixed
5336         handling of Int32 and IntPtr across all opcodes.
5337
5338 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
5339
5340         * class.c: only vectors have the additional generic interfaces.
5341
5342 2007-10-01  Jonathan Chambers <joncham@gmail.com>
5343
5344         * mono-config.c: Use g_strcasecmp instead of
5345         strcasecmp like everywhere else to fix
5346         compilation with MSVC.
5347         
5348         Code is contributed under MIT/X11 license.
5349
5350 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5351
5352         * object.c, object-internals.h: refactored the IMT code to enable
5353         building a single slot at a time and lazily creating the IMT trampolines
5354         and thunks.
5355
5356 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
5357
5358         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
5359
5360         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
5361         Fixes #328501.
5362         
5363 2007-09-29  Raja R Harinath  <harinath@gmail.com>
5364
5365         * loader.c (method_from_methodspec): Rearrange to avoid
5366         un-necessary exposition.  Don't assert out if the method's
5367         declaring type is a generic type definition.
5368
5369 2007-09-28  Martin Baulig  <martin@ximian.com>
5370
5371         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
5372
5373 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
5374
5375         * class-internals.h: optimize field layout of MonoClass to
5376         requires less cachelines at runtime and save a few bytes on 64 bit
5377         systems.
5378
5379 2007-09-28  Jb Evain  <jbevain@novell.com>
5380
5381         * reflection.c: when encoding type names in custom attributes,
5382         if the type is a closed generic type, its generic arguments
5383         have to be serialized as AssemblyQualifiedName, so that when
5384         they are deserialized, it's possible to re-create them properly.
5385         Fixes #329450.
5386
5387
5388 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
5389
5390         * object.c, class-internals.h: added delegate-creation counter.
5391
5392 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
5393
5394         * class.c: cleanup of the code that synthetizes interfaces for
5395         arrays in 2.0: saves quit a bit of corlib mempool memory.
5396         Code to fix bug #325495 ifdeffed out for now until the issues
5397         with memory usage and O(n^2) behaviour are fixed.
5398
5399 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
5400
5401         * marshal.c: when possible, do not duplicate the name of the methods
5402         in the method builder and in the generated MonoMethod.
5403
5404 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
5405         * verify.c: added support for type checking ldind_* opcodes.
5406
5407 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
5408
5409         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
5410         which is used to distinguish the fully open instantiation of a TypeBuilder
5411         with the rest. This temporary hack is required to restore the property that
5412         the fully open instantiation is the same type of the generic type definition.
5413
5414         * class-internals.h (mono_generic_class_is_generic_type_definition):
5415         new function as part of the internal API.
5416
5417         * class.c (inflate_generic_type): return NULL when the generic inst is
5418         fully open. The fully open generic type is now the same as the generic type
5419         definition for non TypeBuilder types.
5420
5421         * class.c (mono_generic_class_get_class): removed assert since it is
5422         no longer valid, gklass->cached_class can point to the generic type definition.
5423
5424         * class.c (mono_generic_class_is_generic_type_definition): new.
5425
5426         * metadata.c (mono_generic_class_hash): added is_tb_open field
5427         to the hash calculation.
5428
5429         * metadata.c (free_generic_class): if the generic class is associated
5430         with the generic type definition, its field will come from the mempool and
5431         must not be freed.
5432
5433         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
5434         new, this function identifies the corner case of a TypeBuilder fully open
5435         instantiation.
5436
5437         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
5438         for lookup. Set gclass->cached_class to be the container class in case of
5439         the fully open instantiation of non TypeBuilder types.
5440
5441         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
5442         to compare generic classes.
5443
5444         * reflection.c (method_encode_methodspec): remove assert that
5445         no longer is valid.
5446
5447         * reflection.c (mono_reflection_generic_class_initialize): add
5448         an aditional assert to ensure the proper type is used.
5449
5450 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
5451
5452         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
5453         to enjoy it.
5454
5455 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
5456
5457         * verify.c (push_arg): Fixed support for ldarga
5458         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
5459         MonoType used as first arg in case of instance calls.
5460
5461 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
5462
5463         * verify.c: Support for verifying VAR and MVAR types, 
5464
5465 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
5466
5467         * icall.c (ves_icall_get_property_info): Set the reflected type of the
5468         accessors correctly.
5469
5470 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
5471
5472         * threads.c: support OSX and other systems in
5473         mono_thread_get_stack_bounds (bug #328026).
5474
5475 2007-09-25  Martin Baulig  <martin@ximian.com>
5476
5477         * mono-debug.h
5478         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
5479
5480 2007-09-24  Martin Baulig  <martin@ximian.com>
5481
5482         * mono-debug.h
5483         (MonoDebugClassEntry): Moved the definition of this struct into
5484         mono-debug.c to make it private.
5485
5486         * mono-debug.c
5487         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
5488         type table per symbol file, we don't need to store the symfile id
5489         any longer.
5490
5491 2007-09-24  Martin Baulig  <martin@ximian.com>
5492
5493         Create one type table per symbol file, since a `MonoClass *' gets
5494         invalid when its image is unloaded.
5495
5496         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
5497         (MonoDebugHandle): Added `type_table'.
5498
5499 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
5500
5501         * mempool.c, mempool.h: added mono_mempool_new_size () API
5502         to be able to specify a smaller initial size for the pool.
5503         Adjusted the code to slowly increase pool size before using
5504         the previous default size.
5505         * image.c: use a small initial size for image mempools.
5506
5507 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
5508
5509         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
5510         Fixes ##320990.
5511
5512         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
5513         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
5514
5515 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
5516
5517         * metadata.c (mono_type_create_from_typespec): Remove an invalid
5518         free. Fixes #327438.
5519
5520 2007-09-21  Raja R Harinath  <harinath@gmail.com>
5521
5522         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
5523         generic instantiations, etc.
5524         <MONO_TYPE_ARRAY>: Likewise.
5525
5526 2007-09-21  Martin Baulig  <martin@ximian.com>
5527
5528         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
5529         these structs were never defined.
5530         (MonoDebugHandle): Removed the `_priv' field, it was never used.
5531
5532 2007-09-21  Martin Baulig  <martin@ximian.com>
5533
5534         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
5535
5536 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
5537
5538         * image.c: removed the guid hash tables: we can get the same info
5539         without the additional memory usage hit (partially fixes also bug #327052).
5540
5541 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
5542
5543         * profiler.h, profiler-private.h, profiler.c: add a new profiler
5544         event to handle unloading methods. After the event is called, the
5545         corresponding MonoMethod* must be considered invalid.
5546         * loader.c (mono_free_method): call the new mono_profiler_method_free
5547         event.
5548
5549 2007-09-20  Mark Probst  <mark.probst@gmail.com>
5550
5551         * domain-internals.h: New flag in MonoJitInfo which marks shared
5552         generic methods.  New hash table (shared_generics_hash) in
5553         MonoDomain to keep track of shared generic methods.  Prototypes
5554         for functions to register and lookup shared generic methods.
5555
5556         * domain.c: Support for registering and looking up shared generic
5557         methods via a hash table (shared_generics_hash) in MonoDomain.
5558
5559         * class-internals.h: New exception to signal failure of shared
5560         compilation of a generic method.  New counters for generics
5561         sharing in MonoStats.
5562
5563 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
5564
5565         * image.c, metadata-internals.h: don't keep a file descriptor open
5566         for loaded assemblies (bug#325988).
5567
5568 2007-09-19  Raja R Harinath  <rharinath@novell.com>
5569
5570         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
5571         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
5572         use the corresponding datatypes.
5573         (type_in_image): Update to changes.
5574         (CleanForImageUserData): Simplify.
5575         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
5576         Avoid quadratic behaviour in handling the "stolen" list by
5577         separating the filter predicate out, and by prepending the stolen
5578         items rather than appending them.
5579         (steal_ginst_in_image): Likewise.
5580         (mono_metadata_clean_for_image): Update to changes.
5581
5582 2007-09-19  Martin Baulig  <martin@ximian.com>
5583
5584         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
5585
5586 2007-09-19  Martin Baulig  <martin@ximian.com>
5587
5588         * mono-debug.c (mono_debug_cleanup): Don't call
5589         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
5590
5591 2007-09-19  Raja R Harinath  <harinath@gmail.com>
5592
5593         Fix crash on 'make run-test' in mcs/errors
5594         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
5595         Avoid more potential allocations in mono_class_from_mono_type.
5596         (ginst_in_image): Update to changes.
5597         (gclass_in_image): Rearrange slightly.
5598
5599 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
5600
5601         * class.c (mono_class_init): Move the code that sets up class->methods to 
5602         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
5603
5604         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
5605         canonical instance of an inflated generic signature.
5606         (mono_type_create_from_typespec): Remove an invalid free.
5607
5608         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
5609
5610 2007-09-18  Marek Habersack  <mhabersack@novell.com>
5611
5612         * domain-internals.h: added a declaration of the
5613         mono_assembly_load_full_nosearch internal function.
5614
5615         * assembly.c (mono_assembly_load_with_partial_name): use
5616         mono_try_assembly_resolve return value properly.
5617         (mono_assembly_load_full_nosearch): copied the function body from
5618         mono_assembly_load_full, without the code to invoke assembly
5619         search hooks.
5620         (mono_assembly_load_full): calls the above new function and if the
5621         assembly is not resolved, invokes the search hooks.
5622
5623         * appdomain.c (mono_runtime_init): restore the global postload
5624         assembly search handlers.
5625
5626 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
5627
5628         * class.c (mono_class_init): Make sure class->methods and class->properties
5629         are never NULL in the generics case.
5630
5631         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
5632
5633 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
5634
5635         * metadata.c (free_generic_class): Disable some code to fix the build.
5636
5637         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
5638
5639         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
5640         from the image mempool.
5641
5642         * metadata.c (free_generic_class): Free more data from the inflated class.
5643
5644         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
5645
5646         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
5647         mempool.
5648         (mono_type_create_from_typespec): Ditto.
5649
5650         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
5651         MonoImage to the caller.
5652         (mono_init_internal): Save the opened image in a global variable.
5653         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
5654
5655         * reflection.c (resolve_object): Fix a leak.
5656
5657         * metadata.c: Fix the freeing of data in the generics caches.
5658         
5659         * metadata.c (free_generic_inst): Comment this out to fix the build.
5660         (free_generic_class): Ditto.
5661
5662         * metadata.c: Free cached generic methods, instantinations and classes when
5663         they are removed from the caches.
5664         (mono_metadata_free_type): Free the type itself.
5665
5666         * class.c: Free the result of mono_class_inflate_generic_type () in a few
5667         places.
5668
5669 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
5670
5671         * boehm-gc.c: restrict managed allocs to __thread supporting
5672         architectures.
5673
5674 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
5675
5676         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
5677         (mono_generic_class_get_class): Fix a leak.
5678
5679         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
5680         mono_metadata_free_type ().
5681         (mono_metadata_inflate_generic_inst): Fix a leak.
5682
5683 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
5684
5685         * mono-debug.c (free_header_data): Fix a leak missed earlier.
5686
5687         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
5688         mempool.
5689
5690         * mono-debug.c (mono_debug_close_image): Fix call to 
5691         g_hash_table_remove ().
5692
5693 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
5694
5695         * icall-def.h: redirect all the string ctor to the managed
5696         CreateString () methods.
5697         * string-icalls.c, string-icalls.h: removed dead code for string
5698         ctors and icalls.
5699
5700 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
5701
5702         * mono-debug.c: Fix memory leaks.
5703
5704 2007-09-14  Jonathan Chambers <joncham@gmail.com>
5705
5706         * threads-types.h: Implement mono_hazard_pointer_set and 
5707         mono_hazard_pointer_clear macros using do/while(0) to fix
5708         compilation with MSVC.
5709         
5710         Code is contributed under MIT/X11 license.
5711
5712 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
5713
5714         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
5715         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
5716
5717 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5718
5719         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
5720         icalls.
5721
5722 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5723
5724         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
5725         managed-code allocated as well.
5726
5727 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
5728
5729         * class.c (mono_class_is_assignable_from): Add support for generic variance.
5730
5731 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
5732
5733         * boehm-gc.c: fixed the build after the AOT changes.
5734
5735 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
5736
5737         * wrapper-types.h: Add an ALLOC wrapper type.
5738
5739         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
5740         reference managed allocator methods.
5741
5742 2007-09-12  Marek Safar  <marek.safar@gmail.com>
5743
5744         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
5745         of Type array and not MonoType, a fix suggested by Hari.
5746         
5747 2007-09-12  Jonathan Chambers <joncham@gmail.com>
5748
5749         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
5750         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
5751         
5752         Code is contributed under MIT/X11 license.
5753
5754 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
5755
5756         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
5757
5758 2007-09-12  Marek Habersack  <mhabersack@novell.com>
5759
5760         * image.c (do_mono_image_open): if assembly file fails to open and
5761         MONO_IOMAP is in effect, try to find the path in a
5762         case-insensitive way.
5763
5764         * appdomain.c (mono_runtime_init): do not install postload hooks -
5765         tests show that MS.NET doesn't use anything of that sort to
5766         trigger the AppDomain.AssemblyResolve event.
5767         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
5768         made non-static.
5769         (mono_runtime_init): init portability helpers here.
5770
5771         * assembly.c (mono_assembly_load_with_partial_name): if other   
5772         attempts fail, trigger the AppDomain.AssemblyResolve event handler
5773         to resolve the assembly.
5774
5775         * domain-internals.h: added mono_try_assembly_resolve and marked
5776         it as internal.
5777
5778 2007-09-11  Jb Evain  <jbevain@novell.com>
5779
5780         * object-internals.h (MonoReflectionDynamicMethod): add
5781         a `MonoReflectionType *owner` field. The owner is used
5782         * reflection.c:
5783         (mono_reflection_create_dynamic_method): use the owner of the dynamic
5784         method as the class declaring the dynamic method.
5785         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
5786         dynamic method to the declaring type of the methodbuilder.
5787
5788 2007-09-11  Mark Probst  <mark.probst@gmail.com>
5789
5790         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
5791         rules for calling methods via reflection.
5792
5793 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
5794
5795         * reflection.c (resolve_object): Add support for MonoGenericClass. 
5796         Inflate MonoType's.
5797
5798 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
5799
5800         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
5801         provide a managed method that does fast allocations without needing
5802         a managed->unmanaged transition. Boehm GC implementation currently
5803         enabled for ptrfree objects on sane architectures.
5804
5805 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
5806
5807         * marshal.c, marshal.h: exported a couple of useful functions and
5808         added mono_mb_get_label () to easily handle backward branches.
5809
5810 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
5811
5812         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
5813
5814 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
5815
5816         * loader.c (find_method): Fixed the regression introduced while
5817         fixing bug #81466.
5818
5819 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
5820
5821         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
5822         well.
5823         
5824         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
5825         icall.c reflection.c: Pass a MonoGenericContext argument to 
5826         mono_lookup_dynamic_token ().
5827
5828         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
5829         #82744.
5830         
5831 2007-09-09  Robert Jordan  <robertj@gmx.net>
5832
5833         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
5834         for generic methods.
5835
5836         * object.c (mono_object_get_virtual_method): Handle generic methods.
5837         Fixes bug #78882.
5838
5839         Code is contributed under MIT/X11 license.
5840
5841 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
5842
5843         * image.c: fix locking in mono_image_load_file_for_image ().
5844
5845 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
5846
5847         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
5848         used only as a cache: added an icall to fill it.
5849
5850 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
5851
5852         * reflection.h: exposed mono_reflection_free_type_info
5853         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
5854         since mono_reflection_bind_generic_parameters makes a copy of it.
5855         * reflection.c (free_type_info): subinfos should be freed.
5856         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
5857         made non static.
5858         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
5859         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
5860         this fixes #82695 and #81726.
5861    
5862
5863 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
5864
5865         * process.h, process.c:  added support for user profile/info in
5866           ProcessStartInfo. For now only Windows works.
5867
5868 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
5869
5870         * metadata.c: consider the generic arguments when comparing
5871         signatures (bug #82614).
5872
5873 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
5874
5875         * cil-coff.h, image.c: updated assembly loader to cope with the
5876         PE32+ 64 bit file format.
5877
5878 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
5879
5880         * assembly.c, class.c, domain.c, loader.c: remove useless
5881         inclusion of cil-coff.h.
5882
5883 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
5884
5885         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
5886         if interface is marked with CoClassAttribute. 
5887    
5888         Code is contributed under MIT/X11 license.
5889
5890 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
5891
5892         * sgen-gc.c: ensure no object from the to space is copied again or finalized
5893         if it's seen twice in major collections.
5894
5895 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
5896
5897         * sgen-gc.c: big objects are not copied to the gray area, but they
5898         need to be considered for scanning, too, if they are brought alive
5899         by an object ready for finalizations or a survived one.
5900
5901 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5902
5903         * sgen-gc.c: properly account the number of disappearing links when
5904         they are nullified.
5905
5906 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
5907
5908         * sgen-gc.c: share the code to scan the registered roots between the
5909         different types of collections.
5910
5911 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
5912
5913         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
5914
5915 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
5916
5917         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
5918         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
5919
5920 2007-08-28  Mark Probst  <mark.probst@gmail.com>
5921
5922         * security-manager.c (mono_security_manager_get_methods):
5923         LinkDemandSecurityException now has 2 arguments instead of 3.
5924
5925 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
5926
5927         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
5928         platforms which need it.
5929
5930 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
5931
5932         * sgen-gc.c: unregister thread data structures with a pthread_key_t
5933         dtor.
5934
5935 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
5936
5937         * threads.c: free the thread static data on thread exit.
5938
5939 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
5940
5941         * class.c: walk the hierarchy to find the generic definition for
5942         a class (fixes runtime part of bug #82498).
5943
5944 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
5945
5946         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
5947         ...
5948
5949         * image.c (mono_image_close): Here. Hopefully fixes #82510.
5950
5951 2007-08-24  Mark Probst  <mark.probst@gmail.com>
5952
5953         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
5954
5955 2007-08-24  Robert Jordan  <robertj@gmx.net>
5956
5957         * appdomain.c: don't perform the ':'->';' substitution on Win32.
5958
5959 2007-08-24  Jb Evain  <jbevain@novell.com>
5960
5961         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
5962         for byref types.
5963
5964 2007-08-24  Mark Probst  <mark.probst@gmail.com>
5965
5966         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
5967         #82286.
5968
5969 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
5970
5971         * assembly.c: Fix a warning.
5972         
5973 2007-08-23  Marek Habersack  <mhabersack@novell.com>
5974
5975         * appdomain.c: parse the <runtime> section looking for the probing
5976         element with the 'privatePath' attribute, which sets additional
5977         directories in which the runtime should look for assemblies.
5978
5979 2007-08-23  Robert Jordan  <robertj@gmx.net>
5980
5981         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
5982         Fixes #82499.
5983
5984 2007-08-23  Martin Baulig  <martin@ximian.com>
5985
5986         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
5987         _mono_debug_init_corlib() and remove it from the header file.
5988
5989 2007-08-23  Martin Baulig  <martin@ximian.com>
5990
5991         * mono-debug-debugger.c
5992         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
5993         don't notify the debugger about it.
5994
5995         * mono-debug-debugger.h
5996         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
5997
5998 2007-08-23  Robert Jordan  <robertj@gmx.net>
5999
6000         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
6001         Code is contributed under MIT/X11 license.
6002
6003 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
6004
6005         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
6006
6007 2007-08-22  Martin Baulig  <martin@ximian.com>
6008
6009         * mono-debug.c: Store debugging info on a per-domain basis and
6010         free it on domain unload.  Add support for unloading symbol files.
6011
6012         * mono-debug.h
6013         (MonoDebugList): New typedef.
6014         (MonoSymbolTable):
6015         - add `data_tables and `type_table'.
6016         - replace 'symbol_files' and `num_symbol_files' with a
6017           `MonoDebugList *'.
6018         (mono_debug_data_table): Removed.
6019         (mono_debug_list_add): New public function.
6020         (mono_debug_list_remove): New public function.
6021         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
6022         (mono_debug_init_2_memory): Renamed into
6023         mono_debug_open_image_from_memory().
6024         (mono_debug_close_image): New public function.
6025         (mono_debug_domain_create): Likewise.
6026         (mono_debug_domain_unload): Likewise.
6027         (MONO_DEBUGGER_VERSION): Bump to 60.
6028
6029         * mono-debug-debugger.h
6030         (MonoDebuggerEvent):
6031         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
6032         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
6033         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
6034         - rename `THREAD_CREATED' and `THREAD_EXITED' into
6035           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
6036         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
6037           meaning.
6038         (mono_debugger_add_symbol_file): Removed.
6039         (mono_debugger_add_type): Removed.
6040         (mono_debugger_lookup_type): Removed.
6041         (mono_debugger_lookup_assembly): Removed.
6042
6043         * domain.c
6044         (mono_domain_create): Call mono_debug_domain_create().
6045         (mono_init_internal): Call mono_debug_init_corlib().
6046
6047         * assembly.c
6048         (mono_assembly_close): Call mono_debug_close_image().
6049
6050 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
6051
6052         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
6053         mmap call.
6054
6055 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
6056
6057         * sgen-gc.c: ensure section->pin_queue_end is initialized
6058         correctly when non pinning objects in the section have been found.
6059
6060 2007-08-22  Marek Habersack  <mhabersack@novell.com>
6061
6062         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
6063         containing a list of directories separated by ':'. MSDN docs say
6064         the directories should be separated with ';'. Part of a bugfix for
6065         bug #81446
6066
6067 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
6068
6069         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
6070         it should MonoType and not MonoClass.
6071
6072 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
6073
6074         * culture-info-table.h : regenerated.
6075
6076 2007-08-20  William Holmes  <billholmes54@gmail.com>
6077
6078         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
6079          to call ReplaceFile Kernel32 on windows or in io-layer.
6080         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
6081         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
6082          as an internal call.
6083
6084         Code is contributed under MIT/X11 license.
6085
6086 2007-08-20  Jb Evain  <jbevain@novell.com>
6087
6088         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
6089         and MONO_EXCEPTION_FIELD_ACCESS.
6090
6091         * debug-helpers.[c|h]: new mono_field_full_name function.
6092
6093 2007-08-20  Mark Probst  <mark.probst@gmail.com>
6094
6095         * class.c: Removed class_security_level() and moved it to
6096         security-core-clr.c.
6097
6098         * security-core-clr.c, security-core-clr.h: class_security_level()
6099         is now public and renamed to mono_security_core_clr_class_level().
6100         It also looks for security attributes in the classes a class is
6101         nested in.
6102
6103 2007-08-20  Mark Probst  <mark.probst@gmail.com>
6104
6105         * security-core-clr.c, security-core-clr.h: CoreCLR security
6106         utility functions.
6107
6108         * Makefile.am: Added security-core-clr.[ch].
6109
6110         * security-manager.c, security-manager.h: Functions and enum for
6111         setting and getting the security mode.
6112
6113         * class.c: CoreCLR security checks.
6114
6115 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
6116
6117         * icall-def.h, process.c, process.h: implemented icall to get
6118         user/system processor times.
6119
6120 2007-08-17  Mark Probst  <mark.probst@gmail.com>
6121
6122         * domain.c, threads.c, class-internals.h, domain-internals.h: New
6123         reader-lock-free jit_info_table.
6124
6125 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
6126
6127         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
6128
6129         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
6130
6131         * object-internals.h (MonoException): Add missing _data member.
6132
6133 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
6134
6135         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
6136         checking that only methods with matching qname or fqname are picked
6137         from implemented interfaces.
6138
6139 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
6140
6141         * verify.c (do_newarr):added, do type verification of
6142         newarr ops, push the right value on the eval stack.
6143         * verify.c (mono_method_verify): use do_newarr
6144
6145
6146 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
6147
6148         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
6149         factored the common code into get_boxable_mono_type, which
6150         is now using mono_type_get_full, this fixed byref related tests.
6151
6152 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
6153
6154         * class.c: added mono_type_get_full, this function has the same
6155         behavior of mono_class_get_full but the returned MonoType has
6156         all metadata of the associated token in case of a typespec token.
6157         * class.c: added mono_type_retrieve_from_typespec, used by 
6158         mono_type_get_full to retrieve the token type.
6159         * class.c (mono_class_create_from_typespec): changed to use
6160         mono_type_retrieve_from_typespec.
6161         * class.c (mono_ldtoken): changed to use mono_type_get_full
6162         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
6163         * class-internals.h: exported mono_type_get_full for internal use.
6164
6165 2007-08-16  Jb Evain  <jbevain@novell.com>
6166
6167         * domain.c (supported_runtimes): add entry for
6168         the 'moonlight' runtime version.
6169
6170 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6171
6172         * verify.c (mono_method_verify): small typo sliped in.  
6173
6174 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6175
6176         * verify.c (do_unbox_value): added, do type verification of
6177         unboxing ops
6178         * verify.c (mono_method_verify): use do_unbox_value
6179
6180
6181 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6182
6183         * verify.c (dump_stack_value): fixed typo, was printing string
6184         instead of object on stack.
6185         * verify.c (do_box_value): moved the byref check up as it leads
6186         to invalid code and should be done earlier.
6187         * verify.c: improved error messages for and ldobj
6188
6189 2007-08-15  William Holmes  <billholmes54@gmail.com>
6190
6191         * marshal.c (emit_marshal_custom): Omit the call to 
6192           marshal_native_to_managed when calling native to managed 
6193           and the argument is specified as an out argument.
6194
6195         Code is contributed under MIT/X11 license.
6196
6197 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6198
6199         * verify.c: fixed the type checks for generics, function pointers and vectors.
6200         Added type verification for ldobj and ldtoken. The verifier
6201         would segfault if header or signature of a method contained references
6202         to non-existant types.
6203
6204 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
6205
6206         * marshal.c (cominterop_get_ccw): Patch from
6207         Bill Holmes to no walk up interface hierarchy. 
6208         All parent methods should be present in the interface for COM.
6209    
6210         Code is contributed under MIT/X11 license.
6211
6212 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
6213
6214         * marshal.c (emit_marshal_com_interface): Patch from
6215         Bill Holmes to handle COM Interfaces as return values
6216         for native->managed calls.
6217    
6218         Code is contributed under MIT/X11 license.
6219
6220 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
6221
6222         * marshal.c (cominterop_get_idispatch_for_object): Implement
6223         for runtime callable wrappers.
6224    
6225         Code is contributed under MIT/X11 license.
6226
6227 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
6228
6229         * pedump.c (main): changed from mono_init to mono_init_from_assembly
6230         so 2.0 types are accessible
6231
6232
6233 2007-08-13  Miguel de Icaza  <miguel@novell.com>
6234
6235         * domain.c (mono_init_internal): Call mono_assembly_load_friends
6236         once we load mscorlib.   Due to the order in which we initialize,
6237         the mono_assembly_load_full routine that loads mscorlib did not
6238         load friends.   We now load it once we load the
6239         mono_defaults.internals_visible_class class. 
6240
6241         * assembly.c: Expose the mono_load_friend_assemblies method.
6242
6243 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
6244
6245         * verify.c: improved the handling of boxing, better
6246         type checking for unary ops and conversion. Fix bug
6247         regarding managed pointer compatibility checking
6248
6249 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
6250
6251         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
6252
6253         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
6254
6255 2007-08-09  Raja R Harinath  <rharinath@novell.com>
6256
6257         * reflection.c (dup_type): Remove.
6258         * class.c (dup_type): Remove.
6259         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
6260         instead of the dodgy 'dup_type'.
6261         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
6262         handle the case where 'dup_type' needed the second argument.
6263
6264 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
6265
6266         * domain.c: Fix a warning.
6267
6268 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
6269
6270         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
6271         checking that methods with the same fqname are not overridden
6272         with a method from an ancestor.
6273
6274 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
6275
6276         * threads.c (free_thread_static_data_helper): Avoid a crash if
6277         thread->static_data is not yet set.
6278
6279 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
6280
6281         * marshal.c: Use correct image when emitting
6282         native wrapper for COM calls.
6283    
6284         Code is contributed under MIT/X11 license.
6285
6286 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
6287
6288         * icall-def.h, security.c, security.h :
6289           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
6290
6291 2007-08-07  Martin Baulig  <martin@ximian.com>
6292
6293         * mono-debug-debugger.h
6294         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
6295
6296         * domain.c (mono_domain_free): Call
6297         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
6298
6299 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
6300
6301         * verify.c (check_underflow, check_overflow): error message now returns IL offset
6302         * verify.c (in_same_block): code should test if either offset is inside the clauses
6303         * verify.c (mono_method_verify): push the exception into the eval stack of exception
6304         and filter blocks
6305
6306 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
6307
6308         * image.c (mono_image_close): Fix a leak.
6309
6310         * object.c (mono_runtime_invoke_array): Avoid using alloca.
6311
6312         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
6313
6314 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
6315
6316         * domain.c, threads.c, threads-types.h: fix memory retention issue
6317         with thread static variables not being cleared on domain unload.
6318         Reuse thread static slots after domain unload.
6319
6320 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
6321
6322         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
6323         nullable type.
6324
6325         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
6326         now done in mono_runtime_invoke_array.
6327
6328         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
6329         receiver is a nullable type.
6330
6331         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
6332         generic parameter.
6333
6334 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
6335
6336         * marshal.c: Implement COM Objects as return type for 
6337         managed->unmanaged calls. Added Release calls for COM Object
6338         out/return values in managed->unmanaged calls.
6339
6340         Code is contributed under MIT/X11 license.
6341
6342 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
6343
6344         * threads.h, threads-type.h: move the hazard pointer declarations
6345         to the private header.
6346
6347 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
6348
6349         * file-io.c, appdomain.c: memory leak fixes.
6350
6351 2007-08-02  Dick Porter  <dick@ximian.com>
6352
6353         * socket-io.c
6354         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
6355         SO_REUSEADDR setting into io-layer/sockets.c.
6356
6357 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
6358
6359         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
6360         from Object when called on a generic parameter. Fixes #82211.
6361
6362 2007-08-01  Dick Porter  <dick@ximian.com>
6363
6364         * file-io.c (convert_share): Test FileShare values bit-by-bit.
6365         Fixes bug 79250 yet again.
6366
6367 2007-07-30  Martin Baulig  <martin@ximian.com>
6368
6369         Merged the `debugger-dublin' branch.
6370
6371         * mono-debug.h
6372         (MonoDebugDataTable): New typedef.
6373         (MonoDebugMethodAddressList): New typedef.
6374         (MonoDebugWrapperData): Removed.
6375         (MonoDebugSymbolTable): Removed `current_data_table',
6376         `current_data_table_size', `current_data_table_offset'.
6377         (MonoDebugDataItemType): Moved into mono-debug.c.
6378         (MonoDebugMethodJitInfo): Remove `address'.
6379         (mono_debug_data_table): New global variable.
6380         (mono_debug_lookup_method_addresses): New public function.
6381         (mono_debug_find_method): Take a `MonoMethod *', not a
6382         `MonoDebugMethodInfo *'.
6383
6384         * mono-debug.c: Drop support for the old symbol tables.
6385
6386 2007-06-28  Martin Baulig  <martin@ximian.com>
6387
6388         * mono-debug.c (mono_debug_debugger_version): New public variable.
6389
6390 2007-07-31  William Holmes  <billholmes54@gmail.com>
6391
6392         * metadata.c Changed mono_type_create_from_typespec to not insert
6393           the type into the hash map until after
6394           do_mono_metadata_parse_type has completed.
6395         Fixes Bug #82194
6396         Code is contributed under MIT/X11 license.
6397
6398 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
6399
6400         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
6401         generic parameter. Fixes #82211.
6402
6403 2007-07-27  Jb Evain  <jbevain@novell.com>
6404
6405         * pedump.c (dump_metadata, dump_metadata_header): dump
6406         versions contained in the metadata header.
6407
6408 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
6409
6410         * threads.c: register small_id_table with the GC.
6411
6412 2007-07-27  Mark Probst  <mark.probst@gmail.com>
6413
6414         * threads.c, threads.h, class-internals.h, object-internals.h:
6415         Hazard pointers, to be used by lock-free parallel algorithms.
6416
6417 2007-07-26  Dick Porter  <dick@ximian.com>
6418
6419         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
6420         routine on non-windows platforms, as I've not managed to think of
6421         a non-kludgy way of doing this.  Finishes off bug 78739.
6422
6423 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
6424
6425         * object.c: properly setup interface_bitmap in proxy vtables.
6426
6427 2007-07-25  Marek Habersack  <mhabersack@novell.com>
6428
6429         * appdomain.c (get_shadow_assembly_location): do not use TickCount
6430         to create unique shadow copy target directories, use the domain's
6431         serial number instead. Each domain gets a unique target directory
6432         that way.
6433
6434         * domain.c (mono_domain_create): added code to increment domain
6435         shadow copy serial number and cache the value in the current
6436         domain structure.
6437
6438         * domain-internals.h (struct _MonoDomain): added a new field -
6439         shadow_serial to hold the serial number used in generation of
6440         shadow-copy directories. This is to make sure that the directory
6441         name is unique for each and every domain created. We avoid a race
6442         condition with overriding assemblies already in use by other app
6443         domains.
6444
6445 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
6446
6447         * class.c (mono_bounded_array_class_get): fixed memory leak when 
6448         binding generic parameters.
6449
6450 2007-07-24  Raja R Harinath  <rharinath@novell.com>
6451
6452         * metadata.c (do_mono_metadata_parse_generic_class): Use
6453         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
6454         error.
6455
6456 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
6457
6458         * loader.c, class-internals.h, reflection.c: removed the per-method
6459         generics hashtable: we use the global one through the call of
6460         mono_class_inflate_generic_method ().
6461
6462 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
6463
6464         * class.c, metadata.c, class-internals.h: introduce yet another
6465         generics global cache for inflated methods (fixes 98% of the perf
6466         issue in bug #81806).
6467
6468 2007-07-23  Raja R Harinath  <rharinath@novell.com>
6469
6470         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
6471         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
6472         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
6473         return a MonoGenericInst containing (a copy) of those types.
6474         (mono_metadata_inflate_generic_inst): Update to changes.
6475         (mono_metadata_parse_generic_inst): Likewise.
6476         (mono_get_shared_generic_inst): Likewise.
6477         * reflection.c (mono_class_bind_generic_parameters): Likewise.
6478         (mono_reflection_bind_generic_method_parameters): Likewise.
6479         * metadata-internals.h: Likewise.
6480         * icall.c (free_generic_context): Kill.
6481         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
6482
6483         * reflection.c (reflection_methodbuilder_to_mono_method): Use
6484         mono_metadata_type_dup.
6485         * marshal.c (mono_mb_create_method): Likewise.
6486
6487         * metadata.c (mono_metadata_type_dup): Rename from
6488         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
6489         MonoImage.  Handle a few more cases, esp. when no mempool is given.
6490         * marshal.c, metadata-internals.h: Update to changes.
6491
6492 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6493
6494         * class.c: fixed a small leak for array classes and removed warning.
6495
6496 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
6497
6498         * loader.c (mono_method_get_param_token): Make this work on generic methods.
6499         Return 0x8000000 for return parameters. Fixes #82161.
6500
6501 2007-07-21  Marek Habersack  <grendello@gmail.com>
6502
6503         * appdomain.c (get_shadow_assembly_location): append the current
6504         ticks value to the path. Avoids overwriting the same assemblies by
6505         several threads at the same time.
6506
6507 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
6508         and Raja R Harinath  <rharinath@novell.com>
6509
6510         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
6511         Simplify slightly.
6512         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
6513         property for testing if a method is a generic method definition.
6514
6515 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
6516
6517         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
6518
6519 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6520
6521         * verify.c: used function from private branch, reverted to the one in class.h 
6522
6523 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6524
6525         * verify.c: a typo slipped in and the code wont compile
6526
6527 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6528
6529         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
6530         disabled box instruction as it is doing the wrong thing
6531         improved stack dump messages, now it is easier to debug type related issues
6532
6533
6534 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
6535
6536         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
6537
6538 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6539
6540         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
6541         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
6542         grouped with class and valuetype. This change will simply 
6543         the code as it should be handled just like unmanaged pointers.
6544
6545 2007-07-19  Mark Probst  <mark.probst@gmail.com>
6546
6547         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
6548
6549 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6550
6551         * verify.c: several stack merge issues fixed, reference comparisons now
6552         check the type size. strict type check now works correctly.
6553         added more uses of IS_MANAGED_POINTER macro.
6554         fixed issues pointed by running the test suite against .net.
6555         
6556
6557 2007-07-19  Mark Probst  <mark.probst@gmail.com>
6558
6559         * class.c, loader.c, class-internals.h: Removed the
6560         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
6561         defines.
6562
6563         * icall.c: Better error checking in some internal reflection
6564         methods.
6565
6566 2007-07-18  William Holmes  <billholmes54@gmail.com>
6567
6568         * filewatcher.c : removed unused variable 'filename' in 
6569           ves_icall_System_IO_FSW_SupportsFSW
6570
6571 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
6572
6573         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
6574         obsolete, removed.
6575
6576 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
6577
6578         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
6579         
6580         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
6581
6582 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
6583
6584         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
6585         Implement generics support.
6586         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
6587
6588         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
6589         type_args and method_args arguments.
6590         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
6591         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
6592         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
6593
6594 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
6595
6596         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
6597           It adds a rootimage parameter to mono_reflection_get_type_internal,
6598           adds new function mono_reflection_get_type_with_rootimage and use
6599           the rootimage to resolve the types instead of the current image
6600
6601 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6602
6603         * culture-info-table.h: Forgot to update after r78304.
6604
6605 2007-07-13  Raja R Harinath  <rharinath@novell.com>
6606
6607         * class.c (mono_class_is_open_constructed_type)
6608         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
6609
6610 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
6611
6612         * class.c (mono_bounded_array_class_get):  method fails if used with
6613         an incomplete TypeBuilder enum (no basetype field), fixed it by 
6614         avoiding calculating the size for such array as it cannot be instantiated.
6615         Fix bug #82015
6616
6617 2007-07-12  Raja R Harinath  <rharinath@novell.com>
6618
6619         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
6620         field.
6621         * metadata.c, reflection.c: Update to changes.
6622
6623 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
6624
6625         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
6626         mono_class_is_valid_enum, they are used to valide a enum when loading.
6627         * reflection.c: used new functions to throw TypeLoadException when and
6628         invalid enum is build with TypeBuilder. Fixes #82018
6629   
6630 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6631
6632         * object.c: forgot commit of mono_class_setup_methods () to access
6633         iface->methods.
6634         * object-internals.h: added a few more handy fields to
6635         MonoIMTCheckItem.
6636
6637 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
6638
6639         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
6640         iface->methods.
6641
6642 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
6643
6644         * class-internals.h, object-internals.h, object.c: IMT-based
6645         interface invocation core from Massimiliano Mantione
6646         (massi@ximian.com) with a reworked arch-specific interface,
6647         bsearch implementation and a few bugfixes and memory savings by me.
6648
6649 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
6650
6651         * class.c (mono_class_create_from_typedef): mono would segfault if 
6652         an enum did not have a __value field. It now throws a TypeLoadException
6653         for such cases. Fix bug #82022
6654
6655 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
6656
6657         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
6658
6659 2007-07-09  Mark Probst  <mark.probst@gmail.com>
6660
6661         * class.c (mono_class_init): If a class is already inited but has
6662         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
6663
6664 2007-07-09  Mark Probst  <mark.probst@gmail.com>
6665
6666         * class.c: Properly handle the case of an unimplemented interface
6667         method.  Fixes: 81673.
6668
6669 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
6670
6671         * class-internals.h, object.c: cleanup patch from massi: use
6672         MonoVTable->interface_bitmap since the vtable interfaces offset array
6673         is going away.
6674
6675 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
6676
6677         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
6678         GetMDStreamVersion icall instead.
6679
6680 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
6681
6682         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
6683         not use mono_dl_build_path() with a full library name: makes
6684         fallbacks to libgaim and libfam work.
6685
6686 2007-07-06  William Holmes  <billholmes54@gmail.com>
6687
6688         * assembly.c: Added a continue statement in probe_for_partial_name when
6689          parse_assembly_directory_name fails.  Fixes : 82002
6690
6691 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
6692
6693         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
6694         and added a verification  for TYPEDBYREF.
6695         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
6696         make native int interchangeable with int32 and some small cleanup and formating.
6697         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
6698         handle byref of byref.
6699         * verify.c (push_local): handle byref of byref.
6700         * verify.c (do_binop): invalid mix of values is unverifiable
6701         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
6702         added visibility checks
6703         * verify.c (field related method): added visibility checks
6704         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
6705
6706 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
6707
6708         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
6709         string.
6710
6711 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
6712
6713         * profiler.c (mono_profiler_load): Fix an off-by-one error.
6714
6715         * marshal.c (emit_marshal_string): When returning a string from managed code,
6716         allways make a copy even for unicode strings. Fixes #81990.
6717
6718 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
6719
6720         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
6721         of byref generic inst types (bug #81997).
6722
6723 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
6724
6725         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
6726         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
6727
6728 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
6729
6730         * marshal.c (emit_marshal_string): Add support for unicode strings in
6731         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
6732
6733 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
6734
6735         * verify.c: field load/store are now verified, missing only access checks now
6736
6737 2007-06-28  Martin Baulig  <martin@ximian.com>
6738
6739         * mono-debug.c (mono_debug_debugger_version): New public variable.
6740
6741 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
6742
6743         * locales.c: When constructing DateTimeFormat or NumberFormat for
6744         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
6745         MonoCultureInfo contructed from the current locale is always
6746         read-only and has UseUserOverride set to true. All MonoCultureInfo
6747         instances returned for GetCultures have both IsReadOnly and
6748         UseUserOverride set to true. Fixes part of bug #81930.
6749
6750 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
6751
6752        * icall-def.h: Update System.__ComObject icalls
6753        * marshal.c: Avoid managed transition (and object creation)
6754        when looking up COM interface in RCW.
6755        * marshal.h: Ditto.
6756        
6757        Code is contributed under MIT/X11 license.
6758
6759 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
6760
6761         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
6762         to avoid crashes during assembly unloading.
6763
6764 2007-06-22  Raja R Harinath  <rharinath@novell.com>
6765
6766         Fix MethodInfo.IsGenericMethodDefinition
6767         * reflection.c (mono_reflection_bind_generic_method_parameters):
6768         Rearrange code to ensure we always uses a generic method definition.
6769         * class.c (mono_class_inflate_generic_method_full): Set
6770         'generic_container' field only for generic method definitions.
6771         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
6772         Use presense of 'generic_container' field as indication of being a
6773         generic method definition.
6774
6775 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
6776
6777         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6778
6779         * object-internals.h: Reflect changes in the layout of the managed Delegate
6780         class.
6781         
6782         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
6783         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
6784         runtime memory used by the dynamic method. Fixes #77146.
6785
6786 2007-06-21  Dick Porter  <dick@ximian.com>
6787
6788         * file-io.h: 
6789         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
6790         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
6791         81767.
6792
6793 2007-06-21  Raja R Harinath  <rharinath@novell.com>
6794
6795         * reflection.c (method_encode_methodspec): Add a tripwire.
6796         * class.c (inflate_generic_type): The fully open generic type is
6797         not the same as the generic type definition.
6798
6799 2007-06-21  Martin Baulig  <martin@ximian.com>
6800
6801         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
6802
6803         * mono-debug-debugger.h
6804         (MonoDebuggerBreakpointInfo): Removed.
6805         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
6806         (mono_debugger_remove_breakpoint): Likewise.
6807         (mono_debugger_breakpoint_callback): Likewise.
6808         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
6809
6810 2007-06-21  Raja R Harinath  <rharinath@novell.com>
6811
6812         * metadata.c (mono_metadata_lookup_generic_class): The fully open
6813         generic type is not the same as the generic type definition.
6814         * class.c (mono_generic_class_get_class): Likewise.
6815
6816 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
6817
6818         * icall.c: The second argument to 
6819         System.Reflection.MethodBase.GetMethodFromHandleInternalType
6820         is a MonoType not a MonoClass.
6821
6822 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
6823
6824         * verify.c: support for function pointers in the verifier
6825
6826 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
6827
6828         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
6829
6830 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
6831
6832         * assembly.c: removed Mono.Data.SqliteClient from the list of
6833         forward-compatible assemblies as it breaks the ABI (bug #81899).
6834
6835 2007-06-19  Raja R Harinath  <rharinath@novell.com>
6836
6837         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
6838         lookup/update with the loader lock.
6839         * reflection.c (mono_class_bind_generic_parameters): No need to
6840         protect mono_metadata_lookup_* with the loader lock.
6841         * class.c (inflate_generic_type): Likewise.
6842         
6843         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
6844         on a generic instantiated type.
6845
6846 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
6847
6848         *verify.c: produce meanfull error messages on verification error
6849         *verify.c: fixed some cases of verification errors reported as validation errors
6850         *pedump.c: fixed the error name array, now it shows validation errors properly
6851         *verify.h: fixed the contant that should be used for verification errors
6852
6853 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
6854
6855         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
6856         for bug #77596, 81858 and 80743 (generics data structures on domain
6857         unload).
6858
6859 2007-06-15  Raja R Harinath  <rharinath@novell.com>
6860
6861         Avoid allocating 'MonoGenericContext' on the heap.
6862         * class-internals (_MonoMethodInflated::context): Make field
6863         inline, not a pointer.
6864         * loader.c (method_from_methodspec): Allocate 'new_context' on the
6865         stack.  Use the context embedded within the inflated method as the
6866         hash key, rather than 'new_context'.
6867         * class.c (inflate_generic_context): Simplify.  Return a struct
6868         rather than allocating on the heap.
6869         (mono_class_inflate_generic_method_full): Update to changes.  Now,
6870         doesn't salt away a copy of the context -- simplifying the
6871         lifetime rules of a 'MonoGenericContext *'.
6872         (mono_method_get_context): Return pointer to embedded context.
6873         (setup_generic_array_ifaces): Allocate temporary context on stack.
6874         * reflection.c (inflate_mono_method): Likewise.
6875         (mono_reflection_bind_generic_method_parameters): Likewise.
6876         Use the context embedded within the inflated method as the hash key.
6877
6878         Avoid a source of allocation of 'MonoGenericContext'.
6879         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
6880         and 'cached_context' fields into embedded 'MonoGenericContext' field.
6881         * class.c: Update to changes.
6882         (mono_generic_class_get_context): Simplify drastically.  Now just
6883         returns a pointer to the field.
6884         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
6885         argument as a const pointer.
6886         (mono_metadata_generic_context_equal): Likewise.
6887         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
6888         Update to changes.
6889
6890 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
6891
6892         * verify.c improved the handling of brtrue/brfalse, factored out common code
6893
6894 2007-06-14  Raja R Harinath  <rharinath@novell.com>
6895
6896         Kill MonoGenericMethod.
6897         * class-internals.h (MonoGenericContext::method_inst): Rename from
6898         'gmethod' and convert to a MonoGenericInst.
6899         (MonoGenericMethod): Remove.
6900         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
6901         * loader.c (method_from_methodspec): Update to changes.  Use a
6902         MonoGenericContext as the key to the hashtable.
6903         * metadata.c (mono_metadata_generic_context_equal): Rename from 
6904         'mono_metadata_generic_method_equal' and take MonoGenericContext.
6905         (mono_metadata_generic_context_hash): Likewise from
6906         'mono_metadata_generic_method_hash'.  Change hash function.
6907         (mono_metadata_load_generic_params): Update to changes.
6908         (mono_get_shared_generic_method): Remove.
6909         * metadata-internals.h (mono_get_shared_generic_method): Remove.
6910         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
6911         (inflate_generic_context): Likewise.
6912         (mono_class_inflate_generic_method_full): Likewise.
6913         (setup_generic_array_ifaces): Likewise.
6914         (mono_class_create_from_typespec): Likewise.
6915         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
6916         (method_encode_methodspec): Update callsite.
6917         (reflection_methodbuilder_to_mono_method): Update to changes.
6918         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
6919         MonoGenericContext as the key to the hashtable.
6920         (inflate_mono_method): Update to changes.
6921
6922         * class-internals.h (MonoGenericMethod::container): Remove.
6923         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
6924
6925 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
6926
6927         * profiler-private.h, profiler.c, profiler.h: added API to profile
6928         exception events.
6929
6930 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
6931
6932         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
6933
6934 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
6935
6936         * verify.c: method invocation is now validated, now we verify parameter types on stack.
6937         Fixed overflow and underflow not aborting the verification process.
6938
6939 2007-06-13  Mark Probst  <mark.probst@gmail.com>
6940
6941         * class-internals.h (MonoStats): Added stats entries for dynamic
6942         code allocations.
6943
6944 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
6945
6946         * loader.c (mono_free_method): Free header->locals and header->clauses.
6947
6948         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
6949         dynamic case.
6950
6951         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
6952
6953         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
6954
6955 2007-06-12  Raja R Harinath  <rharinath@novell.com>
6956
6957         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
6958         the tables.
6959
6960 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
6961
6962         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
6963
6964 2007-06-11  Raja R Harinath  <harinath@gmail.com>
6965
6966         MonoGenericMethod on a diet
6967         * class-internals.h (_MonoMethodInflated::reflection_info): Move
6968         here ...
6969         (_MonoGenericMethod::reflection_info): ... from here.
6970         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
6971         Update to changes.
6972         * reflection.c (inflate_mono_method): Likewise.
6973         (mono_reflection_bind_generic_method_parameters): Likewise.
6974
6975 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
6976
6977         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
6978         *verify.c: factored long ldarg forms to share code with short forms
6979
6980 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
6981
6982         *verify.c: fixed code formating factored some duplicate code
6983         into a new function
6984
6985         *verify.h: fixed binary incompatibility introduced earlier
6986
6987         *pedump.c: fixed formating
6988
6989 2007-06-11  Raja R Harinath  <harinath@gmail.com>
6990
6991         Fix assertion when disassembling Mono.C5.dll
6992         * loader.c (method_from_methodspec): Avoid inflating a method
6993         twice with the same context.  If the methodref is inflated, use
6994         the declaring method instead.
6995
6996         * class.c (mono_class_from_generic_parameter): Fix case similar to
6997         bug #81830 handled below, but for method containers.
6998
6999 2007-06-10  Raja R Harinath  <harinath@gmail.com>
7000
7001         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
7002         get_shared_generic_class.  Directly inflate the instance.
7003         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
7004         (inflate_generic_class): Delete.
7005         (get_shared_generic_class): Delete.  Move setting of
7006         'cached_class' and 'cached_context' ...
7007         * metadata.c (mono_metadata_lookup_generic_class): ... here.
7008
7009         * metadata.c (mono_metadata_lookup_generic_class): Change
7010         signature to take the components of a MonoGenericClass rather than
7011         an allocated MonoGenericClass.  Change semantics to be intern-like.
7012         * reflection.c (mono_class_bind_generic_parameters): Update to
7013         changes.  Make locking region tighter.
7014         * class.c (inflate_generic_class): Update to changes.
7015         (get_shared_generic_class): Likewise.
7016         * metadata-internals.h: Likewise.
7017
7018         * reflection.c (mono_class_bind_generic_parameters): Take and
7019         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
7020         (mono_reflection_bind_generic_parameters): Use
7021         'mono_class_bind_generic_parameters' rather than duplicate the code.
7022         * class.c (mono_bounded_array_class_get): Update to changes.
7023         * object-internals.h: Likewise.
7024
7025         * reflection.c (mono_class_bind_generic_parameters): Only support
7026         parameterizing generic type definitions.  Remove support for other
7027         open types.
7028
7029 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
7030
7031         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
7032
7033         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
7034         in the dynamic case.
7035
7036 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
7037
7038         * threads.c: When cleaning up thread, reset the Background bit.
7039         Fixes bug #81720.
7040
7041 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
7042
7043        * metadata.c: Move variable declarations to top of scope.
7044        * verify.c: Move variable declarations to top of scope.
7045
7046        Code is contributed under MIT/X11 license.
7047
7048 2007-06-08  Raja R Harinath  <rharinath@novell.com>
7049
7050         * reflection.c (mono_class_bind_generic_parameters): Replace
7051         open-coded loop with mono_metadata_inflate_generic_inst.
7052
7053         * class.c (get_shared_generic_class): Don't call
7054         mono_get_shared_generic_inst.  Use the container's own
7055         'class_inst'.
7056
7057         * metadata.c (mono_metadata_load_generic_params): Move
7058         initialization of 'context' field here from ...
7059         * class.c (mono_class_create_from_typedef): ... here, and ...
7060         * loader.c (mono_get_method_from_token): ... here.
7061
7062         * class.c (get_shared_generic_class): Rename from
7063         mono_get_shared_generic_class and make static.
7064         (mono_get_shared_generic_inst): Move to metadata.c.
7065         * loader.c (mono_get_shared_generic_method): Likewise.
7066         * class-internals.h, metadata-internals.h: Update to changes.
7067
7068         Fix #81830
7069         * class.c (mono_class_from_generic_parameter): Don't assume a
7070         generic container owner exists.  Generic containers from monodis
7071         don't have any.
7072
7073 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
7074
7075         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
7076         * verify.h: new typedefs to returns the non-verifiable status
7077         * verify.c: initial implementation of generics, stack merging and object compatibility check
7078
7079 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7080
7081         * class.c, image.c, class-internals.h (MonoImage): class_cache is
7082         a MonoInternalHashTable again (fixed bug in internal hash table
7083         code).
7084
7085 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7086
7087         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
7088         MonoInternalHashTable again (fixed bug in internal hash table
7089         code).
7090
7091 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7092
7093         * class.c, image.c, class-internals.h, domain.c,
7094         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
7095         changes.  Have to figure out what makes them break the SWF
7096         regression.
7097
7098 2007-06-04  Mark Probst  <mark.probst@gmail.com>
7099
7100         * class.c, image.c, class-internals.h (MonoImage): class_cache is
7101         a MonoInternalHashTable now.
7102
7103 2007-06-04  Mark Probst  <mark.probst@gmail.com>
7104
7105         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
7106         MonoInternalHashTable now.
7107
7108 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
7109
7110         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
7111         invoke_impl code.
7112
7113         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
7114
7115         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
7116         dependent trampoline.
7117
7118         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7119
7120         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
7121
7122 2007-05-29  Robert Jordan  <robertj@gmx.net>
7123
7124         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
7125
7126 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
7127
7128         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
7129
7130 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
7131
7132        * marshal.c: Fix interface lookup loops for
7133        cominterop_get_com_slot_for_method and 
7134        cominterop_get_method_interface. Only need to lookup
7135        if type is a class, else use interface type method is on.
7136
7137        Code is contributed under MIT/X11 license.
7138
7139 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
7140
7141         * reflection.c: HasSecurity can be present even if no specially 
7142         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
7143         SecurityAttribute). Fix CAS regression tests on buildbot.
7144
7145 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
7146
7147        * appdomain.c: Add configure checks for header files.
7148        * image.c: Add configure checks for header files.
7149        * file-io.c: Add configure checks for header files.
7150        * debug-mono-symfile.c: Add configure checks for header files.
7151        * threadpool.c: Add configure checks for header files.
7152        * console-io.c: Add configure checks for header files.
7153        * profiler.c: Add configure checks for header files.
7154        * rawbuffer.c: Add configure checks for header files.
7155        * icall.c: Add configure checks for header files.
7156        * rand.c: Add configure checks for header files.
7157        * socket-io.c: Add configure checks for header files.
7158
7159        Code is contributed under MIT/X11 license.
7160
7161 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
7162
7163         * reflection.c (mono_custom_attrs_from_builders): Remove the 
7164         assertion as it breaks the build.
7165         
7166         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
7167
7168         * reflection.c (lookup_custom_attr): Make a copy here too.
7169
7170         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
7171         dynamic images.
7172
7173         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
7174         images.
7175
7176         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
7177         info.
7178
7179 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
7180
7181         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
7182         (load_cattr_value): Ditto.
7183
7184 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
7185
7186         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
7187
7188 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
7189
7190         * threads.c: In "start_wrapper", set apartment_state to MTA if
7191         apartment_state is Unknown and we're running on 2.0 profile or
7192         higher.
7193         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
7194         to main method, then set apartment_state to Unknown on 1.0 profile,
7195         and MTA on 2.0 profile.
7196
7197 2007-05-16  Jb Evain  <jb@nurv.fr>
7198
7199         * class-internals.h (MonoDefaults): Add an attribute_class and
7200           customattribute_data_class.
7201         * domain.c (mono_init_internal): Populate them.
7202         * reflection.c: Use them to remove duplicates. Make a vew
7203         MonoClass variables `static'.
7204
7205 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
7206
7207         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
7208         step in implementing IMT, so that all isinst checks now can go
7209         through the bitmap.
7210         This was needed because vtables for TransparentProxy need to look
7211         like the vtable of the "target" class, so they need to point to
7212         its interface bitmap directly.
7213
7214         * object.c: inside "mono_class_create_runtime_vtable" and
7215         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
7216
7217 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7218
7219         * object-internals.h
7220           culture-info.h : added territory field in MonoCulture and
7221           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
7222         * locales.c : fill territory field above too.
7223         * culture-info-table.h : regenerated.
7224
7225 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
7226
7227         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
7228         Fixes #81599.
7229
7230 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
7231
7232         * object.c: Always initialize apartment, even if 
7233         there is no custom attributes on entry point.
7234         
7235         Code is contributed under MIT/X11 license.
7236
7237 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
7238
7239         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
7240         * metadata.c: If no encoding is set, check for unicode
7241         on class.
7242         
7243         Code is contributed under MIT/X11 license.
7244
7245 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
7246
7247         * threads.c: Handle if mono_thread_current returns NULL 
7248         
7249         Code is contributed under MIT/X11 license.
7250
7251 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
7252
7253         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
7254         in start_wrapper. Added mono_thread_init_apartment_state and
7255         mono_thread_cleanup_apartment_state.
7256         * object.c: Initialize thread apartment state on main thread
7257         by checking for STAThreadAttribute on entry point.
7258         * object-internals.h: Add apartment_state field to MonoThread.
7259         * threads-types.h: Add unmanaged definition of 
7260         System.Threading.ApartmentState, MonoThreadApartmentState.
7261         
7262         Code is contributed under MIT/X11 license.
7263         
7264 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
7265
7266         * class.c: Fix windows build.
7267         * class-internals.h: Fix windows build.
7268         
7269         Code is contributed under MIT/X11 license.
7270
7271 2007-05-08  Robert Jordan  <robertj@gmx.net>
7272
7273         * process.c (CreateProcess_internal):
7274         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
7275         .CreateNoWindow was specified. Fixes #81496.
7276
7277 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
7278
7279         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
7280         step in implementing IMT, replaced it with two compact arrays
7281         (interfaces_packed and interface_offsets_packed) and a bitmap that
7282         is used for isinst checks (interface_bitmap).
7283
7284         * class.c: (compare_interface_ids): compare function to pass to
7285         bsearch when looking for an interface with a given id.
7286         (mono_class_interface_offset): reimplemented using bsearch on
7287         interfaces_packed, getting the offset from interface_offsets_packed.
7288         (print_implemented_interfaces): utility debugging function.
7289         (setup_interface_offsets): reworked to initialize interfaces_packed,
7290         interface_offsets_packed and interface_bitmap.
7291
7292         * object.c: replaced all accesses to "MonoClass.interface_offsets"
7293         with uses of interfaces_packed and interface_offsets_packed.
7294
7295 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
7296
7297         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
7298         mono_class_interface_offset prototype to wrap all accesses to
7299         "MonoClass.interface_offsets".
7300
7301         * class.c: Implemented mono_class_interface_offset, and wrapped all
7302         accesses to "MonoClass.interface_offsets".
7303
7304         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
7305         "MonoClass.interface_offsets".
7306
7307 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
7308
7309         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
7310         GetMethodFromHandle overloads (bug #78637).
7311
7312 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
7313
7314         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
7315         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
7316
7317 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
7318
7319         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
7320         #81498.
7321
7322         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
7323         gracefully.
7324         (mono_custom_attrs_from_index): Ditto.
7325
7326         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
7327         Fixes #81501.
7328
7329 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
7330
7331         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
7332         is now allocated from a mempool.
7333
7334 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
7335
7336         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
7337         caller holds threads_lock, leading to deadlocks. Fixes #81476.
7338
7339 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
7340
7341         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
7342         mono_loader_clear_error () too late. Fixes #81463.
7343
7344 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
7345
7346         * culture-info-table.h : regenerated.
7347
7348 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
7349
7350         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
7351         is missing.
7352
7353 2007-04-25  Dick Porter  <dick@ximian.com>
7354
7355         * Makefile.am: Put the mingw enforced-optimisation back into the
7356         PLATFORM_WIN32 section.
7357
7358 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
7359
7360         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
7361         patch.
7362
7363         * image.c (mono_image_load_module): New API function to load a module reference.
7364
7365         * image.c (load_modules): Load modules lazily. Fixes #80812.
7366
7367         * class.c (mono_class_from_typeref): Use mono_image_load_module.
7368         
7369         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
7370
7371         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
7372         to mono_image_load_module_dynamic.
7373
7374 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
7375
7376         * marshal.c: Fix calling convention for CCW on non-windows
7377         platforms. STDCALL on windows, CDECL everywhere else to work 
7378         with XPCOM and MainWin COM.
7379         
7380         Code is contributed under MIT/X11 license.
7381
7382 2007-04-23  Martin Baulig  <martin@ximian.com>
7383
7384         Fix #80969.
7385
7386         * loader.c
7387         (method_from_memberref): Added `gboolean *used_context' argument.
7388         (mono_get_method_from_token): Likewise.
7389         (mono_get_method_full): Don't insert the method in the cache when
7390         `used_context' is true.
7391
7392 2007-04-23  Raja R Harinath  <rharinath@novell.com>
7393
7394         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
7395
7396         * reflection.c (mono_reflection_bind_generic_parameters): Don't
7397         create new MonoTypes for returned types.
7398         * class.c (mono_generic_class_get_class): Export mono-internal.
7399         * class-internals.h: Update to changes.
7400
7401 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
7402
7403         * threadpool.c, threadpool.h, icall-def.h: patch from
7404         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
7405
7406 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
7407
7408         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
7409         
7410         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
7411
7412         * threads.c (mono_thread_get_stack_bounds): New helper function.
7413
7414         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
7415         Correctly compute stack bounds when attaching. Fixes #81394.
7416
7417 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
7418
7419         * reflection.c: fix handling of doubles in custom attributes
7420         for the arm-fpa format (bug #81368).
7421
7422 2007-04-18  Raja R Harinath  <rharinath@novell.com>
7423
7424         * reflection.c (assembly_add_win32_resources): Mildly relax an
7425         bounds check to let the end pointer point just past the end of the
7426         allocated buffer.  (may fix #81384)
7427
7428 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
7429
7430         * culture-info-table.h : regenerated.
7431
7432 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
7433
7434         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
7435         the thread is aborted early.
7436
7437 2007-04-05  Dick Porter  <dick@ximian.com>
7438
7439         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
7440         FindFirstFile()/FindNextFile() to find entries.  This lets the
7441         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
7442         81038.
7443
7444         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
7445         the parameters of
7446         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
7447
7448 2007-04-04  Martin Baulig  <martin@ximian.com>
7449
7450         * debug-helpers.c
7451         (mono_method_desc_full_match): Add support for nested classes.
7452
7453 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
7454
7455         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
7456
7457 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
7458
7459         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
7460         waiting for too many threads.
7461
7462 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
7463
7464         * environment.c: Fix return value check on uname so we can get the 
7465         executing version on Solaris operating systems.
7466
7467 2007-03-28  Jb Evain  <jbevain@gmail.com>
7468
7469         * class.c (mono_type_get_name_recurse): Complete the
7470         fix for the creation of assembly qualified names for
7471         pointer types. Fixes #81208.
7472
7473 2007-03-27  Dick Porter  <dick@ximian.com>
7474
7475         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
7476         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
7477         changed.
7478
7479         * threads.c
7480         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
7481         the value of ReleaseMutex().
7482
7483 2007-03-27  Dick Porter  <dick@ximian.com>
7484
7485         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
7486         in little-endian order, not network endian, so must be converted
7487         to host endian here.  Fixes bug 80593.
7488
7489 2007-03-22  Jb Evain  <jbevain@gmail.com>
7490
7491         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
7492         qualified names for pointer types. Fixes #81208.
7493
7494 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
7495
7496         * marshal.c: Add support for PreserveSigAttribute. 
7497         
7498         Code is contributed under MIT/X11 license.
7499
7500 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
7501
7502         * process.c: Fix endianness issues. Fixes #81126.
7503
7504         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
7505         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
7506
7507         * image.c (mono_image_lookup_resource): Make this work on big-endian
7508         machines.Change API contract so the caller needs to free the return value.
7509         
7510         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
7511         API change.
7512         
7513 2007-03-14  Martin Baulig  <martin@ximian.com>
7514
7515         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
7516         mono_type_get_desc() as well.
7517
7518 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
7519
7520         * icall.c:  Fix environ access in VS.  
7521         
7522 2007-03-13  Alp Toker  <alp@atoker.com>
7523
7524         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
7525         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
7526         #63841.
7527
7528 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
7529
7530         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
7531         circular references among dynamic methods. Fixes #81091.
7532
7533         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
7534
7535 2007-03-09  Martin Baulig  <martin@ximian.com>
7536
7537         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
7538
7539 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
7540
7541         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
7542         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
7543         
7544         Code is contributed under MIT/X11 license.
7545         
7546 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
7547
7548         * loader.c: Reapply patch for bug #79424.
7549
7550 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
7551
7552         * metadata.c (mono_type_to_unmanaged): Only convert object to
7553         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
7554
7555 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
7556
7557         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
7558         (and incorrectly set) is_reference field from MonoGenericInst.
7559
7560 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
7561
7562         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
7563         a little earlier.
7564
7565         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
7566
7567         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
7568
7569 2007-03-05  Miguel de Icaza  <miguel@novell.com>
7570
7571         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
7572         FileOptions.1 value to mean "temporary", map that to
7573         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
7574
7575         Fixes 80688
7576
7577 2007-03-03  Marek Habersack  <mhabersack@novell.com>
7578
7579         * appdomain.c: implement MS .Net style shadow copying. Copies of
7580         the assemblies are made in a subdirectory of the dynamic base
7581         directory, the assembly names are preserved.
7582         Copy .mdb and .config files along with the assemblies being shadowed.
7583
7584 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
7585
7586         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
7587         (emit_marshal_handleref): Ditto.
7588
7589         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
7590         on Visual C++. Fixes #80671.
7591
7592 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
7593
7594         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
7595         for clone operations.
7596
7597 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
7598
7599         * marshal.c: Fix warnings.
7600
7601 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
7602
7603         * loader.c: allow case-insensitive matching of the dll name
7604         in dllmap handling when prefixed with "i:".
7605
7606 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
7607
7608         * threads.c: Fix #ifdef for dummy_apc function for VS.
7609
7610 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
7611
7612         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
7613
7614 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
7615         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
7616         giving precedence to the methods with a fully qualified name
7617         (InterfaceName.MethodName) when building the interface sections
7618         of the vtable.
7619
7620 2007-02-16  Dick Porter  <dick@ximian.com>
7621
7622         * threadpool.c (append_job): Fix fast-path array handling, so it's
7623         less likely the array will grow exponentially when the load is
7624         heavy.
7625
7626 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
7627
7628         * metadata-internals.h, loader.c: fix dllmap lookup order
7629         for non-function maps, too, and prepare for fallback code.
7630
7631 2007-02-12  Robert Jordan  <robertj@gmx.net>
7632
7633         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
7634         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
7635         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
7636         GlobalFree. Fixes a part of bug #77075.
7637
7638 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
7639
7640         * loader.c: implemented typedef parent in field memberref.
7641
7642 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
7643
7644         * marshal.c: Fix warnings and remember to call Release on
7645         IUnknown of RCW.
7646         
7647         Code is contributed under MIT/X11 license.
7648
7649 2007-02-10  Miguel de Icaza  <miguel@novell.com>
7650
7651         * class-internals.h: Add MonoHandleRef definition, and
7652         handleref_class to mono_defaults. 
7653
7654         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
7655         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
7656
7657         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
7658         (do nothing on this stage)
7659         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
7660         (emit_marshal_handleref): New method, used for argument handling
7661         of HandleRefs. 
7662
7663 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
7664
7665         * class.c (mono_class_setup_parent): Lazily init com types.
7666         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
7667         init com types.
7668         * object.c (mono_remote_class_vtable): Lazily init com types.
7669         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
7670         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
7671         * domain-internals.h: Expose mono_init_com_types.
7672         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
7673         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
7674         Add support for COM Callable Wrapper marshalling.
7675         * marshal.h: Add icall definitions.
7676         * gc.c: Handle freeing of CCWs in finalizer code.
7677         
7678         Code is contributed under MIT/X11 license.
7679
7680 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
7681
7682         * reflection.c: changed all the signature encoding code to use
7683         a variable-sized buffer.
7684
7685 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
7686
7687         * marshal.c: locking fixes: never take the loader lock
7688         or other runtime locks when holding the marshal lock
7689         (fixes bug#80664).
7690
7691 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
7692
7693         * marshal.c: make the delegate function pointer mapping
7694         work for the moving GC.
7695
7696 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
7697
7698         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
7699         for bug #80618.
7700
7701 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
7702
7703         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
7704         gmodule.
7705
7706 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
7707
7708         * threadpool.c: made the code moving-GC safe.
7709
7710 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
7711
7712         * assembly.c, boehm-gc.c, class-internals.h, class.c,
7713         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
7714         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
7715         warning cleanup.
7716         * reflection.c: warning cleanup, some threading and moving GC fixes.
7717
7718 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
7719
7720         * class.c, loader.c: create the needed Set/Get/Address array methods
7721         as well as the .ctors in mono_class_init (), fixes bug #80567.
7722
7723 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
7724
7725         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
7726         we doesn't decrease its alignment. Should fix the sparc build.
7727
7728 2007-01-24  Dick Porter  <dick@ximian.com>
7729
7730         * socket-io.c
7731         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
7732         Create the returned object if we need to ignore an unsupported
7733         socket option.  Fixes a segfault reported by Atsushi.
7734
7735 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
7736
7737         * class.c, object.c: restrict GC-tracked fields to
7738         UIntPtr fields used inside corlib, so we provide better
7739         type info to the GC and also allow broken packing as in
7740         bug #80580.
7741
7742 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
7743
7744         * sgen-gc.c: removed duplicated function.
7745
7746 2007-01-19  Miguel de Icaza  <miguel@novell.com>
7747
7748         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
7749         value that means that the value is not supported, but that we
7750         should not return a failure, but instead report this as a
7751         successful operation.
7752
7753 2007-01-19  Raja R Harinath  <rharinath@novell.com>
7754
7755         Fix tests/bug79956.2.il
7756         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
7757         (mono_generic_class_get_class): If the generic definition in an
7758         enum, copy over other fields related to it.
7759
7760 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
7761
7762         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
7763         genericinst enums (bug #79215).
7764
7765 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
7766         * class.c: Fix bug 80307.
7767
7768 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
7769
7770         * image.c: if the file table is not present, try to load
7771         all the modules, since we don't have info about them
7772         having or not metadata (bug #80517).
7773         * assembly.c: allow mono_assembly_load_references () to
7774         work for netmodules.
7775
7776 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
7777
7778         * image.c, metadata-internals.h, object.c: execute module
7779         cctors when running on the 2 runtime if present (bug #80487).
7780
7781 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
7782
7783         * icall.c: optimized InitializeArray() on bigendian.
7784
7785 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
7786
7787         * icall.c: fix for the broken ARM FPA double format.
7788
7789 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
7790
7791         * icall.c: handle endian issues for r4 and r8 types, too, in
7792         the InitializeArray() icall.
7793
7794 2007-01-15  Miguel de Icaza  <miguel@novell.com>
7795
7796         * loader.c (mono_loader_error_prepare_exception): Clear the error
7797         once we have extracted the information from it, do this before we
7798         call into the JIT's class loading mechanisms.
7799
7800         * object.c (mono_class_create_runtime_vtable): Do not clear the
7801         loader error before calling mono_class_get_exception_for_failure
7802         as the loader error is needed inside
7803         mono_class_get_exception_for_failure to throw the error (thinko).
7804
7805         Fixes #80521
7806         
7807 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
7808
7809         * reflection.c: align fields rva data so it's faster to load at
7810         runtime.
7811
7812 2007-01-12  Raja R Harinath  <rharinath@novell.com>
7813
7814         Prepare to simplify GenericMethod handling.
7815         * class-internals.h (mono_method_get_context): New accessor function.
7816         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
7817         rather than directly accessing '->context' field.
7818
7819         * class-internals.h (_MonoGenericParam.method): Move ...
7820         (_MonoGenericContainer): ... here.  Add into union with klass field.
7821         * class.c, icall.c, loader.c, metadata.c, reflection.c:
7822         Update to changes.
7823
7824 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
7825
7826         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
7827         the wrapper type enum and reduce relocations.
7828
7829 2007-01-12  Raja R Harinath  <rharinath@novell.com>
7830
7831         * reflection.c (inflate_mono_method): Reuse method instantiation
7832         from the generic method, if available.
7833
7834 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
7835
7836         * marshal.c (emit_marshal_variant): Fix conv_arg
7837         type in last commit, based on whether parameter is byref.
7838         
7839 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
7840
7841         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
7842         marshalling.
7843         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
7844         MONO_TYPE_OBJECT back for VARIANT support.
7845
7846 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
7847
7848         * marshal.c, marshal.h, icall-def.h: Implement 
7849         Marshal.ReAllocCoTaskMem.
7850
7851 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
7852
7853         * marshal.c: memory retention fixes: use the proper
7854         image cache for runtime_invoke method lookups.
7855
7856 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
7857
7858         * mempool.c: added code to help debug mempool allocations.
7859
7860 2007-01-11  Dick Porter  <dick@ximian.com>
7861
7862         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
7863         support (experimenting with faking it with IP_MTU_DISCOVER for
7864         systems that don't have IP_DONTFRAGMENT.)
7865         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
7866         icall.
7867
7868         * icall-def.h: new System.Net.Sockets.Disconnect icall.
7869
7870         * socket-io.h: Add new fields to MonoSocketAsyncResult
7871         corresponding to the new ones in Socket.cs.
7872
7873 2007-01-11  Raja R Harinath  <rharinath@novell.com>
7874
7875         Fix IronPython regression mentioned in #80249
7876         * metadata.c (do_mono_metadata_parse_generic_class): Clear
7877         'cached_context' field, since it may have been initialized as a
7878         side-effect of metadata parsing.
7879
7880         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
7881         (_MonoGenericClass.cached_class): Move here and rename from lone
7882         remaining field of ...
7883         (_MonoInflatedGenericClass): ... this.  Remove.
7884         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
7885         to changes.
7886
7887         Fix mcs/tests/test-128.cs regression.
7888         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
7889         2007-01-10 change below.
7890         [MONO_TYPE_OBJECT]: Recurse into array case.
7891
7892 2007-01-11  Raja R Harinath  <harinath@gmail.com>
7893
7894         * class-internals.h (mono_get_inflated_generic_class): Remove.
7895         * class.c (mono_get_inflated_generic_class): Remove.
7896         (mono_generic_class_get_class): Rename from
7897         mono_class_create_generic.
7898         (mono_class_from_mono_type) [GENERICINST]: Use it.
7899         * reflection.c, metadata.c: Update to changes.  Use
7900         'mono_class_from_mono_type'.
7901
7902 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
7903
7904         * reflection.c: use passed type when encoding an array element
7905         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
7906
7907 2007-01-09  Robert Jordan  <robertj@gmx.net>
7908
7909         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
7910         result arguments (someDelegate.EndInvoke (unrelatedAres)).
7911         Fixes bug #80392.
7912
7913 2007-01-09  Raja R Harinath  <rharinath@novell.com>
7914
7915         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
7916
7917         * object.c (set_value): Avoid aliasing between type->data.klass
7918         and type->data.generic_class.
7919
7920         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
7921
7922 2007-01-08  Raja R Harinath  <rharinath@novell.com>
7923
7924         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
7925         between type->data.klass and type->data.generic_class.
7926
7927 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
7928
7929         * marshal.c: In MS.NET, StringBuilder objects are not copied by
7930         value in out parameters.
7931
7932 2007-01-08  Raja R Harinath  <rharinath@novell.com>
7933
7934         Simplify invariant for MonoGenericClass::klass field.
7935         * class.c (mono_class_create_generic): Verify 'klass' is null.
7936         * metadata.c (do_mono_metadata_parse_generic_class): Don't
7937         initialize 'klass' field.
7938
7939 2007-01-05  Raja R Harinath  <rharinath@novell.com>
7940
7941         Ongoing work to avoid redundant data and simplify invariants.
7942         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
7943         'generic_class', and change type to a GenericInst.
7944         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
7945         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
7946
7947 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
7948
7949         * class.c : skip io-layer under PLATFORM_WIN32.
7950
7951 2007-01-03  Tor Lillqvist  <tml@novell.com>
7952
7953         Fix #80305: In a bundled executable, look in the bundled exe
7954         assembly to determine the runtime version. Add the possibility to
7955         bundle also the machine.config file.
7956         
7957         * assembly.c (mono_assembly_open_from_bundle): Make
7958         non-static. Allow being called even if we have no bundled
7959         assemblies, and return NULL right away in that case.
7960
7961         * domain-internals.h: Declare mono_assembly_open_from_bundle()
7962         here.
7963
7964         * domain.c (app_config_parse): Take an assembly exe file name as
7965         parameter instead of a config file name. Check for a bundled
7966         config file for that assembly by calling
7967         mono_config_string_for_assembly_file() (see below) before looking
7968         for one in the file system.
7969         (get_runtimes_from_exe): Corrsponding change to call of
7970         app_config_parse().
7971         (get_runtimes_from_exe): Check for bundled assembly exe file first
7972         by calling mono_assembly_open_from_bundle(). If no bundled
7973         assembly exe file is found, call mono_image_open() as before to
7974         look it up in the file system.
7975
7976         * mono-config.c: Add variable bundled_machinec_onfig.
7977         (mono_config_string_for_assembly_file): New function.
7978         (mono_config_for_assembly): Move code snippet that looks for a
7979         bundled assembly .config file into the above new function. Call
7980         it.
7981         (mono_register_machine_config, mono_get_machine_config): New
7982         functions to set and retrieve
7983
7984         * assembly.h: Declare mono_register_machine_config().
7985
7986         * mono-config.h: Declare mono_get_machine_config() and
7987         mono_config_string_for_assembly_file().
7988
7989         * icall.c: No declaration of environ necessary on Win32. It is
7990         declared (as a macro expanding to a function call) in stdlib.h.
7991         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
7992         New internal mono function. Returns the value of
7993         mono_get_machine_config() as a Mono string.
7994
7995         * icall-def.h: Add get_bundled_machine_config().
7996
7997 2007-01-04  Raja R Harinath  <rharinath@novell.com>
7998
7999         Remove redundant field
8000         * class-internals.h (_MonoGenericContext.container): Remove field.
8001         * loader.c (mono_method_get_signature_full): Don't parse a
8002         "container" for a signature parse when the signature is inflated
8003         immediately.
8004         (method_from_methodspec): Likewise, for a generic_inst.
8005         * class.c, metadata.c, reflection.c: Update to changes.
8006
8007 2006-01-04  Raja R Harinath  <rharinath@novell.com>
8008
8009         * class-internals.h (_MonoGenericClass): Rename 'context' field to
8010         'cached_context', and change semantics -- it starts off NULL, and
8011         is initialized on demand.
8012         * class.c (mono_generic_class_get_context): New accessor to
8013         replace 'context' field accesses.
8014         (mono_class_get_context): New helper.
8015         (*): Update to changes.
8016         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
8017
8018 2007-01-03  Miguel de Icaza  <miguel@novell.com>
8019
8020         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
8021         before the memcpy.   Fixes Marshal2 regression.
8022
8023 2007-01-02  Jb Evain  <jbevain@gmail.com>
8024
8025         * blob.h: add a MONO_TYPE_ENUM definition
8026         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
8027         fix the encoding of arrays of enums in custom attributes.
8028
8029         Fixes #79666.
8030
8031 2007-01-01  Miguel de Icaza  <miguel@novell.com>
8032
8033         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
8034         string is null terminated, but only cut the string short if it
8035         overflows the buffer.   
8036         
8037         (mono_string_to_byvalstr): Also fix this routine.   The code here
8038         was not properly terminating a string (it was only terminated
8039         because of the previous catch-all memset). 
8040
8041         I left the memset, because I do not know if applications expect
8042         the runtime to clear this region. 
8043
8044         Fixes #79944.
8045
8046         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
8047         Clear the error before returning to unmanaged code to prevent the
8048         runtime from being confused later on (fixes  80420).
8049         (ves_icall_type_from_name): Always call mono_loader_clear_error
8050         after parsing a type that could have failed.
8051         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
8052
8053         * loader.c (mono_loader_clear_error): Fix indentation.
8054
8055 2006-12-28  Martin Baulig  <martin@ximian.com>
8056
8057         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
8058
8059 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
8060
8061         * reflection.c: patch from Rolf Bjarne Kvinge to fix
8062         getting a token for an EnumBuilder.
8063
8064 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
8065
8066         * reflection.c: be more careful in case resource generation
8067         fails to create the data array.
8068
8069 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
8070
8071         * sgen-gc.c: write barrier for clone and fix unregister handles.
8072
8073 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
8074
8075         * reflection.c: some fixes needed in the generics code for the moving GC.
8076
8077 2006-12-22  Robert Jordan  <robertj@gmx.net>
8078
8079         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
8080         account. Fixes bug #80299.
8081
8082 2006-12-21  Raja R Harinath  <rharinath@novell.com>
8083
8084         Fix WaitHandle usage in delegates.
8085         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
8086         * object.c (mono_wait_handle_new): Use the property set method to
8087         initialize the handle.
8088         (mono_wait_handle_get_handle): New.
8089         * threadpool.c (mono_async_invoke): Use it.
8090         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
8091         Likewise.
8092         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
8093
8094 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
8095
8096         * marshal.c (emit_marshal): Call emit_marshal_variant and
8097         emit_marshal_com_interface when applicable.
8098         (emit_marshal_variant, emit_marshal_com_interface): Add
8099         methods for this case and remove if's from emit_marshal_object.
8100         
8101 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
8102
8103         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
8104
8105 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
8106
8107         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
8108         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
8109         and GlobalFree on Windows. Remove FIXME.
8110
8111 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
8112
8113         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
8114         implementation for managed objects.
8115
8116 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
8117
8118         * object.c: implemented code to be used for checking
8119         that no reference field overlaps with non-references.
8120
8121 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8122
8123         * threadpool.c: fix queue code to be compatible with the
8124         moving GC.
8125
8126 2006-12-18  Miguel de Icaza  <miguel@novell.com>
8127
8128         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
8129         in structures by throwing ArgumentNullException.
8130
8131         (emit_marshal_safehandle): Also when they are null parameters.
8132
8133         (emit_marshal_safehandle): Add support for ref
8134         SafeHandles parameters
8135
8136 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
8137
8138         * profiler.c: updated to use the mono-dl API instead of
8139         gmodule.
8140
8141 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8142
8143         * profiler.c: updated to use the mono-dl dynamic loading
8144         API instead of gmodule.
8145
8146 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
8147
8148         * profiler.c: use readlink, older versions of glib don't have
8149         g_file_read_link ().
8150
8151 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
8152
8153         * profiler.c: try to detect the path to mono if libc fails to provide
8154         a useful name (bug #80286).
8155
8156 2006-12-16  Raja R Harinath  <rharinath@novell.com>
8157
8158         Fix #80242
8159         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
8160         instance, use the generic type definition instead.
8161         (ves_icall_Type_GetNestedTypes): Likewise.
8162         * class.c (mono_class_create_generic): Always set the
8163         nested_classes of a generic instance to NULL, even if the generic
8164         type definition has nested types.
8165
8166 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
8167
8168         * marshal.c (mono_string_from_bstr): Revert previous Windows change
8169         and fix on Linux.
8170         
8171 2006-12-15  Miguel de Icaza  <miguel@novell.com>
8172
8173         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
8174         my arguments were in the wrong order.   I also fixed the Windows
8175         version which seems to have had the same issue.
8176
8177         (mono_free_bstr): On Unix, this is g_free.
8178         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
8179         conversions (for the tests in corlib to pass).
8180
8181 2006-12-14  Miguel de Icaza  <miguel@novell.com>
8182
8183         * marshal.c (emit_ptr_to_object_conv): For now, ignore
8184         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
8185         exception if a ref SafeHandle in a struct has changed).
8186         
8187         (emit_struct_conv): Do not perform layout checks for classes
8188         derived from SafeHandle, as those are specially handled. 
8189
8190         (emit_object_to_ptr_conv): Add support for
8191         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
8192
8193         (emit_marshal_safehandle): Implement conversion of return values
8194         of safehandles (MARSHAL_ACTION_CONV_RESULT).
8195         
8196         * threads.c: WaitHandle now is compiled with two different handles
8197         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
8198         for 2.0.
8199         
8200         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
8201         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
8202         these routines to cope with both kinds of fields.
8203
8204 2006-12-12  Miguel de Icaza  <miguel@novell.com>
8205
8206         * metadata.c (mono_type_to_unmanaged): Handle the case where
8207         type->data.klass is a SafeHandle, and in that case, return the
8208         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
8209         MONO_MARSHAL_CONV_SAFEHANDLE. 
8210
8211 2006-12-11  Miguel de Icaza  <miguel@novell.com>
8212
8213         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
8214         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
8215         calling emit_marshal_object.
8216
8217         (emit_marshal_safehandle): Implement marshalling of
8218         SafeHandle parameters (no ref support yet).
8219
8220         (MarshalAction): Document the defines as I implement
8221         them for SafeHandle.
8222
8223         (emit_marshal_object): indentation police.
8224
8225         * class-internals.h: Define MonoSafeHandle.
8226         Add safehandle_class to MonoDefaults type.
8227
8228         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
8229         list of classes to check for fields. 
8230
8231         * domain.c (mono_init_internal): Add SafeHandle to the list of
8232         mono_defaults loaded.
8233
8234 2006-12-15  Raja R Harinath  <rharinath@novell.com>
8235
8236         Fix #80253
8237         * reflection.c (mono_reflection_bind_generic_parameters): If the
8238         generic type definition is a type builder, ensure that it is fully
8239         initialized before instantiating it.  Kill some dead code.
8240
8241 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
8242
8243         * object.c: clear the loader_error () before loading
8244         more metadata stuff (bug #80258).
8245
8246 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
8247
8248         * icall.c, icall-defs.h: type modifiers icalls for
8249         parameters and properties.
8250
8251 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
8252
8253         * object.c, icall.c: fixed warnings.
8254
8255 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
8256
8257         * marshal.c: fixed a couple of leaks and coding style in a few places.
8258
8259 2006-12-08  Dick Porter  <dick@ximian.com>
8260
8261         * process.c: Cope with NULL ProcessStartInfo arguments on windows
8262         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
8263         80173.
8264
8265 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
8266
8267         * process.c: ProcessStartInfo may have only filename set and
8268         arguments can be NULL.
8269
8270 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
8271
8272         * icall.c: fix leak found by Robert Jordan.
8273
8274 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
8275
8276         * marshal.c, marshal.h: generate managed method to access an element
8277         of a multi-dimensional array.
8278
8279 2006-11-30  Paolo Molaro (lupus@ximian.com)
8280
8281         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
8282
8283 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8284
8285         * icall.c: back out GetFields () fix until the serialization code is
8286         fixed to not depend on the incorrect behaviour.
8287
8288 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
8289
8290         * profiler.c: provide defaults if none are set.
8291
8292 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
8293
8294         * Makefile.am, attrdefs.h: new public header file with
8295         constants for attributes for use by embedders.
8296
8297 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
8298
8299         * icall.c: GetFields () fix for bug #80064.
8300
8301 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
8302
8303         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
8304         removed long unused icalls.
8305
8306 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
8307   
8308         * marshal.c: 
8309                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
8310                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
8311                 can be generated without a delegate class.
8312                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
8313         
8314         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
8315
8316 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8317
8318         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
8319         #80069.
8320
8321 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
8322
8323         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
8324         icall-def.h: added icalls needed by System.GC.
8325
8326 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
8327
8328         * loader.c: ensure the class in catch clauses is handled
8329         correctly for generics methods (fixes bug#79980).
8330
8331 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
8332
8333         * monitor.h, monitor.c: added mono_locks_dump () function
8334         to help debug deadlocks involving managed locks.
8335
8336 2006-11-13  Dick Porter  <dick@ximian.com>
8337
8338         * file-io.c (get_file_attributes): If the file is a symlink try
8339         and get the stat data for the target, but also add the
8340         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
8341         the specs for the windows symlink support, but will probably have
8342         to be reworked when I have test data from a vista machine.  Fixes
8343         bug 79887.
8344
8345 2006-11-13  Dick Porter  <dick@ximian.com>
8346
8347         * gc.c (mono_domain_finalize): 
8348         * marshal.c (mono_delegate_begin_invoke): 
8349         * threadpool.c (socket_io_init, mono_thread_pool_init)
8350         (mono_thread_pool_finish): 
8351         * monitor.c (mono_monitor_try_enter_internal): 
8352         * threads.c (mono_thread_resume, mono_thread_init)
8353         (mono_thread_suspend_all_other_threads)
8354         (mono_thread_execute_interruption): 
8355         * appdomain.c (mono_domain_unload): Check for NULL error returns
8356         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
8357         75733.
8358
8359 2006-11-11  Miguel de Icaza  <miguel@novell.com>
8360
8361         * process.c
8362         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
8363         Only close the handle if the value of the handle is not
8364         INVALID_HANDLE_VALUE.  This just makes the process a bit more
8365         robust.
8366
8367         Improvement for #75733, so that we do not run into this problem. 
8368
8369         
8370         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
8371         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
8372         internal variables.  Fixes #79462 
8373         
8374
8375 2006-11-09  Dick Porter  <dick@ximian.com>
8376
8377         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
8378         Use poll() not select().  Fixes bug 79397.
8379
8380 2006-11-09  Raja R Harinath  <rharinath@novell.com>
8381
8382         Fix #79872
8383         * assembly.c (mono_assembly_load_from_full): Check that the given
8384         image has an assembly manifest.
8385
8386 2006-11-09  Ankit Jain  <jankit@novell.com>
8387
8388         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
8389         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
8390         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
8391
8392 2006-11-07  Dick Porter  <dick@ximian.com>
8393
8394         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
8395         Put the old resolver behaviour back for pre-2.0 profiles.
8396
8397 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
8398
8399         * threadpool.c: precise GC and locking fixes.
8400
8401 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
8402
8403         * class.c: don't load types that have an explicit unaligned
8404         managed reference. Provide better info in the TypeLoad exception.
8405         Part of the fix for bug #79744.
8406         * object.c: use the correct check for class type load issues.
8407
8408 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
8409
8410         * class.c: enforce alignment of fields with managed references
8411         even when Pack=1 is forced by the user (bug #77788).
8412
8413 2006-11-03  Dick Porter  <dick@ximian.com>
8414
8415         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
8416         If the address reverse lookup fails, return it as the hostname
8417         anyway.  Fixes bug 79721.
8418
8419 2006-11-03  Dick Porter  <dick@ximian.com>
8420
8421         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
8422         Fix build on Windows.
8423
8424 2006-11-02  Dick Porter  <dick@ximian.com>
8425
8426         * icall-def.h: 
8427         * object-internals.h: 
8428         * exception.c (mono_get_exception_thread_interrupted): 
8429         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
8430         Fixes bug 74525.
8431
8432         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
8433         Check for pending Thread.Interrupt.
8434
8435 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
8436         * loader.c: Fixed bug 79684.
8437
8438 2006-10-27  Dick Porter  <dick@ximian.com>
8439
8440         * file-io.c (get_file_attributes): Force symlinks to directories
8441         to be returned as a regular file.  Fixes bug 79733.
8442 2006-10-26  Dick Porter  <dick@ximian.com>
8443
8444         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
8445         CreateFile to open a directory then we need to set the
8446         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
8447
8448 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
8449
8450         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
8451         friends.
8452
8453 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
8454
8455         * sgengc.c: small cleanup of timer code.
8456
8457 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
8458
8459         * sgen-gc.c: fix some warnings and start adding support for
8460         complete object removal on domain unload.
8461
8462 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
8463
8464         * assembly.c: build_assembly_name should not consider a version
8465         number without build or revision number invalid. Fixes bug #79715.
8466
8467 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
8468
8469         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
8470         call kernel32 function OutputDebugString directly.
8471         
8472         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
8473         
8474 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
8475
8476         * reflection.c: small cleanup, using a function to insert a MonoString
8477         in the string heap.
8478
8479 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
8480
8481         * reflection.c: moving GC fixes.
8482
8483 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
8484
8485         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
8486         all the objects with finalizers belonging to an unloading appdomain.
8487
8488 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
8489
8490         * sgen-gc.c: added ability to allocate even when the nursery is fully
8491         pinned and fixed a couple of bugs.
8492
8493 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
8494
8495         * threads.h: Revert the last change for now.
8496
8497         * threads.h (mono_thread_get_pending_exception): Rename this to
8498         mono_thread_get_undeniable_exception ().
8499
8500 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
8501
8502         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
8503         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
8504         when fname does not refer to valid assembly. This result in a more
8505         meaningful error message.
8506         * exception.c: added mono_get_exception_bad_image_format2 which 
8507         constructs a BadImageFormatException using the ctor taking a custom
8508         message and the file name. Passing in a NULL msg results in a default
8509         message.
8510         * exception.h: define mono_get_exception_bad_image_format2 function.
8511         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
8512         when file name pointed to an invalid IL image. Use 
8513         mono_get_exception_file_not_found2 to construct FileNotFoundException,
8514         as this results in a more meaningful error message.
8515
8516 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
8517
8518         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
8519         #79465.
8520
8521 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
8522
8523         * metadata.c (mono_type_size): Change the align parameter to guint32 for
8524         consistency with the other _size functions.
8525         (mono_type_stack_size): Ditto.
8526
8527         * class.c object.c icall.c: Fix warnings caused by the above change.
8528
8529         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
8530
8531         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
8532
8533         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
8534
8535 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
8536
8537         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
8538         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
8539         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
8540         threadpool.h, threads-types.h: mark more internal functions.
8541
8542 2006-10-11  Dick Porter  <dick@ximian.com>
8543
8544         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
8545         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
8546         reproduce the bug even before applying the fix.)
8547
8548 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
8549
8550         * reflection.c: allow retrieving attributes for arguments in generic
8551         methods (bug #79241).
8552
8553 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
8554
8555         * debug-mono-symfile.c: properly check fopen () result (found by
8556         coverity).
8557
8558 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
8559
8560         * reflection.c: make error message clearer and fixed two
8561         issuelets found by Coverity.
8562
8563 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
8564
8565         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
8566
8567 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
8568
8569         * object-internals.h, gc-internal.h, profiler-private.h:
8570         mark internal functions.
8571
8572 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
8573
8574         * reflection.c: put data in the text section.
8575         * icall.c: recognize more types in type_from_typename ().
8576         * process.c, marshal.c: added some GC FIXMEs.
8577
8578 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
8579
8580         * loader.c: check for NULL before initializing.
8581
8582 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
8583
8584         * gc.c (finalizer_thread): Use a non-alertable wait here.
8585
8586         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
8587         until the correct solution is found.
8588
8589 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
8590
8591         * reflection.c (mono_module_get_object): Avoid an assert when operating on
8592         modules with no metadata. Fixes #79596.
8593
8594         * image.c (load_metadata_ptrs): Put back the error message when
8595         the #- heap is encountered since the support is not complete yet.
8596
8597 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
8598
8599         * gc.c: do not allow the user to SuppressFinalize () a
8600         delegate because it would leak the trampoline if present.
8601
8602 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
8603
8604         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
8605         PropertyPtr table.
8606
8607 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
8608
8609         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
8610
8611         * metadata.c (mono_metadata_get_param_attrs): Ditto.
8612
8613         * row-indexes.h: Add definitions for *Ptr tables.
8614
8615         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
8616
8617         * metadata.c (mono_metadata_translate_token_index): New helper function to
8618         translate table indexes used in uncompressed metadata.
8619         (mono_metadata_decode_table_row): Ditto.
8620         (mono_metadata_decode_table_row_col): Ditto.
8621
8622         * metadata.c: Add table schema for *Ptr tables.
8623
8624         * class.c loader.c: Use the new helper function to access the affected metadata
8625         tables.
8626         
8627         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
8628         #38532.
8629         
8630 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
8631
8632         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
8633         sequences which can be unbounded in size. Fixes #79583.
8634
8635 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
8636
8637         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
8638         static initialization.
8639
8640         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
8641
8642         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
8643
8644         * domain.c (mono_domain_free): Free up type_init_exception_hash.
8645
8646         * object.c (mono_runtime_class_init): Implement correct semantics when a static
8647         ctor fails, i.e. throw the same exception on subsequent accesses.
8648         
8649 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
8650
8651         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
8652         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
8653         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
8654         Handle marshalling of interfaces and VARIANTs contained in structs.
8655         
8656         Code is contributed under MIT/X11 license.
8657         
8658 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
8659
8660         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
8661         
8662         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
8663         mempool.
8664
8665 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8666
8667         * console-io.c: ignore previous SIGINT handler.
8668
8669 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
8670
8671         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
8672         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
8673         #79460, #79461, #79485.
8674
8675         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
8676
8677         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
8678         #79217.
8679
8680 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
8681
8682         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
8683         could be generated from it.
8684
8685 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
8686
8687         * rand.c: fix read loop to correctly handle EINTR.
8688
8689 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
8690
8691         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
8692         internal calls are defined to keep methods closer to the declaring
8693         type and allow a significant reduction in runtime relocations and
8694         memory usage.
8695
8696 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
8697
8698         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
8699         exception message to have FileNotFoundException use the default
8700         assembly load error message. Fixes bug #79426.
8701         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
8702
8703 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8704
8705         * threadpool.c: (start_thread_or_queue) use the root domain when
8706         creating the thread instead of the async object one.
8707
8708 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
8709
8710         * class.c, object.c, class-internals.h, reflection.c:
8711         for arrays, store element_size inside MonoClass (speedup
8712         for array object creation).
8713
8714 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
8715
8716         * icall.c: fixed CodeBase to use the file name and not the module
8717         name (bug #79365).
8718
8719 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
8720
8721         * mono-debug.c, mono-debug.h: export find_method as
8722         mono_debug_find_method ().
8723
8724 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
8725
8726         * debug-helpers.c, class-internals.h: added a few functions useful
8727         when debugging under gdb.
8728
8729 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8730
8731         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
8732         characters that need special handling.
8733
8734 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
8735
8736         * mono-config.c: make the os/cpu specification more flexible,
8737         allowing lists and negation.
8738
8739 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
8740
8741         * marshal.c: COM Interop fixes. Handle case where method->klass.
8742         is interface. Handle BSTR/MonoString when null. Use CDECL as 
8743         calling convention on non-windows platforms. This is for
8744         compatibility with XPCOM and MainWin COM.
8745         
8746         Code is contributed under MIT/X11 license.
8747         
8748
8749 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
8750
8751         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
8752         correctly. Fixes #79217.
8753
8754         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
8755
8756 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
8757
8758         * mono-config.c: allow both an os and cpu attribute for dllmap
8759         and dllentry elemnets to enable a single config file to be used
8760         for multiple architectures.
8761
8762 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
8763
8764         * loader.c: MonoLoaderError was cleared too soon on load failure.
8765         Fixes bug #79424.
8766
8767 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
8768
8769         * icall.c: use the defining class vtable when accessing a
8770         static field, not a pobblibly derived class.
8771
8772 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
8773
8774         * icall.c string-icalls.c: Remove references to unicode.h.
8775
8776         * unicode.h unicode.c Makefile.am: Remove these unused source files.
8777
8778         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
8779
8780         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
8781         indicating the image where custom marshaller types should be looked up.
8782         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
8783         custom marshallers, instead of corlib. Fixes #79425.
8784
8785 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
8786
8787         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
8788
8789 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
8790
8791         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
8792         Implement Environment.ProcessorCount.
8793         
8794         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
8795         Implement Environment.ProcessorCount.
8796         
8797         * icall.c: 
8798         Add Environment.ProcessorCount icall.
8799         
8800         Patch by Jason McFall.
8801
8802 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8803
8804         * assembly.c: don't append .exe/.dll when the filename already contains
8805         one of those extensions.
8806
8807 2006-09-12  Martin Baulig  <martin@ximian.com>
8808
8809         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
8810         to array interfaces.
8811
8812 2006-09-11  Martin Baulig  <martin@ximian.com>
8813
8814         * reflection.c (mono_image_build_metadata): Create the
8815         MethodImpl's after emitting all types and methods, so we don't
8816         need another fixup pass for them.
8817
8818 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
8819
8820         * class.c (mono_class_from_name_case): Fix regression introduced by the last
8821         change.
8822
8823 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
8824
8825         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
8826         unload.
8827
8828 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
8829
8830         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
8831         args is not set. Fixes #78926.
8832
8833 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
8834
8835         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
8836
8837         * image.c (load_class_names): Move this to class.c, and rename it to 
8838         'mono_image_init_name_cache'.
8839         (load_modules): Fix a warning.
8840
8841         * class.c icall.c image.c: Initialize image->name_cache lazily.
8842
8843         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
8844         on its name using information in the AOT file.
8845
8846         * class.c (mono_class_from_name): Use the new hook function.
8847
8848 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
8849
8850         * reflection.c (mono_param_get_objects): Handle enum default parameter values
8851         correctly.
8852
8853         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
8854         Fixes #79289.
8855         
8856 2006-09-06  Martin Baulig  <martin@ximian.com>
8857
8858         * icall.c (mono_lookup_internal_call): Small fix.
8859
8860 2006-09-05  Raja R Harinath  <rharinath@novell.com>
8861
8862         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
8863         double g_free.
8864
8865 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
8866
8867         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
8868         when --debug is specified.
8869
8870 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
8871
8872         * class.c (setup_generic_array_ifaces): Fix a warning.
8873
8874 2006-09-04  Miguel de Icaza  <miguel@novell.com>
8875
8876         * Temporarily remove the patch to assemly.c that checks the
8877         assembly versions as it breaks our gacutil.
8878
8879 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
8880
8881         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
8882
8883         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
8884         a net 1.0 runtime.
8885
8886         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
8887         created using the default ctor. Fixes #79152.
8888         (mono_string_builder_to_utf16): Ditto.
8889
8890 2006-09-01  Martin Baulig  <martin@ximian.com>
8891
8892         Fix handling of the generic array interfaces.
8893
8894         * class-internals.h
8895         (MonoDefaults): Removed `generic_array_class' and added
8896         `generic_ilist' class.
8897
8898         * class.c
8899         (mono_bounded_array_class_get): Add the new generic array interfaces.
8900         (setup_generic_array_ifaces): New static method; create vtable
8901         entries for each method in the generic array interfaces.
8902
8903         * metadata.c
8904         (select_container): Allow "parent-less" generic methods.
8905
8906         * marshal.c
8907         (mono_marshal_get_generic_array_helper): New public method.
8908
8909         * icall.c
8910         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
8911         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
8912         moved the interncall into System.Array.
8913
8914 2006-09-01  Raja R Harinath  <rharinath@novell.com>
8915
8916         A few more cases of avoiding work on types with ->byref set.
8917         Has the real fix for #79238
8918         * icall.c (is_generic_parameter): New helper.
8919         (ves_icall_Type_GetGenericParameterPosition): Use it.
8920         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
8921         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
8922         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
8923         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
8924         reference types.
8925         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
8926         reference types.
8927         (ves_icall_Type_get_IsGenericInstance): Likewise.
8928         (ves_icall_Type_get_IsGenericType): Likewise.
8929
8930 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
8931
8932         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
8933         class if possible.
8934
8935         * mempool.h (mono_mempool_get_allocated): New helper function.
8936
8937         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
8938         change.
8939
8940         * mempool.c: Fix warnings and the calculation of stats.
8941
8942         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
8943
8944         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
8945
8946         * loader.c (mono_get_method_from_token): Update method_count stat.
8947
8948         * class-internals.h (MonoStats): Add some stats.
8949
8950 2006-08-31 Robert Jordan  <robertj@gmx.net>
8951
8952         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
8953         with managed variants.
8954         All code is contributed under the MIT/X11 license.
8955         
8956 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
8957
8958         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
8959         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
8960
8961         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
8962
8963         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
8964         with cycles in classes.
8965
8966         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
8967
8968         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
8969         missing a [MarshalAs] directive. Fixes #79203.
8970
8971         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
8972         klass->marshal_info. Fixes #79217.
8973
8974 2006-08-30  Martin Baulig  <martin@ximian.com>
8975
8976         Committing a patch from Joachim Ante <joe@otee.dk>:
8977         Add support for binary data symbol stores.
8978
8979         * debug-mono-symfile.c
8980         (mono_debug_open_mono_symbol_file): Renamed into
8981         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
8982         arguments.
8983
8984         * mono-debug.c
8985         (mono_debug_open_image): Added `raw_contents' and `size' args.
8986         (mono_debug_init_2_memory): New public function.
8987
8988 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
8989
8990         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
8991
8992 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8993
8994         * appdomain.c: implement support for ShadowCopyFiles.
8995
8996 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
8997
8998         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
8999         when value is NULL (and should remove CID #51).
9000
9001 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9002
9003         * image.c: moved 2 functions to ../utils.
9004
9005 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
9006
9007         * gc.c: cope with the target object of a GC handle being NULL
9008         (bug #78877).
9009
9010 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
9011
9012         * class.c: recursively check parent's explicit implementations
9013         of interface methods (fixes bug #79125).
9014
9015 2006-08-19  Miguel de Icaza  <miguel@novell.com>
9016
9017         * filewatcher.c: Avoid warnings when building, do not redefine
9018         constants that are defined.
9019
9020         Remove warnings.
9021
9022 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9023
9024         * image.c: don't fail when the link points to an absolute path.
9025
9026 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
9027
9028         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
9029         Fix CID #3.
9030
9031 2006-08-17  Miguel de Icaza  <miguel@novell.com>
9032
9033         * image.c (full_path): A new method used to obtain the actual path
9034         of an assembly even in the presence of symbolic links.  
9035
9036         This is necessary for the case where we are running a binary that
9037         has been GACed, but we are using the "published" path name
9038         ($prefix/mono/1.0/blah.exe) which happens to point to the real
9039         file in the GAC.
9040
9041         This was the source of the failure for the `xsp' command with the
9042         recent AppDomain changes, as far as the runtime was concerned,
9043         there were two different assemblies: $prefix/mono/1.0/blah.exe and
9044         $prefix/mono/gac/blah/version/blah.exe.
9045
9046         (do_mono_image_open): use full path
9047
9048 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9049
9050         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
9051
9052 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
9053
9054         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
9055         domain_id is supplied. Fix CID #241 and corlib's unit tests.
9056
9057 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9058
9059         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
9060         small structures. Fixes #78990.
9061
9062 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9063
9064         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
9065
9066         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
9067
9068 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9069
9070         * appdomain.c:
9071         * marshal.c: don't load all the assemblies from a domain into newly
9072         created ones. The new domains might have different rules and load
9073         assemblies from different locations. Fixes bug #76757.
9074
9075         Patch by Lluis. Conflicts resolved by Brian Crowell.
9076
9077 2006-08-16  Alp Toker  <alp@atoker.com>
9078
9079         * socket-io.c: First half of the fix for #79084.
9080         Set sa_size to the length of the content, not that of the struct.
9081         Don't add NULL suffix to the content, this should be done in
9082         managed code if needed.
9083
9084 2006-08-14  Raja R Harinath  <rharinath@novell.com>
9085
9086         Fix part of #79012
9087         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
9088         mono_metadata_parse_type returns NULL.
9089
9090 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
9091
9092         * normalization-tables.h : new file for string normalization data.
9093         * locales.c, locales.h, icall.c :
9094           added load_normalization_resource() for string normalization,
9095           and icall as well.
9096         * Makefile.am : added normalization-tables.h to the sources.
9097
9098 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
9099
9100         * marshal.c: Add more helper functions to reduce code duplication and use them
9101         everywhere.
9102
9103 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
9104
9105         * marshal.c: Fix non-x86 stdcall warnings.
9106         
9107         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
9108         them everywhere.
9109
9110 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
9111
9112         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
9113         type check on multi-dimensional arrays. Fixes #79000.
9114
9115 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
9116
9117         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
9118         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
9119         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
9120         * class-internals.h: add is_com_object to class structure.
9121         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
9122         null checks to COM object marshalling. Fix .ctor call on RCW.
9123         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
9124         
9125         All code is contributed under the MIT/X11 license.
9126
9127 2006-08-09  Dick Porter  <dick@ximian.com>
9128
9129         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
9130         racing mono_monitor_allocator_lock() somewhere, so don't delete
9131         the critical section for now.  Found by running and exiting
9132         monodevelop.
9133
9134 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
9135
9136         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
9137         (ves_icall_System_ComObject_FindInterface): Ditto.
9138         (ves_icall_System_ComObject_CacheInterface): Ditto.
9139
9140         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
9141         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
9142
9143 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9144
9145         * threadpool.c: treat pipes from process asynchronous reads as sockets
9146         when reading from them, so we get select/poll or epoll to wait for
9147         data.
9148
9149 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
9150
9151         * loader.c: Fix a typo (CID #233) in the null check.
9152
9153 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
9154
9155         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
9156         Hopefully fixes #78949.
9157         
9158         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
9159         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
9160         bytes. Fixes #78972.
9161
9162 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9163
9164         * filewatcher.c: we need to set errno here.
9165
9166 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9167
9168         * filewatcher.c: let Win32Exception get the error value.
9169
9170 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9171
9172         * filewatcher.c: translate errno into win32 errors for Win32Exception
9173         to know what happened.
9174
9175 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
9176
9177         * threadpool.c: Fix more warnings.
9178
9179         * assembly.c (search_loaded): Fix warnings.
9180
9181         * threadpool.c (mono_thread_pool_finish): Fix warnings.
9182         (mono_async_invoke): Ditto.
9183
9184 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
9185
9186         * object.c (mono_remote_class_vtable): Need to create proxy vtable
9187         entries for __ComObject type in addition to ComImport types.
9188         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
9189         about hash table.
9190         
9191         All code is contributed under the MIT/X11 license.
9192
9193 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
9194
9195         * image.c: avoid tentative loading of modulerefs that contain
9196         no metadata (P/Invoke library names).
9197
9198 2006-07-28  Dick Porter  <dick@ximian.com>
9199
9200         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
9201         mono_loader_lock() somewhere, so don't delete the critical section
9202         for now.  Found by running and exiting monodevelop.
9203
9204 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9205
9206         * filewatcher.c: define the inotify syscalls when we're building on
9207         linux and have sys/syscall.h. The build system might not have support
9208         for inotify but the target system might have it.
9209
9210 2006-07-26  Miguel de Icaza  <miguel@novell.com>
9211
9212         * domain.c: Documentation updates.
9213
9214         * loader.c (mono_free_method): Do not release the method
9215         information if we are being profiled, as profilers will use this
9216         information at shut down to present some data to the user.
9217
9218         This is needed so that the profiler does not crash, as the
9219         profiler tends to keep MonoMethods around, and they might become
9220         invalid if we free these.
9221
9222         (mono_get_method_constrained): Return the original CIL stream
9223         method as well, so verification can be performed against it.
9224
9225 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9226
9227         * filewatcher.[ch]: support for inotify file system watcher.
9228         * icall.c: add new internal calls for the inotify file system watcher.
9229
9230 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9231
9232         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
9233         #78888.
9234
9235 2006-07-20  Dick Porter  <dick@ximian.com>
9236
9237         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
9238         warning.
9239
9240 2006-07-20  Dick Porter  <dick@ximian.com>
9241
9242         * threads.c (start_wrapper): Do the thread cleanup while we still
9243         hold a reference to its object.  Fixes bug 78123.
9244
9245 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
9246
9247         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
9248         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
9249           "managed-to-managed".
9250         * icall.c: Redirect string constructors that take sbyte* to
9251           ves_icall_System_String_ctor_RedirectToCreateString.
9252         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
9253           to CreateString () methods with matching signature.
9254         * reflection.c: Use original security informations for
9255           MONO_WRAPPER_MANAGED_TO_MANAGED.
9256         * security-manager.c: Use original security informations for
9257           MONO_WRAPPER_MANAGED_TO_MANAGED.
9258         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
9259           that is a placeholder and only its address should be used.
9260         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
9261           that is a placeholder and only its address should be used.
9262
9263 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
9264
9265         Begin implementing COM Interop.
9266         * appdomain.c: Increment corlib version.
9267         * class.c: Set ComImport classes' parent to __ComObject.
9268         * loader.c: Mark cominterop methods as such.
9269         * domain.c: Add __ComObject class to MonoDefaults structure.
9270         * image.c: Add 2 hashtables to the image for COM Interop related methods
9271         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
9272         using the mempool allocator
9273         
9274         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
9275         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
9276         declaration for mono_metadata_type_dup_mp.
9277         
9278         * debug-helpers.c: Added strings for two additional wrapper types
9279         * object.c: Create proxy objects for ComImport classes
9280         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
9281         and added __ComObject class to MonoDefaults structure.
9282         
9283         * object-internals.h: Finish MonoRealProxy definition, and add definition of
9284         MonoComInteropProxy and MonoComObject.
9285         
9286         * marshal.c: Added support for COM Interop
9287         (signature_cominterop): Converts managed signature to corresponding
9288         unmanaged COM signature.
9289         (cominterop_get_function_pointer): gets unmanaged function pointer via
9290         COM object vtable
9291         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
9292         (cominterop_get_method_interface): returns interface type that method is defined on
9293         (mono_mb_emit_cominterop_call): emits native call to function pointer
9294         gotten from vtable
9295         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
9296         that matches signature of unmanaged function.
9297         (cominterop_get_native_wrapper): wrapper around adjusted method call.
9298         (cominterop_get_invoke): forwards call from proxy to __ComObject
9299         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
9300         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
9301         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
9302         
9303         * marshal.h: Added Marshal icall declarations.
9304         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
9305         so we can access them in finalizer
9306         
9307 2006-07-14  Dick Porter  <dick@ximian.com>
9308
9309         * object.c (mono_type_initialization_cleanup): Fix a race
9310         condition by temporarily commenting out the critical section
9311         deletion.
9312
9313 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
9314
9315         * reflection.c (create_custom_attr): Fix some warnings.
9316         (create_custom_attr_data): Ditto.
9317         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
9318         types. Fixes #78855.
9319
9320 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
9321
9322         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
9323
9324         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
9325
9326 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
9327
9328         * reflection.c (resolve_object): Add support for DynamicMethod.
9329
9330         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
9331         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
9332
9333 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
9334
9335         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
9336         don't leak GPtrArray's pdata has we have no use (nor free) for it.
9337
9338 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
9339
9340         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
9341         Fixes #77888.
9342
9343 2006-06-30  Raja R Harinath  <rharinath@novell.com>
9344
9345         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
9346         slightly: remove a shadow local variable.
9347
9348 2006-06-29  Raja R Harinath  <rharinath@novell.com>
9349
9350         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
9351         definition that introduces the virtual function slot.
9352         Also fix Coverity #105.
9353
9354 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
9355
9356         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
9357         for dynamic assemblies. Fixes #78724.
9358
9359 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
9360
9361         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
9362         Fixes #78722.
9363
9364 2006-06-21  Martin Baulig  <martin@ximian.com>
9365
9366         * reflection.c
9367         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
9368         fixes #76484.
9369
9370 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
9371
9372         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
9373
9374 2006-06-20  Raja R Harinath  <rharinath@novell.com>
9375
9376         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
9377         nor TYPEREFs.
9378         * class.c (mono_class_create_from_typespec): Add 'context' argument.
9379         Inflate result if necessary.
9380         (mono_class_get_full): Remove old version.  Rename from
9381         'mono_class_get' and add 'context' argument.  Pass it to
9382         ..._create_from_typespec.
9383         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
9384         (mono_ldtoken): Revert change below.
9385
9386 2006-06-20  Martin Baulig  <martin@ximian.com>
9387
9388         * class.c (mono_ldtoken): Don't pass the generic context to
9389         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
9390
9391 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
9392
9393         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
9394         and later freeing it. Fixes #78638.
9395
9396 2006-06-15  Miguel de Icaza  <miguel@novell.com>
9397
9398         * icall.c (mono_class_get_throw): Revert over-zealous error
9399         throwing, the caller for mono_class_get_throw will cope with
9400         errors when classes are not properly initialized already.
9401
9402         The code still copes with loader exceptions though.
9403
9404         Fixes the regression in reftype1 and reftype3 from the CAS tests.
9405         
9406 2006-06-14  Miguel de Icaza  <miguel@novell.com>
9407
9408         Fixes the `make run1' version of RuntimeAbort (to be commited,
9409         source is in Bugzilla).
9410         
9411         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
9412         FALSE on class loading failure instead of returning true.
9413
9414         * class.c (mono_class_create_from_typedef): It is possible for
9415         mono_metadata_interfaces_from_typedef_full to fail if a class is
9416         not found, cope with this.
9417         
9418
9419 2006-06-14  Dick Porter  <dick@ximian.com>
9420
9421         * socket-io.c: 
9422         * process.c: Fix a bunch of signed/unsigned warnings from gcc
9423         4.1.1
9424
9425 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
9426
9427         * culture-info-table.h : oops, forgot to make it nsync with r61548.
9428
9429 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9430
9431         * icall.c: Another fix for building mono in Visual Studio.
9432
9433 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9434
9435         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
9436         
9437 2006-06-09  Martin Baulig  <martin@ximian.com>
9438
9439         * debug-mono-symfile.c: Put this back and really fix it this
9440         time. Sorry for all the trouble.
9441
9442 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
9443
9444         * icall.c (mono_class_get_throw): Fix a warning.
9445         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
9446         ReflectionTypeLoadException if needed. Fixes #78606.
9447
9448         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
9449         (mono_class_init): Ditto.
9450
9451         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
9452         ref_only exceptions.
9453         (mono_loader_clear_error): Make this work even if there is no error.
9454
9455 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
9456
9457         * object-internals.h marshal.c marshal.h icall.c: Implement method 
9458         Marshal.GetComSlotForMethodInfo using internal call.
9459
9460 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
9461
9462         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
9463         a function for signalling it.
9464
9465         * class.c (mono_class_from_typeref): Use the new kind of loader error when
9466         a referenced assembly is not found.
9467
9468         * loader.c (mono_loader_error_prepare_exception): Add support for 
9469         LOADER_ERROR_ASSEMBLY. Fix formatting.
9470
9471 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
9472
9473         * domain.c appdomain.c class-internals.h marshal.c: Add support 
9474         for VARIANT marshalling on windows and increment corlib version
9475         since Variant struct was added.
9476
9477 2006-06-03  Miguel de Icaza  <miguel@novell.com>
9478
9479         * debug-mono-symfile.c: Revert Martin's previous patch which broke
9480         stack trace line information:
9481
9482         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
9483         (Martin) when looking up B which is between A and C, return A not C.
9484
9485         Bug is #78573.
9486
9487         Thanks to Alexander Olk for tracking this down.
9488
9489 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
9490
9491         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
9492         
9493         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
9494         avoid clobbering its value.
9495         (mono_string_to_lpstr): Fix a warning on windows.
9496
9497 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
9498
9499         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
9500
9501         * reflection.c loader.c: Removed references to 'dummy' flag.
9502
9503         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
9504
9505         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
9506         it gets GC tracking.
9507
9508         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
9509         GC tracking.
9510         
9511         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
9512
9513         * marshal.c threadpool.c: Update callers of mono_async_result_new.
9514
9515         * appdomain.c: Bump corlib version.
9516
9517 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
9518
9519         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
9520         CEE_STIND_REF when working with object references.
9521
9522 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
9523
9524         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
9525         Fixes #78539.
9526
9527 2006-05-30  Miguel de Icaza  <miguel@novell.com>
9528
9529         * loader.c (method_from_memberref): Fix argument value for
9530         mono_loader_set_error_method_load (I was passing the MonoClass
9531         instead of the class name char *).
9532
9533 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
9534
9535         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
9536         CEE_STIND_REF when working with object references.
9537
9538 2006-05-30  Martin Baulig  <martin@ximian.com>
9539
9540         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
9541         mono_method_full_name() change and replace the ':' with a '.'
9542         here.
9543
9544 2006-05-30  Martin Baulig  <martin@ximian.com>
9545
9546         * debug-mono-symfile.c
9547         (mono_debug_symfile_lookup_location): Fix the algorithm:
9548         when looking up B which is between A and C, return A not C.
9549
9550 2006-05-29  Martin Baulig  <martin@ximian.com>
9551
9552         * mono-debug.h
9553         (MonoDebugMethodInfo): Make the typedef public.
9554         (MonoDebugSourceLocation): New public struct.
9555
9556         * mono-debug.c
9557         (mono_debug_source_location_from_address): Removed.
9558         (mono_debug_source_location_from_il_offset): Removed.
9559         (mono_debug_il_offset_from_address): Removed.
9560         (mono_debug_address_from_il_offset): Removed.
9561         (mono_debug_lookup_method): New public function.
9562         (mono_debug_lookup_source_location): New public function; replaces
9563         the old mono_debug_source_location_from_*() functions; see the
9564         inline documentation.
9565         (mono_debug_free_source_location): New public function.
9566         (mono_debug_print_stack_frame): New public function; see the
9567         inline documentation.
9568
9569         * debug-mono-symfile.c
9570         (mono_debug_find_source_location): Renamed into
9571         mono_debug_symfile_lookup_location(); only take a
9572         `MonoDebugMethodInfo *' and an `offset' argument; added inline
9573         documentation.
9574         (mono_debug_find_method): Renamed into
9575         mono_debug_symfile_lookup_method().
9576
9577 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
9578
9579         * assembly.c (mono_assembly_open_full): Dont overwrite the status
9580         returned by mono_image_open_full ().
9581
9582         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
9583         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
9584         #78517.
9585
9586         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
9587         #78518.
9588
9589 2006-05-27  Miguel de Icaza  <miguel@novell.com>
9590
9591         * class.c (mono_class_from_typeref): handle missing images
9592         earlier, deals with bug #78418.   Refactor code; 
9593
9594         Fix a warning introduced in my previous commit (some stale code
9595         from before I revisited my patch).
9596
9597         * class.c (mono_class_create_from_typedef): On failure, remove the
9598         class from the MonoImage->class_cache as the class is not
9599         initialized;   Fixes the leak pointed out by Paolo.
9600
9601 2006-05-25  Dick Porter  <dick@ximian.com>
9602
9603         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
9604         DeleteCriticalSections until I figure out which one may still be
9605         sometimes locked when mono_thread_cleanup is called.
9606
9607 2006-05-24  Dick Porter  <dick@ximian.com>
9608
9609         * threads.c (mono_thread_cleanup): Move the threading cleanup out
9610         of mono_thread_manage and back into its own function, so it can be
9611         called after the finalizer thread has finished.
9612
9613         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
9614
9615 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
9616
9617         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
9618         Fixes #78495.
9619
9620         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
9621         with non-blittable elements.
9622         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
9623
9624 2006-05-24  Martin Baulig  <martin@ximian.com>
9625
9626         * mono-debug-debugger.h (MonoDebuggerEvent): Added
9627         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
9628
9629         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
9630         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
9631         `mono_debugger_event_handler' to NULL.
9632
9633 2006-05-24  Martin Baulig  <martin@ximian.com>
9634
9635         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
9636
9637 2006-05-24  Martin Baulig  <martin@ximian.com>
9638
9639         * mono-debug-debugger.h
9640         (mono_debugger_create_notification_function): Added
9641         `MonoCodeManager *' argument.
9642
9643 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
9644
9645         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
9646
9647 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
9648
9649         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
9650         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
9651         implementation.
9652
9653 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
9654
9655         * icall.c: precise GC support: objects can't be stored in unmanaged
9656         memory anymore, even if they are kept alive by other references: since
9657         they can move the GC needs to be able to always find them.
9658
9659 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
9660
9661         * object.c: precise GC support for static fields. Support
9662         for moving GCs: write barriers and pinned allocation for interned
9663         strings.
9664
9665 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
9666
9667         * domain.c, domain-internals.h: precise GC support for the MonoDomain
9668         structure.
9669
9670 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
9671
9672         * class.c, gc.c: sgen and precise GC updates.
9673
9674 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
9675
9676         * marshal.h, marshal.c: added write barrier wrapper and precise type
9677         fixes.
9678
9679 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
9680
9681         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
9682         support.
9683
9684 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
9685
9686         * reflection.c: precise and sgen GC updates.
9687
9688 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
9689
9690         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
9691
9692 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
9693
9694         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
9695
9696 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
9697
9698         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
9699         MONO_TYPE_OBJECT. Fixes #78462.
9700
9701 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
9702
9703         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
9704         and blittable types.
9705
9706 2006-05-17  Miguel de Icaza  <miguel@novell.com>
9707
9708         * class.c (mono_class_get_exception_for_failure): Implement parts
9709         of a TODO: if the loader error is set (instead of the class
9710         error), we return a Loader exception that can be properly thrown
9711         elsewhere.
9712
9713         This was exposed by some Winforms 2.0 code that I tried to run
9714         (Atsushi pointed me to it).
9715
9716 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
9717
9718         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
9719         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
9720         
9721         * marshal.c (emit_marshal_vtype): Add limited support for 
9722         UnmanagedType.LPStruct. Fixes #78427.
9723
9724         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
9725         Applied a patch from kangaroo to fix #77523.
9726
9727 2006-05-17  Martin Baulig  <martin@ximian.com>
9728
9729         * threads.c
9730         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
9731         (debugger_thread_created): Removed.
9732         (debugger_thread_exited): Removed.
9733
9734 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
9735
9736         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9737
9738         * object-internals.h (MonoReflectionResource): Sync with managed version.
9739
9740 2006-05-12  Wade Berrier <wberrier@novell.com>
9741
9742         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
9743
9744 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
9745
9746         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
9747         functions try to allocate from the image mempool.
9748
9749 2006-05-12  Dick Porter  <dick@ximian.com>
9750
9751         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
9752
9753 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
9754
9755         * object.c: The FieldGetter and FieldSetter methods require the full
9756         name of the class, not only the name. Fixes bug #78277.
9757
9758 2006-05-11  Miguel de Icaza  <miguel@novell.com>
9759
9760         * loader.c (method_from_memberref): Do not pass the NULL klass to
9761         mono_loader_set_error_() methods.  Pass the non-NULL value
9762         (class). 
9763
9764 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
9765
9766         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
9767         (mono_assembly_close): Null out assembly->image->references after freeing it.
9768
9769         * image.c (mono_image_close): Free image->references.
9770         
9771         * reflection.c (mono_image_basic_init): Fix a small memory leak.
9772
9773 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
9774
9775         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
9776         before checking if it's NULL (g_assert).
9777
9778 2006-05-10  Martin Baulig  <martin@ximian.com>
9779
9780         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
9781         I thought I already killed that two months ago, but now it somehow reappeared.
9782
9783 2006-05-10  Martin Baulig  <martin@ximian.com>
9784
9785         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
9786
9787 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
9788
9789         * reflection.c: Allocate memory for dynamically created methods in the image
9790         mempools.
9791
9792 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
9793
9794         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
9795         don't use the ad pointer before checking if it's NULL (g_assert).
9796
9797 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
9798
9799         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
9800         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
9801
9802         * marshal.c: Allocate all signatures from mempools.
9803
9804         * marshal.c: Allocate some more signatures from mempools.
9805
9806 2006-05-09  Miguel de Icaza  <miguel@novell.com>
9807
9808         * object.c (mono_load_remote_field): The code used to provide a
9809         temporary variable for returning results if the user did not
9810         provide a result pointer.  But our temporary variable was allocted
9811         on the satck.
9812
9813         Fix calling code to always pass a result area.   Coverity ID 103.
9814
9815 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
9816
9817         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
9818         value, not the old. Fixes #78312.
9819         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
9820
9821         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
9822         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
9823         per-image cache.
9824
9825         * assembly.c (mono_assembly_close): Free image->references.
9826
9827         * assembly.c (mono_assembly_names_equal): Fix a warning.
9828         (mono_assemblies_cleanup): Cleanup more global data.
9829
9830         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
9831
9832         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
9833         ptr_cache and image->modules.
9834
9835         * image.c (mono_image_init): Allocate array_cache lazily.
9836         
9837 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9838
9839         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
9840         behavior was changed recently and has bad side effects.
9841
9842 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
9843
9844         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
9845         
9846         * assembly.c (mono_assembly_close): Remove a debug printf.
9847
9848         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
9849
9850         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
9851         to also allow for temporary references between mono_image_open ()/close ().
9852
9853         * domain.c (get_runtimes_from_exe): Add a FIXME.        
9854
9855 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
9856
9857         * marshal.c: Fix support for dynamic methods.
9858
9859         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
9860
9861         * marshal.c (mono_marshal_cleanup): New cleanup function.
9862
9863         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
9864         image mempools.
9865
9866         * class.c (mono_class_init): Fix leaking class->nested_classes.
9867
9868         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
9869
9870         * image.c (mono_image_init): Initialize the new cashes.
9871
9872         * image.c (mono_image_close): Destroy the new cashes.
9873
9874         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
9875
9876         * mempool.c (mono_mempool_strdup): New helper function.
9877
9878         * class-internals.h: Add prototype for mono_loader_unlock ().
9879
9880         * domain.c (mono_jit_info_table_find): Fix a warning.
9881         (mono_debugger_check_runtime_version): Ditto.
9882
9883         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
9884         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
9885         functions to these modules.
9886
9887         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
9888         metadata modules.
9889         
9890         * marshal.c (mono_free_bstr): Fix a warning.
9891
9892         * assembly.c (mono_assembly_open_full): Fix another small leak.
9893
9894         * object.c: Fix some unload leaks in the remoting code.
9895
9896         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
9897         function.
9898
9899         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
9900
9901         * reflection.c: Fix some unload leaks in dynamic assemblies.
9902
9903 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
9904
9905         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
9906         * marshal.h: Add BSTR support on Win32
9907         * icall.c: Add BSTR icalls
9908         * metadata.h: Add BSTR enums
9909
9910 2006-04-28  Miguel de Icaza  <miguel@novell.com>
9911
9912         Work to catch the crash from #76795 and turn it into an
9913         exception.   As I stubbed out pieces of the VisualBasic support,
9914         I found a number of places where the code was failing and I added
9915         checks to those places. 
9916         
9917         * metadata.c (do_mono_metadata_parse_generic_class): Make this
9918         function return a status code.  If we fail to parse the signature
9919         from mono_metadata_parse_generic_inst, return FALSE.
9920
9921         * loader.c (mono_get_method_from_token): If we fail to load the
9922         method (mono_class_get) return NULL.   
9923
9924         * (method_from_memberref): Return NULL if we are unable to parse
9925         the method signature
9926
9927         (mono_loader_error_prepare_exception): Since we now use the
9928         loader_error flag internally to stop processing, and obtaining
9929         exceptions that might be thrown will walk this code path the
9930         proper way of going from a MonoLoaderError into a
9931         MonoException was convoluted.   This new routine encapsulates the
9932         process of turning the error into an exception and *clearing* the
9933         error afterwards.
9934         
9935 2006-04-27  Miguel de Icaza  <miguel@novell.com>
9936
9937         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
9938         with missing assemblies), and to cope with:
9939
9940                 * Missing fieldref from a non-existing assembly.
9941                 * Missing methodref from a non-existing assembly.
9942
9943         The first batch of work to address *some* of the issues from 76661.
9944         
9945         * object.c (mono_class_create_runtime_vtable): If we fail to
9946         initialize the class raise the exception here. 
9947
9948         * metadata.c (mono_class_get_overrides_full): If any methods fail
9949         to load return the failure to the caller.
9950
9951         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
9952         flagging assemblies that failed to load.   
9953
9954         Do not crash if we are unable to load the assembly.
9955
9956         (mono_assembly_close): Do nothing with REFERENCE_MISSING
9957         assemblies. 
9958
9959         * loader.c (mono_loader_set_error_type_load): Change the
9960         convention to always pass unallocated strings, so we make our own
9961         copies (I know our own code had duplicated strings before, but
9962         this keeps the normal conventions).
9963         (method_from_memberref): Call mono_loader_set_error_method_load
9964         for all possible failures of loading the class. 
9965         Remove assert, turn into a loader error.
9966
9967         (mono_loader_error_to_exception): Move this routine from mini
9968         (mini_loader_error_to_exception) there was no need to have that in
9969         mini. 
9970
9971         * class.c (mono_class_from_typeref): If we were not able to load
9972         the assembly with mono_assembly_load_reference, call the
9973         mono_loader_set_error_type_load to register the problem.
9974
9975         (mono_class_setup_fields): If we fail to load the type from
9976         mono_metadata_parse_type_full, call mono_class_set_failure and
9977         break from the loop.
9978
9979         If class->exception_type is set, we do not layout the fields as
9980         that might crash the runtime, and instead return (from breaking
9981         from the previous loop).
9982
9983         (mono_class_setup_vtable): This now returns a boolean indicating
9984         whether the table was properly setup.   The decision is driven by
9985         mono_class_get_overrides_full which might run into non-existing
9986         methods. 
9987         
9988         (mono_class_init): Returns TRUE on success or FALSE if there was a
9989         problem in loading the type (incorrect assemblies, missing
9990         assemblies, methods, etc).
9991
9992         When we call mono_class_setup_fields we also check for a potential
9993         error inside this call (either a class exception or a general
9994         loader exception).
9995
9996         (mono_class_create_from_typedef): If the parent fails to load
9997         (calling mono_class_get_full) return NULL.
9998         
9999         ** Important **
10000
10001         calls to mono_metadata_parse_type_full should be checked
10002         everywhere and set the mono_class_set_failure
10003         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
10004
10005         The current patch checks the places where my manually constructed
10006         tests show the errors are showing up, but we should do it
10007         everywhere. 
10008
10009         ** Important2 **
10010
10011         mono_class_init return values should be tested everywhere, like
10012         the previous case this is something that we should audit
10013         everywhere and not only on the cases exposed by the tests I
10014         created. 
10015
10016 2006-04-26  Miguel de Icaza  <miguel@novell.com>
10017
10018         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
10019         boolean parameter and instead pass the information on `options'
10020         parameter (FileOptions).
10021
10022         * icall.c: Register the new signature for MonoIO.Open.
10023
10024         * debug-helpers.c (dis_one): Trying to understand how coverity
10025         works.  Fix Run 5, item 78.
10026
10027 2006-04-26  Dick Porter  <dick@ximian.com>
10028
10029         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
10030         dereference.
10031
10032 2006-04-25  Martin Baulig  <martin@ximian.com>
10033
10034         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
10035
10036         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
10037         debugger_thread_created().
10038         (debugger_gc_push_all_stacks): Don't handle the main thread in any
10039         special way.
10040         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
10041         (mono_debugger_finalize_threads): New function; undo the effects
10042         of mono_debugger_init_threads().
10043         (mono_debugger_create_all_threads): Removed.
10044
10045 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
10046
10047         * image.c (mono_image_close): Tidy up trace messages.
10048
10049         * assembly.c (mono_assembly_close): Ditto.
10050
10051         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
10052         no longer references an already freed assembly. Fixes #78168.
10053
10054 2006-04-21  Dick Porter  <dick@ximian.com>
10055
10056         * threads.c (mono_thread_detach): Fix reference counting when
10057         detaching threads.
10058
10059 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
10060
10061         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
10062         #78155.
10063
10064 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
10065
10066         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
10067         (mono_type_to_stind): Ditto.
10068
10069         * marshal.c: Use the new helper functions to simplify code.
10070
10071         * image.c (mono_image_close): Add some code for help debug assembly unloading
10072         problems.
10073
10074         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
10075         image mempool.
10076
10077         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
10078         assembly was already loaded in another appdomain. Fixes #78083.
10079
10080 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
10081
10082         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
10083         referenced assemblies.
10084         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
10085
10086         * domain.c (mono_domain_free): Add a trace message.
10087
10088         * appdomain.c (add_assemblies_to_domain): Ditto.        
10089
10090         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
10091         field.  
10092
10093 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
10094
10095         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
10096
10097 2006-04-12  Martin Baulig  <martin@ximian.com>
10098
10099         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
10100         `USE_INCLUDED_LIBGC'.   
10101
10102 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
10103
10104         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
10105         the patch contains ../ and a small directory name later. Hopefully fixes
10106         #78035.
10107
10108 2006-04-10  Martin Baulig  <martin@ximian.com>
10109
10110         Clean up the debugger's thread-handling code.
10111
10112         The debugger's thread-handling code has been moved from
10113         ../mini/debug-debugger.c to threads.c.  We now iterate directly
10114         over the `threads' hash, keep track of exiting threads and also
10115         use proper locking.
10116
10117         We can now debug XSP and XSP based applications with the debugger.
10118
10119         * object-internals.h (MonoThread): Added `gpointer end_stack'.
10120
10121         * threads.h
10122         (MonoThreadCallbacks): Removed; this was only used by the debugger.
10123         (mono_install_thread_callbacks): Likewise.      
10124
10125         * threads.c (mono_thread_callbacks): Removed.
10126         (debugger_thread_created, debugger_thread_exited): New static functions.
10127         (start_wrapper): Call debugger_thread_created().
10128         (thread_cleanup): Call debugger_thread_exited().
10129         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
10130         (mono_debugger_init_threads): New public function.
10131         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
10132         iterate directly over the `threads' hash and also use proper locking.
10133
10134         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
10135
10136         * mono-debug-debugger.h
10137         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
10138
10139 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
10140
10141         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
10142         argument type=array. Fixes #78057.
10143
10144 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
10145
10146         * culture-info-table.h : regenerated. Fixed bug #69652.
10147
10148 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
10149
10150         * loader.c metadata.c: Reapply a variant r59116.
10151         
10152         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
10153
10154         * class.c (mono_class_setup_interface_offsets): New internal function.
10155
10156         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
10157         interfaces too. Fixes #77398.
10158
10159         * reflection.c (encode_cattr_value): Add support for 
10160         parameter type=object, argument type=array.
10161         (load_cattr_value): Ditto. Fixes #77916.
10162
10163         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
10164         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
10165
10166         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
10167         a byval char array and CharSet is Ansi.
10168
10169         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
10170
10171 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
10172
10173         * metadata.c: Add some locking comments.
10174         
10175         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
10176         mempool.
10177         (mono_metadata_free_method_signature): Don't free the signature itself.
10178
10179         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
10180
10181         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
10182         reference the same MonoImage.
10183         (mono_assembly_load_from_full): Add an assert.
10184
10185 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
10186
10187         * image.c (mono_image_close): Don't put the image we are about to free into the
10188         loaded_images_guid_hash.
10189
10190         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
10191         to reduce code duplication.
10192
10193         * marshal.c: Register the native functions called by this module as icalls, to
10194         somewhat centralize the creation of MonoMethodSignature's.
10195
10196         * loader.c (mono_method_signature): Add a cache for method signatures.
10197
10198         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
10199         the parameter attributes of a method.
10200         (mono_metadata_parse_method_signature_full): Refactored the computation of
10201         parameter attributes into a separate function. Also avoid one allocation in
10202         most cases.
10203
10204         * assembly.c (mono_assembly_close): Ditto.
10205
10206         * image.c (mono_image_close): Log trace messages with INFO level.
10207
10208         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
10209
10210         * image.c reflection.c: Correct reference counting of image modules.
10211         
10212         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
10213         of this function from the image mempool.
10214         
10215         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
10216         to allow more cached types to be used.
10217
10218         * mono-debug.c (mono_debug_add_method): Appled patch from
10219         David S. Miller  <davem@sunset.davemloft.net>: Access 
10220         minfo->lexical_blocks[] entry elements using read32().
10221
10222 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
10223
10224         * loader.c (mono_free_method): No longer free the method header for non-dynamic
10225         methods as it is allocated from the mempool.
10226
10227         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
10228         image mempool.
10229
10230         * metadata-internals.h: Add comments describing the reference counting scheme
10231         used for MonoImage and MonoAssembly.
10232
10233         * image.c assembly.c reflection.c: Rework reference counting of images and 
10234         assemblies so they are freed when the runtime is shut down. Free some 
10235         additional memory structures when an image is unloaded.
10236         
10237 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
10238
10239         * class.c loader.c reflection.c: Allocate more data structures in
10240         the image mempool.
10241
10242 2006-03-31  Miguel de Icaza  <miguel@novell.com>
10243
10244         * icall.c
10245         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
10246         build on pre glib 2.4 systems.
10247
10248 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
10249
10250         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
10251
10252         * icall.c: Fix some warnings.
10253
10254 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
10255
10256         * culture-info-table.h : regenerated.
10257
10258 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
10259
10260         * threads.c, object-internals.h, verify.c: changed the culture caching
10261         code to use a normal MonoArray for storage so the GC can keep track of
10262         them easily. Fixed bits of the cache logic, too and simplified the
10263         code.
10264
10265 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
10266
10267         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
10268         thread for non-Boehm GCs.
10269
10270 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
10271
10272         * domain.c, object.c, domain-internals.h: reduce the amount of memory
10273         needed to keep track of the data for static fields.
10274
10275 2006-03-29  Raja R Harinath  <rharinath@novell.com>
10276
10277         Fix #75172
10278         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
10279         for interface classes.  Use 'num_methods' instead.
10280         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
10281         before using '->vtable_size' field.
10282
10283 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
10284
10285         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
10286         doesn't contain managed pointers, so use a normal hashtable.
10287
10288 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
10289
10290         * reflection.c, class-internals.h, domain.c: fixed handling of types
10291         used as values for objects in custom attributes (bug #77915):
10292
10293 2006-03-24  Martin Baulig  <martin@ximian.com>
10294
10295         * class.c (mono_class_setup_fields): Added support for generic
10296         instances; fixes #77580.
10297
10298 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10299
10300         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
10301
10302 2006-03-24  Dick Porter  <dick@ximian.com>
10303
10304         * file-io.c (get_file_attributes): More stat macro breakage.
10305         Fixes bug 77759.
10306
10307 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
10308
10309         * profiler.c: added the file=filename option in the default profiler
10310         to output the profile data to filename.
10311
10312 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10313
10314         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
10315         bug #77877.
10316
10317 2006-03-22  Martin Baulig  <martin@ximian.com>
10318
10319         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
10320         allocated `MonoClassField *' in `fb->handle'.
10321
10322 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10323
10324         * class.c, image.c, metadata-internals.h: implemented new mechanism to
10325         allocate interface ID to save memory and allow better ID reuse on
10326         appdomain unload. setup_generic_vtable () removal from Martin.
10327
10328 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
10329
10330         * object.h, appdomain.c, domain.c, exception.c, icall.c,
10331         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
10332         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
10333         write barriers for reference stores with managed objects accessed with
10334         C structures in the runtime and in embedding programs.
10335
10336 2006-03-20  Raja R Harinath  <rharinath@novell.com>
10337
10338         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
10339         'interface_id' and 'max_interface_id' fields of MonoClasses
10340         representing open generic types.
10341
10342 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
10343
10344         * object.h, object.c, icall.c: added functions to deal with
10345         storing valuetypes that contain references in managed objects.
10346         * reflection.c, string-icalls.c, threads.c, marshal.c: small
10347         fixes and comments around uses of mono_array_addr ().
10348
10349 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
10350
10351         * object.h, icall.c, monitor.c: object.GetHashCode ()
10352         implementation that supports the moving garbage collector.
10353
10354 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10355
10356         * icall.c, threads-types.h, threads.c: implemented finalizer for
10357         LocalDataStoreSlot.
10358
10359 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
10360
10361         * metadata.c (mono_type_size): Add a fixme.
10362         (mono_type_stack_size): Ditto.
10363
10364         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
10365         'type_forwarders' field.
10366
10367         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
10368         attribute from net 2.0.
10369
10370         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
10371         from class.c.
10372
10373         * class.c (mono_class_setup_fields): Fix a warning.
10374         
10375         * class.c (mono_class_from_name): Add support for assemblyref entries
10376         in the EXPORTEDTYPE table.
10377
10378         * reflection.c: Add support for handling type forwarders under net 2.0.
10379
10380         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
10381         
10382 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
10383
10384         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
10385         overwriting entries in ModuleBuild->types, also clean up the code
10386         a little. Fixes #77774.
10387
10388 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
10389
10390         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
10391         load friend assembly info when present.
10392
10393 2006-03-14  Raja R Harinath  <rharinath@novell.com>
10394
10395         Fix crasher on gtest-158.cs.
10396         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
10397         the return value if the MonoClass we want is yet in an
10398         inconsistent state.
10399         * class.c (mono_class_create_from_typedef): Add an comment
10400         explaining an order dependency between mono_class_setup_parent and
10401         mono_class_setup_mono_type.
10402
10403 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
10404
10405         * class.c: documentation updates and events bug fix.
10406
10407 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
10408
10409         * class.c: some cleanup, locking fixes.
10410
10411 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10412
10413         * class.c: fix the generics code to setup nested
10414         type info to the instantiated type (bug #77770).
10415
10416 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
10417
10418         * marshal.c: fixed a few type correctness issues.
10419
10420 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10421
10422         * loader.c: the Set/Get/Addrtess array methods should be public.
10423
10424 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
10425
10426         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
10427         
10428         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
10429         info->wrapper.
10430
10431 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
10432
10433         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
10434
10435         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
10436
10437         * mempool.c (mono_mempool_alloc): Speed this up a bit.
10438         (mono_mempool_alloc0): Ditto.
10439
10440 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10441
10442         * socket-io.c:
10443         (create_object_from_sockaddr): it was allocating 4 extra bytes
10444         for the AF_UNIX data. Fixes bug #77747.
10445
10446 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
10447
10448         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
10449
10450 2006-03-09  Dick Porter  <dick@ximian.com>
10451
10452         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
10453         Fixes bug 76966 again.
10454
10455 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10456
10457         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
10458         names from r57532
10459         * appdomain.c: Bumped corlib version to 48 (due to r57532)
10460
10461 2006-03-07  Martin Baulig  <martin@ximian.com>
10462
10463         * object.c
10464         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
10465
10466 2006-03-07  Martin Baulig  <martin@ximian.com>
10467
10468         * class.c
10469         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
10470         regression introduced in r56970; see gtest-252.cs.
10471
10472         * loader.c (mono_get_method_constrained): Correctly handle generic
10473         methods; see gtest-253.cs.
10474
10475 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
10476
10477         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
10478
10479 2006-03-04  Martin Baulig  <martin@ximian.com>
10480
10481         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
10482         compute the parent type at runtime, just like we're already doing
10483         it for interfaces.
10484
10485         * reflection.c
10486         (mono_reflection_bind_generic_parameters): Don't compute the
10487         parent type anymore.
10488
10489         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
10490
10491 2006-03-04  Martin Baulig  <martin@ximian.com>
10492
10493         * mono-debug-debugger.h
10494         (mono_debugger_create_notification_function): Allocate memory at
10495         runtime and return a pointer to it.
10496
10497 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
10498
10499         * assembly.c: Fix windows build.
10500         
10501         * assembly.c: Fix build.
10502
10503         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
10504
10505         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
10506         
10507 2006-03-03  Dick Porter  <dick@ximian.com>
10508
10509         * process.c
10510         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
10511         Check parameters before dereferencing them.  Fixes Aaron's part of
10512         bug 77393.
10513
10514 2006-03-03  Raja R Harinath  <rharinath@novell.com>
10515
10516         Fix performance regression.
10517         * loader.c (find_method_in_class): Add 'from_class' argument.
10518         Rename 'klass' argument to 'in_class'.  The signature is compared
10519         against the method in 'in_class', and the corresponding method is
10520         returned from 'from_class'.
10521         (find_method): Walk both 'in_class' and 'from_class' in parallel.
10522         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
10523         type definition and generic instantiation in parallel.
10524         (mono_get_method_constrained): Update to changes.
10525
10526 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
10527
10528         * threads.c: make sure the domain is correct, too when doing
10529         mono_thread_attach ().
10530
10531 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
10532
10533         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
10534         windows. Fixes #77683.
10535
10536 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
10537
10538         * object.h, *: introduced specific way to set elements of an array
10539         of references to be used as write barrier. Still need to audit the
10540         uses of mono_array_addr.
10541
10542 2006-03-01  Miguel de Icaza  <miguel@novell.com>
10543
10544         * object-internals.h: New field to cache the assmebly name, patch
10545         from Tambet Ingo (tambet@ximian.com)
10546
10547 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
10548
10549         * decimal.h, class-internals.h, metadata-internals.h,
10550         file-io.h: mark a few function declarations as internal, to
10551         reduce the number of PLT entries.
10552
10553 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10554
10555         * file-io.c: fix typo in warning message.
10556
10557 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
10558
10559         * loader.c: on unix, lookup the "*A" version of a function
10560         if charset is auto as a second option before failing.
10561
10562 2006-02-28  Raja R Harinath  <rharinath@novell.com>
10563
10564         * class.h (mono_class_inflate_generic_method): Revert to two
10565         argument version.
10566         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
10567         (mono_class_inflate_generic_method_full): Add.
10568         * class.c (mono_class_inflate_generic_method_full): Rename from
10569         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
10570         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
10571         * loader.c, reflection.c: Update to changes.
10572
10573 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
10574
10575         * icall.c: const fixes and small improvements.
10576
10577 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10578
10579         * threadpool.c: for asynchronous connect(), enable the same workaround
10580         for BSD 6 as for the Mac. Fixes bug #77637.
10581
10582 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
10583
10584         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
10585         formatted classes. Fixes #77524.
10586
10587 2006-02-24  Raja R Harinath  <rharinath@novell.com>
10588
10589         * class.c (inflate_generic_type): Add a couple more
10590         micro-optimizations.
10591         (inflate_generic_context): Don't use the 'gmethod' from
10592         'inflate_with'.
10593         (mono_class_inflate_generic_method): If the method has generic
10594         parameters, but the passed-in context doesn't have a 'gmethod',
10595         create one.  Use the possibly simplified generic instantiation
10596         from the declaring class instead of the one passed in.
10597
10598 2006-02-24  Raja R Harinath  <harinath@gmail.com>
10599
10600         Make generic method signature and method header handling lazy.
10601         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
10602         (inflate_generic_header): Likewise.
10603         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
10604         parameter to avoid inflating types.
10605         (mono_get_inflated_method): Empty out.
10606         * class.h (mono_class_inflate_generic_method): Update to changes.
10607         * loader.c (mono_get_method_from_token): Don't parse signature for
10608         generic methods, nor methods of generic classes.
10609         (mono_method_signature): Rename from 'mono_method_signature'.
10610         Inflate signature on demand.
10611         (mono_method_get_header): Inflate method header on demand.
10612         * reflection.c: Update to changes.
10613
10614 2006-02-23  Raja R Harinath  <rharinath@novell.com>
10615
10616         * metadata.c (mono_metadata_inflate_generic_inst): If the
10617         instantiation is closed, don't bother expanding it in the new
10618         context.
10619         * class.c (inflate_generic_class): If the generic instantiation
10620         doesn't change after inflation, return the argument itself.
10621         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
10622         Add bounds checks.
10623         (inflate_generic_context): If neither the generic class nor the
10624         generic method instantiations change, return the original context.
10625         * reflection.c (mono_method_get_object): Do
10626         'mono_get_inflated_method' before accessing the ->klass field.
10627         (inflate_mono_method): Don't create a MonoGenericMethod unless
10628         necessary.
10629         (inflate_method): Don't pass a constructed type as the declaring
10630         type of a methodbuilder.
10631
10632 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
10633
10634         * object.c: fix memory overwrite.
10635
10636 2006-02-22  Dick Porter  <dick@ximian.com>
10637
10638         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
10639         it doesn't work any more.
10640         (mono_threads_request_thread_dump): Fix unused variable warnings.
10641
10642 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10643
10644         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
10645         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
10646         the public header file.
10647
10648 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
10649
10650         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
10651
10652 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
10653
10654         * class-internals.h, object.c: reduce the size of MonoVTable
10655         and store the interface_offsets array at negative offsets.
10656
10657 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
10658
10659         * metadata.c: tweak table descriptors data structures to reduce
10660         size and runtime relocations.
10661
10662 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10663
10664         * marshal.c: fix some types and opcodes to be type-safe
10665         in marshaling wrappers.
10666
10667 2006-02-21  Ankit Jain  <jankit@novell.com>
10668
10669         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
10670
10671 2006-02-21  Raja R Harinath  <rharinath@novell.com>
10672
10673         * metadata.c (get_constraints): Relax debugging checks for monodis.
10674
10675 2006-02-21  Ankit Jain  <jankit@novell.com>
10676
10677         * metadata.c (mono_metadata_load_generic_params): Move the code
10678         checking for ambiguous generic params from here to mono/dis/get.c
10679         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
10680
10681 2006-02-21  Raja R Harinath  <harinath@gmail.com>
10682
10683         Fix assertion triggered when compiling nemerle.
10684         * class.c (mono_get_shared_generic_inst): Rename from
10685         get_shared_inst and make non-static.
10686         * loader.c (mono_get_shared_generic_method): New.  Used to create
10687         the MonoGenericContext-equivalent of a MonoGenericContainer.
10688         (mono_get_method_from_token): Initialize the 'context' field of
10689         the created MonoGenericContainer.
10690         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
10691         * metadata.c (get_constraints): Add sanity check.
10692         * class-internals.h: Add new internal methods.
10693
10694         * reflection.c (verify_safe_for_managed_space): New sanity check.
10695         Currently checks that owner-less generic parameters aren't allowed
10696         in managed space.
10697         (mono_type_get_object): Use it.
10698         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
10699         that are now in mono_type_get_object.
10700         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
10701
10702 2006-02-19  Raja R Harinath  <harinath@gmail.com>
10703
10704         * metadata.c (mono_type_create_from_typespec): Rename from
10705         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
10706         argument and caching of types in the generic container.
10707         (unwrap_arrays, find_generic_param): Remove.
10708         * metadata-internals.h: Update.
10709         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
10710
10711 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
10712
10713         * class.c (mono_class_get_exception_for_failure): Fix a warning.
10714
10715         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
10716         return values. Fixes #77581.
10717
10718         * class.c (mono_fnptr_class_get): Switch name and name_space.
10719
10720         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
10721         classes and add support for [In, Out] attributes.
10722         (mono_marshal_free_asany): Ditto. Fixes #77524.
10723
10724 2006-02-18  Raja R Harinath  <harinath@gmail.com>
10725
10726         * class.c (mono_class_from_generic_parameter): Make more robust to
10727         incomplete MonoGenericContainers from monodis.
10728
10729 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
10730
10731         * class-internals.h: added some more exception types.
10732         * class.c, metadata.c: added a few checks to handle missing
10733         types.
10734
10735 2006-02-17  Raja R Harinath  <rharinath@novell.com>
10736
10737         Use owner-less generic-params some more.
10738         * class.c (my_mono_class_from_generic_parameter): Remove.
10739         (mono_class_from_generic_parameter): Handle null image,
10740         param->name and param->owner.
10741         (mono_class_from_mono_type): Update.
10742         (mono_class_create_from_typespec): Remove 'container' parameter.
10743         If that parameter is non-null, the result is always inflated by
10744         'mono_class_get_full' anyway.
10745         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
10746         parameter.
10747         (mono_class_get_full): Update.
10748
10749         * class.c (inflate_generic_type) [GENERICINST]: If the generic
10750         instance is not open, don't bother inflating.
10751         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
10752         parse metadata for inflated classes.
10753         (_mono_class_get): Change GenericContext* parameter to
10754         GenericContainer*.
10755         (mono_class_create_from_typespec): Likewise.  Simplify, and
10756         implement trivially.  All the cases are handled in
10757         mono_class_from_mono_type.  Don't inflate returned class.
10758         (mono_class_get_full): Delegate GENERICINST optimization to
10759         inflate_generic_type.
10760         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
10761
10762 2006-02-16  Dick Porter  <dick@ximian.com>
10763
10764         * socket-io.c (create_object_from_sockaddr): Fix typo.
10765         (create_sockaddr_from_object): Check array lengths before
10766         potentially accessing items off the end.
10767         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
10768         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
10769         (ves_icall_System_Net_Sockets_Socket_Send_internal)
10770         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
10771         length checks to avoid wraparound overflows.
10772         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
10773         contents of the array of sockets
10774         (hostent_to_IPHostEntry2)
10775         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
10776         Check return value of inet_ntop ().
10777         (addrinfo_to_IPHostEntry): Fix typo
10778
10779 2006-02-16  Raja R Harinath  <rharinath@novell.com>
10780
10781         Type metadata parsing doesn't use generic-instantiation information.
10782         * metadata.c (mono_metadata_parse_array_full): Change
10783         MonoGenericContext* parameter to MonoGenericContainer*.
10784         (mono_metadata_parse_type_full): Likewise.
10785         (mono_type_create_from_typespec_full): Likewise.
10786         (mono_metadata_parse_mh_full): Likewise.
10787         (mono_metadata_parse_generic_inst): Likewise.
10788         (do_mono_metadata_parse_generic_class): Likewise.
10789         (do_mono_metadata_parse_type): Likewise.
10790         * metadata-internals.h: Update to changes.
10791         * class.c (mono_class_find_enum_basetype): Likewise.
10792         (mono_class_setup_fields): Likewise.
10793         (mono_class_create_from_typespec): Likewise.
10794         * loader.c (method_from_methodspec): Likewise.
10795         (mono_get_method_from_token): Likewise.
10796         (mono_method_get_header): Likewise.
10797
10798 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10799
10800         * marshal.c: handle additional GENERICINST case (patch from
10801         Thong Nguyen <tum@veridicus.com>).
10802         Fix a few cases where LDIND_I/STIND_I was used for references.
10803
10804 2006-02-16  Raja R Harinath  <rharinath@novell.com>
10805
10806         * reflection.c (mono_reflection_get_token): Remove unused variable.
10807
10808 2006-02-16  Martin Baulig  <martin@ximian.com>
10809
10810         * reflection.c (mono_reflection_get_token): Add support for fields
10811         in instantiated generic types.
10812
10813         * icall.c
10814         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
10815
10816 2006-02-15  Martin Baulig  <martin@ximian.com>
10817
10818         * icall.c
10819         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
10820         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
10821         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
10822         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
10823
10824 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
10825
10826         * class.c, metadata.c, metadata.h, object.c, icall.c,
10827         marshal.c: changed mono_type_get_underlying_type () to do
10828         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
10829         Fixed handling of instantiated generic valuetypes (bug #75479).
10830
10831 2006-02-15  Raja R Harinath  <rharinath@novell.com>
10832
10833         * metadata.c (mono_metadata_decode_signed_value): Simplify.
10834         Delegate to mono_metadata_decode_value, and work on the returned value.
10835
10836         * icall.c (ves_icall_MonoType_GetGenericArguments):
10837         Add consistency check here too.
10838         
10839 2006-02-15  Ankit Jain  <jankit@novell.com>
10840
10841         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
10842         char/short etc.
10843
10844 2006-02-15  Ankit Jain  <jankit@novell.com>
10845
10846         * metadata.c (mono_metadata_decode_signed_value): New function to decode
10847         signed values, used only for representing lower bounds of arrays.
10848         (mono_metadata_parse_array_full): Use new
10849         mono_metadata_decode_signed_value to decode lower bounds.
10850
10851 2006-02-14  Martin Baulig  <martin@ximian.com>
10852
10853         * reflection.c
10854         (mono_reflection_get_token): Support "MonoGenericMethod" and
10855         "MonoGenericCMethod" and allow generic instances / methods.
10856
10857 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
10858
10859         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
10860         to obtain the terminal size using an ioctl.
10861
10862         * object.c (mono_nullable_init): Revert this as nullable reference
10863         types are not valid.
10864         (mono_nullable_box): Ditto.
10865
10866 2006-02-09  Dick Porter  <dick@ximian.com>
10867
10868         * threads.c (mono_thread_detach): Drop a reference to the thread
10869         we're detaching.
10870
10871 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
10872
10873         * object.c (mono_nullable_init): Handle nullable reference types.
10874         (mono_nullable_box): Ditto. Fixes #77446.
10875
10876 2006-02-07  Martin Baulig  <martin@ximian.com>
10877
10878         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
10879
10880 2006-02-07  Ankit Jain  <jankit@novell.com>
10881
10882         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
10883         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
10884         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
10885         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
10886         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
10887         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
10888
10889 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
10890
10891         * class.c (mono_class_create_generic): Set type_token as well.
10892
10893         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
10894         compatible with MS.
10895
10896 2006-02-02  Martin Baulig  <martin@ximian.com>
10897
10898         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
10899         has never been used so far.
10900
10901 2006-02-02  Martin Baulig  <martin@ximian.com>
10902
10903         * mono-debug-debugger.h: Changed comment at the top of this file;
10904         the header is not installed, but it's safe to #include it from
10905         within the JIT.
10906
10907         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
10908         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
10909
10910 2006-02-02  Martin Baulig  <martin@ximian.com>
10911
10912         * mono-debug.h
10913         (MonoSymbolTable): Removed the `metadata_info' field.
10914
10915         * mono-debug.c
10916         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
10917
10918         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
10919         (mono_debugger_add_builtin_types): Removed.
10920         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
10921         (mono_debugger_create_notification_function): We now operate on a
10922         pre-allocated area; take a `gpointer' and return `void'.
10923
10924         * mono-debug-debugger.c
10925         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
10926         (mono_debugger_add_builtin_types): Removed.
10927
10928 2006-02-02  Martin Baulig  <martin@ximian.com>
10929
10930         * threads.c (mono_debugger_create_all_threads): New public method.
10931
10932 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
10933
10934         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
10935         breaks on several platforms.
10936
10937 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
10938
10939         * assembly.c: the VS.NET build doesn't supply default values for
10940         MONO_ASSEMBLIES and MONO_CFG_DIR.
10941
10942 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
10943
10944         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
10945         helper function.
10946
10947         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
10948
10949         * loader.c (method_from_memberref): Fix a warning.
10950
10951         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
10952
10953         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
10954         with explicit layout. Fixes #77433.
10955
10956 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
10957
10958         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
10959         max_interface_id is initialized before using it. Fixes #77398.
10960         (ves_icall_Type_GetInterfaces): Ditto.
10961
10962 2006-01-30  Raja R Harinath  <rharinath@novell.com>
10963
10964         * metadata.c (mono_metadata_parse_method_signature_full): Don't
10965         allocate memory for parameter attributes when parsing memberref
10966         signatures.
10967         * loader.c (mono_loader_set_error_method_load): Don't warn.
10968         (method_from_memberref): Ensure MissingMethodException gets thrown
10969         if method is not found.  Make warning more informative.
10970
10971 2006-01-29  Raja R Harinath  <harinath@gmail.com>
10972
10973         Fix #77397
10974         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
10975         return true if is byref.
10976         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
10977         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
10978         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
10979
10980 2006-01-27  Raja R Harinath  <rharinath@novell.com>
10981
10982         Fix tests/find-method.2.il
10983         * loader.c (find_method, find_method_in_class): Remove is_inflated
10984         argument.  Revert 2006-01-18 change.
10985         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
10986         is generic, search for method in its generic definition.
10987         * class.c (mono_class_setup_vtable_general): Print generic
10988         arguments of generic types in debugging printf.
10989
10990 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
10991
10992         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
10993
10994         * threads.c (mono_threads_request_thread_dump): New helper function.
10995
10996 2006-01-25  Raja R Harinath  <rharinath@novell.com>
10997
10998         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
10999
11000 2006-01-25  Ankit Jain  <jankit@novell.com>
11001
11002         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
11003         move definition to ..
11004         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
11005         
11006 2006-01-25  Ankit Jain  <jankit@novell.com>
11007             Raja R Harinath  <rharinath@novell.com>
11008
11009         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
11010         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
11011         as necessary.
11012
11013 2006-01-25  Martin Baulig  <martin@ximian.com>
11014
11015         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
11016         `MonoDebuggerThread' into debug-debugger.c.
11017
11018 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
11019
11020         * profiler.c: fix printing of data.
11021
11022 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
11023
11024         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
11025           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
11026
11027 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11028
11029         * object.c: fix deadlock related to string interning.
11030
11031 2006-01-23  Martin Baulig  <martin@ximian.com>
11032
11033         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
11034
11035         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
11036
11037 2006-01-23  Martin Baulig  <martin@ximian.com>
11038
11039         * mono-debug.h: Moved the prototypes of some functions which are
11040         used by the JIT here from mono-debug-debugger.h.
11041
11042 2006-01-21  Martin Baulig  <martin@ximian.com>
11043
11044         * Makefile.am: Don't install mono-debug-debugger.h.
11045
11046 2006-01-21  Martin Baulig  <martin@ximian.com>
11047
11048         * mono-debug-debugger.h: Enforce the private status of this header
11049         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
11050         Moved some stuff from mono-debugger-jit-wrapper.h here.
11051
11052 2006-01-20  Raja R Harinath  <rharinath@novell.com>
11053
11054         * class.c (mono_class_from_typeref): Add a sanity test to help
11055         catch lack of assembly load/search hooks.
11056
11057 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
11058
11059         * marshal.c (emit_struct_conv): Relax the fields with same offset
11060         check even more. Fixes #77230.
11061
11062 2006-01-18  Martin Baulig  <martin@ximian.com>
11063
11064         * loader.c (find_method_in_class): Added `gboolean is_inflated'
11065         argument; if false, we compare the uninstantiated signatures.
11066         (method_from_memberref): Compare the uninstantiated signatures;
11067         fixes #76417.
11068
11069 2006-01-18  Robert Jordan  <robertj@gmx.net>
11070
11071         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
11072         Clear the weak link. Fixes bug #77170.
11073
11074         * gc.c (mono_gchandle_free):
11075         Reflect *-gc.c changes (tiny optimization).
11076
11077 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
11078
11079         * metadata.c (mono_metadata_signature_dup): Applied patch from
11080         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
11081         Fixes #77288.
11082
11083 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
11084
11085         * marshal.c (emit_struct_conv): Allow fields with the same offset when
11086         marshalling from native to managed code. Fixes #77230.
11087
11088 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11089
11090         * threadpool.c: fix problem (Mac only) when more than one asynchronous
11091         connect. Fixes bug #77020.
11092
11093 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
11094
11095         * class.c: fixed id assignement for nested interfaces (bug #77275).
11096         Added also better info for --print-vtable debugging.
11097
11098 2006-01-12  Martin Baulig  <martin@ximian.com>
11099
11100         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
11101         interfaces on-the-fly; fixes #76625.
11102
11103         * class-internals.h
11104         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
11105         don't need that anymore.
11106
11107 2006-01-12  Miguel de Icaza  <miguel@novell.com>
11108
11109         * socket-io.c
11110         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11111         To avoid initing the nested_classes when not needed I turned the
11112         PeerCredData as a toplevel internal class, as it has to be shared
11113         anyways. 
11114
11115         Fixes the CASA issue.
11116
11117 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
11118
11119         * domain.c: Accessors for MonoJitInfo
11120
11121         * profiler-private.h: Add jitinfo to the end jit hook
11122
11123         * profiler.[ch]: Define new hooks, called after jitting which give
11124         the MonoJitInfo that was compiled
11125
11126 2006-01-10  Martin Baulig  <martin@ximian.com>
11127
11128         * class.c (mono_class_setup_events): Add support for generic
11129         classes; fixes #76440.
11130
11131 2006-01-06  Raja R Harinath  <rharinath@novell.com>
11132
11133         Fix #77160.
11134         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
11135         on passed-in method.
11136
11137 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
11138
11139         * object.c (mono_runtime_invoke_array): Add Nullable support.
11140
11141         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
11142
11143 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
11144
11145         * file-io.c: Don't consider sockets as directory and avoid an endless
11146         loop. Fix bug #76966.
11147
11148 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
11149
11150         * object.c (mono_nullable_init): New helper function.
11151         (mono_nullable_box): Ditto.
11152
11153         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
11154
11155         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
11156
11157         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
11158         
11159 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
11160
11161         * class.c (mono_class_is_assignable_from): Make T assignable to 
11162         Nullable<T>.
11163
11164 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
11165
11166         * appdomain.c: Bump corlib version to 46.
11167         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
11168         serialization purpose) and changed ves_icall_System_Reflection_
11169         Assembly_get_code_base signature to accept a boolean (to escape, or 
11170         not, the assembly code base).
11171
11172 2005-12-23  Dick Porter  <dick@ximian.com>
11173
11174         * icall.c: 
11175         * threads-types.h: 
11176         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
11177         CreateEvent icall now returns "created" boolean parameter.
11178
11179 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
11180
11181         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
11182         #76967.
11183
11184         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
11185         when attr_klass is an interface. Fixes #77045.
11186
11187 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
11188
11189         * marshal.c (emit_struct_conv): Fix previous patch.
11190         
11191         * marshal.c (emit_struct_conv): Add a check for fields with the same
11192         offset.
11193
11194 2005-12-20  Raja R Harinath  <rharinath@novell.com>
11195
11196         Fix regression in Mono.C5.
11197         * class.c (mono_class_create_generic): If 'klass' is an interface
11198         set up the interface offsets.
11199         (mono_class_is_assignable_from): Don't throw away generic arguments.
11200
11201 2005-12-19  Raja R Harinath  <rharinath@novell.com>
11202
11203         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
11204         type parameters.
11205
11206 2005-12-15  Raja R Harinath  <rharinath@novell.com>
11207
11208         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
11209         dead store.
11210         (do_mono_metadata_parse_generic_class): Don't pass the current
11211         generic context when parsing the type being instantiated: it
11212         cannot use it, anyway.
11213
11214         * loader.c (method_from_memberref): Don't inflate a signature if
11215         it doesn't contain any type parameters.
11216
11217 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
11218
11219         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
11220
11221 2005-12-14  Martin Baulig  <martin@ximian.com>
11222
11223         * class.c
11224         (mono_type_get_name_recurse): Don't return null for type
11225         parameters and open generic classes.
11226         (mono_class_setup_methods): Don't exclude generic instances.
11227         (mono_get_unique_iid): Use different IDs for different
11228         instantiations of the same generic type.
11229         (mono_class_setup_vtable): Only use setup_generic_vtable() for
11230         open generic instances; create a normal vtable for closed generic
11231         instances.
11232         (mono_class_setup_vtable_general): We're now also called for
11233         closed generic instances.
11234
11235         * reflection.c
11236         (mono_reflection_bind_generic_parameters): Correctly use
11237         mono_metadata_lookup_generic_inst() everywhere.
11238
11239 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
11240
11241         * object.c (mono_class_create_runtime_vtable): Call 
11242         mono_class_setup_vtable ().
11243
11244         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
11245         function.
11246         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
11247         #76959.
11248
11249         * loader.c (mono_loader_set_error_type_load): Print the type load
11250         warnings to the console so they are more visible to the user.
11251         (mono_loader_set_error_method_load): Ditto.
11252
11253         * reflection.c (ensure_runtime_vtable): Revert the last change as it
11254         is still broken.
11255         
11256         * reflection.c (ensure_runtime_vtable): Fix build.
11257
11258         * reflection.c (ensure_runtime_vtable): Disable an optimization which
11259         doesn't work in all cases.
11260
11261 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
11262
11263         * object.c (mono_array_new_full): Treat a single dimensional array
11264         with 0 lower bounds as an szarray. Fixes #76973.
11265
11266         * reflection.c (custom_attr_visible): Really fix this.
11267
11268 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
11269
11270         * reflection.c (custom_attr_visible): Allow nested public attributes
11271         as well.
11272
11273         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
11274         interface check.
11275
11276 2005-12-12  Raja R Harinath  <harinath@gmail.com>
11277
11278         * class.c (set_generic_param_owner): Delete.
11279         (mono_class_create_from_typedef): Don't set ->owner field of
11280         generic parameters to "param containers" of enclosing classes.
11281         * reflection.c (mono_reflection_initialize_generic_parameter):
11282         Likewise.
11283
11284 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
11285
11286         * reflection.c (custom_attr_visible): Fix build.
11287
11288 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
11289
11290         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
11291         private attributes.
11292         
11293         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
11294         handling of null parameter defaults.
11295
11296 2005-12-09  Raja R Harinath  <rharinath@novell.com>
11297
11298         * class.c (mono_class_from_generic_parameter): Don't set
11299         klass->generic_container.
11300         (my_mono_class_from_generic_parameter): Likewise.
11301
11302 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
11303
11304         * reflection.c (load_public_key): Fix a warning.
11305         (method_encode_code): Fix unaligned accesses.
11306
11307 2005-12-07  Martin Baulig  <martin@ximian.com>
11308
11309         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
11310
11311         * reflection.c
11312         (write_generic_param_entry): Encode our custom attrs.
11313
11314         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
11315
11316 2005-12-07  Martin Baulig  <martin@ximian.com>
11317
11318         * reflection.c (encode_new_constraint): Removed; we don't use the
11319         `NewConstraintAttribute' anymore.
11320
11321 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
11322
11323         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
11324         not fire a TypeResolve event when Assembly.GetType () is called.
11325
11326 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
11327
11328         Beginning of support for nullable types in the runtime. Parts of
11329         this patch are from Martin.
11330
11331         * appdomain.c (MONO_CORLIB_VERSION): Bump
11332
11333         * domain.c (mono_init_internal): get the nullable type
11334
11335         * class.c (mono_class_is_nullable): New method
11336         (mono_class_get_nullable_param): New mehod
11337         (mono_class_create_generic): In types T? set cast_class to T
11338
11339         * class-internals.h (MonoDefaults): new nullable default class
11340         (mono_class_get_nullable_param, mono_class_get_nullable_param):
11341         new methods.
11342
11343 2005-12-05  Raja R Harinath  <rharinath@novell.com>
11344
11345         * metadata.c (select_container): New.  Refactor code to select the
11346         appropriate GenericContainer given the type of generic parameter
11347         we are looking for.
11348         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
11349         not a MonoGenericContext.  Use select_container.  Update parameters.
11350         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
11351         and MONO_TYPE_MVAR.
11352         (unwrap_arrays): Remove duplicate tests.
11353         (find_generic_param): Rename from 'has_same_context'.  Now walks a
11354         generic instantiated class to find any arguments that are generic
11355         parameters.
11356         (mono_type_create_from_typespec_full): Use find_generic_param to
11357         avoid evicting some generic instantiations from the typespec
11358         cache.
11359
11360 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
11361
11362         * reflection.c: fixed writing of doubles on ARM FPA.
11363
11364 2005-12-02  Robert Jordan  <robertj@gmx.net>
11365
11366         * icall.c: Fixed EventInfo.ReflectedType (#76829).
11367
11368 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11369
11370         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
11371         least on SUSE 10 they are not the same (on debian, they are just the
11372         same thing).
11373
11374 2005-12-01  Raja R Harinath  <rharinath@novell.com>
11375
11376         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
11377         DeclaringType for VARs and MVARs.
11378         * class.c (set_generic_param_owner): Fix initialization of owner
11379         fields.
11380
11381 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
11382
11383         * icall.c: fixed Enum.ToObject() to correctly convert the values.
11384
11385 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11386
11387         * threadpool.c: workaround for a bug that shows up on the Mac:
11388         select()+connect() on a blocking socket is not like it should
11389         be, so we proceed to connect() in that case, wasting the I/O
11390         threadpool thread until connect succeedes. Fixes bug #75436.
11391
11392 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11393
11394         * threadpool.c: fix typo when setting file descriptor states.
11395
11396 2005-11-28  Raja R Harinath  <rharinath@novell.com>
11397
11398         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
11399         * metadata.c (mono_metadata_parse_method_signature_full): Don't
11400         create a temporary signature container.
11401         (mono_metadata_parse_generic_param): Update to changes.
11402         (mono_type_create_from_typespec_full): Update to changes.
11403         * loader.c (method_from_memberref): Don't use a
11404         MonoGenericContainer while parsing a memberref signature.
11405         (method_from_methodspec): Remove dead-store of the 'container'
11406         variable.  It's overwritten before use.
11407
11408         * metadata.c (mono_type_create_from_typespec_full): Make debugging
11409         checks tighter.
11410         (mono_metadata_parse_generic_param): Likewise.
11411         * loader.c (find_method_in_class): Does not need a
11412         MonoGenericContainer.  Use 'mono_method_signature' rather than
11413         'mono_method_signature_full'.
11414         (find_method, mono_get_method_constrained, method_from_memberref):
11415         Update to changes.
11416
11417         * metadata.c (mono_type_create_from_typespec_full): Ensure that
11418         owner-less generic-parameters are never evicted from the typespec
11419         cache.
11420
11421         * loader.c (method_from_memberref): Don't use the current context
11422         when parsing signatures.
11423         (method_from_methodspec, mono_get_method_from_token): Update to changes.
11424
11425         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
11426         side-effects in g_assert.
11427         * loader.c (mono_get_method_from_token): Resolve klass earlier so
11428         that we don't potentially lose information.
11429
11430 2005-11-26  Dick Porter  <dick@ximian.com>
11431
11432         * icall.c:
11433         * threads.c: icalls to implement basic (ie, not named)
11434         System.Threading.Semaphore.
11435
11436 2005-11-24  Dick Porter  <dick@ximian.com>
11437
11438         * process.c
11439         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
11440         Use GetProcessId() if it's available.
11441
11442 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
11443
11444         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
11445
11446 2005-11-23  Raja R Harinath  <rharinath@novell.com>
11447             Ankit Jain  <jankit@novell.com>
11448
11449         * loader.c (mono_get_method_from_token): Initialize 'method' field
11450         of all generic parameters before parsing the signature.  Remove
11451         code that "fixed"-up MVAR references.
11452
11453 2005-11-23  Ankit Jain  <jankit@novell.com>
11454
11455         * metadata.c (mono_metadata_has_generic_params):
11456         (mono_metadata_load_generic_param_constraints):
11457         (mono_metadata_load_generic_params): Move duplicate code ...
11458         (mono_metadata_get_generic_param_row): ... here. Returns the
11459         first row-id in GenericParam table for a given owner (token).
11460         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
11461         prototype.
11462
11463 2005-11-23  Raja R Harinath  <rharinath@novell.com>
11464             Ankit Jain  <jankit@novell.com>
11465
11466         * metadata.c (mono_metadata_class_equal): Pass signature_only when
11467         comparing VARs too.
11468         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
11469         type->data.generic_param only if the type is an MVAR.
11470         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
11471         leak owner-less VARs and MVARs into managed space.
11472
11473 2005-11-21  Martin Baulig  <martin@ximian.com>
11474
11475         * class-internals.h
11476         (MonoMethod): Moved the `generic_container' here from
11477         `MonoMethodNormal' since we now also need it for
11478         `MonoMethodPInvoke';
11479         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
11480         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
11481         an union containing both `MonoMethodNormal' and
11482         `MonoMethodPInvoke'.
11483
11484         * loader.c
11485         (mono_get_method_from_token): Allow implementing generic methods
11486         as interncalls.
11487
11488         * threads.c
11489         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
11490         icall.
11491
11492 2005-11-17  Dick Porter  <dick@ximian.com>
11493
11494         * icall.c: 
11495         * process.h: 
11496         * process.c: Split the Process Start_internal icall into
11497         ShellExecuteEx_internal and CreateProcess_internal, which are
11498         called depending on whether UseShellExecute is true.  Fixes bug
11499         76670.
11500
11501         * appdomain.c (MONO_CORLIB_VERSION): Incremented
11502
11503 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
11504
11505         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
11506         'msize' parameters, use the information in 'mspec' instead.
11507         (emit_object_to_ptr_conv): Ditto.
11508
11509         * marshal.c (emit_struct_conv): Handle explicit layout structs with
11510         fields out of order. Fixes #76733.
11511
11512 2005-11-17  Ankit Jain  <jankit@novell.com>
11513
11514         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
11515
11516 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
11517
11518         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
11519           bug #76575.
11520
11521 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
11522
11523         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
11524         for types with non-auto layout. Fixes #76717.
11525
11526 2005-11-16  Ankit Jain  <jankit@novell.com>
11527
11528         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
11529         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
11530         if generic_context is null.
11531           (mono_metadata_generic_param_equal): param->owner can be null.
11532           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
11533         null.
11534
11535 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
11536
11537         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
11538         the correct value.
11539
11540 2005-11-15  Martin Baulig  <martin@ximian.com>
11541
11542         * object.c (set_value): Use mono_class_from_mono_type() instead of
11543         the hack for generic instances; fixes #76136.
11544
11545 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
11546
11547         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
11548         fields.
11549
11550         * image.c (load_metadata_ptrs): Initialize the new fields.
11551
11552         * reflection.c (create_dynamic_mono_image): Ditto.
11553
11554         * reflection.c (build_compressed_metadata): Use the new fields.
11555
11556         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
11557         icall.
11558
11559         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
11560         icall.
11561         
11562 2005-11-15  Ankit Jain  <jankit@novell.com>
11563             Raja R Harinath  <harinath@gmail.com>
11564
11565         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
11566         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
11567         new per-generic_container cache if the cached MonoType's context matches
11568         the current context.
11569           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
11570         to the expected context.
11571           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
11572
11573 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11574
11575         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
11576         we changed the signature of an icall.
11577         * icall.c: Modify to mono_double_ParseImpl return true/false 
11578         depending on the success, instead of throwing the exception. This will
11579         help us in Double.TryParse methods.
11580         
11581 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
11582
11583         * marshal.c (emit_marshal_object): Throw an exception when
11584         marshalling 'object' instead of crashing. Fixes #76696.
11585
11586 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
11587
11588         * class-internals.h: Add prototype for mono_type_get_full_name ().
11589
11590 2005-11-11  Dick Porter  <dick@ximian.com>
11591
11592         * threads.c (mono_thread_manage): Make sure the main thread has
11593         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
11594
11595 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
11596
11597         * loader.c (mono_loader_set_error_type_load): Log a warning to the
11598         console about the missing type.
11599         (mono_loader_set_error_method_load): Ditto.
11600
11601 2005-11-09  Miguel de Icaza  <miguel@novell.com>
11602
11603         * mono-config.c (mono_get_config_dir): Set the system defaults if
11604         none is specified.
11605
11606         * assembly.c (mono_set_dirs): New API entry point to set the
11607         assembly and the config directory in one call
11608
11609 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
11610
11611         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
11612         the ftnptr was created from a delegate in a domain other than the
11613         current domain. Fixes #75377.
11614
11615         * exception.h exception.c: Add mono_get_exception_not_supported ().
11616
11617 2005-11-08  Martin Baulig  <martin@ximian.com>
11618
11619         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
11620
11621 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
11622
11623         * security-manager.h: Added definitions to deal with strongname key 
11624         pairs bigger (and smaller) than 1024 bits.
11625         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
11626         adjust wrt the public key length being used.
11627
11628 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
11629
11630         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
11631           Windows build (r51396-51397).
11632
11633 2005-11-03  Martin Baulig  <martin@ximian.com>
11634
11635         * class.c (mono_class_setup_vtable_general): Also add generic
11636         methods to the vtable; fixes #76581.
11637
11638 2005-11-01  Miguel de Icaza  <miguel@novell.com>
11639
11640         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
11641         sure that we lookup GetString method from the System.Text.Encoding
11642         class, not the derived class or we get an empty method.
11643
11644         Fixed class #76612.
11645
11646 2005-10-25  Miguel de Icaza  <miguel@novell.com>
11647
11648         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
11649         if it has been previously set (embedders). 
11650
11651         Make mono_set_rootdir available also on Unix.
11652
11653 005-10-24  Robert Jordan  <robertj@gmx.net>
11654
11655         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
11656
11657 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
11658
11659         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
11660         only calls which are made to native code use this flag.
11661
11662         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
11663
11664 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
11665
11666         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
11667         Add support for FieldBuilders.
11668
11669 2005-10-29  Martin Baulig  <martin@ximian.com>
11670
11671         * mono-debug.c
11672         (mono_debug_using_mono_debugger): New public method; returns
11673         whether we're running inside the debugger.
11674
11675 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
11676
11677         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
11678         for Method/Constructor/FieldBuilders.
11679
11680 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
11681
11682         * reflection.c (module_add_cattrs): Save custom attributes for global methods
11683         and fields as well.
11684
11685 2005-10-26  Martin Baulig  <martin@ximian.com>
11686
11687         * mono-debug-debugger.c
11688         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
11689
11690 2005-10-24  Raja R Harinath  <harinath@gmail.com>
11691
11692         * icall.c (base64_to_byte_array): Don't pass an out-of-range
11693         integer to isspace.
11694
11695 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
11696
11697         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
11698         when passing valuetypes byref. Fixes #76502.
11699
11700 2005-10-19  Jackson Harper  <jackson@ximian.com>
11701
11702         * profiler.c: Don't put a . in front of types that are not in a
11703         namespace.
11704
11705 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
11706
11707         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
11708
11709 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
11710
11711         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
11712         #76436.
11713         (mono_marshal_get_ldflda_wrapper): Fix a warning.
11714
11715 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11716
11717         * assembly.c metadata-internals.h icall.c: Define an additional
11718         parameter for mono_assembly_name_parse_full, so we can avoid creating
11719         S.R.AssemblyName.Version when no version info wasn't passed.
11720         
11721 2005-10-09  Miguel de Icaza  <miguel@novell.com>
11722
11723         * class.c (mono_type_get_full_name): Reimplement method that was
11724         removed. 
11725
11726         * image.c: Some docs
11727
11728 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
11729
11730         * profiler.c (output_newobj_profile): Fix printing of Total memory
11731         on x86.
11732
11733 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
11734
11735         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
11736
11737 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
11738
11739         * threads.c: remove debug output.
11740
11741 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
11742
11743         * threads.c (mono_thread_manage): Fix crashes if more than 64
11744         threads need to be aborted. Hopefully fixes #75899.
11745
11746         * assembly.c (mono_stringify_assembly_name): New helper function.
11747
11748         * class.c: Use mono_stringify_assembly_name instead of the similar
11749         static function.
11750
11751         * assembly.h assembly.c: Add support for calling a postload search 
11752         hook if an assembly cannot be loaded.
11753
11754         * appdomain.c: Register new search hooks which call the AssemblyResolve
11755         events in AppDomain. Fixes #75231
11756
11757 2005-10-07  Martin Baulig  <martin@ximian.com>
11758
11759         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
11760         methods without debug info.
11761
11762 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
11763
11764         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
11765         wrappers.
11766
11767 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11768
11769         * file-io.c: now that we return symlinks, use lstat and, when the file
11770         is a symbolic link, stat, to get the file attributes. Also avoid the
11771         conversion to/from utf16/external.
11772
11773 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
11774
11775         * class.c (mono_class_layout_fields): Compute klass->has_references
11776         correctly if an embedded valuetype is not yet initialized. Fixes
11777         #76331.
11778
11779 2005-10-04  Martin Baulig  <martin@ximian.com>
11780
11781         * metadata.c
11782         (mono_metadata_load_generic_param_constraints): New public
11783         function; splitted the constraints loading out from
11784         mono_metadata_load_generic_params().
11785
11786         * class.c (mono_class_create_from_typedef): Call
11787         mono_metadata_load_generic_param_constraints() after setting up
11788         the type and creating our parent; fixes #75329.
11789
11790 2005-10-04  Martin Baulig  <martin@ximian.com>
11791
11792         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
11793         non-dynamic parent classes.
11794
11795 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
11796
11797         * file-io.c : win32 build fix (ETXTBSY seems not found).
11798
11799 2005-10-04  Martin Baulig  <martin@ximian.com>
11800
11801         * reflection.c
11802         (mono_image_get_methodspec_token): Make the cache actually work;
11803         fixes #75974.
11804
11805 2005-10-04  Martin Baulig  <martin@ximian.com>
11806
11807         * class.c (mono_class_name_from_token): Removed the unneccessary
11808         `MonoGenericContext *' argument.
11809
11810 2005-10-04  Martin Baulig  <martin@ximian.com>
11811
11812         * loader.c
11813         (method_from_methodspec): Make the caching work again; fixes the
11814         performance regression from #76262.
11815
11816 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11817
11818         * file-io.c:
11819         * file-io.h:
11820         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
11821         GetFileSystemEntries that performs the same work but without going
11822         into io-layer, locking, etc.
11823
11824 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
11825
11826         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
11827         ThreadState_Stopped as well. Fixes #76047.
11828
11829 2005-09-29  Martin Baulig  <martin@ximian.com>
11830
11831         * class.c
11832         (inflate_generic_context): If the new context has a `gmethod', set
11833         its `container' that that gmethod's `container'.
11834
11835         * metadata.c
11836         (mono_metadata_parse_generic_param): Simplify things;
11837         `generic_container = generic_context->container;' is just fine.
11838
11839         * loader.c (method_from_methodspec): Code cleanups.
11840
11841 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
11842
11843         * decimal.c: fix warning (and let gcc generate correct
11844         code on ARM with optimizations).
11845
11846 2005-09-28  Martin Baulig  <martin@ximian.com>
11847
11848         * loader.c
11849         (method_from_memberref): Added `MonoGenericContext *class_context'
11850         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
11851         (method_from_methodspec): If we're a memberref, use the enclosing
11852         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
11853
11854 2005-09-28  Martin Baulig  <martin@ximian.com>
11855
11856         * object.c (mono_runtime_invoke_array): Added support for
11857         MONO_TYPE_GENERICINST; fixes #75917.
11858
11859 2005-09-27  Martin Baulig  <martin@ximian.com>
11860
11861         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
11862         `k->byval_arg.type' to determine the actual type.
11863
11864         * loader.c (method_from_methodspec): Removed some hacks.
11865
11866 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
11867
11868         * class-internals.h (mono_field_is_deleted): Do the test for
11869         rtspecialname before we check the actual name of the field. This
11870         prevents us from dereferencing a pointer into the string table,
11871         saving us from accessing a few pages
11872
11873         * *.c: Replace the use of {Enter,Leave}CriticalSection with
11874         macros. This will allow a deadlock debugger to easily be plugged
11875         in.
11876
11877 2005-09-27  Martin Baulig  <martin@ximian.com>
11878
11879         * loader.c (method_from_methodspec): Create a "signature"
11880         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
11881
11882 2005-09-27  Martin Baulig  <martin@ximian.com>
11883
11884         * class.c
11885         (inflate_generic_class): Correctly set the new context's
11886         container.
11887
11888         * loader.c
11889         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
11890         instead of a `MonoGenericContext *'.
11891         (mono_method_signature_full): Take a `MonoGenericContainer *'
11892         instead of a `MonoGenericContext *'.
11893
11894         * metadata.c
11895         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
11896         instead of a `MonoGenericContext *'.
11897         (mono_metadata_parse_method_signature_full): Likewise.
11898
11899 2005-09-26  Martin Baulig  <martin@ximian.com>
11900
11901         * class.c
11902         (mono_class_from_generic_parameter): Set `klass->generic_container'
11903         (mono_class_from_generic_parameter): Likewise.
11904         (mono_bounded_array_class_get): We inherit the generic container
11905         from the element class.
11906
11907         * loader.c
11908         (find_method, find_method_in_class): Take a `MonoGenericContext *'
11909         argument rather than computing it here.
11910         (method_from_memberref): Correctly set the generic context before
11911         parsing the signature.  Fixes #75681.
11912
11913 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
11914
11915         * object.c (mono_class_has_special_static_fields): Fix warnings.
11916
11917 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11918
11919         * assembly.c: Add parse_public_key function, to
11920         par the public keys. Also added mono_assembly_name_parse_full,
11921         to define it the parsed key should be freed or not.
11922         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
11923         to parse a long format assembly name.
11924         * metadata-internals.h: Keep mono_assembly_name_parse_full as
11925         private, since calling it to preserve the key requires
11926         freeing it manually.
11927         
11928 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
11929
11930         * locales.c : removed HAVE_ICU part.
11931
11932 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
11933
11934         * object.c (mono_class_create_runtime_vtable): Avoid calling 
11935         field_is_special_static if the klass has no special static fields.
11936
11937         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
11938         (MonoCachedClassInfo): Likewise.
11939
11940         * object.c (mono_class_has_special_static_fields): New helper function.
11941
11942 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
11943
11944         * class.c (mono_class_create_from_typedef): Don't call 
11945         interfaces_from_typedef_full for enums.
11946         (mono_class_create_from_typedef): Compute the base types of enums directly
11947         without calling mono_class_setup_fields ().
11948         (mono_class_find_enum_basetype): New helper function.
11949
11950         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
11951         one place inside the string heap.
11952         
11953 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
11954
11955         * class.c: locking fixes, code cleanups, some docs added.
11956         Allocate some data structures in the image mempool.
11957
11958 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
11959
11960         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
11961         the example code.
11962         
11963 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
11964
11965         * class-internals.h, class.c, reflection.c: reduce memory taken by
11966         MonoClass.
11967
11968 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
11969
11970         * metadata.c, metadata.h, loader.h: documentation updates, code and
11971         API cleanups.
11972
11973 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
11974
11975         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
11976         the example code.
11977
11978         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
11979         page faults caused by the runtime while reading metadata.
11980
11981 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11982
11983         * socket-io.c: the field names were changed 3 months ago and no one
11984         realized until bug #76077 got filed!
11985
11986 2005-09-20  Martin Baulig  <martin@ximian.com>
11987
11988         * icall.c (assembly_icalls): Removed some unused debugger icalls.
11989
11990 2005-09-20  Martin Baulig  <martin@ximian.com>
11991
11992         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
11993         write the rank into the class entry.
11994
11995 2005-09-20  Martin Baulig  <martin@ximian.com>
11996
11997         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
11998
11999 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
12000
12001         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12002
12003         * icall.c (custom_attrs_defined_internal): New icall.
12004
12005         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
12006         function.
12007         (mono_custom_attrs_construct_by_type): New helper function.
12008
12009 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
12010
12011         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
12012         terminate the resulting string. Fixes #76123.
12013
12014 2005-09-16  Martin Baulig  <martin@ximian.com>
12015
12016         * mono-debug.c
12017         (mono_debug_add_method): Ignore inflated methods for the moment.
12018
12019 2005-09-14  Martin Baulig  <martin@ximian.com>
12020
12021         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
12022
12023 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
12024
12025         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
12026         return a success/failure indication.
12027         (mono_metadata_interfaces_from_typedef_full): Ditto.
12028         (get_constraints): Ditto.
12029
12030 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
12031
12032         * marshal.c (emit_marshal_array): Fix handling of null arrays.
12033         
12034         * marshal.c (emit_marshal_array): Add support for returning string
12035         arrays from delegates. Fixes #76063.
12036
12037         * marshal.c: Use the emit_ldloc/stloc macros where possible.
12038
12039 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
12040
12041         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
12042         icall.
12043
12044 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
12045
12046         * reflection.c icall.c: Fix after mono_get_exception_type_load
12047         signature change.
12048
12049         * assembly.c (mono_assembly_get_assemblyref): New helper function.
12050         (mono_assembly_load_reference): Use the new helper.
12051
12052         * class-internals.h (MonoLoaderError): New structure containing 
12053         information about type loading errors.
12054
12055         * class-internals.h loader.c: Add APIs to store per-thread loader
12056         error information.
12057
12058         * loader.c class.c: Set the loader error if needed.
12059
12060         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
12061
12062 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
12063
12064         * decimal.c: fixed to handle the broken ARM fp format.
12065
12066 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
12067
12068         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
12069         broken.
12070
12071 2005-09-06  Martin Baulig  <martin@ximian.com>
12072
12073         * domain.c (supported_runtimes): Added v2.0.50727.
12074
12075 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
12076
12077         * culture-info.h: reduce the size of some structures.
12078
12079 2005-09-05  Martin Baulig  <martin@ximian.com>
12080
12081         Reflect latest API changes in the August CTP.
12082
12083         * icall.c
12084         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
12085         ("MonoType.HasGenericArguments"): Removed.
12086         ("MonoMethod.BindGenericParameters"): Renamed to
12087         "MakeGenericMethod".
12088         ("MethodBuilder.BindGenericParameters"): Renamed to
12089         "MakeGenericMethod".    
12090
12091 2005-09-05  Martin Baulig  <martin@ximian.com>
12092
12093         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
12094
12095 2005-09-05  Martin Baulig  <martin@ximian.com>
12096
12097         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12098
12099         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
12100         generic_container is non-NULL.
12101
12102 2005-09-05  Martin Baulig  <martin@ximian.com>
12103
12104         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12105
12106         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
12107
12108 2005-08-29  Michal Moskal  <malekith@nemerle.org>
12109
12110         * reflection.c (encode_locals,
12111         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
12112         for large generic types.
12113
12114 2005-09-05  Martin Baulig  <martin@ximian.com>
12115
12116         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12117
12118         * class.c (mono_dup_array_type): New public method.
12119         (mono_metadata_signature_deep_dup): New public method.
12120         (dup_type): Correctly duplicate array and function types.
12121
12122 2005-09-05  Martin Baulig  <martin@ximian.com>
12123
12124         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12125
12126         * reflection.c (get_default_param_value_blobs): Handle generic types
12127         and generic methods.
12128
12129 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
12130
12131         * class.c: Fixed error reporting (method/class were inversed) for 
12132         inheritance demands.
12133         * security-manager.c|h: Added the AppDomain when calling the managed
12134         System.Security.SecurityManager.InheritanceDemand method.
12135
12136 2005-09-01  Raja R Harinath  <rharinath@novell.com>
12137
12138         * reflection.c (encode_marshal_blob): 'marshaltype' and
12139         'marshaltyperef' are alternate sources for the custom marshaler
12140         name.
12141
12142 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
12143
12144         * class.c: fix creation of array classes with rank == 1
12145         (patch by Ankit Jain <jankit@novell.com>).
12146
12147 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
12148
12149         * object.c: fix check for creating the bound data for arrays vs
12150         szarrays.
12151
12152 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12153
12154         * object.c: configuration file name is now based on the executable name,
12155         not the image name. Fixes bug #75931.
12156
12157 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
12158
12159         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
12160         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
12161
12162 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
12163
12164         * rand.c: Use wincrypt.h instead of WinCrypt.h.
12165
12166 2005-08-24  Ankit Jain  <jankit@novell.com>
12167             Raja R Harinath  <rharinath@novell.com>
12168
12169         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
12170           called by it recursively.
12171           (mono_class_init): Remove special case in pending_init handling, since it's
12172           superseded by the fix to mono_class_from_typeref.
12173
12174 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
12175
12176         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
12177         BROKEN_THREAD_START stuff.
12178
12179 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
12180
12181         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
12182         trampoline.
12183
12184         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
12185         
12186         * object.c (mono_delegate_ctor): Replace the original function address with
12187         a delegate trampoline.
12188
12189 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
12190
12191         * icall.c: add boolean argument to base64_to_byte_array and 
12192         InternalFromBase64String to control whether a whitespace-only string
12193         is allowed (or should casue a FormatException to be thrown). We need
12194         this as the behavior has changed between MS.NET 1.x and 2.0, and we
12195         to match the MS behaviour in both profiles.
12196         * appdomain.c: Bump corlib version.
12197
12198 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12199
12200         This patch implements a big portion of publisher policy
12201         support, used to bind assembly versions and redirect
12202         one assembly from version A to version B.
12203
12204         * assembly.c:
12205         New GSList loaded_assembly_bindings, for storing the cached
12206         assembly bindings.
12207         (assembly_binding_maps_name): New static function for checking if a 
12208         assembly binding information maps an assembly name.
12209         (mono_assembly_binding_info_free): New function for freeing
12210         assembly binding information resources.
12211         (get_publisher_policy_info): New static function for retrieving 
12212         assembly binding information from a MonoImage.
12213         (compare_versions): New static function for comparing an assembly
12214         binding information data and the version of an assembly name.
12215         (check_policy_versions): New static function for checking if an
12216         assembly binding info mapping an assembly name is valid for it.
12217         (mono_assembly_load_publisher_policy): New static function for
12218         loading the 'policy.major.minor.MyAssembly' image for an assembly
12219         with an assembly name 'aname'.
12220         (mono_assembly_bind_version): New static function for updating
12221         assembly redirection.
12222         (mono_assembly_apply_binding): New static function for applying
12223         assembly binding.
12224         (search_binding_loaded): New static function for searching 
12225         loaded assembly binding infos in the cache domain.
12226         (mono_assembly_load_full): Don't apply assembly binding for
12227         reflection only assemblies.
12228
12229         * metadata-internals.h: Add MonoAssemblyBindingInfo,
12230         which contains information about assembly binding. Also
12231         declare signature for mono_config_parse_publisher_policy ()
12232         function, used to retrieve pub policy info.
12233         
12234         * mono-config.c:
12235         (publisher_policy_start): New static function used to parse publisher 
12236         policy config files.
12237         (publisher_policy_parser): New static MonoParseHandler containing 
12238         the functions used when parsing config files.
12239         (mono_config_parse_publisher_policy): New function for parsing
12240         publisher policy files.
12241         
12242 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
12243
12244         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
12245
12246         * marshal.c (mono_delegate_free_ftnptr): Ditto.
12247
12248         * object.c (mono_get_addr_from_ftnptr): New helper function.
12249
12250         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
12251
12252         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12253
12254 2005-08-19  Dick Porter  <dick@ximian.com>
12255
12256         * threads.c, threads.h, appdomain.c, appdomain.h,
12257         profiler-private.h, monitor.c, object.c, object-internals.h,
12258         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
12259         store the thread ID, so it can hold a 64 bit value if needed.
12260
12261 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
12262
12263         * reflection.c (mono_reflection_create_dynamic_method): Store the
12264         handle class into the method references as well so ldtoken works in
12265         dynamic methods.
12266
12267         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
12268         types.
12269
12270 2005-08-19  Ankit Jain <jankit@novell.com>
12271
12272         Fix #75847.
12273         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
12274           here rather than using the method signature of a arbitrary function
12275           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
12276           two arguments.
12277           Hack done with Harinath.
12278
12279 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12280
12281         * threadpool.c: disable printing stack traces when we get a exception
12282         in a threadpool thread. I need to do more testing to figure out which
12283         cases actually print this. Fixes bug #75828.
12284
12285 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12286
12287         * icall.c: there might be ignored whitespace after the last '='. This
12288         fixes length computation and bug #75840.
12289
12290 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
12291
12292         * assembly.c (mono_assembly_load_full): Consider .exe extension as
12293         well. Fixes #75809.
12294
12295         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
12296         #75784.
12297         
12298         * reflection.c (create_custom_attr_data): Ditto.
12299
12300 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
12301
12302         * locales.c, culture-info.h : removed RegionLCIDMap.
12303         * culture-info-tables.h : regenerated.
12304
12305 2005-08-16  Martin Baulig  <martin@ximian.com>
12306
12307         * class.c (mono_type_get_name_recurse): Small fix.
12308
12309 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
12310
12311         * locales.c : indentation fixie.
12312
12313 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
12314
12315         * object-internals.h,
12316           locales.h,
12317           locales.c,
12318           culture-info.h,
12319           icall.c : added RegionInfo table support.
12320         * culture-info-table.h : regenerated for region support.
12321
12322 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
12323
12324         * reflection.c (resolve_object): handle all kinds of MonoMethod
12325         including generic ones
12326
12327 2005-08-12  Ankit Jain <jankit@novell.com>
12328
12329         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
12330           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
12331
12332 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
12333
12334         * process.c: Don't close a thread handle when it's NULL. This is a
12335         workaround for bug #75733.
12336
12337 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
12338
12339         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
12340
12341 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
12342
12343         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
12344
12345 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12346
12347         * threadpool.c: if a work item in the thread pool has a callback that
12348         catches a exception, don't propagate it after invoking the callback.
12349         Fixes bug #75336.
12350
12351 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
12352
12353         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
12354
12355         * class-internals.h (MonoCachedClassInfo): Add some new fields.
12356
12357         * class.c (mono_class_init): Load field info lazily in the AOT case.    
12358
12359         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
12360
12361 2005-08-03  Ankit Jain  <jankit@novell.com>
12362
12363         Fix #75683.
12364         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
12365           PInvoke calling convention is 0.
12366
12367 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
12368
12369         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
12370         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
12371
12372 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
12373
12374         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
12375         to handle threads not started by the GC (patch by Michael Meeks
12376         <michael.meeks@novell.com>).
12377
12378 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
12379
12380         * reflection.c: Make buffer used in emitting types larger for some
12381         big generic types (patch by Michal Moskal).
12382
12383 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
12384
12385         * mono-debug.c: Fix some (not all) alignment problems.
12386
12387 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12388
12389         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
12390         Invoke mono_image_load_from_data_full passing the refonly
12391         parameter.
12392
12393         * assembly.c
12394         (mono_assembly_open_from_bundle): Add the refonly argument, 
12395         in order to pass it to other methods it calls to.
12396         (do_mono_assembly_open): Add the refonly argument, in order 
12397         to pass it to other methods it calls to.
12398         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
12399         the refonly parameter to it.
12400
12401         * image.c: Add loaded_images_refonly_hash and
12402         loaded_images_refonly_guid_hash to cache the reflection
12403         only loaded images.
12404         (mono_images_init): Initialize the hash tables used for
12405         caching the reflection only images.
12406         (load_modules): Invoke mono_image_open_full passing the refonly
12407         parameter to load the modules the correct way.
12408         (build_guid_table): Add the refonly argument, to re-build the 
12409         correct hash table.
12410         (do_mono_image_open): Added the refonly argument, in order to
12411         define it for the loaded image.
12412         (mono_image_loaded_full): New function, which receives an
12413         additional parameter to look for the image in the refonly or
12414         non-refonly section.
12415         (mono_image_loaded): Updated, using mono_image_loaded_full.
12416         (mono_image_loaded_by_guid_full): The same case that happens
12417         with mono_image_loaded_full.
12418         (mono_image_loaded_by_guid): Likewise.
12419         (register_image): Use the ref_only variable inside MonoImage
12420         to decide in which hash table store the current image.
12421         (mono_image_open_from_data_full): Rename
12422         mono_image_open_from_data to mono_image_open_from_data_full,
12423         adding the refonly argument, to define the ref_only variable 
12424         inside MonoImage.
12425         (mono_image_open_from_data): Return 
12426         mono_image_open_from_data_full.
12427         (mono_image_open_full): Rename mono_image_open to
12428         mono_image_open_full, receiving the new refonly argument,
12429         to pass it to inner methods.
12430         (mono_pe_file_open): Update this function, to open
12431         a MonoImage as a non-refonly image.
12432         (mono_image_close): Use the refonly variable inside
12433         MonoImage to remove the image from the correct caches.
12434
12435         * image.h: Add the signatures of mono_image_open_full,
12436         mono_image_open_from_data_full, mono_image_loaded_full,
12437         mono_image_loaded_by_guid_full.
12438
12439         * metadata-internals.h: Add the ref_only field to 
12440         MonoImage.
12441         
12442 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12443
12444         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
12445         Fix the last behavior, which used to load the assemblies and
12446         extract MonoReflectionAssemblyName information, instead of
12447         extract it from the metadata tables. Needed for Reflection
12448         Only assemblies.
12449         
12450 2005-07-29  Martin Baulig  <martin@ximian.com>
12451
12452         * mono-debug-debugger.c
12453         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
12454         not initialized.
12455
12456         * mono-debug.c
12457         (mono_debug_address_from_il_offset): Check whether we have
12458         debugging support before attempting to take the lock.
12459         (mono_debug_source_location_from_address): Likewise.
12460         (mono_debug_source_location_from_il_offset): Likewise.
12461         (mono_debug_il_offset_from_address): Likewise.
12462         (mono_debug_address_from_il_offset): Likewise.
12463
12464 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
12465
12466         * class.c (mono_class_from_name_case): Add support for dynamic images.
12467         Fixes #75650.
12468
12469         * object.c (mono_class_compute_gc_descriptor): Add a workaround
12470         for #75479.
12471
12472 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
12473         
12474         * reflection.c (mono_method_get_object): Fix warning.
12475
12476 2005-07-28  Martin Baulig  <martin@ximian.com>
12477
12478         * mono-debug.c
12479         (mono_debug_add_wrapper): Also write the wrapper type.
12480
12481 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
12482
12483         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
12484         
12485         * class.c (mono_class_init): Avoid reading nested classes if the AOT
12486         data indicates the class has none.
12487
12488 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
12489
12490         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
12491         loader lock with the debugger lock. Prevents deadlocks for beagle.
12492
12493         Beagle can now run on an smp box for a weekend without any
12494         issues. Woohoo!
12495
12496 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
12497
12498         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
12499         in a module. Fixes #75629.
12500
12501 2005-07-26  Martin Baulig  <martin@ximian.com>
12502
12503         * mono-debug.c (mono_debug_add_wrapper): New static method.
12504         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
12505         interncall or a wrapper.
12506
12507         * mono-debug.h (MonoDebugWrapperData): New public typedef.
12508         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
12509         (MONO_DEBUGGER_VERSION): Bump to 51.
12510
12511         * mono-debug-debugger.c
12512         (mono_debugger_add_type): Removed this empty function.
12513         (mono_debugger_add_method): Likewise.
12514
12515 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
12516
12517         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
12518         before accessing method->slot.
12519
12520 2005-07-21  Jb Evain  <jbevain@gmail.com>
12521
12522         * reflection.c (method_encode_clauses/class): Handle filters clauses.
12523         Fixes #75010.
12524
12525 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
12526
12527         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
12528         #75587.
12529
12530 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
12531
12532         * image.h image.c: Add mono_image_get_guid () API function.
12533
12534 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
12535
12536         There were issues when multiple threads tried to load
12537         assemblies. A deadlock was created between assemblies_mutex and
12538         mono_domain_assemblies_lock. This fixes the issue by making the
12539         assembly ref counting be lock free. See bug 75586.
12540         
12541         * image.c (mono_image_close): The add ref function here was using
12542         Interlocked operations while the unref was using a mutex and a
12543         --. I don't think this was ever a bug that would be exposed in a
12544         non-pendantic way (ie, by an embedder doing a ref on one thread
12545         and an unref on another), but for the sake of correctness, this is
12546         now Interlocked.
12547
12548         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
12549         (mono_assembly_load_reference): Call mono_assembly_addref rather
12550         than touching the refcount ourselves.
12551         (mono_assembly_close): Use InterlockedDecrement to unref the
12552         assembly. Don't acquire the lock unless it is actually needed.
12553
12554 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
12555
12556         * class.c (mono_class_layout_fields): Fix calculation of has_references
12557         for generic types.
12558
12559 2005-07-12  Martin Baulig  <martin@ximian.com>
12560
12561         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12562
12563         * metadata.c
12564         (mono_type_hash): Provide better hashing for generic instances.
12565         (mono_generic_inst_hash): Improve hashing.
12566         (mono_generic_class_hash): Likewise.
12567
12568         * reflection.c (mymono_metadata_type_hash): Improve hashing for
12569         generic instances.
12570
12571 2005-07-12  Martin Baulig  <martin@ximian.com>
12572
12573         * reflection.c (mono_reflection_create_runtime_class): Remove the
12574         hack for generic type definitions and non-`Run' assemblies.
12575         (mono_reflection_bind_generic_parameters): Also use
12576         `klass->wastypebuilder' to check for TypeBuilders.
12577
12578 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
12579
12580         * class.c (mono_class_layout_fields): Fix calculation of has_references
12581         for generic types.
12582
12583         * class.c (inflate_generic_class): Fix a leak.
12584         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
12585         for generic types.
12586
12587 2005-07-11  Martin Baulig  <martin@ximian.com>
12588
12589         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
12590         on error.
12591
12592 2005-07-11  Martin Baulig  <martin@ximian.com>
12593
12594         * loader.c (find_method): Also lookup in
12595         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
12596
12597 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
12598
12599         * appdomain.c (mono_domain_unload): Don't free the error message
12600         before passing it to mono_get_exception_...
12601
12602         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
12603         
12604 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
12605
12606         * threads.c: try to better guess an available RT signal (bug #75387).
12607
12608 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
12609
12610         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
12611         and CACHE_OBJECT.
12612
12613 2005-07-07  Martin Baulig  <martin@ximian.com>
12614
12615         * class.c (mono_type_get_name_full): Return NULL for
12616         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
12617         fixes #75408.
12618
12619 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
12620
12621         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
12622         exit the appdomain as well being aborted.
12623
12624         * threadpool.c: Create all threadpool threads inside the root appdomain, and
12625         change back to the root domain after calling managed code. This enables
12626         appdomains using threadpools to be unloaded.
12627
12628 2005-07-07  Martin Baulig  <martin@ximian.com>
12629
12630         * class-internals.h
12631         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
12632         into `MonoDynamicGenericClass' since we only need it for dynamic
12633         types.
12634
12635         * reflection.c (mono_class_bind_generic_parameters): We don't need
12636         to compute the `parent' here.
12637
12638 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
12639
12640         * culture-info-table.h : regenerated.
12641
12642 2005-07-06  Martin Baulig  <martin@ximian.com>
12643
12644         * icall.c
12645         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
12646
12647         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
12648
12649 2005-07-06  Martin Baulig  <martin@ximian.com>
12650
12651         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
12652         we're doing a signature-only comparision; fixes #74945.
12653
12654 2005-07-06  Martin Baulig  <martin@ximian.com>
12655
12656         * class-internals.h (MonoGenericClass): Moved some things out into
12657         a new `MonoInflatedGenericClass' type.  
12658         (MonoInflatedGenericClass): New type; the `klass' of a
12659         `MonoGenericClass' is now computed lazyly in
12660         mono_get_inflated_generic_class().      
12661
12662         * class.c (mono_get_inflated_generic_class): New public function.
12663         (mono_class_inflate_generic_method): Removed the unused
12664         `MonoClass *' argument.
12665         (setup_generic_vtable): Don't call mono_get_inflated_method() on
12666         all the methods.
12667         (mono_class_create_generic): Make this static and merge it with
12668         mono_class_create_generic_2(); we're now called automatically from
12669         mono_get_inflated_generic_class().
12670
12671         * loader.c (mono_method_signature): Call
12672         mono_get_inflated_method() here.
12673
12674 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
12675
12676         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
12677         type of fields with RVA.
12678
12679         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
12680         for this pseudo class.
12681         (my_mono_class_from_generic_parameter): Likewise.
12682         (mono_class_init): Allow interfaces to have cctors.
12683
12684 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
12685
12686         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
12687         lazily for AOT methods.
12688
12689 2005-07-05  Martin Baulig  <martin@ximian.com>
12690
12691         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
12692         returns FALSE for a successful match, not TRUE.
12693
12694 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
12695
12696         * loader.c (mono_method_get_index): Optimize this a bit.
12697
12698 2005-07-04  Martin Baulig  <martin@ximian.com>
12699
12700         * class.c
12701         (class_compute_field_layout): Move the check for generic type
12702         definitions into mono_class_layout_fields().  Fixes #74684.
12703         (mono_class_from_generic_parameter): Correctly compute
12704         `klass->parent'; fixes #75457.
12705
12706         * reflection.c (register_assembly, register_module): Make sure
12707         `domain->rejobject_hash' is already created.
12708
12709 2005-07-02  Martin Baulig  <martin@ximian.com>
12710
12711         * class-internals.h
12712         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
12713         `MonoDynamicGenericClass'.      
12714
12715 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
12716
12717         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
12718         returned by a field getter is null, since null is a valid value.
12719
12720 2005-07-01  Martin Baulig  <martin@ximian.com>
12721
12722         * reflection.c (mono_reflection_generic_class_initialize): Update
12723         the `dgclass->fields [i].parent' to the correct class.
12724         (mono_image_get_fieldref_token): Use the declaring type, not the
12725         reflected type.
12726
12727 2005-07-01  Martin Baulig  <martin@ximian.com>
12728
12729         * loader.c (find_method): Also look in the interfaces; fixes #75429.
12730
12731 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
12732
12733         * threads.c (thread_cleanup): assert that thread != NULL
12734         (wait_for_tids_or_state_change): We were using the wrong variable
12735         when accessing wait->threads. `i' was always out of the bounds of
12736         the array.
12737
12738 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12739
12740         * loader.c: map user32 and kernel32 to libMonoSupportW
12741
12742 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
12743
12744         * appdomain.c (unload_thread_main): Mark this as WINAPI.
12745
12746 2005-06-28  Martin Baulig  <martin@ximian.com>
12747
12748         * loader.c (method_from_methodspec): Fix #75334.
12749
12750 2005-06-28  Martin Baulig  <martin@ximian.com>
12751
12752         Fix #74953 - Arrays now implement the generic IList<T> interface
12753         on the 2.0 platform.
12754
12755         * class-internals.h (MonoDefaults): Added `generic_array_class'.
12756
12757         * reflection.c (mono_class_bind_generic_parameters): New public
12758         function; similar to mono_reflection_bind_generic_parameters(),
12759         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
12760
12761         * domain.c (mono_init_internal): Try to initialize.
12762         `mono_defaults.generic_array_class' here; this'll only succeed if
12763         we're using the 2.0 corlib.
12764
12765         * icall.c
12766         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
12767         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
12768         (mono_lookup_internal_call): Added support for nested classes.
12769
12770         * loader.c
12771         (mono_get_method_from_token): Set `result->signature->pinvoke' if
12772         we're an interncall and have generic arguments.
12773
12774         * class.c
12775         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
12776         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
12777         instance of System.Array.InternalArray<T> for arrays, so they
12778         implement the generic IList<T> interface.
12779
12780 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
12781
12782         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
12783         (chastamar@yahoo.com). Fixes #75374.    
12784
12785 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
12786
12787         * culture-info-table.h: regenerated.
12788
12789 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12790
12791         * icall.c: handle spaces correctly for base64 strings.
12792
12793 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
12794
12795         * *.c: Kill some warnings.
12796
12797 2005-06-23  Duncan Mak  <duncan@novell.com>
12798
12799         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
12800         that this builds on Solaris 10 (x86).
12801
12802 2005-06-23  Martin Baulig  <martin@ximian.com>
12803
12804         * class.c
12805         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
12806         generic type definitions.
12807
12808 2005-06-23  Martin Baulig  <martin@ximian.com>
12809
12810         Fix #75331.
12811
12812         * metadata.c (mono_class_get_overrides): Renamed to
12813         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
12814         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
12815         pass it to mono_get_method_full().
12816
12817 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
12818
12819         * reflection.c (mono_reflection_create_runtime_class): take the
12820         mono_domain_lock in this method. Prevents deadlocks
12821
12822 2005-06-22  Martin Baulig  <martin@ximian.com>
12823
12824         * loader.c (method_from_methodspec): Fix #75330.
12825
12826 2005-06-22  Martin Baulig  <martin@ximian.com>
12827
12828         * reflection.c (type_get_qualified_name): Use
12829         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
12830         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
12831         argument; use it if we don't have an assembly name.
12832
12833 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
12834
12835         * object.c: In mono_message_init, set "copy out" flag for in
12836         parameters with the [Out] flag.
12837
12838 2005-06-21  Martin Baulig  <martin@ximian.com>
12839
12840         * class.c
12841         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
12842         and MONO_TYPE_PTR.
12843
12844 2005-06-21  Martin Baulig  <martin@ximian.com>
12845
12846         * class.c (mono_class_init): Don't initialize `class->fields' for
12847         generic instances since they're initialized again in
12848         compute_field_layout(). 
12849         (compute_field_layout): Set the field's `generic_info' here; fix
12850         #75320. 
12851
12852 2005-06-21  Martin Baulig  <martin@ximian.com>
12853
12854         * class-internals.h
12855         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
12856
12857         * metadata.c (mono_metadata_generic_method_equal): Also
12858         distinguish the `generic_class'; fixes #75334.
12859
12860 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12861
12862         * domain.c:
12863         * appdomain.c:
12864         * domain-internals.h:
12865         * reflection.c: 'domain_assemblies' field is now protected by its own
12866         lock. Don't call into managed code to run the AssemblyLoad event if we
12867         now there are no registered delegates for it.
12868
12869 2005-06-20  Martin Baulig  <martin@ximian.com>
12870
12871         * class.c (mono_class_is_assignable_from): Use a custom version of
12872         mono_class_has_parent() to make things work for generic instances;
12873         fix #75300.
12874
12875 2005-06-20  Martin Baulig  <martin@ximian.com>
12876
12877         * loader.c (method_from_methodspec): Apply a patch from
12878         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
12879
12880 2005-06-20  Martin Baulig  <martin@ximian.com>
12881
12882         * class.c (mono_class_init): Reverted Zoltan's last change; it
12883         breaks generics.
12884
12885 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
12886
12887         * threads.c (wait_for_tids_or_state_change): Add missing locking.
12888
12889 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12890
12891         * socket-io.c: fix the index in the socket array for writable/error
12892         sockets. Fixes bug #75306.
12893
12894 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
12895
12896         * class.c (mono_class_init): Allow interfaces to have static ctors.
12897
12898 2005-06-17  Martin Baulig  <martin@ximian.com>
12899
12900         * loader.c (method_from_methodspec): Use `context->container' when
12901         parsing the `gmethod->inst'.
12902
12903 2005-06-17  Martin Baulig  <martin@ximian.com>
12904
12905         * class.c (mono_type_get_name_recurse): Don't add the assembly
12906         name for type arguments.
12907
12908 2005-06-15  Martin Baulig  <martin@ximian.com>
12909
12910         * reflection.c (mono_image_get_inflated_method_token): Encode
12911         correct klass; fixes #75260.
12912
12913 2005-06-13 Michal Moskal <malekith@nemerle.org>
12914
12915         * icall.c: Make GetCorrespondingMethod/Constructor take
12916         MonoReflectionMethod method not MonoMethod. Removed
12917         MonoType.GetCorrespondingField, and make
12918         MonoGenericType.GetCorrespondingField take name not
12919         MonoClassField.
12920
12921 2005-06-13  Michal Moskal <malekith@nemerle.org>
12922
12923         * reflection.c (field_encode_signature, encode_locals):
12924          Make sizes of buffers for types larger (for big generic types).
12925          (create_generic_typespec,
12926          mono_reflection_sighelper_get_signature_local,
12927          mono_reflection_sighelper_get_signature_field):
12928          Add asserts for too small buffers.
12929
12930 2005-06-15  Martin Baulig  <martin@ximian.com>
12931
12932         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
12933         if our parent is not a dynamic type.
12934
12935 2005-06-15  Martin Baulig  <martin@ximian.com>
12936
12937         * class-internals.h (MonoTypeNameFormat): New enum.
12938
12939         * class.c
12940         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
12941         (mono_type_get_full_name): Removed.
12942         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
12943         argument instead of the boolean's.
12944
12945         * icall.c (ves_icall_System_MonoType_getFullName):
12946         Added `gboolean assembly_qualified'.    
12947
12948         * reflection.h
12949         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
12950
12951         * reflection.c (mono_reflection_parse_type): Parse the new type
12952         name format.
12953
12954 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12955
12956         * icall.c: no need to convert from utf16 to utf8 and then back again
12957         after the call to GetLogicalDrives.
12958
12959 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12960
12961         * icall.c: frombase64. Fix problems exposed by new tests.
12962
12963 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12964
12965         * icall.c: added internal calls for converting char [] and strings in
12966         base64 into byte [].
12967
12968 2005-06-10  Martin Baulig  <martin@ximian.com>
12969
12970         * class.c (mono_class_create_generic_2): Read the nested classes
12971         from the metadata rather than from `gklass->nested_classes' since
12972         `gklass' might not be initialized yet.
12973
12974 2005-06-09  Duncan Mak  <duncan@novell.com>
12975
12976         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
12977         all public headers. Fixes #74919.
12978
12979 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
12980
12981         * domain.c: The key for proxy_vtable_hash is now a pointer
12982         array. Added new GHashFunc and GCompareFunc functions for this.
12983
12984         * class.h: The list of interfaces in MonoRemoteClass is known in
12985         advance and can't grow (we create a new MonoRemoteClass if needed),
12986         so now the interface array can be allocated together with
12987         MonoRemoteClass.
12988         
12989         * object.c: Added a new method create_remote_class_key.
12990         Fixed mono_remote_class so it does not depend on
12991         mono_upgrade_remote_class.
12992         Removed extend_interface_array.
12993         Added new method clone_remote_class(), which makes a copy of a remote
12994         class and adds a new interface or class to it.
12995         mono_upgrade_remote_class() now creates a new remote class (or gets
12996         it from the cache) if an vtable upgrade is needed. In this way
12997         we make sure that other objects sharing the same remote class
12998         don't get the new vtable with unwanted interfaces.
12999         
13000         * object-internals.h:
13001         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
13002         
13003         * marshal.c: Track changes in mono_upgrade_remote_class().
13004
13005 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
13006         * icall.c: Add runtime methods for obtaining members of inflated
13007         class, which were created from supplied non-inflated members. It
13008         is used in internal Get{Method,Constructor,Field} methods in
13009         System.Type
13010
13011 2005-06-09  Martin Baulig  <martin@ximian.com>
13012
13013         * reflection.c
13014         (mono_reflection_bind_generic_method_parameters): Fix #75169.
13015
13016 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13017         * reflection.c (mono_image_basic_init): Define
13018         Version in MonoDynamicAssembly. 
13019         
13020 2005-06-08  Martin Baulig  <martin@ximian.com>
13021
13022         Fix #75136.
13023
13024         * loader.c
13025         (mono_method_signature_full): New public method; takes a
13026         `MonoGenericContext *'.
13027         (find_method): Use mono_method_signature_full() and pass the
13028         klass'es context to it.
13029
13030         * class.c (mono_class_is_inflated_method): Use
13031         mono_method_signature_full() and pass the context to it.
13032
13033 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
13034
13035         * object.c: add proper locking in mono_remote_class_vtable(),
13036         fixes possible memory corruption.
13037
13038 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
13039
13040         * marshal.c (mono_remoting_marshal_init): set
13041         initialized after initialization.
13042
13043 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
13044
13045         * locales.c : hush.
13046
13047 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
13048
13049         * object.c (extend_interface_array): fix really silly
13050         memory corrupting / comparison bug.
13051
13052 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13053
13054         * reflection.c: Functions added to support the creation
13055         of CustomAttributeData, which includes Attribute data
13056         used by ReflectionOnly methods.
13057
13058         * reflection.h:  mono_reflection_get_custom_attrs_data and
13059          mono_custom_attrs_data_construct added (functions exposed).
13060
13061          * icall.c: Added mono_reflection_get_custom_attrs_data
13062          as icall.
13063         
13064 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
13065
13066         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
13067         lupus's request.
13068
13069 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
13070
13071         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
13072
13073         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
13074         dynamic DllImportAttribute.
13075
13076         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
13077         dynamic DllImportAttribute.
13078
13079         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
13080         Fixes #75162.
13081
13082 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13083
13084         * threads.c: avoid segfault when an unstarted thread is aborted.
13085
13086 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
13087
13088         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
13089         Returns the name and version of the runtime for reporting.
13090
13091 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13092
13093         * appdomain.c: bump corlib version.
13094         * object-internals.h: new field in MonoReflectionAssembly.
13095
13096 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13097
13098         * object-internals.h: Carlos forgot to add this field.
13099
13100 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13101
13102         * icall.c: Added create_version to create instances
13103         of Version of MonoReflectionAssemblyName. This change helps
13104         the AssemblyName tests to keep running fine.
13105         
13106 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
13107   
13108         * object.c (mono_method_return_message_restore): A somehow less
13109         intrusive fix for #75138.
13110
13111 2005-06-03  Raja R Harinath  <rharinath@novell.com>
13112
13113         * object.c (mono_method_return_message_restore): Fix computation
13114         of expected number of out args.
13115
13116 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
13117
13118         * reflection.c (mono_image_get_method_info): Fix the case when the
13119         charset is empty.
13120
13121 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
13122
13123         * object.c: Added missing null check in
13124           mono_method_return_message_restore.
13125
13126 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
13127
13128         * reflection.c (mono_image_get_method_info): Handle the case when
13129         dllentry is empty.
13130
13131 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
13132
13133         * object.c: When creating the vtable for a proxy, take into account
13134         all inherited interfaces, not only the ones registered in
13135         iclass->interfaces. This fixs bug #74996.
13136         Also, in mono_method_return_message_restore, verify that the array
13137         of out args has the expected lengh.
13138
13139 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13140
13141         * socket-io.c: update the timeout in Poll when the call is interrupte.
13142
13143 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13144
13145         * socket-io.c: support abort/suspend in Select_internal after last
13146         change.
13147
13148 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13149
13150         * threadpool.c: remove warning.
13151
13152 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13153
13154         * icall.c:
13155         * socket-io.[ch]: Select_internal uses poll() now when available, thus
13156         removing the 1024 limit from select(). Runtime part of the fix for
13157         bug #71203.
13158
13159 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13160
13161         * socket-io.c: when resolving the addresses for the same
13162         host returned by gethostname(), get the local IPs from the interface
13163         list. Loopback addresses are discarded if the are interfaces up with
13164         non-loopback ones. Fixes bug #63265.
13165
13166 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
13167
13168         * appdomain.c, verify.c, object-internals.h, reflection.c:
13169         bumped corlib number to 36, and added new extra_flags field
13170         to ReflectionMethodBuilder and friends.  Fixes #75060.
13171
13172 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
13173
13174         * gc.c: register a new weak link only if the object is non-null
13175         (fixes bug#75047).
13176
13177 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
13178
13179         * culture-info.h : short time pattern too.
13180
13181 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
13182
13183         * culture-info.h : expand long time pattern string length.
13184
13185 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
13186
13187         * culture-info-table.h : update (more French date format; #72788).
13188
13189 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
13190
13191         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
13192         the method is static. Fixes #75029.
13193
13194 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
13195
13196         * reflection.c: Update the table_idx field of method builders after
13197         saving the module, since it can change. This is a workaround for
13198         bug #74914. 
13199
13200 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
13201
13202         * culture-info-table.h : update (additional French date format).
13203
13204 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
13205
13206         * icall.c (ves_icall_type_Equals): Revert last change.
13207         
13208         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
13209
13210         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
13211
13212 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
13213
13214         * class-internals.h: Added executioncontext_class field to 
13215         MonoDefaults structure.
13216         * domain.c: Cache System.Threading.ExecutionContext class in 
13217         mono_defaults.
13218         * object.c: Capture the ExecutionContext for asynchroneous calls in
13219          mono_async_result_new.
13220         * object-internals.h: Added execution_context and original_context 
13221         fields to MonoAsyncResult. Added execution_context to MonoThread.
13222         * security-manager.c|.h: Added mono_get_context_capture_method to 
13223         return the capture method (if required by the security manager or by
13224         the framework version used).
13225         * threadpool.c: Apply capture (if present) ExecutionContext in 
13226         mono_async_invoke and revert to original context after it completes.
13227
13228 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
13229
13230         * culture-info-table.h : updated (real hacky solution for zh-CHT).
13231
13232 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
13233
13234         * culture-info-table.h : zh-CHT related workaround.
13235
13236 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
13237
13238         * marshal.c (emit_marshal_custom): Add some error checking and call the
13239         methods in the ICustomMarshaler interface. Fixes #74875.
13240         
13241         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
13242         native->managed wrappers.
13243
13244 2005-05-12  Martin Baulig  <martin@ximian.com>
13245
13246         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
13247         here and use the loader lock.
13248
13249         * mono-debug.c: Properly lock when the debugger is not attached.
13250         (mono_debug_init): Release the initial lock if we're not running
13251         in the debugger.
13252
13253 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
13254
13255         * marshal.c (emit_marshal_custom): Pass through NULL values without
13256         calling the custom marshalling routines.
13257
13258         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
13259         conversion in structures. Fixes #74882.
13260
13261 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
13262
13263         * culture-info-table.h : zh-* cultures were missing.
13264
13265 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
13266
13267         * threads.c: Added a new event background_change_event which is signaled
13268         when a thread changes its background mode.
13269         Moved here several checks previously done in managed code. The checks
13270         require the thread lock, and using the thread lock in managed code
13271         can result in deadlocks.
13272         Merged Start_internal and Thread_internal into a single method. Now 
13273         Thread_internal does all work of creating and starting a thread.
13274         Added icalls for setting and getting the state of the object. Moved from
13275         managed code to avoid locking there.
13276         Added wait_for_tids_or_state_change() which is called instad of
13277         wait_for_tids when waiting for non-backround threads to end. This method
13278         will return if one of the threads ends or the background_change_event
13279         is signaled.
13280         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
13281         the background mode. This method signals the background_change_event
13282         event.
13283         * icall.c:
13284         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
13285         removed Start_internal.
13286         
13287 2005-05-11  Martin Baulig  <martin@ximian.com>
13288
13289         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
13290         to order of some fields to get proper alignment on 64-bit machines.
13291
13292 2005-05-11  Martin Baulig  <martin@ximian.com>
13293
13294         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
13295         changes as they're broken and completely fuck up the debugger.
13296
13297         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
13298
13299 2005-05-10  Martin Baulig  <martin@ximian.com>
13300
13301         * reflection.c (mono_reflection_generic_class_initialize): Don't
13302         call mono_class_setup_parent() here.
13303
13304 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13305
13306         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
13307         send/receive timeout use an integer in milliseconds. We were using a
13308         struct timeval.
13309
13310 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13311
13312         * locales.c:
13313         (internal_get_cultures): reserve the first slot of the array for the
13314         InvariantCulture, which will be filled in managed code.
13315
13316 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
13317
13318         * reflection.c (mono_image_fill_module_table): Initialize the
13319         GENERATION field as well.
13320
13321 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13322
13323         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
13324         Monitor.Enter on the object.
13325
13326 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
13327
13328         * threads.c: Enable the wait for running threads when exiting.
13329         * icall.c: Suspend all threads before exiting.
13330
13331 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
13332
13333         * assembly.c (mono_assembly_load_reference): Fix warning.
13334
13335 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13336
13337         * threadpool.c: changed the default number of threads per cpu. From now
13338         on, the default will be 20 + (5 * number of cpus) instead of 50.
13339
13340 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
13341
13342         * loader.c (mono_method_get_signature_full): Add locking here.
13343
13344 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
13345
13346         * appdomain.c: Moved methods for parsing and freeing assembly
13347         names to assembly.c.
13348         * assembly.c, domain-internals.h: Created public methods for parsing
13349         assembly names. Fixed mono_assembly_load_with_partial_name:
13350         it now finds the best match, taking into account the version,
13351         token and culture specified in the partial name. Also return
13352         the latest version if no version information is specified.
13353
13354 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
13355
13356         * threadpool.c: replace check for SocketAsyncCall class.
13357
13358 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13359
13360         * threadpool-internals.h:
13361         * Makefile.am: added threadpool-internals.h
13362
13363         * threadpool.c: call mono_unhandled_exception on exceptions not handled
13364         that happen in threadpool threads (tested on MS).
13365         (mono_thread_pool_remove_socket): new function that dispatch any pending
13366         AIO call on a socket that is closing. By now only epoll really needs it,
13367         as select/poll wake up when the socket closes.
13368
13369
13370         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
13371
13372 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
13373
13374         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
13375
13376 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
13377
13378         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
13379
13380 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
13381
13382         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
13383         has an abort request, convert it into a suspend request.
13384
13385 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
13386
13387         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
13388         warning for the usage of `UnmanagedFunctionPointerAttribute' which
13389         is not supported yet.
13390
13391 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13392
13393         * image.c: register assemblies loaded from data (bundles) in the loaded
13394         assemblies hash. Fixes bug #74772.
13395
13396 2005-04-29  Martin Baulig  <martin@ximian.com>
13397
13398         * class.c (mono_type_get_name_recurse): Update to the new naming
13399         schema from the latest .NET 2.x beta2.
13400         (mono_class_setup_vtable_general): If we're a generic instance,
13401         copy the vtable from our generic type definition and inflate all
13402         the methods in it.
13403
13404         * loader.c (find_method): Update to the new naming schema from the
13405         latest .NET 2.x beta2.
13406
13407 2005-04-29  Raja R Harinath  <harinath@gmail.com>
13408
13409         * class.c (mono_class_init): Add a mono_loader_unlock to the
13410         #74734 fix.
13411
13412 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
13413
13414         * icall.c (ves_icall_System_Environment_Exit): Remove the 
13415         suspend_all_other_threads () call for the time being, since it can hang.
13416
13417         * threads.c (mono_thread_manage): Similarly, disable the waiting for
13418         the background threads to exit, since it can also hang.
13419
13420         * class.c (mono_class_init): Applied patch from Ankit Jain 
13421         (radical@gmail.com). Avoid pending init errors when a field refers
13422         to a nested class using a typeref. Fixes #74734.
13423
13424         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
13425         this for dynamic modules.
13426
13427 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13428
13429         * threads.c: don't wait for threads that are in the process of aborting
13430         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
13431         and waiting for background threads to finish. This makes xsp and
13432         mod-mono-server exit without random length delays and/or hangs.
13433
13434 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13435
13436         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
13437
13438 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
13439
13440         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
13441         dynamic types to prevent infinite loops. Fixes #74727.
13442
13443         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
13444         ..._is_assignable_to.
13445
13446 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
13447
13448         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
13449
13450 2005-04-25  Martin Baulig  <martin@ximian.com>
13451
13452         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
13453
13454         * domain.c
13455         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
13456
13457         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
13458
13459         * reflection.c (build_compressed_metadata): Set metadata header
13460         version to 2.0.
13461
13462 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
13463
13464         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
13465         number into an integral and a decimal part. Fixes #70473.
13466
13467         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
13468
13469 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
13470
13471         * culture-info-table.h : reflected the latest locale-builder output.
13472
13473 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13474
13475         * threadpool.c: check for SuspendRequested too when deciding if
13476         mono_thread_interruption_checkpoint should be called.
13477
13478 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13479
13480         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
13481         * threads.c: remove interruption_mutex and use Interlocked instead. When
13482         suspending all the threads, wait for all the suspended events at once.
13483         If we're shutting down and get an APC that is going to be queued,
13484         call mono_thread_execute_interruption immediately, as the thread might
13485         be sleeping on a pthread condition or mutex.
13486
13487         * icall.c: call mono_runtime_set_shutting_down before suspending the
13488         threads.
13489
13490         Fixes bug #74693. And now xsp is happier when exiting.
13491
13492 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
13493
13494         * loader.c (mono_stack_walk): Fix #74690.
13495
13496 2005-04-22  Martin Baulig  <martin@ximian.com>
13497
13498         * mono-debug.h (MonoDebugMethodJitInfo): Added
13499         `MonoDebugMethodJitInfo *jit'.
13500
13501         * mono-debug.c (mono_debug_read_method): Cache the
13502         MonoDebugMethodJitInfo in `address->jit'.
13503         (mono_debug_free_method_jit_info): New public method.
13504
13505 2005-04-22  Martin Baulig  <martin@ximian.com>
13506
13507         * class.c (mono_class_is_assignable_from): Disallow
13508         type parameter -> interface.
13509
13510 2005-04-21  Dick Porter  <dick@ximian.com>
13511
13512         * threads.c (mono_thread_create): Turn an assertion into an error.
13513
13514 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
13515
13516         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
13517         
13518         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
13519         Fix some gcc 4.0 warnings.
13520
13521 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
13522
13523         * file-io.c: fix alt dir separator char on unix systems
13524         and cleanup (fixes bug #71214).
13525
13526 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
13527
13528         * marshal.c: Use CALLVIRT instead of CALL when dispatching
13529         a call to a remote domain, since the method may be an
13530         interface method in the client domain. This fixes bug #74192.
13531
13532 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13533
13534         * threadpool.c: recv/send are now performed before going back to managed
13535         code to save one transition.
13536
13537 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13538
13539         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
13540
13541         * metadata/threadpool.c: removed hack to workaround the bug above.
13542
13543         Fixes bug #74618.
13544
13545 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
13546
13547         * reflection.c reflection.h: Fix handling of parameter defaults in
13548         dynamic methods. Also fixes handling of parameter attributes.
13549         Fixes #74609.
13550
13551         * mono-debug.c (mono_debug_close_image): Fix warning.
13552
13553 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13554
13555         * socket-io.h: replaced old unused field with new 'blocking'.
13556         * threadpool.c: restore socket blocking state on windows(tm).
13557
13558 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
13559
13560         * icall.c: don't return the codebase in the AssemblyName[] returned by
13561         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
13562         * object-internals.h: Removed FIXME (fields were presents) and fixed
13563         versioncompat declaration.
13564
13565 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13566
13567         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
13568         not closed, so don't cleanup when it happens.
13569
13570 2005-04-13  Chris Toshok  <toshok@ximian.com>
13571
13572         * mono-debug-debugger.h: change prototype for
13573         mono_debugger_lookup_type.
13574
13575         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
13576         this function, although it should probably be named
13577         mono_debugger_init_type.
13578
13579 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13580
13581         * threadpool.c: fix non-AIO case.
13582
13583 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
13584
13585         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
13586         the built-in profiler to measure just JIT compilation times.
13587
13588 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13589
13590         * threadpool.c: the epollfd might be closed by another thread at
13591         any time, so ignore EBADF at treat it as a "we're closing" sign.
13592
13593 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13594
13595         * threadpool.c: release the semaphores with a count equals to the number
13596         of working threads in both IO and regular pools. Fixed typo that messed
13597         up the count of IO pool threads. Don't initialize the pipe handles if
13598         we're using epoll.
13599
13600 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13601
13602         * threadpool.c: some systems don't like a NULL when deleting the socket
13603         from epoll.
13604
13605 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13606
13607         * threadpool.c: fix semaphore allocation.
13608
13609 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13610
13611         * threadpool.c: added epoll() based implementation for asynchronous IO
13612         that is used instead of the default poll() when available.
13613         It can be disabled by setting MONO_DISABLE_AIO.
13614
13615 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13616
13617         * threadpool.c: windows needs 'closesocket' and instead of returning
13618         0 when the stream is closed while in select, it returns -1. Fixes bug
13619         #74573.
13620
13621 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
13622
13623         * class.c (class_compute_field_layout): Fix the regression caused by
13624         the previous try.
13625
13626 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13627
13628         * threadpool.c: separate pool for socket async. IO.
13629         * threadpool.h: mono_max_worker_threads is not a global any more.
13630
13631 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
13632
13633         * class.c (class_compute_field_layout): Fix #74549.
13634
13635 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13636
13637         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
13638         use 2 connected sockets instead.
13639
13640 2005-04-08  Miguel de Icaza  <miguel@novell.com>
13641
13642         * mono-config.c: Add new entry point for mkbundle
13643         mono_config_parse_memory. 
13644
13645 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13646
13647         * threadpool.c: removed another unused function.
13648
13649 2005-04-08  Ankit Jain  <radical@corewars.org>
13650
13651         * reflection.c (get_default_param_value_blobs): Add 'types'
13652         parameter to get the types encoded in the constant table.
13653         (mono_param_get_objects): Use the type from the constant table,
13654         not the type of the parameter, when creating default values.
13655         Handle null default values correctly.
13656
13657 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13658
13659         * file-io.c:
13660         * file-io.h:
13661         * threadpool.c:
13662         * threadpool.h:
13663         * icall.c:
13664         * socket-io.c: removed dead code for async IO.
13665
13666 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13667
13668         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
13669
13670         * threadpool.c: intercept socket async. calls and pass them to a thread
13671         that is polling and dispatching the job items to the threadpool as
13672         socket become ready. Fixes bugs #71217, #71933.
13673
13674         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
13675         between char and short/ushort arrays.
13676
13677         * socket-io.c: remove dead code.
13678
13679 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
13680
13681         * locales.c,
13682           icall.c : removed InternalToUpper_Comp() and
13683           InternalToLower_Comp().
13684
13685 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
13686
13687         * char-conversions.h : The tables were incorrectly generated. Should
13688           be generated against invariant culture.
13689
13690 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
13691
13692         * object.c (mono_runtime_invoke_array): Fix return value when 
13693         passing pre-created valuetype objects to ctors.
13694
13695         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
13696         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
13697         Fixes #74338.
13698
13699 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
13700
13701         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
13702         only used with --security and hides the wrong corlib version error.
13703
13704 2005-03-30  Joshua Tauberer  <tauberer@for.net>
13705
13706         * class.c: Changed mono_class_name_from_token so that types
13707         outside of a namespace don't have an initial period.  Improved
13708         the g_warning message used in _mono_class_get when loading
13709         fails.
13710         * assembly.c: In mono_assembly_load_reference, when an assembly
13711         can't be found, "No such file or directory" is misleading and
13712         unhelpful because a few paths were checked for the presence of
13713         the assembly.  When that happens (ENOENT), display a nicer
13714         message indicating the directories that were searched.  In all
13715         cases, the warning is made easier to read for non-hackers.
13716
13717 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
13718
13719         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
13720         project/solution.
13721         * appdomain.h|domain.c: Removed inline from functions.
13722         * appdomain.c: Reduced warnings when compiling on windows.
13723         * icall.c: Fixed output_debug declaration to gunichar2*.
13724         * mono-config.c: Reduced warnings when compiling on windows.
13725         * rand.c: Added missing "windows.h". Added missing return value.
13726         * rawbuffer.c: Added missing winsock2.h for windows.
13727         * sysmath.h: Added mono-compiler.h header to allow/ease 
13728         compilation with non-GCC compilers.
13729         * threads.c: Fixed declarations to compile with VS.NET C compiler.
13730         Removed cast warnings.
13731
13732         Adapted from the work of J Lothian (for VC6).
13733
13734 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
13735
13736         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
13737         from default_path.
13738
13739 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
13740
13741         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
13742         the 2.0 profile.
13743
13744 2005-03-27  Raja R Harinath  <harinath@gmail.com>
13745
13746         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
13747         has to be in $(exec_prefix).  $(prefix) is for arch-independent
13748         stuff, and it would probably use $(prefix)/share rather than
13749         $(prefix)/lib.
13750
13751 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13752
13753         * console-io.c: added 2 includes that might be missing.
13754
13755 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
13756
13757         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
13758         profile.
13759
13760         * reflection.c (create_custom_attr): Allocate the params array using
13761         alloca so it gets GC tracking.
13762
13763 2005-03-23  Chris Toshok  <toshok@ximian.com>
13764
13765         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
13766         out some spew.
13767
13768 2005-03-24  Raja R Harinath  <rharinath@novell.com>
13769
13770         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
13771         changes to pick up any changes in prefix, etc.
13772
13773 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
13774
13775         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
13776         
13777         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
13778         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
13779
13780 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
13781
13782         * class-internals.h object-internals.h class.c reflection.c: Extend the
13783         mono_lookup_dynamic_token () function to return the class of the
13784         token as well. 
13785
13786         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
13787         well. Fixes #73848.
13788
13789 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
13790
13791         * security-manager.c: Skip inheritance checks for intra-corlib
13792         class inheritance and method overrides. This skips a lot of checks
13793         and (anyway) permissions cannot work until corlib is loaded.
13794
13795 2005-03-23  Martin Baulig  <martin@ximian.com>
13796
13797         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
13798         MONO_TYPE_GENERICINST.  
13799
13800 2005-03-23  Martin Baulig  <martin@ximian.com>
13801
13802         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
13803
13804 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
13805
13806         * class.c: added locking comments to some functions.
13807         Cache the interface offsets arrays (saves about 20 KB
13808         of runtime memory in a typical app).
13809         Reduce the time overhead in mono_class_setup_supertypes ().
13810
13811 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
13812
13813         * icall.c: speedup and fix leaks in GetMethodsByName and
13814         GetPropertiesByName.
13815
13816 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
13817
13818         * reflection.c: some locking fixes.
13819
13820 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
13821
13822         * metadata.c: added missing break in case statement.
13823
13824 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
13825
13826         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
13827         typedbyref return values. Fixes #73941.
13828
13829 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
13830
13831         * security-manager.c|h: Added demandunmanaged method and 
13832         suppressunmanagedcodesecurity class to MonoSecurityManager.
13833         Renamed aptc class to allowpartiallytrustedcallers.
13834
13835 2005-03-17  Martin Baulig  <martin@ximian.com>
13836
13837         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
13838
13839 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13840
13841         * file-io.c: disabled file async. IO using aio_*. It uses the
13842         threadpool now. Workaround for bug #73718.
13843
13844 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
13845
13846         * assembly.h, mono-config.c: added code to deal with bundled configs
13847         for bundled assemblies.
13848
13849 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
13850
13851         * *.c, private.h: cleanup, removing old private.h header file.
13852
13853 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
13854
13855         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
13856         and throw_on_unmappable_char attributes.
13857
13858 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
13859
13860         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
13861         _ProcessName_internal.
13862
13863 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
13864
13865         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
13866         #73631.
13867
13868         * icall.c threads.c threads-types.h: Remove slothash icalls as they
13869         are no longer used.
13870
13871 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
13872
13873         * object.c (compute_class_bitmap): Add support for generics. Fixes
13874         #73527.
13875
13876 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
13877
13878         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
13879
13880 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13881
13882         * filewatcher.c: commented out the code for windows watcher, as we don't
13883         use it (we use the managed implementation instead).
13884
13885 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
13886
13887         * object-internals.h (MonoThread): Remove 'unused1' field.
13888
13889         * appdomain.c: Bump corlib version.
13890
13891         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
13892
13893         * reflection.c (mono_reflection_create_runtime_class): Remove the
13894         AssemblyBuilder.Save optimization since it causes too many problems.
13895
13896 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
13897
13898         * exception.c|h: Added mono_get_exception_reflection_type_load to
13899         create a ReflectionTypeLoadException object.
13900         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
13901         to return NULL is a InheritanceDemand fails during reflection. Updated
13902         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
13903         ReflectionTypeLoadException if an InheritanceDemand fails during 
13904         reflection. Added icall mapping for GetLinkDemandSecurity.
13905         * security-manager.c|h: Added ves_icall_System_Security_
13906         SecurityManager_GetLinkDemandSecurity internal call to return the
13907         class and methods permissions set for a LinkDemand. Removed unused
13908         fields in MonoSecurityManager.
13909
13910 2005-03-10  Martin Baulig  <martin@ximian.com>
13911
13912         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
13913         it's a generic instance.
13914
13915 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
13916
13917         * reflection.c (mono_get_object_from_blob): Applied patch from
13918         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
13919
13920         * class.c (mono_class_is_assignable_from): Another try at fixing 
13921         #73469 without breaking anything.
13922
13923 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
13924
13925         * class.c: (mono_class_is_assignable_from): Revert the last changes
13926         since they don't work with generics.
13927         
13928         * class.c (mono_class_is_assignable_from): Fix build bustage.
13929
13930         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
13931         the managed IsAssignableFrom method. Fixes #73469.
13932
13933         * reflection.c (mono_reflection_call_is_assignable_from): New helper
13934         function.
13935
13936 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
13937
13938         * object.c (mono_load_remote_field_new): Fix returning uninitialized
13939         memory when the remoting callback does not sets the out arguments.
13940         Fixes #73007.
13941
13942         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
13943         by mistake.
13944
13945         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
13946
13947         * object-internals.h (MonoStackFrame): Sync with managed object layout.
13948
13949         * appdomain.c: Bump corlib version.
13950
13951 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
13952
13953         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
13954         function.
13955
13956         * threads.c (mono_thread_attach): Detect threads which are not started
13957         by the GC pthread wrappers.
13958
13959 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
13960
13961         * icall.c: Added new icall for RNG.
13962         * rand.c|h: Added new icall to open the RNG. This allows to share a 
13963         single handle on Linux to access /dev/urandom and fix #73183.
13964
13965 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
13966
13967         * object.c: setting the new vtable in a transparent proxy object must
13968         not change the GC descriptor.
13969
13970 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
13971
13972         * object.c: fixed compilation without GCJ support.
13973         * reflection.c: for runtime-created types ensure klass->has_references
13974         is correct (bug #73215).
13975
13976 2005-03-02  Martin Baulig  <martin@ximian.com>
13977
13978         * class.c (mono_class_is_assignable_from): Make this work if
13979         `oklass' is a generic instance; fixes #72831.
13980
13981 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
13982
13983         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
13984         with hasthis set.
13985         
13986         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
13987
13988         * marshal.c: Reorganize native->managed marshalling code to also use
13989         the emit_marshal_... functions.
13990
13991 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
13992
13993         * object.c: typed allocs have issues with bitmap sizes > 30,
13994         so check for max_set >= 30.
13995
13996 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
13997
13998         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
13999         managed code. Fixes #73012.
14000
14001         * metadata.h (MonoMarshalSpec): Add elem_mult field.
14002
14003         * metadata.c reflection.c: Load/Emit elem_mult as well.
14004         
14005         * metadata.h (MonoMarshalSpec): Add comment.
14006
14007         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
14008
14009         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
14010         num_elem to -1 if not given.
14011
14012         * object-internals.h (MonoReflectionMarshal): Add has_size field.
14013
14014         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
14015         given values.
14016
14017 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
14018
14019         * null-gc.c (mono_gc_free_fixed): Was not compilable.
14020
14021 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
14022
14023         * reflection.c (encode_marshal_blob): Encode param_num field as well.
14024
14025         * object-internals.h (MonoReflectionMarshal): Add param_num field.
14026
14027 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
14028
14029         * object.c: generalized the reference bitmap creation
14030         and added hooks for the new GC.
14031         * class-internals.c: removed the gc_bitmap field from MonoClass.
14032
14033 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14034
14035         * domain.c: help the compiler to produce better code
14036         in mono_jit_info_table_find ().
14037
14038 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
14039
14040         * object.c: make all allocations look typed.
14041
14042 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14043
14044         * socket-io.c: load Mono.Posix if it's not loaded already
14045         (fixes bug#73033).
14046
14047 2005-02-24  Martin Baulig  <martin@ximian.com>
14048
14049         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
14050         * reflection.c (dup_type): Likewise.
14051
14052 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
14053
14054         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
14055         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
14056
14057 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14058
14059         * domain.c, threads.c, object-internals.h: make the critical thread
14060         local vars use the fast access mode (even when we're compiled in
14061         a lib). Provide accessors to be used by the jit during codegen.
14062
14063 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14064
14065         * appdomain.c: Changed hook functios behavior to include
14066         support for the reflection only assemblies. Some icalls were changed
14067         to support the mentioned assemblies too. Signatures of static methods
14068         try_assembly_resolve and real_load now have an additional parameter:
14069         refonly.
14070
14071         * assembly.c: General changes to mono_assembly_ methods to support
14072         reflection only api. Functions mono_assembly_open, mono_assembly_load,
14073         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
14074         suffix, to support an additional gbool parameter to specify whether
14075         the assembli is reflection only or not. Created some new hook functions 
14076         to add support for reflection only assemblies. Signatures of static 
14077         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
14078         have now an additional parameter: refonly.
14079
14080         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
14081         indicating whether the assembly is reflection only or not.
14082
14083         * exception.c: Add mono_get_exception_invalid_operation.
14084
14085         * icall.c: Throw an InvalidOperationException when trying to invoke
14086         a property/method/event, or trying to set/get the value of a field.
14087         Also add an icall to retrieve the ref_only flag to the
14088         MonoReflectionAssembly.
14089
14090 2005-02-23  Chris Toshok  <toshok@ximian.com>
14091
14092         Part of fix for #72827.
14093         * mono-debug.c (mono_debug_add_method): add lexical block data to
14094         the info we write.  Kind of a hack at the moment - we copy the
14095         lexical block info from the MonoDebugMethodInfo to the
14096         MonoDebugMethodJitInfo here, before writing it.
14097         (mono_debug_read_method): read the lexical block info.
14098
14099         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
14100
14101         * debug-mono-symfile.h: add lexical block support.
14102
14103         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
14104         support.
14105
14106 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14107
14108         * loader.c (mono_lookup_pinvoke_call): Fix warning.
14109
14110         * object.c (mono_runtime_free_method): Call mono_free_method () and
14111         put the TODOs there.
14112
14113         * loader.c (mono_free_method): Free up most memory allocated for 
14114         dynamic methods.
14115
14116 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14117
14118         * reflection.c: properly flag a Type argument to a
14119         named custom attr value (bug #72248).
14120
14121 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14122
14123         * reflection.c: reduce code duplication in named custom
14124         attribute encoding.
14125
14126 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
14127
14128         * reflection.c: properly encode custom attrs of type object
14129         (bug #72649).
14130
14131 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14132
14133         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
14134
14135 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
14136
14137         * socket-io.c: load System.dll if it's not loaded already
14138         (bug #72850 and #70477).
14139
14140 2005-02-21  Martin Baulig  <martin@ximian.com>
14141
14142         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
14143         generic instances.
14144
14145 2005-02-21  Martin Baulig  <martin@ximian.com>
14146
14147         * reflection.c (mono_image_build_metadata): We also need to
14148         "fixup" the MethodImpl table after we computed the final method
14149         indices.  Call fixup_methodimpl() to do that.
14150         (fixup_methodimpl): New private method.
14151
14152 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
14153
14154         * assembly.c: special case mscorlib.dll (bug#72536),
14155         patch from Carlos Alberto Cortez.
14156
14157 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
14158
14159         * threads-types.h threads.c: Fix build bustage.
14160
14161         * threads.c: Use a union for long<->double conversions.
14162
14163         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
14164         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
14165
14166         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
14167         containing the checkpoint call with NOT_TAKEN.
14168         
14169         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
14170         checkpoint before pushing the arguments, so they won't have to be
14171         spilled to stack.
14172
14173 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14174
14175         * domain.c, assembly.c, domain-internals.h: make some data
14176         const and relocation-free.
14177
14178 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
14179
14180         * object.c, appdomain.c, class-internals.h: introduce the
14181         MonoClassRuntimeInfo structure to hold the info needed to
14182         use a class at runtime. Made mono_class_vtable() lock-free
14183         for all the appdomains.
14184
14185 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
14186
14187         * metadata-internals.h, image.c: introduce a per-image mempool to
14188         be used for memory that has the same lifetime as the image.
14189
14190 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
14191
14192         * domain.c: In mono_init_internal(), instead of selecting the first
14193         runtime version supported by an executable, get a list of all
14194         supported versions and select the one for which an mscorlib exists
14195         (since even if the runtime supports a given version, it doesn't mean
14196         that the framework for that version is installed).
14197         Modified get_runtimes_from_exe to support this behavior.
14198         In supported_runtimes, added information about additional system
14199         assembly versions.
14200         
14201         * assembly.c: Added support for more than one system assembly version
14202         per runtime version. Updated the assembly list.
14203         In mono_assembly_remap_version, removed the initial version check,
14204         since we don't know to which version we need to compare until we
14205         get the version set on which the assembly is based.
14206         Moved the code for loading corlib into the new method
14207         mono_assembly_load_corlib(), so it can be used by the initialization
14208         code.
14209         
14210         * domain-internals.h: Updated data structures and added declaration
14211         for mono_assembly_load_corlib.
14212
14213 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14214
14215         * reflection.c (resolve_object): Fix the creation of the signature in 
14216         the SignatureHelper case.
14217
14218         * assembly.c (mono_assembly_remap_version): Fix binary search.
14219         
14220 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
14221  
14222         * class.c: Added inheritance check when a method is overloaded (from a
14223         virtual method or when implementing an interface) and when a class is
14224         inherited. Added functions to set a failure for a class and to 
14225         retreive the exception from a failure.
14226         * class-internals.h: Added fields to MonoClass to keep the exception
14227         information status for inheritance (or other exceptions) to be thrown
14228         later (i.e. not at load time).
14229         * object.c: Throw the inheritance SecurityException when a type is to 
14230         be created with either class or method inheritance violations.
14231         * reflection.c|h: Fix when getting declsec from a class. Removed 
14232         unrequired code for class. Improved sanity in parameter naming.
14233         * security-manager.c|h: Added functions to check for class and method
14234         inheritance.
14235
14236 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14237
14238         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
14239         and has_finalize in dynamic types as well.
14240
14241 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
14242
14243         * culture-info-table.h : fixed currency format for en-GB (and so on).
14244
14245 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
14246
14247         * gc.c: ensure the GC handles never have 0 as a value.
14248
14249 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
14250
14251         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
14252         a pointer to a struct to unmanaged code. Fixes #72625.
14253
14254 2005-02-16  Martin Baulig  <martin@ximian.com>
14255
14256         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
14257
14258 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
14259
14260         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
14261
14262 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
14263
14264         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
14265
14266         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
14267         UnmanagedFunctionPointerAttribute, use it for determining calling convention
14268         etc. Fixes #71471.
14269
14270         * reflection.c (mono_custom_attrs_get_attr): New helper function.
14271
14272         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
14273
14274 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
14275
14276         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
14277         changes to make the current context a field in MonoThread.
14278
14279 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
14280
14281         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
14282         the last change.
14283         
14284         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
14285         extracted from mono_marshal_get_native_wrapper.
14286
14287         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
14288         to create wrappers around native functions.
14289
14290         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
14291         delegates for arbitrary function pointers. Fixes #71472.
14292
14293 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
14294
14295         * threads.c: cleaned up the code a little.
14296
14297 2005-02-15  Martin Baulig  <martin@ximian.com>
14298
14299         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
14300         the data table.
14301
14302         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
14303         allocate larger chunks if needed.
14304
14305 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14306
14307         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
14308         in by mistake.
14309
14310 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
14311
14312         * domain.c: keep the domains in an array and ensure the domain ids
14313         are kept small, so they can be used as indexes to domain-specific data
14314         with a small memory overhead.
14315
14316 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14317
14318         * icall.c: Handle byref types in Type icalls. Fixes #72544.
14319
14320 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
14321
14322         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
14323
14324 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
14325
14326         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
14327
14328         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
14329         values.
14330
14331         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
14332         
14333 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
14334
14335         * domain-internals.h: add the hashtable here.
14336
14337         * class-internals.h: Remove `info' from MonoMethod
14338
14339         * domain.c: Add a new hashtable, jit_trampoline_hash
14340
14341 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
14342
14343         * object.c: don't set the value of static fields
14344         (fixes bug#72494).
14345
14346 2005-02-11  Martin Baulig  <martin@ximian.com>
14347
14348         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
14349         (mono_debug_add_method): Silently ignore the method if it's too big.
14350         (mono_debug_add_type): Likewise.
14351
14352 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
14353
14354         * threads.c, appdomain.c: remove #ifdefs from the code.
14355
14356 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
14357
14358         * metadata-internals.h: Added flags to MonoAssembly to cache the most
14359         common security informations. This allows us to stay in unmanaged code
14360         when doing LinkDemand and it's special cases (except for the first 
14361         time for initialization). The flags a very much used with --security.
14362         * reflection.c|h: Added code to get declarative security attributes 
14363         for LinkDemand and InheritanceDemand. This required to refactor the
14364         existing code for Demand.
14365         * security-manager.c|h: Added new method fields for the special cases
14366         of LinkDemand.
14367
14368 2005-02-10  Martin Baulig  <martin@ximian.com>
14369
14370         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
14371         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
14372
14373 2005-02-10  Martin Baulig  <martin@ximian.com>
14374
14375         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
14376         debugging code; this is almost a complete rewrite.
14377
14378         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
14379
14380 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14381
14382         * domain.c, object.h: expose mono_string_equal () and 
14383         mono_string_hash ().
14384         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
14385         it's implemented in managed code.
14386
14387 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14388
14389         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
14390         lo leak objects between appdomains.
14391
14392 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14393
14394         * assembly.c: old compilers compilation fix from 
14395         robertj@gmx.net (Robert Jordan).
14396
14397 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
14398
14399         * class-internals.h: Little reminder for the future.
14400
14401         * debug-helpers.c: Fix up wrapper_type_names
14402
14403 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14404
14405         * image.c, metadata-internals.h: when loading an image from a file,
14406         mmap all of it and use the same codepaths as when using a
14407         in-memory image: the code is simpler and we use less memory
14408         (both writable and readonly).
14409
14410 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
14411
14412         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
14413         API to alloc runtime data structures that need to be tracked by the
14414         GC and contain pointers.
14415         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
14416         make the code more readable and eventually use a different GC.
14417
14418 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
14419
14420         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
14421         for out arguments.
14422         
14423 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
14424
14425         * object.c: In release_type_locks(), don't release the cctor lock
14426         if it has already been released. This fixes a crash in the
14427         thread5 test.
14428
14429 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14430
14431         * gc.c, marshal.c, icall.c: register a delegate for finalization
14432         only when the native function pointer has been allocated for it.
14433
14434 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14435
14436         * object.c: cleaned up some code, allocate objects that are
14437         pointer free with the atomic malloc variant. Allocate memory
14438         for static data from the mempool if it's pointer-free.
14439         Allocate the bounds array at the end of the array data, when needed.
14440         * object-internals.h, object.h: move a private function in a private
14441         header.
14442         * class.c: handle missing case in tracking references in fields.
14443
14444 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
14445
14446         * class.c, class-internals.h: keep track if a type has
14447         reference fields in either the instance or static fields.
14448
14449 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
14450
14451         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
14452         and renamed to MonoRuntimeInfo. Added fields to store the expected
14453         framework assembly version. Changed mono_get_framework_version and
14454         mono_get_runtime_version for a single mono_get_runtime_info method.
14455         
14456         * assembly.c: Added method to remap system assembly versions to the
14457         current executing runtime version. Removed old mapping code.
14458         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
14459         
14460         * icall.c, reflection.c: Track api changes.
14461
14462 2005-02-06  Miguel de Icaza  <miguel@novell.com>
14463
14464         * loader.c (method_from_memberref): Improve error reporting,
14465         produce the class name instead of the typeref/typedef index. 
14466
14467 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
14468
14469         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
14470
14471 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14472
14473         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
14474         stdcall and charset name mangling.  Reorganize the code and add
14475         some tracing stuff.
14476
14477 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
14478
14479         * monodiet.c: More iters!
14480
14481         * marshal.c: Iter usage.
14482
14483         * icall.c: Iter usage.
14484
14485         * object.c: Use iters.
14486
14487         * debug-helpers.c: More iters
14488
14489 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14490
14491         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
14492         under win32.
14493
14494 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
14495
14496         * mono-debug-debugger.c: use iters
14497
14498         * class.c, class-internals.h: mono_class_setup_events is static
14499         now
14500
14501         * All callers: use iters
14502
14503 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14504
14505         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
14506         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
14507
14508 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
14509
14510         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
14511
14512         * marshal.h: Add prototypes for ldfld/stfld_remote.
14513
14514         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
14515         this is called during startup.
14516         
14517 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
14518
14519         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
14520         MonoThreadsSync struct private in monitor.c. Changed the way
14521         MonoThreadsSync is allocated so it's faster and there is no
14522         need to keep track of it with a finalizer and it uses less memory.
14523         This also finally allows us to allocate mono objects as ptrfree when
14524         there are no reference fields.
14525
14526 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
14527
14528         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
14529         disappearing link to the GC interface and use them to simplify
14530         the gchandles code.
14531
14532 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
14533
14534         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
14535         stfld_remote which call mono_load/store_field_new. This allows methods
14536         calling ldfld/stfld wrappers to be AOTed.
14537
14538         * console-io.c: Include sys/filio.h under solaris.
14539         
14540         * console-io.c: Include curses.h if needed correctly.
14541
14542 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
14543         
14544         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
14545         method->klass as well.
14546
14547         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
14548
14549         * class.c (mono_class_init): Switch on lazy initialization of 
14550         methods.
14551
14552         * class.c (mono_class_get_finalizer): Handle the case when the 
14553         finalizer is inherited.
14554
14555 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14556
14557         * console-io.c: <curses.h> is needed by term.h on solaris.
14558
14559 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
14560
14561         * icall.c, class-internals.h, monodiet.c, class.c: Remove
14562         mono_class_setup_properties where possible. Remove this ftn from
14563         the header file, and make it static.
14564
14565 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
14566
14567         * loader.c: Add missing setup_... call.
14568
14569         * class.c: Add missing setup_... calls.
14570
14571         * class.c (mono_class_init): Switch on lazy initialization of 
14572         the generic vtable.
14573         
14574         * class.c (mono_class_init): Fix generics broken by the recent changes.
14575
14576         * monodiet.c (handle_type): Add missing setup_... calls.
14577
14578         * class.c: Back out garbage in previous patch.
14579         
14580         * class.c: Add missing setup_... calls.
14581
14582         * class.c (mono_class_get_method_from_name_flags): Avoid calling
14583         mono_class_setup_methods () if possible.
14584
14585         * class-internals.h (MonoClass): Add 'has_cctor' flag.
14586
14587         * class-internals.h (MonoCachedClassInfo): New structure.
14588
14589         * class.c: Initialize properties and events fields of MonoClass lazily.
14590
14591         * class.c: Add infrastructure for lazily initializing the methods and
14592         vtable fields of MonoClass. Not yet used.
14593
14594         * class.c (mono_class_get_finalizer): New helper function.
14595
14596         * class.c: Add infrastructure for loading some class related data from
14597         an AOT file.
14598
14599         * object.c: Add infrastructure for initializing the vtable from data
14600         in the AOT file.
14601
14602         * gc.c (run_finalize): Use mono_class_get_finalizer ().
14603
14604         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
14605         appropriate initialization function before accessing parts of the
14606         MonoClass structure.
14607
14608         * marshal.c: Fix warnings.
14609         
14610         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
14611
14612         * mono-debug-debugger.c (get_exception_message): Use 
14613         mono_class_get_method_from_name_flags ().
14614
14615 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
14616
14617         * reflection.c, appdomain.c: Replace a few manual searches that
14618         Zoltan missed. (Paolo approved this part of my initial patch).
14619
14620 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
14621
14622         * profiler.c: disable recording statistical events at report time.
14623
14624 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14625
14626         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
14627         to byteswap arrays of enum values, too (bug #72080).
14628
14629 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
14630
14631         * appdomain.c (set_domain_search_path): Allow this to be called if
14632         domain->setup is not yet set.
14633
14634         * loader.c (mono_method_get_index): New helper function.
14635
14636         * loader.c reflection.c: Use mono_method_get_index ().
14637
14638         * class.c (mono_class_get_method_from_name_flags): New helper method.
14639
14640         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
14641         this.
14642
14643         * class.c (mono_class_get_cctor): New helper method.
14644
14645         * string-icalls.c object.c class.c marshal.c reflection.c: Use
14646         mono_class_get_method () to look up methods.
14647
14648 2005-02-01  Miguel de Icaza  <miguel@novell.com>
14649
14650         * console-io.c: Fix the build, this should work on Windows.
14651
14652 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
14653
14654         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
14655         be set to null to keep things valid
14656
14657 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14658
14659         * icall.c: added Console 2.0 icalls.
14660         * Makefile.am: added console-io.[ch]
14661         * console-io.[ch]: internal calls for Console 2.0 API.
14662
14663 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14664
14665         * class.c: make sure we consider all the interfaces
14666         when calculating max_interface_id (bug found by
14667         Jeroen Frijters running ikvm).
14668
14669 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
14670
14671         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
14672         valuetype fields to null.
14673
14674         * object.c (set_value): Ditto. Fixes #71669.    
14675
14676 2005-01-31  Martin Baulig  <martin@ximian.com>
14677
14678         * metadata.c (mono_metadata_has_generic_params): New public
14679         function; checks whether something is a generic method.
14680
14681 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
14682
14683         * appdomain.c: fix infinite recursion when adding assemblies.
14684
14685 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
14686
14687         * object.c: Fix small typo to return all items for Environment.
14688         GetCommandLineArgs.
14689
14690 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14691
14692         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
14693         reflection.c: more domain and assembly-unload related fixes
14694         and memory leaks plugs.
14695
14696 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
14697
14698         * 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.
14699
14700 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
14701
14702         * loader.c (mono_method_signature): Make this method lazy
14703         (mono_get_method_from_token): Don't computate the signature here.
14704
14705         Doing this saves quite a bit of memory. I got 90 kb on starting up
14706         monodoc. It should also save some disk reads on startup.
14707
14708         * *: MonoMethod->signature might be NULL now. You *MUST* use
14709         mono_method_signature.
14710
14711 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
14712
14713         * object.c (mono_runtime_get_main_args): Return an array from the
14714         current domain here. Fixes #71938.
14715
14716 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
14717
14718         * monitor.c: formatting changes to comply with the
14719         mono coding style and remove #ifdefs from the code.
14720
14721 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
14722
14723         * metadata.c, private.h: remove some unneeded data
14724         and use a more compact representation for table schemas.
14725
14726 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
14727
14728         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
14729         to get a better distribution in hash tables.
14730         * *.c: use mono_aligned_addr_hash() where appropriate.
14731         * assembly.c: make var static.
14732
14733 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
14734
14735         * domain-internals.h: Put MonoJitInfo on a diet.
14736
14737         * domain.c: Fix a warning.
14738
14739 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14740
14741         * gc.c: rework the gc handles code to reuse handles
14742         when freed.
14743
14744 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
14745
14746         * domain.c: fixed long standing bug in mono_string_equal() which
14747         was brought to light with the ldstr changes.
14748
14749 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
14750
14751         * reflection.c: Remove warning by adding missing include for marshal.h
14752
14753 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14754
14755         * domain.c, object.c: change the ldstr_table to hold
14756         MonoString* as keys: makes the runtime isinterned lookup
14757         faster and simplifies memory management.
14758
14759 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
14760  
14761         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
14762         possible to add imperative security checks before calling the icall.
14763         * reflection.c: Return security attributes on the original MonoMethod
14764         (and not the wrapped one). This fix permissions on icalls.
14765
14766 2005-01-25  Dick Porter  <dick@ximian.com>
14767
14768         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
14769         the check for mktime() support actually test the mktime() return
14770         value.  "Fixes" bug 71682, though the output is still different to
14771         MS.
14772
14773 2005-01-25  Martin Baulig  <martin@ximian.com>
14774
14775         * class.c (mono_class_is_assignable_from): Make this work for
14776         generic instances.
14777
14778 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
14779
14780         * marshal.c (mono_string_utf8_to_builder)
14781         (mono_string_builder_to_utf16): We might not have ownership of the
14782         string. In thise case, we need to create a new buffer.
14783
14784         * object-internals.h (mono_stringbuilder_capacity): sb->str might
14785         be null, in which case, use the default capacity.
14786
14787 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14788
14789         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
14790         GC events to the profiler.
14791
14792 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
14793
14794         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
14795         if you don't want the GC to run.
14796
14797 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
14798
14799         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
14800         start providing a GC API and keeping different implementations in
14801         their own file.
14802         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
14803
14804 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
14805
14806         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
14807         mmap rather than allocating a huge buffer.
14808         (mono_debug_close_mono_symbol_file): Free the buffer allocated
14809         above.
14810
14811 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
14812
14813         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
14814         and CheckExecutionRights.
14815         * reflection.c|h: Keep the index of the declarative security to be 
14816         used, instead of the pointer, when AOT compiler is used. Also add 
14817         class initialization when requesting demands.
14818         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
14819         CheckExecutionRights. Both properties are now FALSE by default, and
14820         unmodifiable, unless the --security option is used.
14821
14822 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14823
14824         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
14825         reflection.c: properly refcount images and assemblies, many leaks fixed.
14826
14827 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14828
14829         * threadpool.c: increase the timeout for threads in the thread pool to
14830         10s.  Fixes bug #67159.
14831
14832 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
14833
14834         * class-internals.h: Sun's compiler insists on explicit
14835         signed on bit fields to handle then correctly.
14836
14837 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
14838
14839         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
14840         Make the size of the array fit only the number of invalid path
14841         chars that we have.
14842
14843         * class.c (_mono_class_get): Improve the error reporting when a
14844         class referenced is not found, to assist debugging. 
14845
14846 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
14847
14848         * threads.c: fix off-by-one error.
14849         * domain.c: free data allocated in the domain.
14850
14851 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
14852
14853         * reflection.c (mono_method_body_get_object): Fill out exception info
14854         as well.
14855
14856         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
14857         structure.
14858         
14859 2005-01-19  Martin Baulig  <martin@ximian.com>
14860
14861         * loader.c (mono_get_method_constrained): Make this work again.
14862
14863 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
14864
14865         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
14866         guint16 to match the managed side.
14867
14868         * reflection.c (mono_reflection_body_get_object): Fill out local
14869         variables array.
14870
14871         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
14872         as well.
14873
14874         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
14875         'local_var_sig_token'.
14876
14877 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
14878
14879         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
14880         System.Drawing.
14881
14882         * reflection.c (mono_method_body_get_object): Handle abstract and
14883         runtime methods.
14884
14885 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
14886
14887         * marshal.c, loader.c, class-internals.h, reflection.c:
14888         store the emthod data for a wrapper in an array instead of a list.
14889
14890 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
14891
14892         * marshal.c: change the code to allocate memory more
14893         conservatively for method wrappers.
14894
14895 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
14896
14897         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
14898         fields from MonoClass to the marshal info structure where they belong.
14899
14900 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14901
14902         * class.c, object.c, class-internals.h, marshal.c: rearrange
14903         some fields and tweak some types to lower memory usage.
14904
14905 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
14906
14907         * threads.c (signal_thread_state_change): Handle the case when the
14908         target thread is the current thread.
14909
14910         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
14911
14912         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
14913         emit_ptr_to_object_conv. 
14914
14915         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
14916         marshalling. Fixes #71352.
14917
14918 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
14919
14920         * metadata.h, blob.h: move table enum to blob.h so it can be included
14921         in any header.
14922         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
14923         cut the size of MonoImage/MonoDynamicImage.
14924
14925 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
14926
14927         * profiler.c (mono_profiler_install_simple): Fix default arguments.
14928
14929 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
14930
14931         * reflection.c, reflection.h, icall.c: add a function to check
14932         if an attribute type is defined for a metadata object.
14933
14934 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
14935
14936         * object-internals.h: Added some needed fields from StringBuilder class.
14937         * marshal.c: Set the maxCapacity when creating a StringBuilder.
14938
14939 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
14940
14941         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
14942         threads before shutting down the runtime.
14943
14944         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
14945
14946 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14947
14948         * object-internal.h, threads.c: implement stacksize and 
14949         parameterized thread start functionality (requires
14950         matching corlib). Marked broken code for later removal.
14951
14952 2005-01-12  Martin Baulig  <martin@ximian.com>
14953
14954         * class-internals.h (MonoGenericClass): Moved the `initialized'
14955         flag to MonoDynamicGenericClass, removed `init_pending'.
14956         (MonoGenericInst): Added `is_reference' flag.
14957
14958 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
14959
14960         * reflection.c (mono_image_create_pefile): Only set the pe_offset
14961         inside the MSDOS header. Fixes #71201.
14962
14963         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
14964         gc thread.
14965         (mono_domain_finalize): Ditto.
14966
14967 2005-01-12  Martin Baulig  <martin@ximian.com>
14968
14969         * class.c (mono_get_shared_generic_class): Use the cache for
14970         non-dynamic generic classes.
14971
14972         * class-internals.h (mono_class_create_generic_2): Removed
14973         function prototype, this function is now static inside class.c.
14974
14975         * class.c (mono_class_create_generic_2): Made this static, only
14976         call it from mono_class_init() and mono_class_setup_parent().
14977         (collect_implemented_interfaces_aux): Call mono_class_init() on
14978         the interfaces we collect.
14979         (mono_class_setup_vtable): Call mono_class_init (class->parent).
14980
14981 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
14982
14983         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
14984         it a real thread handle.
14985
14986         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
14987         MonoJitExceptionInfo, since each catch clause needs its own variable.
14988         
14989 2005-01-11  Dick Porter  <dick@ximian.com>
14990
14991         * image.c (mono_pe_file_open): New variant on mono_image_open()
14992         that does not set up the CLI metadata; used for FileVersionInfo so
14993         it can get the data for windows binaries too.
14994         
14995         * process.c (process_read_string_block): Don't read off the end of
14996         the StringTable block.
14997
14998         These both fix bug 70766.
14999
15000 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
15001
15002         * gc.c: set some fields to NULL at GC cleanup time.
15003         * threads.c: if we quit the main thread, call exit ().
15004
15005 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
15006
15007         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
15008
15009 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
15010
15011         * threads.h, threads.c, object.c: added accessor and settor for
15012         main_thread. Handle it specially when exiting from it: wait
15013         for other foreground threads to exit.
15014
15015 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
15016
15017         * process.c, verify.c: remove some bloat.
15018
15019 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
15020
15021         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
15022         the calling convention to cdecl under win32.
15023
15024 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
15025
15026         * object.c (mono_object_get_size): New function to get the size of
15027         an object instance.
15028
15029         * profiler.c (simple_allocation): Use above.
15030
15031 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
15032
15033         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
15034         ves_icall_System_AppDomain_getRootDomain (as it's not required to
15035         get an appdomain by it's id and we can't assume the root's id is 0).
15036         * domain-internals.h: Change the function prototype to match.
15037         * icall.c: Change the icall table for AppDomain.
15038
15039 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
15040
15041         * locales.c (string_invariant_compare_char): Only compute
15042         GUnicodeTypes in the case where we need them.  Test for ordinality
15043         first and return if so.
15044
15045         From the commit:
15046
15047                 /*
15048                  * FIXME: here we must use the information from c1type and c2type
15049                  * to find out the proper collation, even on the InvariantCulture, the
15050                  * sorting is not done by computing the unicode values, but their
15051                  * actual sort order.
15052                  */
15053
15054 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
15055
15056         * loader.c: for P/Invoke methods, allow the "Internal" shared
15057         library name to refer to the calling process symbol namespace.
15058
15059 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
15060
15061         * Makefile.am: Add the security manager to the build.
15062         * security-manager.c|h: New. Initialization of the security manager.
15063
15064 2005-01-07  Dick Porter  <dick@ximian.com>
15065
15066         * threads.c: 
15067         * monitor.c: Update thread state during Monitor and WaitHandle
15068         waits.  Fixes bug 71031.
15069
15070 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
15071
15072         * reflection.c (property_encode_signature): Correctly handle when the
15073         property has no methods.
15074
15075 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
15076
15077         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
15078         
15079         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
15080         fields from mb, not rmb. Fixes #71017.
15081
15082         * marshal.c (emit_ptr_to_str_conv): Add support for 
15083         ByValTStr -> string conversion. Fixes #71015.
15084
15085         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
15086
15087         * mempool.c (mono_mempool_contains_addr): New helper function.
15088
15089 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
15090
15091         * metadata.c (mono_metadata_compute_size): Fix size calculation of
15092         HasSematics encoded fields.
15093         
15094         * metadata.c (mono_type_to_unmanaged): Improve error message for 
15095         invalid string marshalling.
15096
15097         * metadata.c: Fix warnings.
15098         
15099 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15100
15101         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
15102         profiler support.
15103
15104 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
15105
15106         * domain.c object.c domain-internals.h: Revert part of r38077 since the
15107         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
15108         tests.
15109
15110 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
15111
15112         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
15113         so methods containing these can be AOTed.
15114
15115 2005-01-03  Martin Baulig  <martin@ximian.com>
15116
15117         * loader.c (find_method): Removed the hack for generic instances.
15118         (method_from_memberref): If our parent is a generic instance, pass
15119         its generic type definition to find_method() and then inflate the
15120         method.
15121         (mono_get_method_constrained): Pass the generic type definition to
15122         find_method() and inflate the method later.
15123
15124         * class-internals.h (MonoStats): Added `generic_class_count'.
15125
15126         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
15127         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
15128
15129         * reflection.c (mono_custom_attrs_from_params): Don't ignore
15130         generic type definitions.
15131
15132 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
15133
15134         * loader.c icall.c: Fix warnings.
15135
15136 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
15137
15138         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
15139         blittable types. Fixes #70864.
15140
15141 2004-12-29  Martin Baulig  <martin@ximian.com>
15142
15143         * icall.c
15144         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
15145
15146         * reflection.c (mono_method_get_object): Create a
15147         "System.Reflection.MonoGenericMethod" for inflated methods; don't
15148         call mono_get_inflated_method().
15149
15150         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
15151
15152 2004-12-27  Martin Baulig  <martin@ximian.com>
15153
15154         * class-internals.h (MonoMethod): Added `is_inflated' flag.
15155         (MonoMethodInflated): Added `inflated' field.
15156
15157         * class.c (mono_class_inflate_generic_method): Don't really
15158         inflate the method here; just set the `is_inflated' flag in the
15159         MonoMethod.
15160         (mono_class_get_inflated_method): Actually inflate the method here
15161         if it's not already inflated; we use the MonoMethodInflated's new
15162         `inflated' field as a cache.
15163
15164 2004-12-26  Martin Baulig  <martin@ximian.com>
15165
15166         * class.c
15167         (inflate_generic_class): Moved some code out of inflate_generic_type().
15168         (mono_class_inflate_generic_method): If we're already inflated,
15169         inflate the context and use the declaring method; ie. make sure
15170         the declaring method of an inflated method is always the generic
15171         method definition.
15172         (mono_class_create_from_typedef): Create
15173         `class->generic_container->context->gclass'.
15174
15175 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
15176
15177         * metadata-internals.h, marshal.c, reflection.c: More
15178         MonoGHashTable->GHashTable.
15179
15180         * domain-internals.h, class.c: Change MonoGHashTable's into
15181         GHashTables for some cases where no gc stuff is used
15182
15183         All users: update apis
15184
15185 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
15186
15187         * metadata.c (builtin_types): Make this `const'. Makes this get
15188         put into the shareable section.
15189         (mono_metadata_init): Casts to make gcc happy.
15190
15191 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
15192
15193         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
15194
15195 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
15196
15197         * icall.c: Added an internal call to retrieve the position and length
15198         of assembly-level declarative security attributes (RequestMinimum, 
15199         RequestOptional and RequestRefuse). This is used by the Assembly class
15200         to re-create the corresponding permission sets.
15201
15202 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
15203
15204         * marshal.c: fix the stelemref wrapper to be type correct
15205         (and faster).
15206
15207 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
15208
15209         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
15210         to do key & 0x7fffffff. Hashtable already does this. It just
15211         results in longer code.
15212
15213 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
15214
15215         * appdomain.c: Bump corlib version.
15216         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
15217         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
15218         * reflection.c|h: Add functions to get declarative security infos
15219         (blob position and length) for assemblies, classes and methods.
15220
15221 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
15222
15223         * reflection.c: sort the constant table (bug #70693).
15224
15225 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
15226
15227         * object-internals.h, threads.c, domain.c: add accessors for
15228         the MonoThread and MonoDomain tls keys.
15229
15230 2004-12-18  Martin Baulig  <martin@ximian.com>
15231
15232         * class.c (inflate_generic_type): If we're inflating a generic
15233         instance, set `ngclass->context->container = context->container';
15234         ie. the container we inflated into.
15235
15236         * metadata.c (mono_metadata_parse_generic_param): Reflect above
15237         inflate_generic_type() changes.
15238
15239 2004-12-17  Martin Baulig  <martin@ximian.com>
15240
15241         * class-internals.h
15242         (MonoGenericClass): Replaced `MonoType *generic_type' with
15243         `MonoClass *generic_class'.  Removed `dynamic_info'; if
15244         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
15245         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
15246
15247 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
15248
15249         * exception.c (mono_exception_from_token): New helper function.
15250
15251 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
15252
15253         * assembly.c (mono_assembly_load_with_partial_name): Call 
15254         mono_assembly_loaded before invoking the preload hooks. Fixes
15255         #70564.
15256
15257         * object-internals.h (MonoThread): Change culture_info and 
15258         ui_culture_info into an array.
15259
15260         * threads.c: Cache culture info objects from more than one appdomain.
15261
15262         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
15263         current UI culture.
15264
15265 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
15266
15267         * threads.h threads.c appdomain.c: Clear the culture_info field of
15268         all threads during unloading if they point to an object in the dying
15269         appdomain.
15270
15271 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
15272
15273         * culture-info.h (TextInfoEntry): New struct
15274         * object-internals.h: sync with managed
15275         * locales.c: fill the `text_info_data' field
15276         * culture-info-tables.h: update
15277
15278 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
15279
15280         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
15281         collector.
15282
15283 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
15284
15285         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
15286         (ves_icall_ModuleBuilder_getMethodToken): Ditto
15287
15288 2004-12-12  Martin Baulig  <martin@ximian.com>
15289
15290         * mono-debug-debugger.c (write_type): If we're an enum and the
15291         builtin types have already been initialized, call mono_class_init().
15292
15293 2004-12-11  Martin Baulig  <martin@ximian.com>
15294
15295         * metadata.c (mono_metadata_load_generic_params): Added
15296         `MonoGenericContainer *parent_container' argument; automatically
15297         compute `container->is_method'; pass the correct owner to
15298         get_constraints().      
15299
15300         * reflection.c (compare_genericparam): Sort the GenericParam table
15301         according to increasing owners. 
15302
15303 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
15304
15305         * profiler.c: allow disabling the default profiler.
15306
15307 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
15308
15309         * decimal.c, icall.c: allow disabling System.Decimal support.
15310
15311 2004-12-09  Marek Safar <marek.safar@seznam.cz>
15312
15313         * reflection.c: Add support for null attribute arguments.
15314
15315 2004-12-09  Martin Baulig  <martin@ximian.com>
15316
15317         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
15318         names to get rid of compiler warnings.
15319
15320 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15321
15322         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
15323         mono_marshal_load_type_info (). Fixes #69625.
15324         (mono_marshal_get_ptr_to_struct): Likewise.
15325
15326 2004-12-08  Martin Baulig  <martin@ximian.com>
15327
15328         * mono-debug.h: Bumped version number to 47.
15329
15330         * mono-debug-debugger.c
15331         (mono_debugger_event_handler, mono_debugger_event): Take two
15332         guint64 arguments insteed of a gpointer and a guint32.  
15333
15334 2004-12-08  Martin Baulig  <martin@ximian.com>
15335
15336         * debug-mono-symfile.h
15337         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
15338         `address' to `native_offset'.
15339
15340 2004-12-08  Martin Baulig  <martin@ximian.com>
15341
15342         * class.c (mono_class_create_from_typespec): Only inflate if we
15343         either have `context->gclass' or `context->gmethod'.
15344
15345 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15346
15347         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
15348
15349         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
15350
15351         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
15352
15353         * reflection.c (mono_assembly_get_object): Remove the workaround put
15354         in for the release.
15355         
15356         * appdomain.c: Use the corlib_internal field from MonoAssembly.
15357
15358         * appdomain.c: Bump corlib version.
15359
15360         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
15361         be visible in other appdomains.
15362
15363 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
15364
15365         * threads.c: Interlocked inc and dec for longs were messed up,
15366         use a KISS based impl for this. Fixes 70234
15367
15368 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
15369
15370         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
15371
15372 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
15373
15374         * icall.c: fix to follow policy not to allow struct
15375         arguments in icalls.
15376
15377 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15378
15379         * process.c: make the patch that handles spaces in file paths work
15380         on mono/windows too.
15381
15382 2004-12-06  Martin Baulig  <martin@ximian.com>
15383
15384         * class.c (mono_class_create_generic): Call
15385         mono_class_setup_supertypes() if we're dynamic.
15386         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
15387
15388 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
15389
15390         * object-internals.h: Add new fields to MonoThread.
15391
15392         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15393
15394         * icall.c threads-types.h threads.c: Add new icalls.
15395
15396         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
15397
15398         * object-internals.h (MonoReflectionAssembly): Sync object layout with
15399         managed side.
15400
15401         * appdomain.c: Bump corlib version.
15402
15403         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
15404         internal assemblies. Fixes #69181.
15405
15406 2004-12-05  Martin Baulig  <martin@ximian.com>
15407
15408         * class.c (mono_class_inflate_generic_signature): Make this a
15409         no-op if `context' is NULL or we don't have any type parameters;
15410         also copy `sentinelpos'.        
15411
15412 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
15413
15414         * image.c: Add unbox_wrapper_cache.
15415
15416         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
15417
15418         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
15419         function generator.
15420         
15421         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
15422         Fixes #70173.
15423
15424         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
15425         
15426 2004-12-04  Martin Baulig  <martin@ximian.com>
15427
15428         * loader.c (mono_method_get_signature_full): New public function;
15429         like mono_method_get_signature(), but with an additional
15430         `MonoGenericContext *' argument.
15431
15432         * class.c (mono_class_inflate_generic_signature): Formerly known
15433         as inflate_generic_signature(); make this public.
15434
15435 2004-12-04  Martin Baulig  <martin@ximian.com>
15436
15437         * metadata.c
15438         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
15439         instead of a `MonoGenericContainer *'.  
15440         (mono_metadata_parse_array_full): Likewise.
15441         (mono_metadata_parse_signature_full): Likewise.
15442         (mono_metadata_parse_method_signature_full): Likewise.
15443         (mono_metadata_parse_generic_inst): Likewise.
15444         (mono_metadata_parse_generic_param): Likewise.
15445         (mono_metadata_parse_mh_full): Likewise.
15446         (mono_type_create_from_typespec_full): Likewise.
15447
15448 2004-12-03  Martin Baulig  <martin@ximian.com>
15449
15450         * class-internals.h (MonoGenericContainer): Replaced the
15451         `MonoGenericContext * pointer with a `MonoGenericContext'
15452         structure and made it the first element.
15453
15454 2004-12-03  Martin Baulig  <martin@ximian.com>
15455
15456         * class.c
15457         (inflate_generic_type): Set the `context->container' when creating
15458         a new MonoGenericContext.
15459         (mono_class_inflate_generic_method): Likewise.
15460         (mono_class_create_from_typespec): Just use `context->container'
15461         to get the container.
15462
15463         * loader.c (method_from_methodspec): Set `context->parent' from
15464         `context->container' - and if that's a method container, use its
15465         parent.  Also set the `context->container' when creating a new
15466         MonoGenericContext.
15467         (mono_get_method_from_token): Use just `context->container' to get
15468         the container.
15469
15470         * metadata.c (do_mono_metadata_parse_generic_class): Also set
15471         `gclass->context->container'.
15472
15473         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
15474         the `context->container' when creating a new MonoGenericContext.
15475
15476 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
15477
15478         * reflection.c (compare_genericparam): Sort params with identical
15479         owner by their number. Fixes gen-111 on sparc.
15480
15481 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
15482
15483         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
15484         around the domain changes.
15485
15486         * appdomain.c (mono_domain_unload): Handle the case when the thread
15487         calling Unload is itself being aborted during unloading. Fixes #70022.
15488
15489         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
15490
15491         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
15492         checkpoint_func as an icall so it gets a wrapper.
15493         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
15494         in the cross-appdomain wrappers too.
15495
15496         * threads.c (mono_thread_has_appdomain_ref): Make this public.
15497
15498         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
15499
15500         * reflection.c: Fix some memory leaks.
15501         
15502 2004-12-02  Martin Baulig  <martin@ximian.com>
15503
15504         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
15505
15506         * metadata.c (generic_class_cache): New static hashtable.
15507         (mono_metadata_lookup_generic_class): New public method.
15508
15509 2004-12-02  Martin Baulig  <martin@ximian.com>
15510
15511         * class.c (mono_class_create_from_typedef): Call
15512         mono_class_setup_parent() and mono_class_create_mono_type() before
15513         parsing the interfaces.
15514
15515 2004-12-02  Martin Baulig  <martin@ximian.com>
15516
15517         * metadata.c (generic_inst_cache): New static hashtable.
15518         (mono_metadata_lookup_generic_inst): New public function.
15519         (mono_metadata_inflate_generic_inst): New public function.
15520         (mono_metadata_parse_generic_inst): New public function.
15521         (do_mono_metadata_parse_generic_class): Use the new
15522         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
15523         since this'll also use the cache.
15524
15525         * reflection.c (mono_reflection_bind_generic_method_parameters):
15526         Use mono_metadata_lookup_generic_inst() to use the new cache.
15527
15528         * class.c (inflate_mono_type): Use
15529         mono_metadata_inflate_generic_inst() to inflate a generic
15530         instance; this'll also use the new cache.
15531
15532         * loader.c (method_from_methodspec): Use
15533         mono_metadata_parse_generic_inst() and
15534         mono_metadata_inflate_generic_inst() rather than parsing it
15535         manually, so we can use the new cache.
15536
15537 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
15538
15539         * threads.c (wait_for_tids): Do not incorrectly free threads when 
15540         the wait times out.
15541
15542 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15543
15544         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
15545         iter->args based on whether parameters are passed in registers (i.e.
15546         MONO_ARCH_REGPARMS is defined)
15547
15548 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
15549
15550         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
15551         the exception message. Fixes #70070.
15552         (method_from_methodspec): Fix warnings.
15553
15554 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15555
15556         * process.c: (complete_path) return the path quoted
15557
15558 2004-12-01  Martin Baulig  <martin@ximian.com>
15559
15560         * class-internals.h (MonoGenericInst): New structure.
15561         (MonoGenericClass): Replaced `type_argc', `type_argv' and
15562         `is_open' with `MonoGenericInst *inst'.
15563         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
15564         `is_open' with `MonoGenericInst *inst'.
15565
15566 2004-11-30  Martin Baulig  <martin@ximian.com>
15567
15568         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
15569
15570         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
15571         to `generic_class_cache'.
15572
15573         * metadata.c
15574         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
15575         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
15576         (mono_generic_inst_is_valuetype): Renamed to
15577         mono_generic_class_is_valuetype().
15578
15579         * class-internals.h
15580         (MonoGenericInst): Renamed to MonoGenericClass.
15581         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
15582         (MonoClass): Renamed `generic_inst' to `generic_class'.
15583         (MonoGenericContext): Renamed `ginst' to `gclass'.
15584
15585         * object-internals.h
15586         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
15587
15588         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
15589         mono_reflection_generic_class_initialize().
15590
15591         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
15592         now known as "System.Reflection.MonoGenericClass".
15593         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
15594
15595 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
15596
15597         * class-internals.h: Added a flag field to MonoClass to cache the
15598         declarative security attributes actions associated with the class.
15599         * domain-internals.h: Added booleans to MonoJitInfo to cache the
15600         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
15601         applicable to the JITted method.
15602         * reflection.c|h: Added functions to extract (as flags) which security
15603         actions are available (declaratively) for a method, class or assembly.
15604         * metadata.c|h: Added functions to search the declarative security
15605         table in the metadata.
15606         
15607 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
15608
15609         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
15610         EXPORTEDTYPES are already in the class name cache, so there is no
15611         need to add extra code here to look at them. Just removes a bit of
15612         cruft.
15613
15614         (ves_icall_System_Environment_get_TickCount): No need for #if
15615         WINDOWS. We already have the code in io-layer.
15616
15617 2004-11-28  Martin Baulig  <martin@ximian.com>
15618
15619         * loader.c
15620         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
15621         Fixes gen-112.cs.
15622
15623 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
15624
15625         * assembly.c (do_mono_assembly_open): Instead of having a
15626         conditional WITH_BUNDLE, incorporate support for bundles here, by
15627         having a global `bundles' variable holding a pointer to the actual
15628         bundles. 
15629
15630         (mono_register_bundled_assemblies): New API call used by the
15631         bundle code. 
15632
15633         See mkbundle.1 for details.
15634         
15635 2004-11-27  Martin Baulig  <martin@ximian.com>
15636
15637         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
15638         the vtable for generic methods.
15639
15640 2004-11-26  Martin Baulig  <martin@ximian.com>
15641
15642         * metadata.c
15643         (mono_metadata_generic_method_hash): New public function.
15644         (mono_metadata_generic_method_equal): Likewise.
15645
15646         * class-internals.h
15647         (MonoGenericContainer): Added `GHashTable *method_hash'.
15648
15649         * reflection.c (ReflectionMethodBuilder): Added
15650         `MonoGenericContainer *generic_container'.
15651         (reflection_methodbuilder_to_mono_method): Don't create a new
15652         MonoGenericContainer each time we're called.
15653         (mono_reflection_bind_generic_method_parameters): Use
15654         `container->method_hash' to cache the results so we don't create a
15655         different method if we're called several times with the same
15656         arguments.
15657
15658         * loader.c (method_from_methodspec): Use the new
15659         `container->method_hash' here, too.
15660
15661 2004-11-26  Martin Baulig  <martin@ximian.com>
15662
15663         * class.c (inflate_generic_signature): Correctly compute
15664         `res->has_type_parameters'.
15665         (mono_class_vtable): Use the `has_type_parameters' flag to
15666         determine whether we're a generic method.
15667
15668         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
15669
15670 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
15671
15672         * object.c (mono_runtime_run_main): Fix a small memory leak.
15673
15674 2004-11-25  Martin Baulig  <martin@ximian.com>
15675
15676         * class.c (set_generic_param_owner): Fixed the loop.
15677
15678 2004-11-25  Martin Baulig  <martin@ximian.com>
15679
15680         * object.c (mono_class_vtable): Don't create any JIT wrappers for
15681         generic methods.
15682
15683 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
15684
15685         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
15686         names. Fixes #69787.
15687
15688 2004-11-24  Martin Baulig  <martin@ximian.com>
15689
15690         * class.c (mono_class_create_generic_2): If we don't have a
15691         `ginst->parent', inflate `gklass->parent' to get our parent.
15692
15693 2004-11-24  Martin Baulig  <martin@ximian.com>
15694
15695         * reflection.c (compare_genericparam): Correctly sort the
15696         GenericParam table; fixes #69779.
15697
15698 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
15699
15700         * reflection.c: When writing a PE file, don't create a huge
15701         buffer in memory. Just write the arrays we have to the file.
15702         This reduces memory usage.
15703
15704         * metadata-internals.h: MonoDynamicStream pefile is no longer used
15705         globally.
15706
15707 2004-11-17  Martin Baulig  <martin@ximian.com>
15708
15709         * class.c (mono_class_init): Don't setup `class->parent' for
15710         dynamic instances; moved this to mono_class_generic_2().
15711         (mono_class_create_generic): Also set `klass->inited' for dynamic
15712         generic instances.
15713         (mono_class_create_generic_2): Don't do anything for dynamic
15714         generic instances.  Set `klass->parent' here and also call
15715         mono_class_setup_parent() here. 
15716
15717         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
15718         `MonoType *parent' argument; set `ginst->parent' before calling
15719         mono_class_create_generic_2(), so we set the correct parent.
15720
15721 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
15722
15723         * reflection.c: allow getting attributes from ModuleBuilder
15724         (used by ikvm).
15725
15726 2004-11-17  Martin Baulig  <martin@ximian.com>
15727
15728         * class.c (mono_class_create_from_typedef): If a type parameter is
15729         inherited from an outer class, set its owner to that class.
15730
15731 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
15732
15733         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
15734           for (int*) written size. This fixes bug #69592.
15735
15736 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
15737
15738         * icall.c: Added IsAuthenticodePresnet internal call.
15739         * image.c|h: New function that check a MonoImage for an Authenticode
15740         signature in the certificate PE data directory.
15741         * security.c|h: New internal call to ask the runtime if an 
15742         Authenticode signature seems referenced in the PE header.
15743
15744 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
15745
15746         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
15747
15748         * reflection.c (mono_image_create_pefile): Free the assembly streams
15749         after writing out the assembly file.
15750
15751         * object.c (mono_runtime_run_main): Fix small memory leak.
15752
15753         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
15754         property access modifiers. Fixes #69389.
15755
15756 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
15757
15758         * domain.c, object.c, object-internals.h, domain-internals.h,
15759         object.h, marshal.c: keep dynamic code info per domain.
15760
15761 2004-11-15  Martin Baulig  <martin@ximian.com>
15762
15763         * class.c (mono_type_get_name_recurse): Put type arguments in
15764         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
15765         see bug #68387.
15766
15767 2004-11-15  Martin Baulig  <martin@ximian.com>
15768
15769         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
15770         (mono_class_setup_vtable): When computing `the_cname' for a
15771         generic instance, don't include the namespace since we'd otherwise
15772         add it twice.
15773
15774 2004-11-15  Martin Baulig  <martin@ximian.com>
15775
15776         * class.c (mono_class_create_generic): Changed return type to void.
15777         (mono_class_create_generic_2): New public function; setup
15778         `class->method', `class->field' and `class->interfaces' here
15779         instead of in mono_class_init().
15780
15781         * class.h (mono_class_create_generic): Moved to class-internals.h.
15782
15783 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
15784
15785         * reflection.c (mono_image_create_pefile): take a file HANDLE.
15786         rather than writing to memory, write to this file. Right now,
15787         we are just writting into a buffer, and copying that. However
15788         we can avoid the buffer later.
15789
15790         (mono_dynamic_stream_reset): new function
15791
15792         * icall.c, object-internals.h: update for the above.
15793
15794 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
15795
15796         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
15797         have been using gc'd memory. First it is slower, unlikely
15798         the comment in the source code said, secondly, it increases
15799         our footprint to do it in the gc.
15800
15801         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
15802         the method so that it does not have to copy to managed code.
15803
15804 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
15805
15806         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
15807
15808 2004-11-12  Martin Baulig  <martin@localhost>
15809
15810         * reflection.c (mono_image_create_token): Allow generic method
15811         definitions here, since they may appear in an `.override'; see
15812         gen-98/gen-99 for an example.
15813
15814 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
15815
15816         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
15817         #69365.
15818
15819         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
15820         descriptive.
15821
15822 2004-11-11  Martin Baulig  <martin@ximian.com>
15823
15824         * class.c (mono_class_setup_vtable): In an explicit interface
15825         implementation, the method name now includes the arity.
15826
15827 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
15828
15829         * object.c (mono_array_full_copy): Fix warning.
15830
15831 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
15832
15833         * appdomain.c: Removed look_for_method_by_name(). Use the new method
15834         mono_class_get_method_from_name() instead.
15835         
15836         * class-internals.h: Added two new types of wrappers. 
15837         Added MonoRemotingTarget enum. Added new trampoline function type, which
15838         takes an additional MonoRemotingTarget value as parameter, so it is
15839         possible to request a trampoline for a specific target.
15840         
15841         * class.c: Added new mono_class_get_method_from_name() method.
15842         
15843         * class.h: In MonoRemoteClass, we can have now to vtables, one for
15844         general remoting sinks and one specific for cross domain calls.
15845         
15846         * debug-helpers.c: Added new wrapper names.
15847         
15848         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
15849         of a remote class.
15850         
15851         * image.c: Porperly delete value objects form the remoting invoke hashtable.
15852         
15853         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
15854         with several other methods (mono_marshal_get_xappdomain_dispatch,
15855         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
15856         and others) can generate a fast remoting wrapper for cross domain calls.
15857         More information can be found in docs/remoting.
15858         Other changes: Removed mono_find_method_by_name, and used
15859         mono_class_get_method_from_name instead.
15860         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
15861         is stored in the remoting invoke hashtable.
15862         
15863         * marshal.h: published the new method for getting the xdomain wrapper,
15864         and also added a method for getting the adequate wrapper for a given
15865         method and target.
15866         
15867         * object-internals.h, object.c: Added a couple of methods for capying and
15868         cloning arrays.
15869         Modified mono_install_remoting_trampoline, which takes the new remoting
15870         trampoline that has a remoting target as parameter.
15871         mono_class_proxy_vtable now also takes a remoting target as parameter, and
15872         will return the most suitable vtable for the target.
15873         Added mono_remote_class_vtable, which returns the vtable of a remote class
15874         (which can be the normal remoting vtable or the xdomain vtable).
15875         
15876         * threads.c: the xdomain invoke and dispatch wrappers must also be
15877         protected against interruptions.
15878
15879 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15880
15881         * icall.c: use memmove in BlockCopyInternal when the source and
15882         destination arrays are the same.
15883
15884 2004-11-09  Martin Baulig  <martin@ximian.com>
15885
15886         * class-internals.h (MonoGenericContainer): Removed `method' and
15887         `signature', replaced them with `is_method' and `is_signature'
15888         flags.  Added `context'.
15889
15890         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
15891         instead of a `MonoGenericContainer *'.
15892
15893         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
15894         for dynamic type parameters.
15895         (mono_metadata_load_generic_params): Setup `container->context'.
15896
15897         * reflection.c (mono_reflection_setup_generic_class): Setup
15898         `tb->generic_container->context'.
15899         (do_mono_reflection_bind_generic_parameters): Use
15900         mono_class_inflate_generic_type() to correctly inflate types,
15901         rather than using our own hack just for MONO_TYPE_VAR.
15902
15903 2004-11-09  Martin Baulig  <martin@ximian.com>
15904
15905         * class.c (mono_class_inflate_generic_method): Small fix; don't
15906         crash here.
15907
15908         * icall.c
15909         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
15910         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
15911         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
15912         (ves_icall_Type_BindGenericParameters): Likewise.
15913         (ves_icall_Type_get_IsGenericInstance): Likewise.
15914         (ves_icall_Type_GetGenericParameterPosition): Likewise.
15915         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
15916         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
15917         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
15918
15919 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
15920
15921         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
15922         assembly versions and public key tokens. Fixes #69113.
15923
15924 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
15925
15926         * metadata.c: fix bug introduced with the type cache changes
15927         on 2004-11-06.
15928
15929 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
15930
15931         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
15932         the MonoClass pointer instead of the token in exception clauses.
15933         * reflection.c: updates for the above and make the code not depend
15934         on the structure of MonoExceptionClause.
15935
15936 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
15937
15938         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
15939         Add support for dynamic assemblies. Fixes #69114.
15940
15941         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
15942
15943 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
15944
15945         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
15946         since most only those methods use it. the code member of
15947         MonoMethodPInvoke was dead, so that can be removed too. Also,
15948         remove inline_count (again, not used), and move slot so that it
15949         can share bits with some other flags. This saves 8 bytes in the
15950         structure and gives us about 50 kb back for mcs helloworld.cs
15951
15952         * *.[ch]: Do naming changes for the above.
15953
15954         * loader.c (mono_method_get_header): Lazily init the header
15955         on first access.
15956         (mono_get_method_from_token): don't init the header here
15957         (mono_free_method): the header may never be allocated
15958
15959         Overall, this saves 150 kb of unmanaged allocations
15960         for mcs helloworld.cs. That accounts for 10% of the unmanaged
15961         memory at runtime.
15962         
15963         * loader.c, loader.h (mono_method_get_header): new accessor.
15964
15965         * *.[ch]: use the above method. Prepares us to lazily load
15966         the header.
15967
15968         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
15969         three warnings, which are actual bugs (see 69206).
15970
15971         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
15972         unused. Saves a cool 4 bytes / method.
15973
15974 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
15975
15976         * metadata.c (builtin_types): Add types for System.Object here.
15977         (mono_metadata_parse_type_full): Cache MonoType*'s that are
15978         for a class or valuetype from klass->this_arg or klass->byval_arg.
15979
15980         On mcs for a hello world, this gets us down from 21836 MonoType's
15981         to 14560.
15982
15983         (mono_metadata_free_type): Account for the above change.
15984
15985 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
15986
15987         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
15988         exception instead of asserting if name is null.
15989         (ves_icall_System_AppDomain_GetData): Ditto.
15990
15991 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
15992
15993         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
15994         EnumBuilder.
15995
15996         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
15997         Return NULL when the domain does not have entry_assembly set.
15998
15999         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
16000         Add a 'resource_modules' argument.
16001         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
16002
16003         * reflection.c (mono_reflection_create_runtime_class): Move setting
16004         of wastypebuilder here, so mono_get_type_object () returns a MonoType
16005         for enums too.
16006
16007         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
16008         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
16009         Throw an ArgumentNullException if 'ptr' is null.
16010
16011         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
16012         assemblies here. Fixes #69020.
16013
16014 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
16015
16016         * reflection.c (build_compressed_metadata): Fix the previous patch for
16017         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
16018         the stack.
16019
16020 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
16021
16022         * assembly.c (mono_assembly_names_equal): Allow a match if one of
16023         the cultures is false. Fixes #69090.
16024
16025         * reflection.c (build_compressed_metadata): Fix invalid memory read 
16026         detected by valgrind.
16027         
16028         * reflection.c (mono_reflection_get_type): Avoid triggering a 
16029         TypeResolve multiple times for the same type. Fixes #65577.
16030
16031 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
16032
16033         * marshal.c: Avoid using ldftn to call managed functions. It is
16034         much slower than just a call.
16035
16036         * reflection.c (mono_module_get_object): free the basename we
16037         allocate here from glib.
16038         
16039         * reflection.c (ensure_runtime_vtable): make sure to free
16040         overrides.  Also, we were allocating an array of MonoMethod not an
16041         array of MonoMethod*.
16042
16043         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
16044
16045         * image.c (mono_image_close): free image->guid here.
16046
16047 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
16048
16049         * reflection.c: Fix some spec conformance issues with the PE file
16050         structures so mcs compiled apps run on the Net 2.0 beta.
16051
16052 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
16053
16054         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
16055         Implement this. Fixes #67264.
16056
16057         * debug-helpers.h debug-helpers.c marshal.c: Move 
16058         mono_find_method_by_name to debug-helpers.c.
16059
16060 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
16061
16062         * object.c (mono_release_type_locks): type_initialization_hash is
16063         a GHashTable.
16064
16065         * reflection.c object.c object-internals.h: Fix warnings.
16066
16067         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
16068         without accessors. Fixes #61561.
16069
16070         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
16071         application base from the root domain if not set. Fixes #65641.
16072         (mono_runtime_init): Fix warning.
16073
16074 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16075
16076         * appdomain.c: call mono_thread_pool_init.
16077         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
16078         of worker threads based on the number of CPUs and the environment
16079         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
16080         for non-windows (windows) systems.
16081
16082 2004-10-27  Chris Toshok  <toshok@ximian.com>
16083
16084         * mono-debug-debugger.c (write_class): don't call mono_class_init
16085         here, as even with the check for (!klass->init_pending), we get
16086         into a situation where we're hitting cycles in class
16087         initialization.  Fixes #68816.
16088
16089 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
16090
16091         * image.c: Avoid overwriting values in the loaded_images_hash when an
16092         assembly is loaded multiple times. Fixes #61152.
16093
16094         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
16095         so multiple satellite assemblies for the same name can be loaded.
16096         Fixes #68259.
16097
16098         * mono_domain_assembly_preload: Actually return the loaded assembly, 
16099         not NULL.
16100
16101         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
16102         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
16103
16104         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
16105         pending finalizers are not invoked after the appdomain has been 
16106         unloaded. Fixes #67862.
16107
16108 2004-10-22  Martin Baulig  <martin@ximian.com>
16109
16110         * mono-debug-debugger.c
16111         (mono_debugger_runtime_invoke): Don't box valuetypes.
16112
16113 2004-10-22  Chris Toshok  <toshok@ximian.com>
16114
16115         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
16116         don't hide private methods.
16117
16118 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
16119
16120         * icall.c: Allows the runtime to "share" (when known) the public key
16121         token of an assembly. This avoid the need to recalculate the token 
16122         (from the public key) in managed code.
16123
16124 2004-10-21  Chris Toshok  <toshok@ximian.com>
16125
16126         * debug-helpers.c (append_class_name): argh, revert last patch.
16127         
16128 2004-10-21  Chris Toshok  <toshok@ximian.com>
16129
16130         * debug-helpers.c (append_class_name): use '+' as the delimiter,
16131         not '/', so that it matches what the debugger uses to look up
16132         methods.
16133
16134 2004-10-21  Martin Baulig  <martin@ximian.com>
16135
16136         * mono-debug-debugger.c (mono_debugger_throw_exception): New
16137         public method; this is called each time an exception is thrown and
16138         allows the debugger to use exception catch points.
16139
16140 2004-10-21  Martin Baulig  <martin@ximian.com>
16141
16142         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
16143         the stack pointer and the exception object in some struct and pass
16144         that to the debugger.
16145
16146 2004-10-21  Chris Toshok  <toshok@ximian.com>
16147
16148         * mono-debug-debugger.c (do_write_class): add instance/static
16149         event support.  We don't expose "raise" or "other" yet.
16150         (event_is_static): new method.
16151
16152 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
16153
16154         * mono-debug-debugger.c
16155         (mono_debugger_handle_exception): Remove
16156         bogus return value for fussy compilers.
16157
16158 2004-10-20  Martin Baulig  <martin@ximian.com>
16159
16160         * mono-debug-debugger.c
16161         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
16162         (mono_debugger_handled_exception): Likewise.
16163
16164 2004-10-20  Martin Baulig  <martin@ximian.com>
16165
16166         * mono-debug-debugger.h (MonoDebuggerEvent): Added
16167         MONO_DEBUGGER_EVENT_EXCEPTION.
16168
16169         * mono-debug-debugger.c (mono_debugger_handle_exception): New
16170         public function to send the debugger a notification for an
16171         exception and inform it about a catch/finally clause.
16172
16173 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
16174
16175         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
16176         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
16177         fix 2.95 build. 
16178
16179         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
16180
16181 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
16182
16183         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
16184         marshalled as [In,Out]. Fixes #58325.
16185
16186 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
16187
16188         * reflection.c (mono_method_body_get_object): Implement some fields.
16189
16190 2004-10-12  Martin Baulig  <martin@ximian.com>
16191
16192         * reflection.c (mono_reflection_bind_generic_parameters): Small
16193         fix, correctly retrieve our parent from a generic instance.
16194
16195 2004-10-12  Martin Baulig  <martin@ximian.com>
16196
16197         * metadata.c (mono_metadata_generic_param_equal): We always have
16198         an owner.
16199
16200         * class.c
16201         (mono_class_from_generic_parameter): We need to have an owner.
16202         (my_mono_class_from_generic_parameter): Likewise.
16203
16204         * reflection.c (mono_reflection_setup_generic_class): Renamed to
16205         mono_reflection_create_generic_class() and added a new
16206         mono_reflection_setup_generic_class().  
16207         (mono_reflection_initialize_generic_param): If we're a nested
16208         generic type and inherited from the containing class, set our
16209         owner to the outer class.
16210
16211 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
16212
16213         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
16214
16215         * reflection.c (mono_method_body_get_object): New function to create
16216         a MethodBody object.
16217
16218         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
16219
16220 2004-10-11  Martin Baulig  <martin@ximian.com>
16221
16222         * metadata.c (_mono_metadata_type_equal): Renamed to
16223         do_mono_metadata_type_equal() and made static.
16224
16225 2004-10-11  Martin Baulig  <martin@ximian.com>
16226
16227         * appdomain.c: Bump corlib version number to 28.
16228
16229 2004-10-10  Martin Baulig  <martin@ximian.com>
16230
16231         * class-internals.h
16232         (MonoGenericInst): Added `MonoGenericContainer *container'.
16233         (MonoGenericMethod): Likewise.
16234         (MonoGenericContext): Likewise.
16235         (MonoGenericParam): Added `MonoGenericContainer *owner'.
16236
16237         * metadata.c
16238         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
16239         (do_mono_metadata_parse_generic_inst): Likewise.
16240         (mono_metadata_parse_type_full): New public method.  This is the actual
16241         mono_metadata_parse_type() implementation - with an additional
16242         `MonoGenericContainer *' argument.
16243         (mono_metadata_parse_array_full): Likewise.
16244         (mono_metadata_parse_signature_full): Likewise.
16245         (mono_metadata_parse_method_signature_full): Likewise.
16246         (mono_metadata_parse_mh_full): Likewise.
16247         (mono_type_create_from_typespec): Likewise.
16248         (mono_metadata_interfaces_from_typedef_full): New public method;
16249         this is similar to the other _full() methods, but we take a
16250         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
16251         (mono_metadata_parse_generic_param): Take an additional
16252         `MonoGenericContainer *' argument and lookup the MonoGenericParam
16253         from that container.
16254         (mono_metadata_generic_param_equal): New static method to compare
16255         two type parameters.
16256         (_mono_metadata_type_equal): New static method; takes an
16257         additional `gboolean signature_only' argument - if true, we don't
16258         compare the owners of generic parameters.
16259         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
16260         with a TRUE argument - do a signature-only comparision.
16261
16262         * loader.c: Use the new _full() methods and pass the
16263         MonoGenericContainer to them.
16264
16265         * object-internals.h (MonoReflectionTypeBuilder): Added
16266         `MonoGenericContainer *generic_container' field.
16267         (MonoReflectionMethodBuilder): Likewise.
16268
16269 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
16270
16271         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
16272         case initial images of dynamic assemblies.
16273
16274         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
16275
16276         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
16277
16278         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
16279         length of event->other array.
16280         (typebuilder_setup_events): Ditto.
16281
16282         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
16283         'assembly_by_name' and add an 'assemblies' list.
16284
16285         * assembly.h assembly.c: Add a new search hook for determining whenever
16286         an assembly is already loaded. Use this instead of searching in the
16287         loaded_assemblies list.
16288
16289         * domain.c appdomain.c: Implement the new search hook so loaded 
16290         assemblies are now scoped by appdomain. Fixes #67727.
16291
16292 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
16293
16294         * threads.c (mono_thread_attach): Initialize synch_lock field so
16295         mono_thread_detach works again.
16296
16297         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
16298         'lib' too. Fixes #63130.
16299
16300 2004-10-06  Jackson Harper  <jackson@ximian.com>
16301
16302         * culture-info-tables.h: regenerated.
16303
16304 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
16305
16306         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
16307         implemented by other interfaces in the result. Fixes #65764.
16308         
16309         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16310         Handle unloadable modules without crashing.
16311
16312         * image.c (load_modules): Revert the previous patch since modules must
16313         have a fixed index inside the array.
16314         
16315         * image.c (load_modules): Don't include native modules in the modules
16316         array.
16317
16318 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
16319
16320         * reflection.h: Add param_defaults field.
16321
16322         * reflection.c: Add support for parameter defaults in dynamic methods.
16323         Fixes #64595.
16324
16325         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
16326         an empty string when a type has no namespace. Fixes #64230.
16327
16328 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
16329
16330         * tabledefs.h: Added "internal" security actions to support non-CAS
16331         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
16332         Note: they do not seems to be used anymore in 2.0 (new metadata format)
16333
16334 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
16335
16336         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
16337         constructor of abstract class. Fixes #61689.
16338
16339 2004-10-04  Martin Baulig  <martin@ximian.com>
16340
16341         * class-internals.h (MonoGenericContainer): New type.
16342         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
16343         `MonoGenericContainer *generic_container'.
16344         (MonoClass): Replaced `gen_params' and `num_gen_params' with
16345         `MonoGenericContainer *generic_container'.
16346
16347         * metadata.c (mono_metadata_load_generic_params): Return a
16348         `MonoGenericContainer *' instead of a `MonoGenericParam *';
16349         removed the `num' argument.
16350
16351 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
16352
16353         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
16354         for dynamic images.
16355
16356         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
16357         machine fields.
16358
16359         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
16360
16361         * reflection.c: Save pe_kind and machine values into the generated
16362         image file.
16363
16364         * appdomain.c: Bump corlib version number.
16365
16366         * object-internals.h: Reorganize layout of LocalBuilder.
16367
16368         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
16369         New helper function.
16370
16371         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
16372         created MonoType for dynamic types. Fixes #66180.
16373
16374 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
16375
16376         * threadpool.c: the ares hashtable needs a critical section around it.
16377         this prevents some nasty segfaults
16378
16379 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
16380
16381         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
16382         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
16383         bug 67324).
16384         
16385 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
16386
16387         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
16388         
16389 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
16390
16391         * image.c: Always canonicalize image file names, to avoid loading
16392         the same assembly twice when referenced using a relative path.
16393
16394 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
16395
16396         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
16397
16398         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
16399
16400         * marshal.c: Fix warnings.
16401
16402 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
16403
16404         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
16405         attempting to marshal the delegate_trampoline as the method_addr.
16406         This patch has a static hashtable of marshalled delegates so that 
16407         we can map delegate_trampoline addresses back to delegates.  This
16408         allows a delegate passed to managed code to be passed back into native
16409         code.  Fixes #67039
16410
16411 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
16412
16413         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
16414
16415         * reflection.c (method_encode_code): Align method headers properly.
16416         Fixes #66025.
16417
16418 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
16419
16420         * marshal.c: In the runtime invoke wrapper, reset the abort
16421         exception if it is cached. This avoids the automatic rethrowal of 
16422         the exception after the catch of the wrapper. Also check for pending
16423         interruptions before calling the managed method. This is done using
16424         the new method emit_thread_force_interrupt_checkpoint, since the
16425         normal checkpoint method is ignored when running the invoke wrapper.
16426         * object.c: If the abort exception is rethrown, set the abort_exc
16427         field of the thread, so it will be rethrown aftere every catch.
16428         * threadpool.c: Only run an interruption checkpoint if what has been
16429         requested is a stop of the thread (aborts will be ignored).
16430         * threads.c: By default, a thread will now never be interrumped while
16431         running the runtime invoke wrapper (this ensures that runtime_invoke
16432         will always return to the caller if an exception pointer is provided).
16433         There is a new special method mono_thread_force_interruption_checkpoint()
16434         to force an interruption checkpoint even if running a protected
16435         wrapper, which is used by the same runtime invoke wrapper to do a check
16436         at a safe point.
16437
16438 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
16439
16440         * object.c, object-internals.h: Implemented mono_release_type_locks,
16441         which releases the cctor locks held by a thread.
16442         * threads.c, threads.h: In thread_cleanup, release cctor locks held
16443         by a thread. Added mono_thread_exit() method to be used to safely stop
16444         a thread.
16445
16446 2004-09-28  Raja R Harinath  <rharinath@novell.com>
16447
16448         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16449         Move null check before dereference.  Avoid indexing beyond the end
16450         of the 'modules' array.
16451
16452 2004-09-28  Raja R Harinath  <rharinath@novell.com>
16453
16454         * metadata-internals.h (MonoImage): Add module_count field.
16455         * image.c (load_modules): Set image->module_count.
16456         (mono_image_load_file_for_image): Use image->module_count.
16457         * reflection.c (mono_image_load_module): Append to image->modules array 
16458         of dynamic assembly.
16459         (mono_module_get_object): Fix loop to actually increment index.
16460         Use image->module_count.
16461         * assembly.c (mono_assembly_load_references): Use image->module_count.
16462         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
16463         Likewise.
16464
16465 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
16466
16467         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
16468         Avoid assert on generic types.
16469
16470 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
16471
16472         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
16473
16474         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
16475
16476         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
16477         function to convert a MarshalSpec structure to its managed counterpart.
16478
16479         * reflection.c: Fix warnings.
16480         
16481         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
16482         field.
16483
16484         * icall.c (mono_create_icall_signature): Fix build.
16485
16486 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
16487
16488         * icall.c: Add MakePointType icall.
16489
16490         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
16491         warnings.
16492
16493 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16494
16495         * threadpool.c: reuse allocated slots in the queue.
16496
16497 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
16498
16499         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
16500
16501         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
16502
16503         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
16504         previous change.
16505
16506         * tabledefs.h: Add constants for pinvoke attributes BestFit and
16507         ThrowOnUnmappableChar.
16508
16509         * icall.c (ves_icall_Type_GetPacking): New icall.
16510
16511 2004-09-24  Martin Baulig  <martin@ximian.com>
16512
16513         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
16514
16515 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16516
16517         * appdomain.c:
16518         (mono_domain_set): allow setting a domain that is being unloaded.
16519         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
16520         being unloaded.
16521
16522 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
16523
16524         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
16525         the GetCustomAttributes icall.
16526
16527 2004-09-23  Martin Baulig  <martin@ximian.com>
16528
16529         * object-internals.h (MonoReflectionGenericParam): Replaced
16530         'has_ctor_constraint', `has_reference_type' and `has_value_type'
16531         with `guint32 attrs'.
16532
16533 2004-09-23  Martin Baulig  <martin@ximian.com>
16534
16535         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
16536
16537 2004-09-23  Martin Baulig  <martin@ximian.com>
16538
16539         * object-internals.h (GenericParameterAttributes): New enum.
16540
16541 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
16542
16543         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
16544         
16545         * class.c (init_events): Fill out event->other field.
16546
16547         * class.c: Fix warnings.
16548
16549         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
16550
16551 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
16552
16553         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
16554         walk which doesn't supply the IL offset.
16555
16556 2004-09-22  Martin Baulig  <martin@ximian.com>
16557
16558         * reflection.c (mono_reflection_setup_internal_class): If we're
16559         System.ValueType, System.Object or System.Enum, set
16560         `klass->instance_size' and create the vtable.
16561         (mono_reflection_create_internal_class): If we're an enum type,
16562         get the base class from our current corlib.
16563
16564 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
16565
16566         * reflection.h (MonoResolveTokenError): New type.
16567
16568         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
16569         icall.
16570
16571         * icall.c: Add an 'error' argument to the ResolveToken icalls.
16572
16573 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
16574
16575         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
16576         Support also calling constructors, but only for already allocated objects.
16577
16578 2004-09-17  Geoff Norton <gnorton@customerdna.com>
16579
16580         * reflection.c (type_get_qualified_name): If the klass is null
16581         return the typename to avoid a NullRefEx.
16582         (encode_cattr_value): Get the qualified name of the boxed type,
16583         not the underlying enumtype.  Fixes #62984.
16584
16585 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
16586
16587         * marshal.c: Fix problems with previous checkin.
16588
16589 2004-09-21    <vargaz@freemail.hu>
16590
16591         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
16592         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
16593
16594         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
16595
16596 2004-09-21  Geoff Norton <gnorton@customerdna.com>
16597
16598         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
16599         should only return a type for pointers, arrays, and passbyref types.
16600         Fixes bug #63841.
16601
16602 2004-09-21  Martin Baulig  <martin@ximian.com>
16603
16604         * domain.c (mono_debugger_check_runtime_version): New public
16605         function.
16606
16607         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
16608
16609 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
16610
16611         * reflection.c: Added missing sort to the declarative security 
16612         attributes table. MS implementation stops seeing the attributes if the
16613         token number regress in the table (as shown by ildasm and permview).
16614
16615 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
16616
16617         * object-internals.h (MonoReflectionModule): Add 'token' field.
16618         
16619         * reflection.c (mono_reflection_get_token): Add support for Module
16620         and Assembly.
16621         (mono_module_get_object): Set 'token' field.
16622         (mono_module_file_get_object): Set 'token' field.
16623
16624         * icall.c: Add new Assembly and Module icalls.
16625
16626         * appdomain.c: Bump corlib version.
16627
16628 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
16629
16630         * loader.h loader.c class.h class.c: Add helper functions for obtaining
16631         tokens of metadata objects.
16632
16633         * reflection.h reflection.c (mono_reflection_get_token): New function
16634         to obtain the token of a metadata object.
16635
16636         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
16637
16638 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
16639
16640         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
16641         
16642         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
16643
16644 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
16645
16646         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
16647         * object-internals.h: Added 3 MonoArray* members to MonoReflection
16648         AssemblyBuilder to access the permissions set in the class lib.
16649         * reflection.c: Added security attributes encoding step in 
16650         mono_image_build_metadata.
16651         * tabledefs.h: Added new security actions defined in 2.0:
16652         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
16653
16654 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
16655
16656         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
16657         macro parameter.
16658
16659 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
16660  
16661         * locales.c: nullify the ICU_collator member of CompareInfo when it is
16662           finalized. There where random SIGSEVs at program termination, when
16663           an object being finalized was trying to do a string comparison and
16664           the current culture was already finalized.
16665  
16666 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16667
16668         * threads.c: call thread_cleanup before finishing the thread if we get
16669         there.
16670
16671 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
16672
16673         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
16674         assemblies from the parent. Fixes #65665.
16675
16676 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
16677
16678         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
16679         modifiers.
16680
16681 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
16682
16683         * reflection.h: add prototype for mono_get_dbnull_object
16684         * reflection.c: add prototypes for get_default_param_value_blobs 
16685         and mono_get_object_from_blob for fussier compilers
16686
16687 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
16688  
16689         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
16690         false deadlock checks in class initialization.
16691  
16692 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
16693
16694         * image.c (mono_image_addref): Fix comment.
16695
16696         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
16697         possible.
16698
16699 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
16700
16701         * reflection.c (mono_param_get_objects): Modified to return
16702         ParameterInfo.DefaultValue object.
16703
16704         (get_default_param_value_blobs):
16705         (mono_get_object_from_blob):
16706         (mono_get_dbnull_object): New helper routines. 
16707
16708         * object.c (mono_get_constant_value_from_blob): New helper routine
16709         carved out from get_default_field_value ()
16710
16711         * object-internals.h (mono_get_constant_value_from_blob): Added
16712         function declaration.
16713
16714 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
16715
16716         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
16717         referenced assemblies. Fixes #62135.
16718
16719         * exception.h exception.c (mono_get_exception_file_not_found2): New
16720         helper function.
16721
16722 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
16723
16724         * class.h class.c: Add mono_type_get_underlying_type ().
16725
16726 2004-09-09  Geoff Norton <gnorton@customerndna.com>
16727
16728         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
16729         Fix GetTypes() to support dynamically created assemblies.
16730
16731 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
16732
16733         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
16734         
16735         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
16736         previous patch.
16737
16738         * reflection.h reflection.c loader.c: Allow dynamic construction of
16739         pinvoke methods. Fixes #65571.
16740         
16741         * reflection.c (mono_reflection_get_type): Revert previous change since
16742         it causes regressions.
16743
16744 2004-09-08  Martin Baulig  <martin@ximian.com>
16745
16746         * class.c (class_compute_field_layout): Don't call
16747         mono_class_layout_fields() for open generic instances.
16748
16749 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
16750         * threads.c appdomain.c: fix typo in GC macro
16751
16752 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16753
16754         * threads.c: don't call mono_thread_detach() in start_wrapper(),
16755         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
16756
16757 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
16758
16759         * image.c (mono_image_close): Applied patch from 
16760         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
16761         assembly is loaded multiple times from data.
16762         
16763         * image.c (mono_image_open): Fix warning.
16764
16765 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
16766
16767         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
16768         once. Fixes #58334.
16769         
16770         * reflection.c (mono_reflection_create_runtime_class): Initialize
16771         klass->nested_classes. Fixes #61224.
16772
16773 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
16774
16775         * threads.c: sched_yield() on exit, to allow threads to quit.
16776
16777 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
16778
16779         * object.c (mono_unhandled_exception): Remove leftover debug code.
16780
16781 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
16782
16783         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
16784
16785 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
16786
16787         * marshal.c (emit_marshal_array): Really null terminate string arrays.
16788         
16789         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
16790
16791 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
16792
16793         * marshal.c (emit_marshal_array): Null terminate string arrays.
16794         
16795         * marshal.c (raise_auto_layout_exception): Fix warning.
16796
16797         * reflection.c (mono_param_get_objects): Initialize the default value
16798         with DBNull.Value, not null. Fixes #62123.
16799
16800 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
16801
16802         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
16803         throw an exception with a cute explanation.
16804
16805 2004-09-06  Dick Porter  <dick@ximian.com>
16806
16807         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
16808         Close the new process's thread handle, as we don't use it.  The
16809         handle stays around forever otherwise.
16810
16811 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
16812
16813         * object.c (arith_overflow): Fix warning.
16814
16815         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
16816         calling conventions in method refs. Fixes #65352.
16817
16818         * reflection.c: Fix warnings.
16819
16820 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
16821
16822         * icall.c: Add a new icall for Array.Clear
16823
16824 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
16825
16826         * object.c: When allocating an array, we have to throw
16827         an overflow exception if any of the lengths are < 0.
16828
16829 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
16830
16831         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
16832         properly. Also move implementation of string array marshalling to 
16833         managed code. Fixes #42316.
16834
16835 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16836
16837         * assembly.c: provide more information when loading an assembly fails.
16838
16839 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16840
16841         * filewatcher.c: don't expect the development fam package to be
16842         installed.
16843
16844 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
16845
16846         * marshal.c: Make a copy of the signature cookie since it will be
16847         freed by the caller.
16848         
16849         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
16850
16851         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
16852
16853         * metadata.c (mono_metadata_free_marshal_spec): New function to free
16854         marshal specs.
16855
16856         * marshal.c: More refactoring.
16857         
16858         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
16859         smaller functions.
16860
16861 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
16862
16863         * object.c: In mono_message_invoke, fill the output parameter array after
16864           calling the managed method (it was done before the call). This fixes
16865           bug #59299.
16866
16867 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
16868
16869         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
16870         as well.
16871
16872 2004-09-02  Martin Baulig  <martin@ximian.com>
16873
16874         * class.c (mono_class_instance_size): Don't allow generic type
16875         definitions or open generic instances.
16876         (mono_class_array_element_size): If we're a value type, call
16877         mono_class_instance_size() on the original class.
16878
16879         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
16880         handle generic instances.
16881
16882         * mono-debug-debugger.c (write_type): Handle generic instances
16883         like classes.
16884
16885 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
16886
16887         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
16888         the allocation request fails. Fixes #65089.
16889
16890         * object.c (mono_runtime_free_method): Do not call mono_free_method.
16891         
16892         * object.c (mono_runtime_free_method): New function to free a dynamic
16893         method.
16894
16895         * marshal.c (mono_delegate_free_ftnptr): New function to free the
16896         delegate trampoline.
16897
16898         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
16899         with hasthis as dynamic,
16900
16901         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
16902
16903         * domain.c (mono_jit_info_table_remove): New function to remove an
16904         entry from the jit info table.
16905
16906         * class-internals.h (MonoMethod): Add 'dynamic' field.
16907
16908         * loader.c: Fix warnings.
16909
16910 2004-09-01  Martin Baulig  <martin@ximian.com>
16911
16912         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
16913         instead of mono_debugger_lock() because the latter one is a no-op
16914         unless running in the debugger.
16915
16916 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
16917
16918         * class.c (class_compute_field_layout): Classes with auto-layout or
16919         reference fields are not blittable.
16920         
16921 2004-09-01  Dick Porter  <dick@ximian.com>
16922
16923         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
16924         mono_image_get_filename() to get the assembly location.
16925
16926         * icall.c:
16927         * metadata.h: Fix compile warnings
16928
16929 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
16930
16931         * class.c (class_compute_field_layout): System.Object is blittable.
16932
16933         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
16934         as in/out. Fixes #59909.
16935
16936 2004-09-01  Martin Baulig  <martin@ximian.com>
16937
16938         * metadata.h (MONO_TYPE_ISREFERENCE): Call
16939         mono_metadata_generic_inst_is_valuetype() if we're a generic
16940         instance to check whether our underlying type is a reference type.
16941
16942 2004-09-01  Martin Baulig  <martin@ximian.com>
16943
16944         * metadata.c (mono_type_size): If we're a generic instance, call
16945         mono_class_value_size() for value types.
16946
16947 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
16948
16949         * marshal.c: Implement more custom marshalling functionality. Fixes
16950         #64915.
16951
16952 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
16953
16954         * mono-debug.c, debug-mono-symfile.c: add some locking love.
16955
16956 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
16957
16958         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
16959
16960         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
16961
16962         * icall.c: Fix some warnings.
16963
16964         * threads.c (abort_appdomain_thread): Fix unref errors.
16965         (mono_thread_current): Fix THREAD_DEBUG define.
16966
16967 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
16968
16969         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
16970
16971         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
16972
16973 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
16974
16975         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
16976         string arrays.
16977
16978 2004-08-28  Martin Baulig  <martin@ximian.com>
16979
16980         * metadata.c
16981         (mono_metadata_generic_inst_is_valuetype): New public function.
16982
16983         * metadata.h (MONO_TYPE_ISSTRUCT): Call
16984         mono_metadata_generic_inst_is_valuetype() if we're a generic
16985         instance to check whether our underlying type is a valuetype.
16986
16987 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
16988
16989         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
16990         #63768.
16991
16992 2004-08-25  Martin Baulig  <martin@ximian.com>
16993
16994         * loader.c (mono_get_method_from_token): Abstract methods can also
16995         be generic and thus have type parameters.
16996
16997         * metadata-internals.h
16998         (MonoDynamicImage): Added `GPtrArray *gen_params'.
16999
17000         * reflection.c (mono_image_get_generic_param_info): Don't create a
17001         metadata row, just add an entry to the `gen_params' array.
17002         (build_compressed_metadata): Sort the `gen_params' array and then
17003         actually create the metadata.
17004
17005 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17006
17007         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
17008
17009 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
17010
17011         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
17012
17013 2004-08-24  Martin Baulig  <martin@ximian.com>
17014
17015         * class.cs (mono_class_is_subclass_of): Like an interface, a
17016         generic instance also derives from System.Object.
17017
17018 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
17019
17020         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
17021         custom modifiers to be in any order. Fixes #61990.
17022
17023 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
17024
17025         * object.c: Register mono_object_new_fast icall.
17026         
17027         * object.c (mono_class_get_allocation_ftn): Return to calling
17028         mono_object_new_fast, since it seems faster to compute the object 
17029         size in unmanaged code than passing it as a parameter.
17030
17031         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
17032
17033         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
17034         this function with Boehm as the oom handler, so we don't have to check
17035         the result of GC_malloc.
17036
17037         * object.c: Remove checks for oom.
17038
17039         * object.h object.c (mono_class_get_allocation_ftn): New function to
17040         return the icall which can be used to allocate an instance of a given
17041         class. 
17042
17043         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
17044
17045         * class-internals.h: Add 'enabled' field.
17046
17047 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
17048
17049         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
17050
17051 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
17052         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
17053         value 0x0010.
17054
17055 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
17056
17057         * appdomain.c: use the Tls function for appdomain too,
17058         at Zoltan's request. Actually return in mono_context_get
17059
17060         * appdomain.c, profiler.c, threads.c: use __thread
17061
17062 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
17063
17064         * appdomain.c threads.c: Call GC_CreateThread on windows.
17065
17066         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
17067         multiple libraries since this don't work on windows.
17068
17069 2004-08-18  Martin Baulig  <martin@ximian.com>
17070
17071         * class-internals.h
17072         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
17073         MonoMethodHeader.
17074
17075         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
17076         MonoMethodNormal since we also need it for abstract and interface
17077         methods.
17078
17079         * reflection.c
17080         (build_compressed_metadata): Sort the GenericParam table.
17081         (mono_image_create_token): Added `gboolean create_methodspec'
17082         argument; this is false when generating a MethodImpl token.
17083         (reflection_methodbuilder_to_mono_method): Abstract and interface
17084         methods may also have generic parameters.
17085
17086 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
17087
17088         * appdomain.c: thread local alloc
17089
17090 2004-08-17  Martin Baulig  <martin@ximian.com>
17091
17092         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
17093
17094         * icall.c
17095         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
17096         argument.
17097
17098         * class.c (mono_type_get_full_name): New public function.
17099         (mono_type_get_name): Don't include the type arguments.
17100
17101 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
17102
17103         * Makefile.am: Build static versions of libmetadata and libmonoruntime
17104         for inclusion into the mono executable.
17105
17106 2004-08-16  Martin Baulig  <martin@ximian.com>
17107
17108         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
17109         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
17110
17111 2004-08-14  Martin Baulig  <martin@ximian.com>
17112
17113         * class.c (dup_type): Also copy the `byref' field.
17114
17115 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
17116
17117         * reflection.c (create_dynamic_mono_image): Revert the last change 
17118         since it breaks bootstrap.
17119
17120 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
17121
17122         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
17123
17124         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
17125         not free them with g_free.
17126
17127 2004-08-11  Martin Baulig  <martin@ximian.com>
17128
17129         * reflection.c (mono_reflection_setup_internal_class): Also call
17130         mono_class_setup_mono_type() if we already have a `tb->type.type'.
17131
17132 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
17133
17134         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
17135         called during default (first) AppDomain creation. Keep track of
17136         Evidence when loading assemblies.
17137
17138 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
17139
17140         * opcodes.c, opcodes.h: reduce runtime relocations.
17141
17142 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
17143
17144         * culture-info.h, locales.c: fixes and chages to sue the new
17145         optimized format of the locale data.
17146         * culture-info-tables.h: regenerated.
17147
17148 2004-08-06  Geoff Norton <gnorton@customerdna.com>
17149         
17150         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
17151
17152 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
17153
17154         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
17155         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
17156         * domain-internals.h: icall declaration.
17157         * icall.c: icall registration.
17158         * object-internals.h: New fields in MonoAssembly for CAS.
17159
17160 2004-08-05  Duncan Mak  <duncan@ximian.com>
17161
17162         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
17163         CEE_LDELEM_ANY.
17164
17165 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
17166
17167         * reflection.c: fix to deal with object[] arrays in custom ctors
17168         (bug #62550).
17169
17170 2004-08-05  Martin Baulig  <martin@ximian.com>
17171
17172         * class.c (mono_class_array_element_size): Added support for
17173         generic instances and correctly handle "recursive" types.
17174
17175 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
17176
17177         * assembly.c: Fix warnings.
17178
17179 2004-08-04  Martin Baulig  <martin@ximian.com>
17180
17181         * class.c
17182         (mono_type_get_name_recurse): Added `gboolean include_arity'
17183         argument specifying whether or not we should include the generic
17184         arity in the type name.
17185         (_mono_type_get_name): New static function.
17186         (mono_class_setup_vtable): If we're a generic instance, don't
17187         include the generic arity in the names of explicit method
17188         implementations.        
17189
17190 2004-08-03  Martin Baulig  <martin@ximian.com>
17191
17192         * class.c (mono_type_get_name_recurse): Enclose the generic type
17193         arguments in `<', '>'.
17194
17195 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
17196
17197         * gc.c: make GC warning messages use the trace API, they are just
17198         noise to most of the users.
17199
17200 2004-08-03  Martin Baulig  <martin@ximian.com>
17201
17202         * debug-mono-symfile.c (read_string): Correctly read the string.
17203
17204 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
17205
17206         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
17207         
17208         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
17209         icalls.
17210         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
17211
17212 2004-07-30  Martin Baulig  <martin@ximian.com>
17213
17214         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
17215         Reflect latest symbol writer changes.   
17216
17217 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
17218
17219         * object.c: always create an object if null is passed
17220         to Invoke() where a valuetype is expected.
17221
17222 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
17223
17224         * marshal.c (mono_marshal_init): make managed
17225         signatures match native ones better for 64bits.
17226
17227 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17228
17229         * appdomain.c: hack to build correctly the private bin path on windows.
17230         Fixes bug #61991.
17231
17232 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
17233
17234         * assembly.c: Load mscorlib from the correct framework directory
17235           (mono/<version>/mscorlib.dll).
17236         * appdomain.h: Added prototypes for new functions.
17237         * internals.h: Added some prototypes.
17238         * domain.c: When initializing the runtime, get from the executable and
17239           the configuration files the runtime version that the app supports.
17240           Added support methods for reading app.exe.config. Added list of versions
17241           supported by the JIT. Added two new methods: mono_init_from_assembly,
17242           which initializes the runtime and determines the required version from
17243           the provided exe file, and mono_init_version, which initializes
17244           the runtime using the provided version.
17245         * icall.c: Get machine.config from version-specific directory.
17246         * reflection.c: When generating an image, embed the version number
17247           of the current runtime.
17248
17249 2004-07-28  Dick Porter  <dick@ximian.com>
17250
17251         * socket-io.c
17252         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
17253         returned sockaddr size before creating the remote address object.
17254         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
17255         61608.
17256
17257 2004-07-28  Dick Porter  <dick@ximian.com>
17258
17259         * locales.c (string_invariant_compare_char): Fix invariant char
17260         compares between upper and lower cases.  Fixes bug 61458.
17261
17262 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
17263         
17264         * marshal.c: actually cache stelem.ref wrappers.
17265         
17266 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
17267
17268         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
17269         sections and remove the mono_cli_rva_map () function.
17270
17271 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
17272
17273         * debug-mono-symfile.c: fix one more endianess issue, from a patch
17274         by Geoff Norton (<gnorton@customerdna.com>).
17275
17276 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
17277
17278         * class.c: fix class loads for pointer types (typeof(int) !=
17279         typeof(int*)).
17280
17281 2004-07-27  Martin Baulig  <martin@ximian.com>
17282
17283         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
17284         reading the debugging information from an external ".mdb" file.
17285
17286 2004-07-24  Martin Baulig  <martin@ximian.com>
17287
17288         * reflection.c (mono_image_get_type_info): Only write a class
17289         layout entry if we actually have a size or a packing size.
17290
17291 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
17292
17293         * reflection.c (type_get_fully_qualified_name): 
17294         insert cast to get type checking of ?: with non-gcc compilers
17295
17296 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
17297
17298         * rand.c: use g_getenv for both lookups of
17299         MONO_EGD_SOCKET
17300
17301 2004-07-17  Martin Baulig  <martin@ximian.com>
17302
17303         * reflection.c (mono_reflection_bind_generic_method_parameters):
17304         Set `gmethod->reflection_info'.
17305
17306 2004-07-17  Martin Baulig  <martin@ximian.com>
17307
17308         * class.c (mono_class_create_from_typedef): Insert the newly
17309         created class into the hash table before computing the interfaces
17310         since we could be called recursively.
17311
17312 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
17313
17314         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
17315         function to implement stelem.ref in managed code
17316         * class-internals.h, debug-helpers.c: a new wrapper type
17317         for the above.
17318
17319 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
17320
17321         * gc.c: allow GC handles to work even when no GC is compiled in.
17322         Fix part of bug #61134 (GetAddrOfPinnedObject).
17323
17324 2004-07-13  Peter Williams  <peter@newton.cx>
17325  
17326         * process.c (complete_path): Make sure we don't attempt to execute
17327         directories.
17328  
17329 2004-07-12  Geoff Norton <gnorton@customerdna.com>
17330
17331         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
17332           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
17333           and will add/subtract the hour if needed
17334
17335 2004-07-12  Martin Baulig  <martin@ximian.com>
17336
17337         * reflection.c (mono_field_get_object): If we have
17338         `field->generic_info', take the attributes from
17339         `field->generic_info->generic_type'.    
17340
17341 2004-07-12  Martin Baulig  <martin@ximian.com>
17342
17343         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
17344         This function must be called before initializing the runtime.
17345         (mono_debug_init_1): New function; call this after initializing
17346         the runtime, but before loading the assembly.  It tells the
17347         debugger to load corlib and the builtin types.
17348
17349         * mono-debug-debugger.c: Did some larger changes in the debugging
17350         code; support recursive class declarations, make sure we actually
17351         add all classes.
17352
17353 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17354
17355         * debug-helpers.c: undo my previous patch and fixed the real issue in
17356         ../mini/exceptions-x86.c
17357
17358 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17359
17360         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
17361         when no HOME env. variable was set and a NullRef was thrown in a .cctor
17362         called from other .cctors.
17363
17364 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
17365
17366         * loader.c: Removed the mono_loader_wine_init hack now that we are
17367         doing a managed version of Windows.Forms.
17368
17369 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
17370
17371         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
17372         threadpool.c, threads.c: remove static data from rootset.
17373
17374 2004-07-09  Dick Porter  <dick@ximian.com>
17375
17376         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
17377         Don't do any more processing if the matched length was 0.  It was
17378         increasing the size of the string before.  Fixes bug 61167.
17379
17380 2004-07-09  Dick Porter  <dick@ximian.com>
17381
17382         * socket-io.h:
17383         * socket-io.c
17384         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17385         Add support for SO_PEERCRED if its available.
17386
17387 2004-07-09  Peter Bartok <pbartok@novell.com>
17388         * loader.c: winelib.exe.so error message is now only displayed if
17389         MONO_DEBUG is set. To help us avoid questions when people are trying
17390         out the new Managed.Windows.Forms.
17391
17392 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
17393
17394         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
17395         for isinst and castclass wrappers.
17396
17397         * class-internals.h icall.c: Move registration and lookup of JIT icalls
17398         to libmetadata from the JIT, so they could be used by the marshalling
17399         code and the interpreter.
17400
17401         * marshal.c: Register marshalling related JIT icalls here instead of
17402         in mini.c. Use CEE_MONO_ICALL instead of the family of 
17403         CEE_MONO_PROC<x> opcodes to call marshalling functions.
17404
17405         * metadata.h: Remove unneeded marshalling conversions.
17406
17407         * opcodes.c: Update for new opcodes.
17408         
17409 2004-07-08  Martin Baulig  <martin@ximian.com>
17410
17411         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
17412         (mono_debug_get_domain_data): Make this function static.
17413
17414 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
17415
17416         * gc.c, object.h: add nice GC handle API for embedders.
17417
17418 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
17419
17420         * reflection.c: more changes for the new api
17421
17422         * object.c: When we reflect on a field w/ a constant value, it
17423         will not have a memory location, so we must access metadata. Also,
17424         allow easier reading of strings so that we can read them from
17425         the constant data.
17426
17427         * class.c (mono_class_layout_fields): no need for literal fields here.
17428
17429         * class-internals.h: api changes for const fields
17430
17431         * icall.c (ves_icall_get_enum_info): use new apis for const fields
17432
17433 2004-07-06  Martin Baulig  <martin@ximian.com>
17434
17435         * mono-debug.h: Increment version number to 44.
17436
17437         * mono-debug.c (mono_debug_add_wrapper): The second argument is
17438         now a gpointer, rewrote this whole method.
17439
17440         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
17441         function.  Add information about the wrapper in a new "misc table".
17442
17443         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
17444         for the new misc table.
17445
17446 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
17447
17448         * metadata-internals.h image.c: Add a cache for helper signatures.
17449
17450         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
17451
17452 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
17453
17454         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
17455         delegates from a delegate. Fixes #61033.
17456         
17457         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
17458         marshalling of stringbuilder arrays. Fixes #59900.
17459
17460 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
17461
17462         * icall.c: Add EnumBuilder:setup_enum_type icall.
17463
17464 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
17465
17466         * icall.c: Added a new icall for the property version of
17467         OffsetOfStringData.
17468
17469 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
17470
17471         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
17472         it has a constant size across platforms.
17473
17474         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
17475         stack trace.
17476
17477 2004-06-29  Martin Baulig  <martin@ximian.com>
17478
17479         * mono-debug.c (mono_debug_add_method): Protect the whole function
17480         in mono_debugger_lock(), not just parts of it.
17481
17482 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
17483
17484         * reflection.c: make sure padding bytes in heaps are zeroed.
17485
17486 2004-06-24  David Waite  <mass@akuma.org>
17487
17488         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
17489         image.c, loader.c, locales.c, marshal.c, metadata.c,
17490         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
17491         string-icalls.c, threads.c: change to C90-style comments from C99 /
17492         C++ -style
17493
17494 2004-06-24  Dick Porter  <dick@ximian.com>
17495
17496         * threads.c
17497         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
17498         return createdNew.  Fixes bug 60412.
17499
17500         * threads-types.h: 
17501         * icall.c: Add createdNew parameter to CreateMutex icall
17502
17503 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
17504
17505         * reflection.c, object-internals.h: save default value in params.
17506
17507 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17508
17509         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
17510         no need to build a new path combining that with the application base.
17511         Fixes bug #60442.
17512
17513 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
17514
17515         * reflection.c: fixed minor standard compliance issues.
17516
17517 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
17518
17519         * reflection.c: fixed issue with encoding some custom attributes
17520         (arrays in properties and fields, bug #60411).
17521
17522 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17523
17524         * reflection.c: fix start address when copying the public key token.
17525
17526 2004-06-23  Martin Baulig  <martin@ximian.com>
17527
17528         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
17529         the `exc' object in a static object to put it into the GC's root set.
17530
17531 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
17532
17533         * reflection.c: make mono_reflection_setup_internal_class ()
17534         callable a second time to setup a new parent class.
17535
17536 2004-06-23  Dick Porter  <dick@ximian.com>
17537
17538         * threads.c: Check for WAIT_IO_COMPLETION return values.
17539
17540 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
17541
17542         * appdomain.c: Removed the g_free on the public key token. Now copy 
17543         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
17544         * assembly.c: Added public key token string value when loading 
17545         assemblies. Fix bug #60439.
17546         * icall.c: Added missing informations (like public key) in 
17547         GetReferencedAssemblies. Fix #60519.
17548         * image.h: Changed definition for public key token from const char*
17549         public_tok_value to guchar public_key_token [17];
17550         * reflection.c: Updated for changes to public key token.
17551
17552 2004-06-22  Lluis Sanchez Gual
17553
17554         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
17555         for the field in base classes.
17556
17557 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
17558
17559         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
17560         mark headers as not supported, they are installed only for use by the
17561         debugger.
17562
17563 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
17564
17565         * *.c, *.h: avoid namespace pollution in public headers.
17566
17567 2004-06-21  Martin Baulig  <martin@ximian.com>
17568
17569         * exception.c (mono_get_exception_security): It's in
17570         "System.Security", not in "System".
17571
17572         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
17573         the exception classes.
17574
17575 2004-06-21  Martin Baulig  <martin@ximian.com>
17576
17577         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
17578         Protect the exception object from being finalized.
17579
17580 2004-06-21  Martin Baulig  <martin@ximian.com>
17581
17582         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
17583         public function.
17584
17585 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
17586
17587         * reflection.c: Load the assembly in mono_reflection_type_from_name,
17588         if it was not loaded before. Fix parts of #60439.
17589
17590 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
17591
17592         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
17593         code that was broken since Ben's change: wrappers are now
17594         dependent on the method signature only again.
17595
17596 2004-06-21  Martin Baulig  <martin@ximian.com>
17597
17598         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
17599         added interface support.
17600
17601 2004-06-21  Martin Baulig  <martin@ximian.com>
17602
17603         * class.c (mono_vtable_get_static_field_data): New public method.
17604
17605 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
17606
17607         * filewatcher.c : Windows build fix to be compliant with API changes.
17608
17609 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
17610
17611         * class.h, class.c: more accessors.
17612         * metadata.h, metadata.c: prepare for hiding MonoType and
17613         MonoMethodSignature: people should use the accessors from now on
17614         outside of the tree.
17615
17616 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
17617
17618         * *.c, *.h: more API cleanups.
17619
17620 2004-06-18  Jackson Harper  <jackson@ximian.com>
17621
17622         * assembly.c: Trace loading assemblies.
17623         * loader.c: Trace loading native libraries.
17624         * mono-config.c: Trace loading config files.
17625         
17626 2004-06-18  Dick Porter  <dick@ximian.com>
17627
17628         * locales.c: Tell ICU the lengths of strings, it can cope with
17629         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
17630
17631 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
17632
17633         * image.c: swapped name/filename;
17634
17635 2004-06-18  Martin Baulig  <martin@ximian.com>
17636
17637         * mono-debug-debugger.c (write_class): Write the parent class at
17638         the end of the header.
17639
17640 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
17641
17642         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
17643
17644 2004-06-17  Raja R Harinath  <rharinath@novell.com>
17645
17646         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
17647         (bundle_obj): New conditional define.
17648         (BUILT_SOURCES): Remove.
17649         ($(bundle_srcs)): Make parallel-make safe.
17650         (libmonoruntime_la_LIBADD): Make unconditional.
17651         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
17652         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
17653
17654 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
17655
17656         * culture-info-tables.h: It was inconsistent with the latest
17657           supp info files.
17658
17659 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
17660
17661         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
17662         be loaded.
17663
17664         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
17665         with gcc 2.95.
17666
17667 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
17668
17669         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
17670         cleaned up public header threads.h.
17671
17672 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
17673
17674         * Makefile.am, *.c, *.h: more API cleanups.
17675
17676 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17677
17678         * Makefile.am: removed monosn from compilation.
17679         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
17680         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
17681         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
17682         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
17683         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
17684         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
17685
17686 2004-06-15  Jackson Harper  <jackson@ximian.com>
17687
17688         * assembly.c: Make locales lower case when searching the GAC for
17689         assemblies. gacutil will always make locales lowercase when
17690         installing so this effectively makes them case insensitive.
17691         
17692 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
17693
17694         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
17695         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
17696           parameter which allows to choose whether the wait can be interrupted or 
17697           not. Also added the method mono_monitor_enter(), which locks the monitor
17698           using an infinite wait and without allowing interruption.
17699           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
17700           interrupted.
17701         * object.h: Added new fields in MonoThread. suspend_event holds the event
17702           used to susped/resume the thread. synch_lock is the lock object to use for
17703           modifying the thread state.
17704         * threads.c: Use the new synch_lock object for locking, instead of "this",
17705           which can generate deadlocks.
17706           Moved thread state change in Thread.Sleep and Thread.Join from managed
17707           to unmanaged code. This avoids a deadlock when the thread was suspended
17708           just after acquiring the thread lock.
17709           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
17710           Implemented Thread.Suspend using an event instead of ThreadSuspend,
17711           which is not fully implemented in the io-layer.
17712         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
17713
17714 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
17715
17716         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
17717         threads-types.h: more API cleanups.
17718
17719 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
17720
17721         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
17722         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
17723         threadpool.c, threads.c: first pass at the exported API cleanup.
17724
17725 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
17726
17727         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
17728
17729 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17730
17731         * icall.c: added internalGetHome.
17732
17733 2004-06-14  Dick Porter  <dick@ximian.com>
17734
17735         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
17736         possible to return successfully when '.' or '..' were the only
17737         entries in a directory, but were skipped.  The MonoIOStat was not
17738         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
17739         Fixes bug 59574.
17740
17741 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
17742
17743         * reflection.c: make binaries run on .Net 1.1 by default.
17744
17745 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
17746
17747         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
17748
17749 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
17750
17751         * marshal.c: keep track of struct size with explicit layout
17752         (bug #59979).
17753
17754 2004-06-12  Martin Baulig  <martin@ximian.com>
17755
17756         * mono-debug-debugger.c: Comment out a debugging g_message().
17757
17758 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
17759
17760         * reflection.c, reflection.h: do not free custom attrs that are cached.
17761         * icall.c: use braces to make code clearer.
17762
17763 2004-06-11  Martin Baulig  <martin@ximian.com>
17764
17765         * class.h (MonoInflatedField): New type.
17766         (MonoClassField): Replaced `MonoType *generic_type' with
17767         `MonoInflatedField *generic_info'.
17768
17769         * icall.c
17770         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
17771
17772 2004-06-11  Martin Baulig  <martin@ximian.com>
17773
17774         * reflection.c (mono_image_create_method_token): Correctly encode
17775         varargs methods.
17776
17777 2004-06-11  Martin Baulig  <martin@ximian.com>
17778
17779         * metadata.c (mono_metadata_parse_method_signature): When parsing
17780         a MethodDef which has VarArgs, also set sentinelpos if we don't
17781         have any parameters.
17782
17783 2004-06-11  Martin Baulig  <martin@ximian.com>
17784
17785         * verify.c (mono_method_verify): In CEE_CALL, use
17786         mono_method_get_signature() to get the method's signature, unless
17787         we're a PInvoke method.
17788
17789 2004-06-10  Jackson Harper  <jackson@ximian.com>
17790
17791         * assembly.c: Use <path>/lib/mono/gac for the extra paths
17792         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
17793         logical name as the supplied path is just a prefix to the gac not
17794         the direct path to it.
17795         
17796 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
17797
17798         * reflection.c: make the token for a created method match
17799         the token of the MethodBuilder it was created from
17800         (IKVM requires this behaviour now).
17801
17802 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
17803
17804         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
17805         reflection.c, socket-io.c: leak fixes.
17806
17807 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
17808
17809         * icall.c: handle sentinel pos in vararg methods in position different
17810         from 0.
17811
17812 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17813
17814         * culture-info-tables.h: freshly generated.
17815
17816 2004-06-09  Martin Baulig  <martin@ximian.com>
17817
17818         * loader.c (mono_get_method_constrained): Call `mono_class_init
17819         (constrained_class)'.   
17820
17821 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
17822
17823         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
17824         any methods. Fixes #59629.
17825
17826 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
17827
17828         * culture-info-tables.h: reflecting locale-builder updates.
17829
17830 2004-06-08  Dick Porter  <dick@ximian.com>
17831
17832         * object.h:
17833         * locales.c: Fixed compile warnings, including a real bug in
17834         CompareInfo_internal_compare.
17835         
17836 2004-06-08  Dick Porter  <dick@ximian.com>
17837
17838         * locales.c
17839         (ves_icall_System_Globalization_CompareInfo_internal_index):
17840         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
17841         Double-check the resuls of usearches, because ICU currently
17842         ignores most of the collator settings here.  Fixes bug 59720.
17843         
17844 2004-06-08  Dick Porter  <dick@ximian.com>
17845
17846         * locales.c
17847         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
17848         Fix memory leak and segfault-causing typo.  No idea how this one
17849         lasted so long without being noticed.
17850
17851 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
17852
17853         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
17854         any methods. Fixes #59629.
17855
17856 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17857
17858         * assembly.c:
17859         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
17860         own the critical section before). Removed dead code (that's done
17861         in the preload hook).
17862
17863         (mono_assembly_load_with_partial_name): call the preload hook.
17864
17865 2004-06-08  Martin Baulig  <martin@ximian.com>
17866
17867         * metadata.c (mono_metadata_signature_alloc): Default
17868         `sentinelpos' to -1.
17869
17870         * reflection.c (mono_image_get_array_token): Likewise.
17871
17872 2004-06-08  Martin Baulig  <martin@ximian.com>
17873
17874         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
17875
17876         * metadata.c (mono_metadata_parse_method_signature): When parsing
17877         a MethodDef which has VarArgs, set sentinelpos.
17878
17879         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
17880         `gint16' since we're using -1 for non-varargs methods.
17881
17882         * reflection.c
17883         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
17884         (method_encode_signature): Added varargs support.
17885         (method_builder_encode_signature): Likewise.
17886         (mono_image_get_varargs_method_token): New static method.
17887         (mono_image_create_method_token): New public method; this is
17888         called via an icall instead of mono_image_create_token() when
17889         calling a varargs method.       
17890
17891 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
17892
17893         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
17894
17895 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
17896
17897         * culture-info-tables.h : Reflecting the latest locale-builder that
17898           fixed empty array representation ({} to {0}).
17899
17900 2004-06-07  Jackson Harper  <jackson@ximian.com>
17901
17902         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
17903         looking up extra gac paths. This allows MONO_GAC_PATH to act
17904         exactly like a prefix.
17905         
17906 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
17907
17908         * reflection.c (mono_reflection_type_from_name): Make a copy of the
17909         type name before modifying it. Fixes #59405.
17910
17911 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
17912
17913         * culture-info.h: added fields for "all datetime patterns".
17914         * locales.c: (  ves_icall_System_Globalization_CultureInfo
17915           _construct_datetime_format ()): fill xxx_patterns fields.
17916         * object.h: added fields for "all datetime patterns" to
17917           MonoDateTimeFormatInfo.
17918         * culture-info-tables.h: reflecting locale-builder updates.
17919
17920 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
17921
17922         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
17923         the event has no add and remove methods. Fixes #59629.
17924
17925 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
17926
17927         * object.c: Fixed possible integer overflow when allocating large
17928         strings.
17929
17930 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
17931
17932         * culture-info-tables.h: reflecting locale-builder updates.
17933
17934 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
17935
17936         * culture-info-tables.h: reflecting locale-builder updates.
17937
17938 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
17939
17940         * culture-info-tables.h: reflecting locale-builder updates.
17941
17942 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
17943
17944         * threads.c: Made Thread.Sleep abortable.
17945
17946 2004-06-02  Martin Baulig  <martin@ximian.com>
17947
17948         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
17949
17950         * debug-mono-symfile.h: Bumped symbol file version number to 37.
17951
17952 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
17953
17954         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
17955
17956 2004-05-30  Jackson Harper  <jackson@ximian.com>
17957
17958         * reflection.c: Do not hardcode assembly versions or public key
17959         tokens anymore. All of this except the corlib section was dead
17960         code anyways.
17961         
17962 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
17963
17964         * object.c (mono_runtime_invoke_array): Automatically create boxed
17965         objects for byref valuetypes if needed. Fixes #59300.
17966         
17967         * object.c (mono_method_return_message_restore): Handle 
17968         MONO_TYPE_OBJECT as well.
17969
17970 2004-05-28  Jackson Harper  <jackson@ximian.com>
17971
17972         * reflection.c: The modified type encoding was causing build
17973         problems. Reverted for now.
17974         
17975 2004-05-28  Jackson Harper  <jackson@ximian.com>
17976
17977         * reflection.c/h: Take an assembly ref so that we dont create
17978         fully qualified names when encoding types in the same assembly as
17979         the custom attribute being emitted.
17980         * appdomain.c: Increment version number.
17981         
17982 2004-05-26  Duncan Mak  <duncan@ximian.com>
17983
17984         * icall.c
17985         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17986         Set the full version number (major, minor, build, revision).
17987
17988 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
17989
17990         * marshal.c (emit_struct_conv): increment src/dst after blit
17991         (mono_marshal_get_managed_wrapper,
17992         mono_marshal_get_native_wrapper): make sure we have marshalling
17993         info before marshalling params (info computation affects
17994         blittable)
17995
17996         * class.c (class_compute_field_layout): correctly deal with
17997         blittable
17998         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
17999         value types (as per what windows dows by default)
18000         (mono_class_setup_mono_type): System.ValueType is blittable
18001         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
18002         blittable
18003
18004         * marshal.c (mono_marshal_load_type_info): flag types  as
18005         non-blittable if the native layout doesn't match the managed
18006         layout
18007
18008 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18009
18010         * appdomain.c: don't add stuff in the private search path that is
18011         above the application base. If application base is not set, there's
18012         no private search path.
18013
18014 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
18015
18016         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
18017         byref struct arguments in native->managed marshalling.
18018
18019 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
18020
18021         * marshal.c (mono_marshal_get_runtime_invoke): correctly
18022         cache methods using signature (special case for methods
18023         that are value type or string class)
18024         
18025         * image.c (mono_image_close): clean up allocated GSList's
18026         in runtime_invoke_cache.
18027
18028 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18029
18030         * mono-config.c: set the correct path for mono_cfg_dir on windows when
18031         there's no MONO_CFG_DIR environment variable defined.
18032
18033 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18034
18035         * threads.c: windows version must be >= 0x0500 to include OpenThread.
18036
18037 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
18038
18039         * threadpool.c: Really wait for 500ms after the async call, even if the wait
18040           is interrumped.
18041         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
18042           before waiting for it, and call CloseHandle after the wait to unref it.
18043           This will make sure that handles are not disposed too early.
18044
18045 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18046
18047         * appdomain.c:
18048         * appdomain.h:
18049         * icall.c: removed
18050         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
18051         needed now.
18052
18053         * object.c: se the application_base only for the domain that runs
18054         Main. Fixes bug #59216,
18055
18056 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18057
18058         * appdomain.c:
18059         * object.c: only the domain in which Main is run have
18060         SetupInformation.ConfigurationFile set, so moved a few lines from
18061         appdomain.c to object.c.
18062
18063 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18064
18065         * appdomain.c: we tried to load [name].(dll|exe), but according
18066         to bug #57710, we must also try [culture]/[name].(dll|exe) and
18067         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
18068         There's a test case attached to bug #58922.
18069
18070 2004-05-27  Dick Porter  <dick@ximian.com>
18071
18072         * icall.c:
18073         * file-io.c: Implemented icalls for locking and unlocking regions
18074         in a file.
18075         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
18076         FALSE on error (fixes both compiler warning and real bug.)
18077
18078 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
18079
18080         * culture-info-tables.h: reflecting locale-builder updates.
18081
18082           (Added missing ChangeLog entry for 05/26)
18083
18084 2004-05-27  Jackson Harper  <jackson@ximian.com>
18085
18086         * locales.c: Fix some cut and paste errors.
18087         
18088 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18089
18090         * mono-config.c: set the correct path for config. directory on windows.
18091
18092 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
18093
18094         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
18095           on win32.
18096
18097 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
18098
18099         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
18100         from pinvoke functions.
18101         
18102         * marshal.c (mono_ftnptr_to_delegate): Implement this.
18103
18104 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
18105
18106         * culture-info-tables.h: reflecting locale-builder updates.
18107
18108 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
18109
18110         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
18111         #59086.
18112
18113 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
18114
18115         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
18116         * icall.c: Modified icalls for RNG.
18117         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
18118         Windows (CryptoAPI).
18119
18120 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
18121
18122         * locales.c: Fix build.
18123
18124 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
18125
18126         * culture-info-tables.h: reflecting locale-builder updates.
18127
18128 2004-05-25  Jackson Harper  <jackson@ximian.com>
18129
18130         * locales.c: When creating the current culture use the $LANGs
18131         specific culture. So DateTimeFormat and NumberFormat entries are created.
18132         
18133 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
18134
18135         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
18136         a char array as parameter.
18137
18138 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
18139
18140         * image.c: In mono_image_open(), always use an absolute path name to
18141           look for already loaded images.
18142
18143 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
18144
18145         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
18146         missing in the windows build (like older cygwin include files).
18147
18148 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
18149
18150         * icall.c: Fixed check for possible integer overflow in Buffer_
18151         BlockCopy icall. Replaced comments style // by /* */.
18152
18153 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
18154
18155         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
18156         
18157         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
18158         check after MONO_VTADDR. Fixes pinvoke2.exe.
18159
18160         * marshal.h marshal.c metadata.h: Add beginnings of support for
18161         ftnptr -> delegate marshalling.
18162
18163 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
18164
18165         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
18166         * threads.c: Fix warnings.
18167
18168 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
18169
18170         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
18171         * icall.c: Registered icalls for Suspend and Resume.
18172         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
18173           Thread.Abort.
18174         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
18175         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
18176         * process.c: Use WaitForSingleObjectEx.
18177         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
18178           checkpoints.
18179         * threads.c, threads.h: Make use of new Ex wait methods. Improved
18180           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
18181           for Suspend and Resume. Added new mono_thread_stop, used for stoping
18182           background threads. Added basic support for Abort in Windows.
18183           Start new threads using a managed delegate invoke wrapper. This wrapper
18184           has an interruption checkpoint that is needed since an interruption
18185           can be requested before the thread leaves the unmanaged code that starts 
18186           the thread.
18187         * marshal.c: Added interruption checkpoint after every native call, and
18188           also before managed calls for wrappers called from unmanaged code to
18189           go into managed code.
18190         * object.h: Added new field in MonoThread to keep track of interruption
18191           requests.
18192
18193 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
18194
18195         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
18196         calls.
18197
18198 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18199
18200         * appdomain.c:
18201         * assembly.c:
18202         * gc.c:
18203         * locales.c:
18204         * mono-config.c:
18205         * rand.c: getenv -> g_getenv (windows!)
18206
18207         * process.c: complete_path is also used on non-windows platforms.
18208
18209 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18210
18211         * icall.c: new signature for Process_Start.
18212
18213         * process.[ch]: new signature for Process_Start. If we're on windows
18214         and UseShellExecute is false, we have to search for the program by
18215         ourselves if we don't get a full path.
18216
18217 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
18218
18219         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
18220         marshalling and call CleanUpNativeData if needed. Fixes #58646.
18221
18222 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18223
18224         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
18225         Fixes bug #58373.
18226
18227 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18228
18229         * process.c: use double quotes to quote program name and arguments on
18230         windows. Fixes bug #58575.
18231
18232 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18233
18234         * file-io.c: don't return "." and ".." when using windows Find*File.
18235
18236 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
18237
18238         * marshal.c: Don't pass wrappers to message init because method 
18239         addressed used to lookup metadata. part of remoting[2|3] fix.
18240
18241 2004-05-15  Jackson Harper  <jackson@ximian.com>
18242
18243         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
18244         path is essentially the same as MONO_PATH except that it points to
18245         GACs instead of lib directories.
18246         * loader.h: The user gac is gone so we dont need function to
18247         enable/disable it.
18248         * mono-config.c: user gac option is now gone.
18249         
18250 2004-05-15  Jackson Harper  <jackson@ximian.com>
18251
18252         * culture-info.h: Make defines more consistent, add calendar data
18253         to the culture info table.
18254         * culture-info-tables.h: Add basic calendar data. Basically
18255         everyone gets default gregorian until all the data is
18256         updated.
18257         * locales.c: Use the new consistent defines. Set calendar data for
18258         culture info objects.
18259         * object.h: add a field for calendar data to CultureInfo
18260         
18261 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
18262
18263         * image.c: image->runtime_invoke_cache is keyed on signatures now.
18264         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
18265         a signature.
18266         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
18267         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
18268         an extra param that is the pointer of the method to invoke. The IL for
18269         the invoke method is no longer specific to the method, but to the
18270         signature of the method. Thus, we can share the same code for multiple
18271         methods. This reduces the number of methods that have to be compiled.
18272
18273 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
18274
18275         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
18276
18277         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18278
18279         * icall.c: Optimize Buffer.BlockCopy.
18280
18281 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18282
18283         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
18284         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
18285         quote). Changed them to "MMMM yyyy".
18286
18287 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
18288
18289         * rand.c
18290         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
18291
18292 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
18293
18294         * reflection.h: Updated after changes to managed structures.
18295
18296         * appdomain.c: Bump corlib version.
18297
18298 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18299
18300         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
18301         windows.
18302
18303 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18304
18305         * Makefile.am: link to ../os/libmonoos.la on windows.
18306
18307         * assembly.c:
18308                 -If MONO_DEBUG, warn about non-existing directories in
18309                 MONO_PATH.
18310                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
18311                 compile time variable.
18312                 -Removed init_default_path and call mono_set_rootdir from
18313                 libmonoos.a instead (windows only).
18314
18315         * assembly.h: declare mono_assembly_getrootdir().
18316
18317         * domain.c:
18318         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
18319
18320         * loader.c: s/getenv/g_getenv/
18321
18322 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
18323
18324         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
18325
18326         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
18327
18328         * metadata.h: Add new marshalling conversions.
18329
18330         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
18331         function.
18332
18333         * reflection.c (mono_reflection_get_type): Lookup the type in all
18334         modules of a multi-module assembly. Fixes #58291.
18335
18336 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
18337
18338         * threads.c: Before aborting a background, set the StopRequested
18339         state.  This avoids throwing the Abort exception.
18340         In mono_thread_manage, don't continue with the shutdown until all
18341         aborted threads have actually stopped.
18342
18343 2004-05-10  Jackson Harper  <jackson@ximian.com>
18344
18345         * locales.c: Remove the modifier from culture names.
18346         
18347 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18348
18349         * Makefile.am: monosn is not installed any more. It has been deprecated
18350         in favor of sn.
18351
18352 2004-05-07  Jackson Harper  <jackson@ximian.com>
18353
18354         * locales.c
18355         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
18356         Fix array construction, add bailout if the length is 0.
18357
18358 2004-05-07  Dick Porter  <dick@ximian.com>
18359
18360         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
18361         machine doesn't have a DNS entry.  Patch by Urs Muff
18362         (umuff@quark.com), fixes bug 57928.
18363
18364 2004-05-06  Jackson Harper  <jackson@ximian.com>
18365
18366         * reflection.c: Handle null PublicTokens properly. alloc mem for
18367         assembly names culture so we dont crash when freeing it.
18368         
18369 2004-05-06  Jackson Harper  <jackson@ximian.com>
18370
18371         * assembly.c: Check the usergac when loading with partial names.
18372         
18373 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
18374
18375         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
18376         does nothing for now (not required for Linux/Windows) but the class
18377         library can call it (and a newer or modified runtime could need it).
18378         * icall.c: Registred icall.
18379
18380 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18381
18382         * loader.c: prints a message on module loading error we set MONO_DEBUG
18383         environment variable.
18384
18385 2004-05-05  Jackson Harper  <jackson@ximian.com>
18386
18387         * appdomain.c: Handle PublicKeyToken=null properly.
18388         
18389 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
18390
18391         * environment.c|h: Added icall ves_icall_System_Environment_
18392         GetOSVersionString to get the current OS version as a string.
18393         * icall.c: Registred icall.
18394
18395 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
18396
18397         * object.c: in mono_object_get_virtual_method(), take into account that
18398         non-virtual methods don't have a slot in the vtable. Check needed when
18399         the object is a proxy.
18400
18401 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
18402
18403         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
18404         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
18405
18406         * object.c (mono_class_compute_gc_descriptor): Fix warning.
18407
18408         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
18409         passed when a valuetype is expected.
18410
18411         * object.c (mono_unhandled_exception): Only set the exit code if the
18412         exception happens in the main thread. Fixes thread5.exe.
18413
18414         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
18415         invalid names. Fixes #58047.
18416
18417 2004-05-03  Jackson Harper  <jackson@ximian.com>
18418
18419         * assembly.c: This line was committed accidently and is unneeded.
18420         
18421 2004-05-03  Jackson Harper  <jackson@ximian.com>
18422
18423         * icall.c: Add new icall for Assembly::LoadWithPartialName
18424         * assembly.c/.h: new function that probes the GAC to load partial
18425         assembly names by Paolo Molaro.
18426         
18427 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18428
18429         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
18430         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
18431         (type_get_fully_qualified_name): Added PublicKeyToken when building a
18432         full type name.
18433
18434 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18435
18436         * appdomain.c: fixed check for 'neutral' culture and removed warning.
18437         * reflection.c: fix bug when parsing a full type name and Version is not
18438         the last thing in the string.
18439
18440 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
18441
18442         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
18443         crashes when it is freed.
18444
18445 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18446
18447         * assembly.c: print the compat warning to stderr.
18448
18449 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
18450
18451         * assembly.c (mono_assembly_load_references): Add a compatibility
18452         hack to run old applications that might be still referencing the
18453         3300-based assemblies, only do this for System.xxx.
18454
18455 2004-05-01  Jackson Harper  <jackson@ximian.com>
18456
18457         * appdomain.c: If the culture is neutral we set it to "".
18458         
18459 2004-04-29  Jackson Harper  <jackson@ximian.com>
18460
18461         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
18462
18463 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
18464  
18465         * string-icalls.c: added low overhead function for copying chars
18466         * icall.c: added needed icall for the above function
18467  
18468 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18469
18470         * icall.c: fix return value of get_global_assembly_cache.  Implemented
18471         Environment.GetLogicalDrives.
18472
18473 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
18474
18475         * rand.c: try and talk to egd or prngd
18476         for random bytes if opening devices fail.
18477
18478 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
18479
18480         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
18481         alignment for the type using the native alignment of its members 
18482         instead of using klass->min_align.
18483
18484         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
18485
18486 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18487
18488         * file-io.c:
18489         * socket-io.c: added check for sys/aio.h.
18490
18491 2004-04-28  Dick Porter  <dick@ximian.com>
18492
18493         * threads.c: Don't abort a thread thats already aborting, when
18494         terminating everything.
18495
18496 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18497
18498         * icall.c: added 2 new async calls for Socket.
18499
18500         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
18501         IO on *nix systems.
18502
18503         * threadpool.c: removed unused variable.
18504
18505 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
18506
18507         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
18508
18509 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18510
18511         * locales.c: put back string_invariant_tolower () and
18512         string_invariant_toupper ().
18513
18514 2004-04-26 David Waite <mass@akuma.org>
18515
18516         * file-io.h:
18517         * socket-io.h:
18518         * threads.h:
18519         * unicode.h: remove comma from end of enumeration declarations
18520
18521 2004-04-26 David Waite <mass@akuma.org>
18522
18523         * debug-mono-symfile.h:
18524         * decimal.c:
18525         * mono_debug.h:
18526         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
18527
18528
18529 2004-04-26  Jackson Harper  <jackson@ximian.com>
18530
18531         * appdomain.c: Increment version number.
18532         
18533 2004-04-26  Jackson Harper  <jackson@ximian.com>
18534
18535         * appdomain.c: Set assembly references public token value when
18536         PublicKeyToken is specified, not the hash_value. Free public token
18537         values when free assembly name data. Previously the public key
18538         token was hex decoded, however we are using hex encoded public key
18539         tokens, so this is not neccasary.
18540         * assembly.c: Lookup assemblies in the gac if their public token
18541         value is set. Add function to allow enabling user gac
18542         lookups. Specify whether or not the assembly was loaded from the
18543         GAC. Compare full assembly names when checking the cache for
18544         assemblies (Temporarily disabled see comment in code). Remove
18545         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
18546         specifies trace-loader they get extra info to stdout on the
18547         loading of assemblies.
18548         * image.h: Add a field for an assembly references public token
18549         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
18550         whether an assembly has been loaded from the GAC.
18551         * image.c: Remove a corlib -> mscorlib name mapping.
18552         * loader.h: Add function to enable/disable the user gac.
18553         * mono-config.c: Check if the usergac is enabled in the config
18554         file.
18555         * icall.c: New icall to determine whether or not an assembly has
18556         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
18557         * tabldefs.h: Add constant for assemblyref flag that specifies a
18558         full public key is used instead of a public token.
18559         * reflection.c: Remove mscorlib -> corlib mappings. Set
18560         PublicTokenValue instead of hash value. This value is a hex
18561         string so it does not need to be expanded.
18562
18563 2004-04-26  Martin Baulig  <martin@ximian.com>
18564
18565         * mono-debug-debugger.c (mono_debugger_initialize): Set
18566         `mono_debugger_initialized' before calling mono_debug_lock().
18567
18568 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
18569
18570         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
18571           InternalToUpper/InternalToLower.
18572         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
18573           removed invariant culture shortcut.  This is now done in managed code.
18574         * locales.c: (string_invariant_toupper/tolower) removed.
18575
18576 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18577
18578         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
18579         Added Poll internal call.
18580
18581         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
18582         call for Poll. Select was too heavy for polling a single socket.
18583
18584         * threadpool.[ch]: added mono_threadpool_cleanup.
18585         * threads.c: use it. Don't use Thread_Abort on windows.
18586
18587 2004-04-23  Martin Baulig  <martin@ximian.com>
18588
18589         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
18590
18591 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
18592
18593         * icall.c: Registred new icalls for key pair protection and added an
18594         icall for Environment.GetFolderPath on Windows.
18595         * security.c|h: Added new icalls for key pair protection.
18596
18597 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18598
18599         * socket-io.c: don't display the non-supported family warning for known
18600         families. Now this is not displayed on windows when checking support
18601         for IPv4/IPv6.
18602
18603 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18604
18605         * class.c: don't display the layout warning for static fields.
18606
18607 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
18608
18609         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
18610         * locales.c, locales.h: Added new icalls for culture-specific
18611         Char.ToLower and Char.ToUpper.
18612
18613 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18614
18615         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
18616         by David Waite.
18617
18618 2004-04-20  Martin Baulig  <martin@ximian.com>
18619
18620         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
18621         of the type name before passing it to mono_reflection_type_from_name().
18622
18623 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
18624
18625         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
18626         encodings here. Fixes #56965.
18627
18628 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
18629
18630         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
18631         fix test on strstr result not that I can see anything that
18632         relies on the result.
18633
18634 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
18635
18636         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
18637         Fixes #57081.
18638
18639         * marshal.c (mono_marshal_get_string_encoding): New helper function.
18640
18641         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
18642         function to determine which marshalling to use for strings. Fixes
18643         #56965.
18644
18645         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
18646
18647         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
18648
18649 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
18650
18651         * icall.c: #include mono-config.h
18652
18653 2004-04-15  Jackson Harper  <jackson@ximian.com>
18654
18655         * culture-info-tables.h: Fix date formats for en-US culture.
18656         
18657 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
18658
18659         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
18660         ThreadPool.SetMinThreads.
18661         * threadpool.c: Implemented ThreadPool.GetMinThreads and
18662         ThreadPool.SetMinThreads.
18663
18664 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
18665
18666         * mono-config.c: also load the .config file in the directory
18667         where the assembly was found.
18668
18669 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
18670
18671         * assembly.c: load per-assembly config files.
18672         * icall.c: decrapified code to get the config dir and moved to
18673         mono-config.c.
18674         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
18675         per-assembly config files. When doing a dll map lookup give precedence
18676         to the per-assembly data.
18677
18678 2004-04-14  Martin Baulig  <martin@ximian.com>
18679
18680         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
18681         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
18682         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
18683
18684         * mono-debugger-debugger.c: While the debugger is locked, remember
18685         whether the symbol tables have changes and send one single
18686         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
18687
18688 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
18689
18690         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
18691
18692         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
18693         function.
18694
18695         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
18696         account when marshalling string arrays. Fixes #56965.
18697
18698 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
18699
18700         * icall.c: Add new icalls mapping for security.
18701         * security.c|h: Add internal calls for WindowsIdentity,
18702         WindowsImpersonationContext and WindowsPrincipal.
18703
18704 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
18705
18706         * class.c: Added comment to ensure the System.MonoDummy class
18707         is removed when no longer necessary
18708
18709 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
18710
18711         * appdomain.c: Pass arguments to the bootstraping exceptions to
18712         minimize JITed methods at boot
18713
18714         * metadata.c (mono_exception_from_name_two_strings): Allow for the
18715         second string to be null.
18716
18717         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
18718         Change the protocol to minimize the JIT methods at startup.  Now
18719         it Returns the internal codepage, if the value of "int_code_page"
18720         is 1 at entry, and we can not compute a suitable code page
18721         number, returns the code page as a string.
18722
18723 2004-04-13  Jackson Harper  <jackson@ximian.com>
18724
18725         * culture-info-tables.h: Fix number of decimal digits for all
18726         english locales.
18727
18728 2004-04-13  Jackson Harper  <jackson@ximian.com>
18729
18730         * icall.c: Clairfy out of sync error message. It is not always
18731         your corlib that is out of sync.
18732
18733 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
18734
18735         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
18736         properties when only the set accessor is overriden. Fixes #55874.
18737
18738 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
18739
18740         * assembly.c (mono_assembly_load_references): Make this thread safe.
18741         Fixes #56327.
18742
18743 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
18744
18745         * monosn.c: Add missing initialization calls.
18746
18747 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
18748
18749         * locales.c:
18750         ves_icall_System_Globalization_CultureInfo_construct_number_format
18751         Fix g_assert so it compiles on fussier compilers re int/ptr
18752         mismatch
18753
18754 2004-04-08  Dick Porter  <dick@ximian.com>
18755
18756         * socket-io.h:
18757         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
18758         53992.  Also rearrange the code so that the internal calls return
18759         an error value and exceptions are thrown from managed code.
18760
18761         * icall.c: Add type info to the socket icalls.
18762
18763 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18764
18765         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
18766         owes me a beer.
18767
18768 2004-04-07  Martin Baulig  <martin@ximian.com>
18769
18770         * class.c (mono_class_from_generic_parameter): Don't default
18771         `klass->parent' to `mono_defaults.object_type'.
18772
18773 2004-04-07  Martin Baulig  <martin@ximian.com>
18774
18775         * reflection.c (mono_reflection_initialize_generic_parameter): Set
18776         `param->pklass->reflection_info'.       
18777
18778 2004-04-07  Jackson Harper  <jackson@ximian.com>
18779
18780         * culture-info-tables.h: Fix date separator symbol.
18781         
18782 2004-04-07  Martin Baulig  <martin@ximian.com>
18783
18784         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
18785         from System.Type to System.MonoType.
18786
18787 2004-04-07  Martin Baulig  <martin@ximian.com>
18788
18789         * reflection.h
18790         (MonoReflectionGenericParam): Added `has_reference_type' and
18791         `has_value_type' fields.
18792
18793         * reflection.c (mono_image_get_generic_param_info): Encode the
18794         correct flags if we have the `class' or `struct' constraint.
18795
18796 2004-04-07  Martin Baulig  <martin@ximian.com>
18797
18798         * reflection.h
18799         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
18800
18801 2004-04-07  Jackson Harper  <jackson@ximian.com>
18802
18803         * appdomain.c: Revert extra patches, just wanted to bump the
18804         version number.
18805         
18806 2004-04-07  Jackson Harper  <jackson@ximian.com>
18807
18808         * Makefile.am: Add culture-info private headers.
18809         * icall.c: Add new icalls for contructing locales.
18810         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
18811         * locales.h: Declare new culture info construction methods.
18812         * object.h: Add new fields used to avoid the CultureMap to
18813         MonoCultureInfo.
18814         * culture-info.h: Definition of structs used in the culture info
18815         tables.
18816         * culture-info-tables.h: Autogenerated tables that contain culture
18817         info data. This file was generated with the locale-builder tool.
18818         * appdomain.c: Incement corlib version number.
18819         
18820 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
18821
18822         * appdomain.c: (mono_runtime_init) move mono_thread_init
18823         to before mono_object_new calls so critical sections
18824         are initialized before use.
18825
18826 2004-04-07  Martin Baulig  <martin@ximian.com>
18827
18828         * icall.c
18829         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
18830         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
18831         (ves_icall_MonoGenericParam_initialize): Removed.
18832         (monogenericparam_icalls): Removed.
18833         (generictypeparambuilder_icalls): Added new table for
18834         System.Reflection.Emit.GenericTypeParameterBuilder.
18835
18836         * reflection.c
18837         (mono_reflection_define_generic_parameter): Removed.
18838         (mono_reflection_initialize_generic_parameter): This is now called
18839         from GenericTypeParameterBuilder's .ctor.
18840
18841 2004-04-06  Martin Baulig  <martin@ximian.com>
18842
18843         * class.c (mono_class_init): Don't inflate nested classes in a
18844         generic instance.
18845         (mono_type_get_name_recurse): Include the generic arguments for
18846         generic instances and generic type declarations.
18847         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
18848         (_mono_class_get_instantiation_name): Removed.
18849         (mono_class_create_generic): Always use `gklass->name' as our name.
18850
18851         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
18852
18853         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
18854         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
18855         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
18856         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
18857         closed generic methods here.
18858
18859         * reflection.c
18860         (mono_reflection_generic_inst_get_nested_types): Removed.
18861         (inflate_mono_method): Copy the generic parameters from the
18862         MonoMethodHeader into out MonoGenericMethod.
18863
18864 2004-04-06  Martin Baulig  <martin@ximian.com>
18865
18866         * row-indexes.h
18867         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
18868
18869         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
18870
18871         * reflection.c (build_compressed_metadata): If we have any entries
18872         in the GenericParam, MethodSpec or GenericParamConstraint tables,
18873         set the header version to 1.1.
18874
18875 2004-04-06  Martin Baulig  <martin@ximian.com>
18876
18877         * class.c (mono_class_init): If we're a generic instance,
18878         initialize our nested classes, too.
18879         (_mono_class_get_instantiation_name): Deal with the new `!%d'
18880         suffix. 
18881
18882 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18883
18884         * process.c: quote the argument passed to the shell on windows.
18885
18886 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
18887
18888         * threads.c (mono_alloc_special_static_data): Allow this to be
18889         called during startup.
18890
18891 2004-04-02  Martin Baulig  <martin@ximian.com>
18892
18893         * icall.c
18894         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
18895
18896 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
18897
18898         * icall.c: Fix build.
18899
18900 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
18901
18902         * Makefile.am: Added security.c|h.
18903         * icall.c: Added icall for get_UserName;
18904         * security.c: New file for security related icalls. Added function
18905         get_UserName for System.Environment (fix #56144).
18906         * security.h: New. Header file for security.c
18907
18908 2004-04-02  Dick Porter  <dick@ximian.com>
18909
18910         * icall.c: Deleted the icalls that were obsoleted some time ago
18911         by the ICU string code, and which were mixed into the icall
18912         rearranging.  Fixes bug 55969.
18913
18914         * string-icalls.h: 
18915         * string-icalls.c: Deleted the code that those icalls reference.
18916
18917 2004-04-01  Martin Baulig  <martin@ximian.com>
18918
18919         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
18920
18921         * class.c (mono_class_from_generic_parameter): Don't set 
18922         TYPE_ATTRIBUTE_INTERFACE.
18923         (my_mono_class_from_generic_parameter): Likewise.
18924
18925 2004-04-01  Martin Baulig  <martin@ximian.com>
18926
18927         * loader.c (find_method): Added an optional `MonoClass *ic'
18928         argument to search in a specific interface.
18929         (mono_get_method_constrained): New public function.
18930
18931 2004-04-01  Martin Baulig  <martin@ximian.com>
18932
18933         * reflection.c (mono_image_get_generic_field_token): Use the
18934         `handleref' cache here.
18935
18936 2004-04-01  Martin Baulig  <martin@ximian.com>
18937
18938         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
18939
18940         * reflection.c (create_generic_typespec): Use the `typespec' hash
18941         here, not the `typeref' one.    
18942
18943 2004-04-01  Martin Baulig  <martin@ximian.com>
18944
18945         * class.c (mono_class_inflate_generic_type): Moved the
18946         functionality into a new static inflate_generic_type() which
18947         returns NULL if it didn't do anything.  Only increment the
18948         `mono_stats.inflated_type_count' if we actually inflated
18949         something.
18950         (mono_class_get_full): Check the classes type to see whether we
18951         need to inflate it; also inflate MONO_TYPE_(M)VAR.
18952
18953 2004-04-01  Jackson Harper  <jackson@ximian.com>
18954
18955         * reflection.c: Set culture for assembly references.
18956         
18957 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
18958
18959         * reflection.[ch], icall.[ch], Fix support for pinning variables.
18960
18961 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18962
18963         * assembly.c:
18964         (do_mono_assembly_open): the critical section also covers
18965         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
18966
18967 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18968
18969         * threads.c:
18970         (mono_manage_threads): abort the background threads when finishing.
18971         Fixes bug #47232.
18972
18973 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18974
18975         * gc.c: only close the done_event handle if there was no timeout.
18976         C-ified comments.
18977
18978 2004-03-30  Martin Baulig  <martin@ximian.com>
18979
18980         * icall.c (icall_entries): It's called "System.Activator", not
18981         "System.Activation".    
18982
18983 2004-03-30  Martin Baulig  <martin@ximian.com>
18984
18985         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
18986         (mono_class_create_from_typespec): Likewise.
18987
18988 2004-03-30  Martin Baulig  <martin@ximian.com>
18989
18990         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
18991         `has_ctor_constraint' and `initialized'.
18992
18993 2004-03-30  Martin Baulig  <martin@ximian.com>
18994
18995         * reflection.c (encode_new_constraint): New static function to add
18996         the constructor constraint attribute to a type parameter.
18997         (encode_constraints): Call encode_new_constraint() if necessary.
18998
18999         * reflection.h
19000         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
19001
19002         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
19003         
19004 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
19005
19006         * reflection.c, icall.c: add support for pinning variables. 
19007
19008 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
19009
19010         * marshal.c (mono_marshal_get_managed_wrapper):
19011         init bool local with zero rather than null.
19012
19013 2004-03-29  Martin Baulig  <martin@ximian.com>
19014
19015         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
19016         the "official" behavior here.
19017         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
19018
19019 2004-03-29  Martin Baulig  <martin@ximian.com>
19020
19021         * icall.c: Reflect latest API changes.
19022
19023 2004-03-29  Martin Baulig  <martin@ximian.com>
19024
19025         * loader.c (mono_get_method_from_token): Also call
19026         mono_metadata_load_generic_params () for abstract and interface
19027         methods; replace the type arguments in the method signature with
19028         the ones which are loaded from the metadata.
19029
19030 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
19031
19032         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
19033         of the lock is not the current thread. MS.NET don't do it, in spite of
19034         what the documentation says. See bug #56157.
19035
19036 2004-03-28  Martin Baulig  <martin@ximian.com>
19037
19038         * class.c (mono_class_init): Don't call init_properties() and
19039         init_events() for generic instances; set `prop->parent' when
19040         inflating properties.
19041
19042         * reflection.c (mono_generic_inst_get_object): Call
19043         `mono_class_init (ginst->klass)'.
19044         (mono_type_get_object): Only create a MonoGenericInst if your
19045         generic type is a TypeBuilder.
19046         (do_mono_reflection_bind_generic_parameters): Only set
19047         `ginst->is_dynamic' if our generic type is a TypeBuilder.
19048
19049 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
19050
19051         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
19052         Fixes #56091.
19053
19054 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19055
19056         * icall.c: added Kill_internal icall.
19057         * process.[ch]: added Kill_internal icall.
19058
19059 2004-03-25  Martin Baulig  <martin@ximian.com>
19060
19061         * class.h (MonoStats): Added `generic_instance_count',
19062         `inflated_method_count', `inflated_type_count' and
19063         `generics_metadata_size'.       
19064
19065 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19066
19067         * reflection.c: no warnings now.
19068
19069 2004-03-25  Martin Baulig  <martin@ximian.com>
19070
19071         * class.c (mono_class_get_full): New public function; does a
19072         mono_class_get(), but also takes a `MonoGenericContext *'.
19073
19074         * loader.c (mono_field_from_memberref): Renamed to
19075         `field_from_memberref', made static and added `MonoGenericContext *'
19076         argument.
19077         (mono_field_from_token): Added `MonoGenericInst *' argument.
19078         (method_from_memberef): Likewise.
19079         (mono_get_method_from_token): Likewise.
19080         (mono_get_method_full): New public function; does a
19081         mono_get_method(), but also takes a `MonoGenericContext *'.
19082
19083         * verify.c (mono_method_verify): Get the method's generic context
19084         and pass it to mono_field_from_token(), mono_get_method_full() and
19085         mono_class_get_full().
19086
19087 2004-03-25  Martin Baulig  <martin@ximian.com>
19088
19089         * class.c (mono_class_inflate_generic_type): Take a
19090         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
19091         `MonoGenericMethod *'.
19092
19093 2004-03-25  Martin Baulig  <martin@ximian.com>
19094
19095         * loader.h (MonoMethodInflated): Store the MonoGenericContext
19096         instead of the MonoGenericMethod here.
19097
19098 2004-03-25  Martin Baulig  <martin@ximian.com>
19099
19100         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
19101         each time we create a new MonoGenericInst, we also create a new
19102         context which points back to us.
19103
19104         * class.c (inflate_method): Use `ginst->context' instead of
19105         creating a new context.
19106
19107         * loader.c (method_from_memberref): Use
19108         `klass->generic_inst->context' instead of creating a new context.
19109
19110 2004-03-25  Martin Baulig  <martin@ximian.com>
19111
19112         * class.h (MonoGenericContext): New struct.
19113         (MonoGenericMethod): Removed `generic_inst'.
19114
19115         * class.c (mono_class_inflate_generic_method): Take a
19116         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
19117
19118 2004-03-25  Martin Baulig  <martin@ximian.com>
19119
19120         * loader.h (MonoMethodInflated): New typedef.
19121
19122         * metadata.h (MonoMethodSignature): Removed `gen_method', make
19123         `generic_param_count' consume just 30 bits, added `is_inflated'
19124         and `has_type_parameters' flags (one bit each).
19125
19126         * class.c (mono_class_inflate_generic_method): Create a
19127         MonoMethodInflated instead of a MonoMethodNormal and set
19128         `is_inflated' in the method signature.
19129
19130         * class.h (MonoGenericMethod): Removed `generic_method'.
19131
19132 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
19133
19134         * image.c: Make sure the name of a MonoImage is always an absolute path.
19135           This fixes bug #54415.
19136
19137 2004-03-24  Martin Baulig  <martin@ximian.com>
19138
19139         * class.c (mono_class_setup_vtable): If we're a generic instance,
19140         use our generic type's vtable size.
19141
19142 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
19143
19144         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
19145         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
19146         problems.
19147
19148 2004-03-23  Martin Baulig  <martin@ximian.com>
19149
19150         * class.h (MonoDynamicGenericInst): Added `int count_events' and
19151         `MonoEvent *events'.
19152
19153         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
19154         (typebuilder_icalls): Added "get_event_info"; calls
19155         mono_reflection_event_builder_get_event_info(). 
19156
19157         * reflection.c (mono_reflection_generic_inst_initialize): Added
19158         `MonoArray *events'.
19159         (mono_reflection_event_builder_get_event_info): New function.
19160
19161 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
19162
19163         * object.h: add mono_type_initialization_init
19164
19165         * object.c (mono_runtime_class_init): 
19166         implement class constructor synchronization rules
19167         to cope with threading issues.  
19168         add mono_type_initialization_init
19169
19170         * appdomain.c (mono_runtime_init): call 
19171         mono_type_initialization_init
19172
19173         * class.h: removing initializing field from MonoVTable
19174
19175 2004-03-23  Martin Baulig  <martin@ximian.com>
19176
19177         * class.c (my_mono_class_from_generic_parameter): Use
19178         `param->name' if it's not NULL. 
19179
19180 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
19181
19182         * class.c: do not insert non-virtual methods in the vtable.
19183         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
19184         that means the method is non-virtual. This never would have
19185         happened before.
19186
19187 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
19188
19189         * profiler.c: Added lock for accessing coverage_hash.
19190
19191 2004-03-22  Martin Baulig  <martin@ximian.com>
19192
19193         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
19194         `method->method->signature->generic_param_count != 0' to make it
19195         work for interface methods.
19196
19197 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19198
19199         * process.c: quote the string passed to the shell using g_shell_quote.
19200
19201 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19202
19203         * threads.c:
19204         (mono_threads_manage): don't remove the finalizer thread and self
19205         from the threads hash table so that mono_thread_manage can be called
19206         more than once.
19207
19208 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19209
19210         * process.c: quote the arguments when UseShellExecute is true. Fixes
19211         bug #55790.
19212
19213 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19214
19215         * threads.c: set mono_thread_detach as a cleanup routine for every
19216         thread. This way it's always executed upon thread termination, either
19217         aborted or finished normally. No more xsp hangs!
19218
19219 2004-03-17  Martin Baulig  <martin@ximian.com>
19220
19221         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
19222         `int count_nested' and a `MonoType **nested'.
19223
19224         * reflection.c (mono_reflection_bind_generic_parameters): Moved
19225         most of the functionality into a new static
19226         do_mono_reflection_bind_generic_parameters() and don't take a
19227         `MonoType *nested_in' argument any more.  Don't compute nested
19228         types here.
19229         (mono_reflection_generic_inst_get_nested_types): New public method
19230         to get nested types.
19231
19232         * class.c (mono_class_create_generic): Set `klass->nested_in' if
19233         we're a nested class.
19234
19235         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
19236         mono_reflection_generic_inst_get_nested_types() to compute the
19237         nested types.
19238
19239 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
19240
19241         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
19242         descriptive error message under windows.
19243         
19244 2004-03-17  Martin Baulig  <martin@ximian.com>
19245
19246         * class.c (dup_type): Added `const MonoType *original' argument;
19247         copy the attrs from the original type.
19248
19249 2004-03-17  Martin Baulig  <martin@ximian.com>
19250
19251         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
19252         `m->generic_inst_cache' here.
19253
19254 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
19255
19256         * exception.h exception.c: Add stack_overflow_exception.
19257
19258 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19259
19260         * threadpool.c:
19261         (overlapped_callback): call SetEvent *after* invoking the callback.
19262         No need to call CloseHandle.
19263
19264 2004-03-16  Martin Baulig  <martin@ximian.com>
19265
19266         * reflection.c (mono_image_get_fieldref_token): Take a
19267         `MonoReflectionField *' instead of a `MonoClassField *' and a
19268         `MonoClass *'; store the `MonoReflectionField *' in the hash.
19269
19270 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19271
19272         * appdomain.c: don't add the culture to the filename we're looking for
19273         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
19274
19275 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19276
19277         * locales.c: don't ignore symbols when doing case insensitive compares.
19278         Thanks Dick! Fixes bug #54046.
19279
19280         * threads.c: surround 'threads' usage with enter/leave in
19281         mono_thread_manage.
19282
19283 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
19284
19285         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
19286         implicitly marshalled as [Out]. Fixes #55450.
19287
19288         (mono_marshal_get_runtime_invoke): Zero out the result if there is
19289         an exception.
19290
19291 2004-03-16  Martin Baulig  <martin@ximian.com>
19292
19293         * class.c (mono_class_from_generic_parameter): Use the actual
19294         parameter name. 
19295
19296 2004-03-16  Martin Baulig  <martin@ximian.com>
19297
19298         * reflection.c (type_get_signature_size): New static function.
19299         Compues the size of the type in a method signature.
19300         (method_get_signature_size): New static function; calls
19301         type_get_signature_size() to compute the actual size of the
19302         method's signature.
19303         (method_encode_signature): Use method_get_signature_size() to get
19304         the signature's size rather than using `nparams * 10'.
19305
19306 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19307
19308         * file-io.h: define here WapiOverlapped on windows. I don't want the
19309         regular OVERLAPPED one.
19310
19311         * file-io.c:
19312         * threadpool.c: somehow, BindIoCompletionCallback is not found.
19313         Disabling AIO on windows.
19314
19315 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19316
19317         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
19318         bug #55385.
19319
19320 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19321
19322         * appdomain.c: upgraded corlib version.
19323
19324         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
19325         and BeginWrite. Allow opening files for asynchrnous operations.
19326
19327         * file-io.h: new struct that maps FileStreamAsyncResult.
19328         * icall.c: added new icalls.
19329         * process.[ch]: support setting child process environment variables
19330         and use the SHELL or COMSPEC when UseShellExecute is true.
19331
19332         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
19333         callback for async. IO is here and also BindHandle.
19334
19335         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
19336         from here.
19337
19338 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
19339
19340         * reflection.c (create_custom_attr): Allow len == 0.
19341
19342         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
19343         computation on big-endian machines.
19344
19345 2004-03-13  Martin Baulig  <martin@ximian.com>
19346
19347         * class.h (MonoGenericInst): Added `int count_ifaces'.
19348
19349         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
19350         `ginst->count_ifaces' instead `klass->interface_count' since we
19351         may get called before the vtable is created.
19352
19353         * loader.c (mono_method_get_param_names): If we're a generic
19354         instance, return and don't initialize the class.
19355
19356         * reflection.c (mono_reflection_setup_generic_class): Don't call
19357         ensure_runtime_vtable().
19358         (mono_reflection_bind_generic_parameters): Set
19359         `ginst->count_ifaces'.
19360
19361 2004-03-11  Jackson Harper <jackson@ximian.com>
19362
19363         * icall.c:
19364         * unicode.c:
19365         * unicode.h: Remove unused System.Char icalls.
19366         
19367 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
19368
19369         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
19370         code when we P/Invoke the first library in Windows.Forms, instead
19371         of when we first open the assembly.
19372
19373         * assembly.c: Drop the lookup from here.
19374
19375 2004-03-10  Martin Baulig  <martin@ximian.com>
19376
19377         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
19378         class for properties, fields and events.  Finally fixes #54945.
19379
19380 2004-03-10  Martin Baulig  <martin@ximian.com>
19381
19382         * metadata.c (mono_metadata_class_equal): New static function;
19383         checks whether two generic instances or two generic parameters are
19384         equal.
19385         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
19386         compare classes.        
19387
19388 2004-03-10  Martin Baulig  <martin@ximian.com>
19389
19390         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
19391
19392         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
19393         argument and write it into the `reflection_info' field.
19394
19395         * icall.c
19396         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
19397         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
19398
19399 2004-03-09  Jackson Harper  <jackson@ximian.com>
19400
19401         * char-conversions.h: use 8 bits for numeric data its all we need
19402         * icall.c: numeric data is only 8 bits now.
19403
19404 2004-03-09  Martin Baulig  <martin@ximian.com>
19405
19406         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
19407
19408         * class.c (init_properties, init_events): Initialize the new
19409         `parent' field.
19410
19411         * reflection.c (typebuilder_setup_properties): Likewise.
19412         (typebuilder_setup_events): Likewise.
19413
19414         * reflection.h (MonoEventInfo): Replaced `parent with
19415         `declaring_type' and `reflected_type'.
19416
19417         * icall.c (ves_icall_get_property_info): Distinguish between
19418         declaring and reflected type.
19419         (ves_icall_get_event_info): Likewise.
19420
19421 2004-03-09  Martin Baulig  <martin@ximian.com>
19422
19423         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
19424         (ves_icall_Type_GetField): Correctly set field->klass.
19425
19426 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
19427
19428         * loader.h: Fix warning.
19429
19430 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
19431
19432         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
19433         library routine if present.  Notice that it will still continue
19434         executing even if its missing, for those working on the Gtk#
19435         edition of Windows.Forms.
19436
19437         * assembly.c (do_mono_assembly_open): If loading the
19438         System.Windows.Forms call mono_loader_wini_init.
19439
19440 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
19441
19442         * class.h: Added MonoRemoteClass struct.
19443         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
19444         function for MonoStrings.
19445         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
19446         Added internal call for getting the proxy type.
19447         * marshal.c: Get the type of transparent proxies from its remote_class.
19448         Added methods that generate the IL for type checks and casts:
19449         mono_marshal_get_isinst, mono_marshal_get_castclass, 
19450         mono_marshal_get_proxy_cancast.
19451         * marshal.h: Declaration of the previous new methods.
19452         * object.c: Added new moethods for creating and updating MonoRemoteClass
19453         instances: mono_remote_class, mono_upgrade_remote_class, 
19454         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
19455         * verify.c: FIx transparent_proxy_fields layout.
19456         * appdomain.c: Bump corlib version.
19457
19458 2004-03-04  Jackson Harper  <jackson@ximian.com>
19459
19460         * icall.c: Add icall to access char conversion tables.
19461         * char-conversions.h: Character conversion tables.
19462         * Makefile.am: Add char-conversions.h private header file.
19463         
19464 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
19465
19466         * appdomain.c (unload_thread_main): Increase unloading timeout to
19467         10 sec as a temporary workaround for Nant problems.
19468
19469 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
19470
19471         * gc.c: Add checks for GC_enable and GC_disable.
19472
19473         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
19474         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
19475         (bug #54988).
19476         
19477 2004-02-27  Martin Baulig  <martin@ximian.com>
19478
19479         * reflection.c (mono_reflection_bind_generic_parameters): Take a
19480         `MonoReflectionType *' instead of a `MonoType *'.
19481
19482 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
19483
19484         * gc.c (run_finalize): Avoid finalizing the object representing the
19485         finalizer thread.
19486         (finalizer_thread): Fix warning.
19487
19488 2004-02-25  Martin Baulig  <martin@ximian.com>
19489
19490         * class.c (_mono_class_get_instantiation_name): Added `int offset'
19491         argument for nested types.
19492         (mono_class_create_generic): Added support for nested generictypes.
19493
19494         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
19495         `GList *nested'.
19496
19497         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
19498
19499         * reflection.c (method_encode_signature): Increase the minimum
19500         value of `size' from 10 to 11.
19501         (mono_reflection_bind_generic_parameters): Take `int type_argc'
19502         and `MonoType **types' arguments instead of the `MonoArray
19503         *types'; added `MonoType *nested_in'.  Recursively instantiate
19504         nested classes. 
19505
19506 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
19507
19508         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
19509         stack_overflow_ex members which are used by exception handling.
19510
19511         * appdomain.c (mono_runtime_init): Initialize the new members.
19512
19513         * gc.c (mono_gc_enable): New helper function.
19514         * gc.c (mono_gc_disable): New helper function.
19515
19516 2004-02-23  Martin Baulig  <martin@ximian.com>
19517
19518         * icall.c: I must have been really stupid - make it actually work
19519         this time ;-)
19520
19521 2004-02-23  Martin Baulig  <martin@ximian.com>
19522
19523         * loader.c (method_from_memberref): Only inflate the method if
19524         it's in another klass.
19525
19526 2004-02-23  Martin Baulig  <martin@ximian.com>
19527
19528         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
19529         (mono_class_init): If we're a generic instance and an interface,
19530         compute `class->interface_id'; also create `class->interfaces'
19531         here and inflate them.
19532
19533         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
19534         `ginst->is_open'.
19535         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
19536
19537         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
19538
19539 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
19540
19541         * reflection.c (method_encode_code): Improved the error message
19542         generated by the exception.
19543
19544 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19545
19546         * icall.c: Martin did not do what he said in the ChangeLog for
19547         2004-02-18, but put back the changes for properties and events.
19548         Commenting those changes out again and adding comment to bug #54518.
19549         
19550         * process.c: removed warning.
19551
19552 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
19553
19554         * marshal.c (emit_struct_conv): Print an error message instead of
19555         asserting when a type does not have the StructLayout attribute.
19556
19557 2004-02-20  Martin Baulig  <martin@ximian.com>
19558
19559         * reflection.c (mono_type_get_object): Also use the cache for
19560         generic instances.
19561         (mono_reflection_bind_generic_parameters): Always compute
19562         `ginst->ifaces'.        
19563
19564 2004-02-20  Martin Baulig  <martin@ximian.com>
19565
19566         * class.h (MonoGenericMethod): Removed `klass'.
19567
19568         * class.c (mono_class_inflate_generic_method): Added `MonoClass
19569         *klass' argument.
19570
19571 2004-02-20  Martin Baulig  <martin@ximian.com>
19572
19573         * reflection.c (method_encode_methodspec): Actually use the
19574         uninflated signature for the memberref.
19575
19576 2004-02-20  Martin Baulig  <martin@ximian.com>
19577
19578         * class.h (MonoGenericMethod): Removed `declaring'.
19579
19580         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
19581         is NULL, compute it here.
19582
19583 2004-02-20  Martin Baulig  <martin@ximian.com>
19584
19585         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
19586
19587         * metadata.c (mono_metadata_generic_inst_hash): New method.
19588         (mono_metadata_generic_inst_equal): New method.
19589
19590         * reflection.c (mono_reflection_bind_generic_parameters): Use the
19591         `klass->image->generic_inst_cache' cache to avoid creating
19592         duplicate MonoGenericInst's.
19593
19594         * class.c (mono_class_inflate_generic_type): Use the cache.
19595
19596 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
19597
19598         * object.c: fixed gc descriptor calculation for embedded valuetypes.
19599
19600 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19601
19602         * icall.c: added Socket.WSAIoctl icall.
19603
19604         * socket-io.[ch]: implemented
19605         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
19606
19607 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
19608
19609         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
19610
19611 2004-02-18  Urs C Muff  <umuff@quark.com>
19612
19613         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
19614         this work on PPC and other big-endian architectures.
19615
19616         * debug-mono-symfile.h: Prepended the names of all the `guint32'
19617         fields with an underscore to make sure they're only accessed by
19618         the read32() macro.
19619
19620 2004-02-18  Martin Baulig  <martin@ximian.com>
19621
19622         * icall.c: Put the klass->refclass changes back for methods and
19623         fields, but not for properties and events.  We're currently not
19624         distinguishing between DeclaringType and ReflectedType for
19625         properties and events, that's what caused the regressions.
19626
19627 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19628
19629         * object.c:
19630         (mono_async_result_new): the handle can be NULL.
19631
19632         * threadpool.c: Use an event instead of a semaphore, don't initialize
19633         it until needed. This saves quite a few semaphores from being created
19634         when using the threadpool.
19635
19636 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
19637
19638         * object.c (mono_string_is_interned_lookup): Fix interning of long
19639         strings. Fixes #54473.
19640
19641         * domain.c (ldstr_equal): Optimize if the two strings are equal.
19642
19643         * icall.c: Revert the klass->refclass changes since they introduce
19644         regressions (bug #54518).
19645
19646 2004-02-18  Martin Baulig  <martin@ximian.com>
19647
19648         * class.c (mono_class_init): If we're a generic instance and don't
19649         come from a TypeBuilder, inflate our members here.
19650         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
19651         (mono_class_create_generic): New public method.
19652         (mono_class_initialize_generic): Removed.
19653         (get_instantiation_name): Renamed to
19654         _mono_class_get_instantiation_name() and made it public.
19655
19656 2004-02-18  Martin Baulig  <martin@ximian.com>
19657
19658         * class.c (mono_class_inflate_generic_type): Clear the new
19659         instance's `nginst->klass' when inflating a generic instance.
19660         (mono_class_is_subclass_of): Added (basic) support for generic
19661         instances.
19662
19663 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
19664
19665         * appdomain.h, domain.c: use a MonoCodeManager instead of a
19666         MonoMempool to hold compiled native code.
19667
19668 2004-02-17  Martin Baulig  <martin@ximian.com>
19669
19670         * class.h (MonoDynamicGenericInst): Added `count_properties' and
19671         `properties'.
19672
19673         * reflection.c (mono_reflection_generic_inst_initialize): Added
19674         `MonoArray *properties' argument.
19675
19676         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
19677
19678 2004-02-17  Martin Baulig  <martin@ximian.com>
19679
19680         * icall.c (ves_icall_Type_GetFields): Renamed to
19681         ves_icall_Type_GetFields_internal() and added a
19682         `MonoReflectionType *rtype' argument; pass it to
19683         mono_field_get_object() to set the field's "reflected" type.
19684         (ves_icall_Type_GetConstructors): Likewise.
19685         (ves_icall_Type_GetEvents): Likewise.
19686         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
19687         argument; pass it to mono_method_get_object() to set the method's
19688         "reflected" type.       
19689
19690 2004-02-17  Martin Baulig  <martin@ximian.com>
19691
19692         * class.h (MonoDynamicGenericInst): New type.
19693         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
19694
19695         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
19696         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
19697         (ves_icall_MonoGenericInst_GetFields): New interncall.
19698
19699         * class.c (mono_class_from_generic): Don't call
19700         mono_class_initialize_generic() if this is a dynamic instance;
19701         ie. it's being created from a TypeBuilder.
19702         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
19703         `class->byval_arg.type'.
19704
19705         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
19706         to `inflate_method' and made static.
19707         (mono_reflection_inflate_field): Removed.
19708         (mono_reflection_generic_inst_initialize): New public method.
19709
19710         * reflection.h (MonoReflectionGenericInst): Removed `methods',
19711         `ctors' and `fields'; added `initialized'.
19712
19713 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
19714
19715         * debug-helpers.c (mono_method_full_name): Fix output for empty
19716         namespaces.
19717
19718 2004-02-12  Martin Baulig  <martin@ximian.com>
19719
19720         * class.h (MonoClassField): Added `MonoType *generic_type'.
19721
19722         * reflection.c (mono_image_get_fieldref_token): Added support for
19723         instantiated generic types.
19724         (field_encode_inflated_field): Removed.
19725         (mono_image_get_inflated_field_token): Removed.
19726         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
19727
19728         * reflection.h (MonoReflectionInflatedField): Removed.
19729
19730 2004-02-12  Martin Baulig  <martin@ximian.com>
19731
19732         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
19733         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
19734
19735         * reflection.c (mono_image_get_methodspec_token): Take a
19736         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
19737         (mono_image_create_token): Check whether we have a
19738         `method->signature->gen_method' and call
19739         mono_image_get_methodspec_token() if appropriate.
19740         (inflated_method_get_object): Removed.
19741         (mono_reflection_bind_generic_method_parameters): Return a
19742         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
19743         (mono_reflection_inflate_method_or_ctor): Likewise.
19744
19745         * reflection.h (MonoReflectionInflatedMethod): Removed.
19746
19747 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
19748
19749         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
19750         for custom valuetype marshalling.
19751
19752         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
19753
19754 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19755
19756         * icall.c: fixed WSAGetLastError_internal name.
19757
19758 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
19759
19760         * threads.c (mono_thread_attach): Allow this to be called multiple
19761         times for a thread.
19762         
19763         * threads.c (build_wait_tids): Do not wait for ourselves.
19764
19765         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
19766         appdomain list is empty.
19767
19768         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
19769         memory returned by mono_string_builder_to_utf16, since it points into
19770         managed memory. Thanks to Bernie Solomon for noticing this.
19771
19772         * icall.c: Add AppDomainSetup icalls.
19773
19774         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
19775
19776         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
19777         types.
19778
19779         * reflection.c (reflection_methodbuilder_to_mono_method): Save
19780         custom attributes to the method_aux struct. Also fix array indexes etc.
19781
19782         * loader.c (mono_method_get_param_names): Make dynamic case work again.
19783         
19784 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
19785
19786         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
19787         (both static and runtime) and reduce startup time.
19788
19789 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
19790
19791         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
19792         AsAny marshalling conversion instead of crashing.
19793
19794         * marshal.c: Fix warnings.
19795
19796 2004-02-09  Martin Baulig  <martin@ximian.com>
19797
19798         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
19799
19800         * reflection.h (MonoReflectionInflatedMethod): Removed the
19801         `declaring' field, it's now in the unmanaged MonoGenericMethod.
19802
19803         * reflection.c (method_encode_methodspec): Removed the `method'
19804         argument; we get it from `gmethod->declaring'.
19805         (inflated_method_get_object): Removed the `declaring' argument.
19806
19807 2004-02-09  Martin Baulig  <martin@ximian.com>
19808
19809         * class.h (MonoGenericMethod): New type.
19810         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
19811         `generic_method'.
19812
19813         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
19814         a `MonoGenericMethod *gen_method' one.
19815
19816         * class.c (mono_class_inflate_generic_type): Take an additional
19817         `MonoGenericMethod * argument.  This is only non-NULL if we're
19818         inflating types for a generic method.   
19819         (mono_class_inflate_generic_signature): Renamed to
19820         inflate_generic_signature() and made static; take a
19821         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
19822         (inflate_generic_header): Take a `MonoGenericMethod *' argument
19823         instead of a `MonoGenericInst *' one.
19824         (mono_class_inflate_generic_method): Likewise.
19825
19826         * reflection.c (encode_generic_method_sig): Take a
19827         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
19828         (method_encode_methodspec): Likewise.
19829         (inflated_method_get_object): Likewise. 
19830
19831         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
19832         field with a `MonoGenericMethod *gmethod' one.  
19833
19834 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
19835
19836         * class.h (mono_class_has_parent): add parens to expansion
19837         so you can ! this.
19838
19839 2004-02-08  Martin Baulig  <martin@ximian.com>
19840
19841         * image.h (MonoImage): Removed `generics_cache'.
19842
19843         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
19844         instead of a `MonoType *' argument; removed the `inflate_methods'
19845         argument.  Don't inflate methods here.
19846
19847         * loader.c (find_method): If it's a generic instance, call
19848         mono_class_init() on the `sclass->generic_inst->generic_type'.
19849
19850         * metadata.c (mono_type_size): Make this work on uninitialized
19851         generic instances; call it on the `ginst->generic_type's class.
19852
19853         * reflection.c (mono_reflection_bind_generic_parameters): Call
19854         mono_class_from_generic() to create the `ginst->klass'.
19855
19856 2004-02-08  Martin Baulig  <martin@ximian.com>
19857
19858         * class.h (MonoClass): Changed type of `generic_inst' from
19859         `MonoType *' to `MonoGenericInst *'.
19860
19861 2004-02-08  Martin Baulig  <martin@ximian.com>
19862
19863         * icall.c (ves_icall_Type_BindGenericParameters): Just call
19864         mono_type_get_object(), this is now creating a `MonoGenericInst'
19865         for MONO_TYPE_GENERICINST.
19866         (ves_icall_MonoGenericInst_GetParentType): Likewise.
19867         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
19868
19869         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
19870         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
19871         (inflated_method_get_object): Added `MonoClass *refclass' argument.
19872         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
19873         and reflected type.
19874
19875         * reflection.h (MonoReflectionInflatedMethod): Removed
19876         `declaring_type' and `reflected_type'.
19877
19878 2004-02-08  Martin Baulig  <martin@ximian.com>
19879
19880         * class.h (MonoGenericInst): Added `MonoType *parent' and
19881         `MonoType **ifaces'.
19882
19883         * reflection.h (MonoReflectionGenericInst): Removed `klass',
19884         `parent' and `interfaces'.
19885
19886         * reflection.c (mono_reflection_bind_generic_parameters): Take a
19887         `MonoType *' argument and return a `MonoType *'.
19888
19889         * icall.c
19890         (ves_icall_MonoGenericInst_GetParentType): New interncall.
19891         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
19892
19893 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
19894
19895         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
19896         valuetype marshalling.
19897
19898 2004-02-06  Martin Baulig  <martin@ximian.com>
19899
19900         * class.c
19901         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
19902         (my_mono_class_from_generic_parameter): Likewise.
19903
19904 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
19905
19906         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
19907         contents of the symbol files lazily.
19908
19909         * object.h (MonoThread): Add 'name' and 'name_len' fields.
19910
19911         * threads.h threads.c icall.c: New icalls for getting and setting the
19912         threads name.
19913
19914 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
19915
19916         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
19917         Raise an exception when the domain is not found.
19918
19919 2004-02-03  Martin Baulig  <martin@ximian.com>
19920
19921         * reflection.c (mono_image_get_methodspec_token): Use the
19922         uninflated signature; fixes gen-33.
19923
19924 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
19925
19926         * gc.c threads.c: Make the finalizer thread a normal managed thread so
19927         the finalizer code can use thread functionality.
19928
19929         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
19930         the finalizer thread.
19931
19932         * threads.c: Make some functions more robust.
19933
19934         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
19935
19936         * metadata.h: Add new marshalling conventions.
19937
19938         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
19939         stringbuilder marshalling. Fixes #53700.
19940
19941         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
19942
19943         * reflection.c (mono_image_get_type_info): Save declarative security
19944         info.
19945
19946         * reflection.c (mono_image_get_field_info): Handle uninitialized 
19947         unmanaged fields as well.
19948
19949         * appdomain.c: Bump corlib version.
19950
19951 2004-02-01  Martin Baulig  <martin@ximian.com>
19952
19953         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
19954         method type arguments.  
19955
19956 2004-01-30  Duncan Mak  <duncan@ximian.com>
19957
19958         * marshal.h: Add prototype for
19959         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
19960         and
19961         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
19962         fix the build.
19963
19964 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
19965
19966         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
19967         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
19968
19969 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
19970
19971         * marshal.c (mono_marshal_get_native_wrapper): Add support for
19972         custom marshalling of valuetypes.
19973
19974         * marshal.c: Fix some warnings.
19975
19976 2004-01-29  Martin Baulig  <martin@ximian.com>
19977
19978         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
19979         for generic method parameters.
19980
19981         * reflection.c (method_encode_methodspec): Write the uninflated
19982         signature into the methodspec table.
19983         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
19984         is always the uninflated method.
19985         (reflection_methodbuilder_to_mono_method): Copy the generic
19986         parameters from the MethodBuilder into `header->gen_params'.
19987
19988 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
19989
19990         * class.c (mono_class_from_generic_parameter): Fix warning.
19991
19992 2004-01-27  Martin Baulig  <martin@ximian.com>
19993
19994         * class.c (mono_class_from_generic_parameter): Don't create
19995         `klass->methods' here.  
19996
19997 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
19998
19999         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
20000         extension since it does not work with libraries named lib<FOO>.dll.so.
20001
20002 2004-01-25  Martin Baulig  <martin@ximian.com>
20003
20004         * class.c (mono_class_inflate_generic_type): Added support for
20005         MONO_TYPE_GENERICINST.
20006
20007         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
20008         inflate methods on open constructed types.      
20009
20010 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20011
20012         * object.c: fire ProcessExit event in the root AppDomain after running
20013         Main. Fixes bug #53299.
20014
20015 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
20016
20017         * socket-io.c: include the new socket-wrappers.h header.
20018         Use the wrappers instead of the unix socket functions to make the code
20019         more clear.
20020
20021 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
20022
20023         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
20024
20025         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
20026         Fixes #22532.
20027
20028 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
20029
20030         * reflection.c (mono_image_create_pefile): Handle the case when the
20031         entry point is not a MethodBuilder.
20032
20033         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
20034         field to ReflectionMethod since it is not allways a builder.
20035
20036         * reflection.c (type_get_fully_qualified_name): New helper function to
20037         return the fully qualified name of a type.
20038
20039         * reflection.c (encode_marshal_blob): Always emit the fully qualified
20040         type name for custom marshallers.
20041
20042         * reflection.c (mono_marshal_spec_from_builder): Ditto.
20043
20044         * class.c (mono_class_setup_vtable): If a parent class already 
20045         implements an interface, use the implementing methods from that class.
20046         Fixes #53148.
20047
20048 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20049
20050         * threadpool.c: just return instead of ExitThread to allow for thread
20051         clean up earlier.
20052
20053 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
20054
20055         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
20056         when closing resource modules.
20057
20058         * reflection.c (mono_image_create_pefile): Handle the case when the
20059         entry point is not a MethodBuilder.
20060
20061         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
20062         field to ReflectionMethod since it is not allways a builder.
20063
20064 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
20065
20066         * marshal.c (mono_marshal_get_managed_wrapper): 
20067         mono_marshal_alloc takes native int so CONV_I
20068         the arg for 64bits.
20069
20070 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
20071
20072         * reflection.c (fixup_cattrs): New function to fixup the methoddef
20073         tokens in the cattr table. Fixes #53108.
20074
20075 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20076
20077         * loader.c: don't trim ".dll" before looking up in the config file.
20078         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
20079
20080 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
20081
20082         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
20083         Return the module which contains the resource as well.
20084         (ves_icall_System_Reflection_Module_Close): New icall.
20085
20086         * appdomain.c: Bump corlib version number.
20087
20088         * image.c (mono_image_addref): New public function.
20089
20090         * assembly.c: Call mono_image_addref.
20091
20092         * reflection.c (mono_module_get_object): Increase reference count of 
20093         the image.
20094
20095         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
20096         Fixes #22532.
20097
20098         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
20099         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
20100         proper exceptions on DllImport problems.
20101
20102 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
20103
20104         * class.c, metadata.c: eliminate CSIZE macro.
20105
20106 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
20107
20108         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
20109         * object.h: Added async_callback field in MonoAsyncResult.
20110         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
20111         * verify.c: Added async_callback in MonoAsyncResult layout.
20112
20113 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
20114
20115         * reflection.c (mono_reflection_get_custom_attrs): Add support
20116         for Modules.
20117
20118 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
20119
20120         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
20121         marshalling.
20122         (mono_marshal_method_from_wrapper): Add null pointer check.
20123
20124 2004-01-16  Martin Baulig  <martin@ximian.com>
20125
20126         * debug-mono-symfile.h: Set version number to 36 and reflect
20127         latest symbol writer changes.
20128
20129 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
20130
20131         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
20132         multi-dimensional arrays.
20133         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
20134         (mono_class_from_mono_type): Use bounded_array_class_get.
20135         
20136         * class.c (mono_bounded_array_class_get): New function which takes
20137         a 'bounded' bool argument to distinguish vectors from one dimensional
20138         arrays.
20139
20140         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
20141         bounded_array_class_get if the array has bounds.
20142
20143         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
20144         Search modules loaded using AssemblyBuilder:AddModule as well.
20145
20146 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20147
20148         * appdomain.c: increased corlib version.
20149         * filewatcher.c: removed g_print.
20150         * icall.c:
20151         (get_property_info): only allocate what is actually requested.
20152         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
20153
20154 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20155
20156         * Makefile.am: added filewatcher.[ch]
20157         * filewatcher.[ch]: FileSystemWatcher runtime support.
20158         * icall.c: added new FSW icalls.
20159
20160 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
20161
20162         * string-icalls.c: fix stringbuilder regression as suggested by
20163         Iain McCoy <iain@mccoy.id.au>.
20164
20165 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
20166
20167         * process.c (process_read_stringtable_block): Recognize '007f' as
20168         a language neutral stringtable block.
20169
20170 2004-01-12  Patrik Torstensson
20171
20172         * object.h (MonoStringBuilder) : Changed layout to support our
20173         new stringbuilder class.
20174         * marshal.c: Change marshalling to support the new layout of 
20175         string builder.
20176         * appdomain.c: increased version number because new layout of
20177         string builder.
20178
20179 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
20180
20181         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
20182         assembly name as an string instead of an AssemblyName, since it is
20183         easier to extract info from it.
20184
20185         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
20186         the culture subdirectories too. Fixes #52231.
20187
20188 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20189
20190         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
20191         It takes 2 new parameters with an optional name for the method to look
20192         for and case ignoring info.
20193
20194         * threadpool.c: removed unused variable.
20195
20196 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20197
20198         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
20199         It takes 2 new parameters with an optional name for the property to look
20200         for and case ignoring info.
20201         Fixes bug #52753.
20202
20203 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
20204
20205         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
20206         Fix #52451.
20207
20208 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20209
20210         * appdomain.c:
20211         * assembly.c: escape the uri before passing it to g_filename_from_uri.
20212         Fixes bug #52630.
20213
20214 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
20215
20216         * reflection.c: Add support for more than one unmanaged resource.
20217
20218         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
20219         in field->def_value, as done in all other cases.
20220
20221         * reflection.c (mono_reflection_get_custom_attrs): Add support for
20222         TypeBuilders.
20223
20224         * reflection.c (mono_reflection_create_runtime_class): Remove 
20225         errorneous assignment to klass->element_class, since it is already
20226         done in mono_reflection_setup_internal_class.
20227
20228 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20229
20230         * gc.c: added missing LeaveCriticalSection.
20231         * icall.c: indented a couple of lines.
20232         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
20233         if we call EndInvoke inside a callback. Fixes bug #52601.
20234
20235 2004-01-07  Martin Baulig  <martin@ximian.com>
20236
20237         * mono-debug-debugger.h
20238         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
20239
20240 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
20241
20242         * appdomain.c: Use messages in NotImplementedException.
20243
20244         * exception.c (mono_get_exception_not_implemented): Now this takes
20245         a message argument.
20246
20247         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
20248         exception instead of g_asserting an aborting when something is not
20249         implemented.
20250
20251         Add some inline docs.
20252
20253 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
20254
20255         * reflection.h: Update after changes to object layout.
20256
20257         * reflection.c: Implement saving of unmanaged aka win32 resources.
20258
20259         * appdomain.c: Bump version number.
20260
20261         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
20262         Handle missing domains gracefully.
20263
20264 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
20265
20266         * file-io.c : On Windows, there are much more invalid_path_chars.
20267
20268 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
20269
20270         * class.h, object.c: prepare for GetType () speedup.
20271
20272 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
20273
20274         * profiler.c: workaround for --profile null reference exception on
20275           cygwin. Patch by Patrik Torstensson.
20276
20277 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
20278
20279         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
20280         make work for unaligned access.
20281
20282 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
20283
20284         * class.c: small cleanup (class->fields [i] -> field).
20285         * image.c: check address of metadata is valid.
20286
20287 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
20288
20289         * assembly.h assembly.c (mono_assembly_loaded): New public function to
20290         search the list of loaded assemblies.
20291
20292         * reflection.c (mono_reflection_type_from_name): Use 
20293         mono_assembly_loaded instead of mono_image_loaded.
20294
20295         * reflection.c: Fix warnings.
20296
20297 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
20298
20299         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
20300         is dynamic. This is needed since an assembly can contain both dynamic and
20301         non-dynamic images.
20302
20303         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
20304         assembly->dynamic.
20305
20306         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
20307
20308         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
20309         to store modules loaded using AddModule.
20310
20311         * reflection.c (mono_image_fill_file_table): Generalize this so it works
20312         on Modules.
20313
20314         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
20315
20316         * reflection.c (mono_image_fill_export_table_from_module): New function to
20317         fill out the EXPORTEDTYPES table from a module.
20318
20319         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
20320         into a separate function. Also handle loaded non-dynamic modules.
20321
20322         * reflection.c (mono_image_basic_init): Fix memory allocation.
20323
20324         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20325
20326         * assembly.c (mono_assembly_load_references): Make this public.
20327
20328 2003-12-19  Martin Baulig  <martin@ximian.com>
20329
20330         * class.c (mono_class_initialize_generic): Made this static, take
20331         a `MonoGenericInst *' instead of a `MonoClass *'.
20332         (mono_class_from_generic): Call mono_class_initialize_generic()
20333         unless we're already initialized or being called from
20334         do_mono_metadata_parse_generic_inst().
20335
20336         * class.h (MonoGenericInst): Added `initialized' and
20337         `init_pending' flags.
20338
20339         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
20340         `mono_class_init (gklass)' or mono_class_initialize_generic()
20341         here; set `generic_inst->init_pending' while parsing the
20342         `type_argv'.
20343
20344 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
20345
20346         * locales.c: include string.h for memxxx prototypes
20347
20348 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
20349
20350         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
20351         constructor when accessing literal fields.
20352
20353 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
20354
20355         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20356
20357         * reflection.c (assembly_add_resource_manifest): New function to fill
20358         the MANIFESTRESOURCE table.
20359
20360         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
20361
20362         * reflection.h: Update to changes in class layout.
20363
20364         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
20365         Reenable call to mono_runtime_is_shutting_down ().
20366
20367         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
20368         determine if the runtime is shutting down.
20369
20370 2003-12-16  Jackson Harper <jackson@ximian.com>
20371
20372         * icall.c: comment out call to mono_runtime_is_shutting_down to
20373         fix build.
20374         
20375 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
20376
20377         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
20378         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
20379
20380 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
20381
20382         * reflection.c: move definition of swap_with_size
20383         to before its first call
20384
20385 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
20386
20387         * appdomain.c (mono_runtime_is_shutting_down): New public function.
20388
20389         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
20390         icall.
20391
20392         * object.c: Fix warnings.
20393
20394         * icall.c (ves_icall_Type_Get...): Only consider inherited static
20395         members if FlattenHierarchy is set.
20396
20397         * reflection.c (mono_image_add_decl_security): New function to emit
20398         declarative security.
20399
20400         * reflection.h reflection.c: Add support for declarative security.
20401
20402         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
20403         
20404 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
20405
20406         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
20407         
20408         * appdomain.c verify.c: Moved corlib version checking into its own
20409         function in appdomain.c since it needs to create vtables etc.
20410
20411 2003-12-13  Patrik Torstensson <p@rxc.se>
20412
20413         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
20414         instead of unwrapped server.
20415
20416 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
20417
20418         * verify.c (check_corlib): Fix field index.
20419
20420 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
20421
20422         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
20423         GetGacPath icall.
20424
20425 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
20426
20427         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
20428         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
20429         cope with sizeof(size_t) != sizeof(guint32).
20430
20431 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20432
20433         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
20434         in case of failure.
20435
20436 2003-12-10  Mark Crichton <crichton@gimp.org>
20437
20438         * icall.c: removed the GetNonZeroBytes.  We now handle this case
20439         in managed code.
20440
20441         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
20442
20443 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
20444
20445         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
20446         marked as deleted.
20447
20448 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
20449
20450         * verify.c (check_corlib): Handle the case when the version field is 
20451         initialized by a static constructor.
20452
20453 2003-12-08  Patrik Torstensson  <p@rxc.se>
20454
20455     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
20456
20457 2003-12-08  Martin Baulig  <martin@ximian.com>
20458
20459         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
20460         a MonoReflectionGenericParameter, also take the parameter index
20461         and name as arguments.
20462         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
20463         (ves_icall_MonoGenericParam_initialize): New interncall.
20464         (ves_icall_Type_make_byref_type): New interncall.
20465
20466         * reflection.h (MonoReflectionGenericParam): Derive from
20467         MonoReflectionType, not just from MonoObject.  Added `refobj' and
20468         `index' fields.
20469
20470         * reflection.c (mono_reflection_define_generic_parameter): Create
20471         and return a new MonoReflectionGenericParam; don't initialize the
20472         constraints here.
20473         (mono_reflection_initialize_generic_parameter): New public method;
20474         initializes the constraints and creates the `param->pklass'.
20475
20476 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
20477
20478         * reflection.h reflection.c: Use the new fields 'num_types', 
20479         'num_fields' and 'num_methods' to track the number of types etc.
20480
20481         * verify.c (check_corlib): Check corlib version number.
20482
20483 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
20484
20485         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
20486         function works on all methods.
20487
20488 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
20489
20490         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
20491         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
20492         the custom_type_info flag of the transparent proxy.
20493         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
20494         objects that supports IRemotingTypeInfo.
20495         * object.h: Added custom_type_info field in transparent proxy.
20496
20497 2003-12-06  Martin Baulig  <martin@ximian.com>
20498
20499         * class.c (mono_class_create_from_generic): Removed.
20500         (mono_class_from_generic): Check `ginst->klass' before doing
20501         anything else.  This is important to fully support "recursive"
20502         generic types.
20503
20504         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
20505         empty `generic_inst->klass' before doing anything else.
20506
20507 2003-12-06  Dick Porter  <dick@ximian.com>
20508
20509         * verify.c: 
20510         * object.h:
20511         * icall.c:
20512         * locales.c: Use C structs to access class fields.  Don't do a
20513         conversion between MonoString and UChar because both are
20514         platform-endian UTF-16.  Compare now takes startindex and count
20515         parameters.  Add a char overload for IndexOf.  Speed up the
20516         invariant string IndexOf.
20517
20518 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
20519
20520         * Makefile.am (monosn_LDADD): Fix parallel build.
20521
20522 2003-12-04  Martin Baulig  <martin@ximian.com>
20523
20524         * icall.c
20525         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
20526         (ves_icall_Type_make_array_type): New interncall.       
20527
20528 2003-12-04  Martin Baulig  <martin@ximian.com>
20529
20530         * locales.c: also change it in the !HAVE_ICU case.
20531
20532 2003-12-04  Dick Porter  <dick@ximian.com>
20533
20534         * icall.c:
20535         * locales.c: construct_compareinfo is now in CompareInfo, not
20536         CultureInfo.
20537
20538 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
20539
20540         * image.c (mono_image_load_file_for_image): Cache loaded images in the
20541         image->files array.
20542
20543         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
20544         table as well.
20545
20546         * assembly.c (mono_assembly_load_references): Only load references
20547         once.
20548
20549         * class.c (mono_class_from_name): Avoid linear search of the 
20550         EXPORTEDTYPE table.
20551
20552         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
20553
20554 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
20555
20556         * image.h (MonoImage): Add 'field_cache' field.
20557
20558         * loader.c (mono_field_from_token): Cache field lookups.
20559         
20560         * reflection.c (mono_module_get_object): Fix name property.
20561
20562         * icall.c (ves_icall_get_enum_info): Update after changes to 
20563         mono_metadata_get_constant_index ().
20564
20565         * icall.c: Get rid of get_type_info icall, use a separate icall for
20566         each type property to avoid needless memory allocations. Fixes #51514.
20567
20568         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
20569         to avoid needless binary searches.
20570
20571         * class.c (class_compute_field_layout): Move the initialization of
20572         field->def_value to mono_class_vtable ().
20573
20574         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
20575         non-corlib types.
20576
20577         * object.c (mono_object_allocate): Make it inline.
20578
20579         * object.c (mono_object_allocate_spec): Make it inline.
20580         
20581 2003-12-02  Dick Porter  <dick@ximian.com>
20582
20583         * locales.c (create_NumberFormat): NumberFormatInfo construction.
20584         Patch by Mohammad DAMT (mdamt@cdl2000.com).
20585
20586 2003-12-01  Dick Porter  <dick@ximian.com>
20587
20588         * threads.c: Fix signature and call in CreateMutex and
20589         CreateEvent.
20590
20591 2003-12-01  Dick Porter  <dick@ximian.com>
20592
20593         * icall.c: 
20594         * locales.c: Implement string compares and searching
20595
20596         * object.h: Add extra Thread field
20597
20598 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
20599
20600         * reflection.c (fixup_method): Add support for MonoCMethod.
20601
20602 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
20603
20604         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
20605
20606         * reflection.c (assembly_name_to_aname): Allow extra characters in
20607         assembly names. Fixes #51468.
20608
20609 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
20610
20611         * exception.c (mono_exception_from_name_domain): New helper function.
20612
20613         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
20614         exception object in the correct domain.
20615
20616         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
20617         formatting + make a copy a the input data.
20618
20619         * loader.c (mono_get_method_from_token): Methods which contain
20620         native code do not have entries in the ImplMap.
20621
20622         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
20623         Thanks to Gonzalo for spotting this.
20624         
20625         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
20626         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
20627
20628         * assembly.h (mono_assembly_load_from): Split the second part of 
20629         assembly loading into a new public function.
20630
20631         * exception.h (mono_get_exception_bad_image_format): New function.
20632
20633 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
20634
20635         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
20636         Enumerate all modules inside a dynamic assembly. Fixes #51293.
20637         
20638         * icall.c: Add new icall for creating dynamic methods.
20639
20640         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
20641
20642         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
20643
20644         * reflection.c (mono_reflection_create_dynamic_method): New icall to
20645         create a dynamic method.
20646
20647         * reflection.c (resolve_object): New helper function.
20648
20649         * reflection.c: Generalize ReflectionMethodBuilder and the functions
20650         which manipulate it so they can also work on dynamic methods.
20651
20652         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
20653         creating the MonoReflectionMethodAux structure if it is not needed.
20654         
20655         * reflection.h verify.c: Update after changes to object layout.
20656
20657         * reflection.c (method_builder_encode_signature): Fix compilation on
20658         gcc 2.95.x.
20659
20660 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
20661
20662         * appdomain.h: Added support for context static fields. Added static_data
20663           field to MonoAppContext and renamed thread_static_fields to a more
20664           generic special_static_fields in MonoAppDomain, since it can now contain
20665           context static fields.
20666         * domain.c: Updated hashtable name.
20667         * object.c: Replaced field_is_thread_static() for a more generic
20668           field_is_special_static() which also checks for context static attribute.
20669           In mono_class_vtable(), added support for static context fields.
20670         * threads.c: Changed methods that manage thread static fields to more
20671           generic methods so they can be reused both for thread and context static
20672           data.
20673         * threads.h: Declared some new methods.
20674
20675 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
20676
20677         * reflection.h: Update after changes to the managed types.
20678
20679         * reflection.c (encode_custom_modifiers): New helper function.
20680
20681         * reflection.c (method_encode_signature): Emit custom modifiers.
20682
20683         * reflection.c (field_encode_signature): Emit custom modifiers.
20684
20685 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
20686
20687         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
20688
20689         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
20690         implementation.
20691
20692         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
20693         icall.
20694
20695         * object.c (mono_field_get_value_object): New function.
20696
20697         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
20698         specific.
20699
20700 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
20701
20702         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
20703         return a preallocated out-of-memory exception instance.
20704
20705         * object.c (out_of_memory): Use the new function.
20706
20707         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
20708         flag is before the custom modifiers. Fixes #49802.
20709
20710 2003-11-16  Martin Baulig  <martin@ximian.com>
20711
20712         * class.c (mono_class_is_open_constructed_type): Implemented the
20713         MONO_TYPE_GENERICINST case.
20714
20715 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
20716
20717         * assembly.c (mono_assembly_fill_assembly_name): New function to
20718         fill out the MonoAssemblyName structure.
20719         (mono_assembly_open): Use the new function.
20720
20721         * icall.c (fill_reflection_assembly_name): New helper function.
20722
20723         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
20724         new function.
20725
20726         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
20727
20728 2003-11-15  Martin Baulig  <martin@ximian.com>
20729
20730         * class.c (mono_class_is_open_constructed_type): New public
20731         function; checks whether a type is an open constructed type,
20732         ie. whether it still contains type parameters.
20733         (mono_class_inflate_generic_type): If we're a type parameter and
20734         the inflated type is also a MONO_TYPE_(M)VAR, return the original
20735         type.
20736
20737         * class.h (MonoGenericInst): Added `guint32 is_open'.
20738
20739         * loader.c (method_from_methodspec): Check whether we're an open
20740         or closed constructed type and set `ginst->is_open'.
20741
20742         * reflection.c (mono_reflection_bind_generic_parameters): Check
20743         whether we're an open or closed constructed type and set
20744         `ginst->is_open'.
20745         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
20746         from open constructed types.
20747
20748 2003-11-15  Martin Baulig  <martin@ximian.com>
20749
20750         * reflection.c (mono_reflection_bind_generic_parameters): If we're
20751         a generic instance (instead of a generic type declaration) with
20752         unbound generic parameters, bind them to our actual types.
20753
20754 2003-11-14  Martin Baulig  <martin@ximian.com>
20755
20756         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
20757
20758         * reflection.c (mono_reflection_bind_generic_parameters): If we're
20759         an interface type, populate `res->interfaces' with instantiated
20760         versions of all the interfaces we inherit.
20761
20762 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
20763
20764         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
20765         when MONO_PATH is set but doesn't contain the install dir.
20766
20767 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20768
20769         * icall.c:
20770         (ves_icall_Type_GetInterfaces): don't return an interface twice when
20771         it's also implemented in base classes. Fixes bug #50927.
20772
20773 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
20774
20775         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
20776         if this method is called from a finalizer. Fixes #50913.
20777
20778 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
20779
20780         * threads.c: Implement VolatileRead/VolatileWrite
20781
20782         * icall.c: Add new icalls for VolatileRead/VolatileWrite
20783
20784 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
20785
20786         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
20787         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
20788         2.95.3.
20789
20790         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
20791         from Peter Ross (pro@missioncriticalit.com).
20792         
20793 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
20794
20795         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
20796
20797 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
20798
20799         * assembly.c (mono_assembly_load_references): Disable check because it
20800         triggers on older corlibs which lots of people have.
20801
20802 2003-11-12  Jackson Harper  <jackson@ximian.com>
20803
20804         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
20805         load corlib.dll if mscorlib.dll is not found.
20806         * assembly.h: Remove corlib name define.
20807         * class.c:
20808         * domain.c:
20809         * image.c: Change corlib name to mscorlib.
20810         
20811 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
20812
20813         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
20814
20815 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
20816
20817         * appdomain.h: Added loader_optimization here to sync with the C#
20818         code, and add disallow_binding_redirects field.
20819
20820 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
20821
20822         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
20823
20824         * reflection.c (mono_image_build_metadata): Fix crash on modules
20825         with no types.
20826
20827         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
20828
20829         * icall.c (ves_icall_get_method_info): Return callingConvention as
20830         well.
20831
20832         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
20833         namespaces from the EXPORTEDTYPE table as well.
20834
20835         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
20836         from all modules inside the assembly.
20837         
20838 2003-11-11  Martin Baulig  <martin@ximian.com>
20839
20840         * reflection.c (mono_reflection_bind_generic_parameters): Make
20841         this work for interfaces.
20842
20843 2003-11-11  Martin Baulig  <martin@ximian.com>
20844
20845         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
20846
20847 2003-11-11  Martin Baulig  <martin@ximian.com>
20848
20849         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
20850         "MonoInflatedMethod" and "MonoInflatedCtor".
20851
20852 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
20853
20854         * reflection.c (resolution_scope_from_image): Use the assembly table
20855         from the manifest module, since other modules don't have it.
20856
20857         * debug-helpers.c (mono_type_full_name): New helper function.
20858
20859         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
20860
20861         * image.c (mono_image_load_file_for_image): New public function which
20862         is a replacement for the load_file_for_image in class.c.
20863
20864         * assembly.c (mono_assembly_load_module): A wrapper for the function
20865         above which does assembly association and reference loading too.
20866
20867         * class.c (mono_class_from_name): Call mono_assembly_load_module.
20868
20869 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20870
20871         * appdomain.c: not all of the attributes for the full assembly name
20872         are required and the order doesn't matter. Fixes bug #50787.
20873
20874 2003-11-10  Dick Porter  <dick@ximian.com>
20875
20876         * locales.c: Use platform-endian UTF16
20877
20878 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
20879
20880         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
20881         
20882 2003-11-10  Martin Baulig  <martin@ximian.com>
20883
20884         * metadata.c
20885         (mono_metadata_load_generic_params): Make this actually work.
20886
20887         * reflection.c (mono_reflection_bind_generic_parameters): If our
20888         parent is a generic instance, pass all the `types' to it, no
20889         matter whether it has the same number of type parameters or not.
20890
20891 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
20892
20893         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
20894
20895         * assembly.c (mono_assembly_load_references): Move the image<->assembly
20896         assignment code to this function so it gets called recursively for all
20897         modules.
20898
20899         * image.c (load_modules): Remove the assembly assignment since it is
20900         now done by mono_assembly_load_references.
20901         
20902         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
20903         Add 'module' argument.
20904         (mono_module_get_types): New helper function.
20905         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
20906
20907 2003-11-08  Martin Baulig  <martin@ximian.com>
20908
20909         * class.c (mono_class_inflate_generic_method): Interface method
20910         don't have a header.
20911
20912         * reflection.c (mono_image_get_methodspec_token): Take an
20913         additional `MonoGenericInst *' argument instead of reading it from
20914         the header; this is necessary to support interfaces.
20915         (mono_image_create_token): Pass the `MonoGenericInst *' from the
20916         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
20917         (inflated_method_get_object): Take an additional `MonoGenericInst *'
20918         argument.
20919
20920         * reflection.h (MonoReflectionInflatedMethod): Added
20921         `MonoGenericInst *ginst'.
20922
20923 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
20924
20925         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
20926
20927 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
20928
20929         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
20930
20931 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
20932
20933         * reflection.c 
20934         (reflection_methodbuilder_from_method_builder):
20935         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
20936         initialize a ReflectionMethodBuilder structure.
20937         (mono_image_get_methodbuilder_token):
20938         (mono_image_get_ctorbuilder_token): New functions to emit memberref
20939         tokens which point to types in another module inside the same assembly.
20940
20941         * reflection.c: Use the new helper functions.
20942         
20943         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
20944
20945         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
20946         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
20947
20948         * reflection.c (resolution_scope_from_image): Emit a moduleref if
20949         neccesary.
20950
20951         * reflection.c (mono_image_build_metadata): Emit metadata only for the
20952         current module. Emit the manifest only for the main module.
20953
20954         * reflection.c (mono_image_create_token): Add assertion when a 
20955         memberref needs to be created.
20956
20957         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
20958
20959         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
20960         larger buffer for the custom attribute blob. Fixes #50637.
20961         
20962 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20963
20964         * threadpool.c: notify listener on async processing handles after
20965         invoking the async callback. Thanks to Zoltan.
20966
20967 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
20968
20969         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
20970         avoid code duplication.
20971
20972         * reflection.h (MonoDynamicImage): New type which is currently unused,
20973         but will be used through the ref.emit code in place of 
20974         MonoDynamicAssembly.
20975
20976         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
20977         object layout.
20978
20979         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
20980         a MonoDynamicImage instead of just a MonoImage.
20981         
20982         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
20983         icalls to ModuleBuilder but keep their semantics, so they will work
20984         with moduleb->assemblyb. This will change later.
20985         
20986 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
20987
20988         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
20989         object layout.
20990
20991         * reflection.c (mono_image_build_metadata): Avoid creation of a default
20992         main module, since it is now done by the managed code.
20993
20994 2003-11-03  Martin Baulig  <martin@ximian.com>
20995
20996         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
20997         `ginst->klass' here.
20998         (method_encode_methodspec): Don't use the `ginst->generic_method's
20999         klass if it's a generic instance, use `ginst->klass' in this case.
21000
21001 2003-11-03  Martin Baulig  <martin@ximian.com>
21002
21003         * reflection.c (mono_image_get_generic_method_param_info):
21004         Removed, use mono_image_get_generic_param_info() instead.
21005         (mono_image_get_type_info): Write the GenericParam table before
21006         the Method table.  This is neccessary because in the GenericParam
21007         table, type parameters of the class (ie. '!0' etc.) must come
21008         before the ones from its generic methods (ie. '!!0' etc).
21009
21010 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21011
21012         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
21013
21014 2003-11-02  Martin Baulig  <martin@ximian.com>
21015
21016         * reflection.c (create_generic_typespec): Take a
21017         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
21018         the generic parameters from it.
21019
21020 2003-11-02  Martin Baulig  <martin@ximian.com>
21021
21022         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
21023         instead of a `MonoClassField *' since we just need the type.
21024         (create_generic_typespec): New static function.  Creates a
21025         TypeSpec token for a generic type declaration.
21026         (mono_image_get_generic_field_token): New static function.
21027         (mono_image_create_token): If we're a FieldBuilder in a generic
21028         type declaration, call mono_image_get_generic_field_token() to get
21029         the token.
21030
21031 2003-11-02  Martin Baulig  <martin@ximian.com>
21032
21033         * reflection.h
21034         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
21035         `MonoReflectionGenericInst *declaring_type' and
21036         `MonoReflectionGenericInst *reflected_type' fields.
21037
21038         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
21039         `MonoReflectionGenericInst *declaring_type' and a
21040         `MonoReflectionGenericInst *reflected_type' argument instead of a
21041         single `MonoReflectionGenericInst *type' one.  Set
21042         `res->declaring_type' and `res->reflected_type' from them.
21043         (mono_reflection_inflate_field): Likewise.      
21044
21045 2003-11-02  Martin Baulig  <martin@ximian.com>
21046
21047         * class.c (mono_class_setup_vtable): Don't store generic methods
21048         in the vtable.  
21049
21050 2003-11-02  Martin Baulig  <martin@ximian.com>
21051
21052         * reflection.h (MonoReflectionGenericInst): Added
21053         `MonoReflectionType *declaring_type'.
21054
21055         * reflection.c (mono_reflection_bind_generic_parameters): Use
21056         `if (tb->parent)' instead of `klass->parent'.
21057
21058 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
21059
21060         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
21061         with an empty ASSEMBLY table.
21062
21063         * reflection.c (mono_image_build_metadata): Avoid using the same loop
21064         variable in the inner and outer loops.
21065
21066 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
21067
21068         * metadata.h (mono_metadata_make_token): Put parentheses around macro
21069         argument.
21070
21071         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
21072         
21073         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
21074         icalls. Instead, do everything in managed code. This is needed since
21075         it is hard to restore the original domain etc. in unmanaged code in the
21076         presence of undeniable exceptions.
21077
21078         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
21079         New icalls to push and pop appdomain refs.
21080
21081 2003-10-31  Martin Baulig  <martin@ximian.com>
21082
21083         * class.c (inflate_generic_type): Renamed to
21084         mono_class_inflate_generic_type() and made it public.
21085
21086         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
21087         New interncall.
21088
21089         * loader.c (mono_field_from_memberref): Also set the retklass for
21090         typespecs.
21091
21092         * fielder.c (mono_image_get_inflated_field_token): New static
21093         method; creates a metadata token for an inflated field.
21094         (mono_image_create_token, fixup_method): Added support for
21095         "MonoInflatedField".
21096         (fieldbuilder_to_mono_class_field): New static function.
21097         (mono_reflection_inflate_field): New public function.
21098
21099         * reflection.h
21100         (MonoReflectionGenericInst): Added `MonoArray *fields'.
21101         (MonoReflectionInflatedField): New typedef.     
21102
21103 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
21104
21105         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
21106         for Solaris and other platforms without s6_addr16
21107
21108 2003-10-30  Martin Baulig  <martin@ximian.com>
21109
21110         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
21111         argument instead of two.
21112         (mono_class_inflate_generic_signature): Likewise.
21113         (inflate_generic_header): Likewise.
21114         (mono_class_inflate_generic_method): Likewise.  In addition, if
21115         `ginst->klass' is set, it becomes the new `method->klass'.
21116
21117         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
21118         field.
21119
21120         * reflection.c (encode_generic_method_sig): Write a 0xa as the
21121         first byte. [FIXME]
21122         (method_encode_methodspec): If we have generic parameters, create
21123         a MethodSpec instead of a MethodRef.
21124         (fixup_method): Added support for "MonoInflatedMethod" and
21125         "MonoInflatedCtor".
21126         (mono_image_create_token): Added support for "MonoInflatedMethod"
21127         and "MonoInflatedCtor".
21128         (inflated_method_get_object): New static function; returns a
21129         managed "System.Reflection.MonoInflatedMethod" object.
21130         (mono_reflection_bind_generic_method_parameters): Return a
21131         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
21132         (mono_reflection_inflate_method_or_ctor): Likewise.
21133         (mono_image_get_generic_method_param_info): Initialize unused
21134         fields to zero.
21135         (mono_image_get_generic_param_info): Likewise.
21136
21137         * reflection.h (MonoReflectionInflatedMethod): New public
21138         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
21139         "S.R.MonoInflatedCtor" classes.
21140
21141         * loader.c (method_from_memberref): If we're a TypeSpec and it
21142         resolves to a generic instance, inflate the method.
21143
21144 2003-10-28  Dick Porter  <dick@ximian.com>
21145
21146         * object.c (mono_runtime_run_main): Convert command-line arguments
21147         into utf8, falling back to the user's locale encoding to do so.
21148
21149 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
21150
21151         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
21152         at this time.
21153
21154         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
21155
21156         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
21157         up icalls at method definition time. Partially fixes #33569.
21158
21159 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
21160
21161         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
21162         marshalling of arrays. Fixes #50116.
21163
21164         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
21165
21166         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
21167         points to a vtable in the dying appdomain.
21168
21169         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
21170         listeners into unmanaged code inside the lock.
21171
21172         * object.c (mono_class_vtable): Turn off typed allocation in non-root
21173         domains and add some comments.
21174
21175 2003-10-25  Martin Baulig  <martin@ximian.com>
21176
21177         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
21178
21179         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
21180
21181         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
21182         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
21183         currently parsing.  Create the generic class and store it in
21184         `generic_inst->klass' before parsing the type arguments.  This is
21185         required to support "recursive" definitions; see mcs/tests/gen-23.cs
21186         for an example.
21187         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
21188         to support recursive typespec entries.
21189
21190         * class.c (mono_class_setup_parent): If our parent is a generic
21191         instance, we may get called before it has its name set.
21192         (mono_class_from_generic): Splitted into
21193         mono_class_create_from_generic() and mono_class_initialize_generic().
21194
21195 2003-10-25  Martin Baulig  <martin@ximian.com>
21196
21197         * icall.c (ves_icall_Type_BindGenericParameters): Return a
21198         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
21199         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
21200         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
21201
21202         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
21203         (create_typespec): Likewise.
21204         (mono_reflection_bind_generic_parameters): Return a
21205         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
21206         (mono_reflection_inflate_method_or_ctor): New public function.
21207
21208         * reflection.h (MonoReflectionGenericInst): New typedef.        
21209
21210 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
21211
21212         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
21213         inside the domain lock. Fixes #49993.
21214         
21215         * object.c (mono_class_vtable): When typed allocation is used, 
21216         allocate vtables in the GC heap instead of in the mempool, since the
21217         vtables contain GC descriptors which are used by the collector even
21218         after the domain owning the mempool is unloaded.
21219
21220         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
21221
21222         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
21223         reflect what it does. Also invalidate mempools instead of freeing
21224         them if a define is set.
21225
21226         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
21227         of the appdomain.
21228         
21229         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
21230         hold the finalizable objects in this domain.
21231
21232         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
21233         appdomain.
21234
21235         * appdomain.c (mono_domain_set): New function to set the current
21236         appdomain, but only if it is not being unloaded.
21237
21238         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
21239         appdomain which is being unloaded.
21240         
21241         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
21242         unloading of the root appdomain.
21243
21244         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
21245         icall to execute a method in another appdomain. Intended as a 
21246         replacement for InternalSetDomain, which can confuse the code 
21247         generation in the JIT.
21248
21249         * appdomain.c (mono_domain_is_unloading): New function to determine
21250         whenever an appdomain is unloading.
21251
21252         * appdomain.c (mono_domain_unload): New function to correctly unload
21253         an appdomain.
21254
21255         * assembly.c (mono_assembly_load_references): Check that an assembly
21256         does not references itself.
21257
21258         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
21259         domain manually, it asks the finalizer thread to do it, then waits for
21260         the result. Also added a timeout.
21261
21262         * icall.c: Register the new icalls.
21263
21264         * threads.h threads.c: Export the mono_gc_stop_world and 
21265         mono_gc_start_world functions.
21266         
21267         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
21268         function to fill out the mempool with 0x2a.
21269
21270 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
21271
21272         * reflection.h (MonoReflectionMethodAux): New structure to store
21273         information which is rarely used, thus is not in the MonoMethod
21274         structure.
21275
21276         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
21277         store the aux info.
21278
21279         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
21280         and marshalling info into the aux structure.
21281
21282         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
21283         from the aux structure.
21284
21285         * loader.c (mono_method_get_param_names): Retrieve the param names from
21286         the aux structure.
21287         
21288 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
21289
21290         * exception.h exception.c: Add AppDomainUnloadedException && fix 
21291         warning.
21292
21293 2003-10-21  Dick Porter  <dick@ximian.com>
21294
21295         * socket-io.c
21296         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
21297         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
21298
21299 2003-10-21  Martin Baulig  <martin@ximian.com>
21300
21301         * reflection.c (mono_reflection_bind_generic_parameters):
21302         `klass->parent' is NULL for interfaces.
21303
21304 2003-10-21  Martin Baulig  <martin@ximian.com>
21305
21306         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
21307
21308 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
21309
21310         * exception.c (mono_exception_from_name_msg): New helper function for
21311         creating exceptions and initializing their message field.
21312
21313         * exception.c: Simplify functions using the new helper.
21314
21315         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
21316         New function.
21317
21318         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
21319         mono_raise_exception, since otherwise gcc doesn't generate the function
21320         epilog for raise_exception, confusing the stack unwinding in the JIT.
21321         Fixes #45043.
21322
21323         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
21324         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
21325         Fixes #49499.
21326
21327 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21328
21329         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
21330         utf8.
21331
21332 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
21333
21334         * icall.c: Removed GetUninitializedObject method because
21335           AllocateUninitializedClassInstance does the same.
21336
21337 2003-10-18  Martin Baulig  <martin@ximian.com>
21338
21339         * class.c (inflate_generic_signature): Renamed to
21340         mono_class_inflate_generic_signature() and made it public.
21341         (my_mono_class_from_generic_parameter): New static function; if we
21342         don't already have the generic parameter's MonoClass, create a
21343         very simple one which is just used internally in the runtime and
21344         not passed back to managed code.
21345
21346         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
21347
21348         * metadata.h (MonoMethodSignature): Moved the
21349         `MonoGenericParam *gen_params' to the MonoMethodHeader.
21350         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
21351
21352         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
21353         ves_icall_MonoMethod_GetGenericArguments(); this is now an
21354         interncall on the MonoMethod class, not on MethodInfo.
21355         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
21356         calling mono_reflection_bind_generic_method_parameters() directly.
21357
21358         * loader.c (mono_method_get_signature): If this is a MethodSpec;
21359         return the already computed `method->signature'.
21360         (method_from_methodspec): New static function to load a method
21361         from a MethodSpec entry.
21362         (mono_get_method_from_token): Call the new method_from_methodspec()
21363         for MethodSpec tokens.  
21364         (mono_get_method_from_token): If we're a generic method, load the
21365         type parameters.
21366
21367         * reflection.c (mono_image_get_memberref_token): Allow
21368         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
21369         table.
21370         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
21371         (mono_image_create_token): First check whether it's a generic
21372         method (so we'd need to create a MethodSpec), then do the other
21373         two alternatives.
21374         (mono_reflection_bind_generic_method_parameters): Return a
21375         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
21376         called directly from the interncall.
21377
21378 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
21379
21380         * reflection.c (load_public_key): Move loading of the public key
21381         into managed code.
21382
21383         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
21384
21385         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
21386         fields.
21387
21388         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
21389         culture, hash_alg and public_key. Fixes #49555.
21390
21391 2003-10-17  Martin Baulig  <martin@ximian.com>
21392
21393         * class.h (MonoGenericInst): Moved this declaration here and added
21394         `MonoMethod *generic_method'.
21395
21396         * icall.c
21397         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
21398         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
21399
21400         * metadata.c (mono_metadata_type_equal): Two types of
21401         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
21402         index; ie. don't compare the address of the `MonoGenericParam'
21403         structure.
21404         (mono_metadata_load_generic_params): Removed the `MonoMethod
21405         *method' argument.
21406
21407         * metadata.h (MonoGenericInst): Moved declaration to class.h.
21408         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
21409
21410         * reflection.c (method_encode_signature): Encode the number of
21411         generic parameters.
21412         (encode_generic_method_sig): New static function.
21413         (method_encode_methodspec): New static function; creates an entry
21414         in the MethodSpec table for a generic method.
21415         (mono_image_get_methodspec_token): New static function.
21416         (mono_image_create_token): Call mono_image_get_methodspec_token()
21417         for generic methods.
21418         (mono_reflection_bind_generic_method_parameters): New public
21419         function.  Instantiates a generic method.
21420
21421 2003-10-16  Martin Baulig  <martin@ximian.com>
21422
21423         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
21424         *gen_params' here from MonoMethodHeader.
21425
21426         * metadata.c (mono_metadata_parse_method_signature): If we have
21427         generic parameters, initialize `method->gen_params' and then set
21428         the correct `type->data.generic_param' in all the parameters.
21429
21430 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
21431
21432         * threads.c (mono_threads_get_default_stacksize): New function to 
21433         return the default stacksize.
21434
21435         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
21436         termination of the finalizer thread, since the previous method had
21437         race conditions. Fixes #49628.
21438
21439         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
21440         as for the other managed threads.
21441
21442 2003-10-16  Martin Baulig  <martin@ximian.com>
21443
21444         * class.c (inflate_generic_signature): Copy `generic_param_count'
21445         and `gen_params'.
21446
21447         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
21448         New interncall.
21449
21450         * metadata.c (mono_metadata_parse_method_signature): Actually set
21451         the `method->generic_param_count' here.
21452         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
21453
21454 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
21455
21456         * object.h: Add a new field to TypedRef to simplify the implementation
21457         of the REFANY opcodes in the JIT.
21458
21459         * icall.c: Make use of the new field.
21460
21461         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
21462         dynamically.
21463
21464 2003-10-15  Martin Baulig  <martin@ximian.com>
21465
21466         * class.c (mono_class_from_gen_param): Renamed to
21467         mono_class_from_generic_parameter() and moved most of the
21468         functionality from mono_reflection_define_generic_parameter()
21469         here; ie. we create a "real" class here.
21470         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
21471         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
21472         previously been called.
21473
21474         * class.h (MonoGenericParam): Moved the declaration of this struct
21475         here from metadata.h and added `MonoMethod *method'.
21476
21477         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
21478         interncall.
21479
21480         * loader.c (mono_get_method_from_token): If we have any generic
21481         parameters, call mono_metadata_load_generic_params() to read them
21482         from the MONO_TABLE_GENERICPAR.
21483
21484         * metadata.c (mono_metadata_load_generic_params): Added
21485         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
21486
21487         * metadata.h (MonoMethodSignature): Replaced
21488         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
21489         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
21490
21491         * reflection.c (mono_reflection_define_generic_parameter): Moved
21492         most of the functionality into the new
21493         mono_class_from_generic_parameter(); set the `method' field if
21494         we're a method parameter.       
21495
21496 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
21497
21498         * marshal.c (emit_struct_conv): if native size is 0
21499         emit no code.
21500
21501 2003-10-14  Martin Baulig  <martin@ximian.com>
21502
21503         * icall.c: The generics API has changed in the spec since it was
21504         added to System.Type; these modifications make it match the spec
21505         again.
21506         (ves_icall_Type_GetGenericParameters): Renamed to
21507         `ves_icall_Type_GetGenericArguments'.
21508         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
21509         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
21510         `ves_icall_MonoType_get_HasGenericArguments'.
21511         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
21512         `ves_icall_MonoType_get_IsGenericParameter'.
21513         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
21514         this is no interncall anymore.
21515         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
21516         `ves_icall_TypeBuilder_get_IsGenericParameter'.
21517
21518 2003-10-14  Martin Baulig  <martin@ximian.com>
21519
21520         * reflection.c (mono_reflection_bind_generic_parameters): Also
21521         inflate generic methods if we're reading the class from IL.
21522
21523 2003-10-13  Martin Baulig  <martin@ximian.com>
21524
21525         * reflection.c (mono_reflection_define_generic_parameter): This
21526         method isn't called directly from the icall anymore; take a
21527         `MonoReflectionAssemblyBuilder *' so we can use this for type and
21528         method generic parameters.
21529         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
21530         (method_builder_encode_signature): Encode generic parameters.
21531         (mono_image_get_method_info): Write generic params to the
21532         MONO_TABLE_GENERICPARAM table.
21533
21534         * reflection.h (MonoReflectionMethodBuilder): Added
21535         `MonoArray *generic_params'.
21536
21537         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
21538
21539         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
21540         wrapper for mono_reflection_define_generic_parameter().
21541         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
21542
21543 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
21544
21545         * marshal.h: Add missing function to fix build.
21546
21547         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
21548         the SetLastError pinvoke attribute.
21549
21550         * marshal.c (mono_marshal_set_last_error): New helper function called
21551         by the generated code.
21552         
21553         * marshal.c (mono_mb_emit_branch): New helper function.
21554
21555         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
21556
21557         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
21558         classes as parameters and return values of delegates. Fixes #29256. 
21559
21560 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
21561
21562         * locales.c: use gint32 in non HAVE_ICU case
21563
21564 2003-10-11  Martin Baulig  <martin@ximian.com>
21565
21566         * mono-debug.c (mono_debug_add_method): Added a workaround for
21567         bug #48591.
21568
21569 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
21570
21571         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
21572         delegates passed to native code must use the STDCALL calling 
21573         convention. Fixes #35987.
21574
21575 2003-10-10  Martin Baulig  <martin@ximian.com>
21576
21577         * class.c (inflate_generic_type): If we're inflating for a generic
21578         type instance (and not for a generic method), return
21579         MONO_TYPE_MVAR unchanged.
21580
21581 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21582
21583         * string-icalls.c: Join ignores null strings in the source array.
21584         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
21585         * threads.c: GetAvailableTheads is slightly more accurate.
21586
21587 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
21588
21589         * threads.h threads.c : add mono_threads_set_default_stacksize
21590         and pass default to CreateThread calls.
21591
21592 2003-10-09  Dick Porter  <dick@ximian.com>
21593
21594         * icall.c:
21595         * locales.h:
21596         * locales.c: Internal calls for constructing CultureInfo and
21597         related objects from libicu (if its available.)
21598
21599 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
21600
21601         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
21602
21603 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21604
21605         * threadpool.c: added an argument to async_invoke_thread that is the
21606         item to process, pass the MonoAsyncResult to the thread start function
21607         when creating a new thread. This way we don't need to acquire any lock
21608         when we're creating a new thread. Readded a semaphore for faster
21609         response times (instead of that Sleep i added).
21610
21611 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
21612
21613         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
21614         get daylight change dates better on Windows, fix handling
21615         of platforms without tm_gmtoff.
21616
21617 2003-10-06  Martin Baulig  <martin@ximian.com>
21618
21619         * class.c (inflate_generic_method): Renamed to
21620         mono_class_inflate_generic_method() and made public.
21621         (mono_class_init): Don't inflate the generic methods here.
21622         (mono_class_from_generic): Added `gboolean inflate_methods'
21623         argument.  Inflate the methods here.
21624
21625         * loader.c (mono_method_get_param_names): Ignore instances of
21626         generic types for the moment.
21627
21628         * reflection.c (fixup_method): Added support for inflated methods.
21629         (mono_image_create_token): Use mono_image_get_methodref_token()
21630         for inflated methods.
21631         (mono_custom_attrs_from_param): Ignore instances of generic types
21632         for the moment.
21633         (mono_reflection_bind_generic_parameters): New public function.
21634         Moved all the functionality from
21635         ves_icall_Type_BindGenericParameters() here and added support for
21636         dynamic types.
21637         (mono_reflection_define_generic_parameter): Initialize
21638         `klass->methods' here.
21639
21640         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
21641         functionality into mono_reflection_define_generic_parameter().
21642         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
21643         TypeBuilder, return that TypeBuilder.
21644
21645 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21646
21647         * appdomain.c: removed mono_delegate_semaphore.
21648
21649         * threadpool.c:
21650         (mono_thread_pool_add): moved hash table creation inside and the thread 
21651         creation outside of the critical region.
21652         (mono_thread_pool_finish): removed obsolete code.
21653         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
21654         continue or exit the thread depending on the queue.
21655
21656 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
21657
21658         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
21659         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
21660         handle more bool marshalling options
21661
21662 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
21663
21664         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
21665         arrays of structs. Also add a more descriptive error message when
21666         a structure member is marshalled as LPArray.
21667
21668 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
21669
21670         * marshal.c (mono_marshal_get_native_wrapper): Add support for
21671         marshalling arrays of complex types. Fixes #29098. Also remove an
21672         usused and incomplete function.
21673
21674 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
21675
21676         * gc.c: report heap_size - free_bytes as total memory allocated
21677         (bug#49362).
21678
21679 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
21680
21681         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
21682         fix timezone handling problems on Windows.
21683         
21684         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
21685         asserts when the year is outside the range handled by ms the functions.
21686
21687         * class.c (setup_interface_offsets): If the class is an interface,
21688         fill out its interface_offsets slot.
21689
21690 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21691
21692         * threadpool.c: mark threadpool threads as background.
21693
21694 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
21695
21696         * decimal.c - define DECINLINE to nothing if not using GCC
21697
21698 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
21699
21700         * assembly.c: More refcount fixes.
21701
21702 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21703
21704         * string-icalls.c: if we're not trimming, return the same string.
21705         When not splitting, don't create a new string.
21706
21707 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21708
21709         * image.c:
21710         (mono_image_open): increment the ref_count inside the critical section.
21711
21712 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
21713
21714         * image.c (mono_image_open): Fix reference counting bug.
21715
21716 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
21717
21718         * marshal.c (mono_marshal_type_size) struct alignment changed for 
21719         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
21720         64bits. Avoid leak in mono_marshal_get_native_wrapper when
21721         mono_lookup_pinvoke_call throws.        
21722
21723 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
21724
21725         * reflection.c (mono_reflection_parse_type): Fix #49114.
21726
21727         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
21728         temporary workaround for cygwin header problem.
21729
21730         * object.c (mono_object_isinst): Synchronize this with the code
21731         generated by the JIT for casts.
21732
21733 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
21734
21735         * reflection.c (encode_type): Fix #38332.
21736
21737 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
21738
21739         * marshal.c (mono_marshal_method_from_wrapper): New function to return
21740         the original method from the wrapper method.
21741
21742 2003-09-25  Martin Baulig  <martin@ximian.com>
21743
21744         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
21745         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
21746         (ves_icall_Type_get_IsGenericInstance): New interncall.
21747
21748 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
21749
21750         * object.c: fix cast warning in big endian code.
21751
21752 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
21753
21754         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
21755         
21756 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21757
21758         * assembly.c: don't call check_env from mono_assembly_load. It's
21759         already done once in mono_assemblies_init and may cause headaches when
21760         multiple threads are loading assemblies.
21761
21762 2003-09-19  Martin Baulig  <martin@ximian.com>
21763
21764         * reflection.c (mono_reflection_define_generic_parameter): Don't
21765         allocate `klass->methods', set `klass->flags' to
21766         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
21767
21768 2003-09-18  Martin Baulig  <martin@ximian.com>
21769
21770         * class.c (mono_class_init): Don't create `class->methods' if it's
21771         already initialized.
21772
21773         * metadata.c (mono_metadata_load_generic_params): Make this
21774         actually work.
21775
21776         * reflection.c (mono_reflection_define_generic_parameter): Set
21777         parent class and interfaces from the constraints.
21778
21779         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
21780         to keep this struct in sync with the declaration in TypeBuilder.cs.
21781
21782 2003-09-17  Martin Baulig  <martin@ximian.com>
21783
21784         * metadata.h (MonoType): Replaced the data's `int type_param'
21785         field with `MonoGenericParam *generic_param'.
21786         (MonoGenericParam): Added `MonoClass *klass'.
21787
21788         * class.c (mono_class_from_gen_param): Removed the
21789         `MonoImage *image' and `int type_num' arguments.
21790
21791         * metadata.c (mono_metadata_parse_generic_param): New static
21792         method; creates a MonoGenericParam which just contains the index.
21793         (do_mono_metadata_parse_type): Call
21794         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
21795         MONO_TYPE_MVAR.
21796
21797         * reflection.c (mono_image_typedef_or_ref): Generic type
21798         parameters may be in the same assembly, but never use a typedef
21799         for them.
21800         (mono_reflection_define_generic_parameter): We're now creating a
21801         "real" class for the type parameter; it's now safe to call
21802         mono_class_from_mono_type() on the class'es type, it'll do the
21803         right thing.
21804
21805 2003-09-16  Martin Baulig  <martin@ximian.com>
21806
21807         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
21808         `symfile->range_entry_size' and `symfile->class_entry_size' here;
21809         the `symfile' data structure must be fully initialized before it
21810         gets added to the table.
21811
21812 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
21813
21814         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
21815
21816         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
21817         class init trampolines.
21818
21819 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
21820
21821         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
21822         to the built-in profiler to turn off time and allocation profiling
21823         respectively.
21824
21825 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
21826
21827         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
21828         g_direct_equal.
21829
21830         * debug-helpers.c (mono_method_full_name): Print the wrapper type
21831         in human readable form.
21832
21833 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
21834
21835         * reflection.c icall.c: Fixed warnings.
21836
21837         * image.c (load_class_names): Use a temporary hash table to hold the
21838         namespaces in order to avoid doing many string comparisons.
21839
21840         * image.h: Fix typo.
21841
21842         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
21843         Pass NULL instead of g_direct_equal to the GHashTable constructor 
21844         since the NULL case is short-circuited inside g_hash_table_lookup, 
21845         leading to better performance.  
21846
21847         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
21848         obtain the first custom attribute for a given index. Depends on the
21849         CustomAttribute table being sorted by the parent field.
21850
21851         * reflection.c (mono_custom_attrs_from_index): Use the new function 
21852         for better performance.
21853
21854 2003-09-07  Martin Baulig  <martin@ximian.com>
21855
21856         * class.c (mono_class_init): If we're a generic instance, inflate
21857         all our methods instead of loading them from the image.
21858         (mono_class_from_generic): Set `class->methods = gklass->methods'.
21859
21860 2003-09-07  Martin Baulig  <martin@ximian.com>
21861
21862         * mono-debug-debugger.c: Added support for constructors.
21863
21864 2003-09-06  Martin Baulig  <martin@ximian.com>
21865
21866         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
21867         New interncall.
21868
21869         * reflection.c (mono_reflection_setup_generic_class): Call
21870         ensure_runtime_vtable() to create the vtable.
21871
21872 2003-09-05  Martin Baulig  <martin@ximian.com>
21873
21874         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
21875         MONO_TYPE_MVAR.
21876
21877 2003-09-04  Martin Baulig  <martin@ximian.com>
21878
21879         * reflection.c (mono_reflection_define_generic_parameter): Generic
21880         parameters start with zero.
21881
21882 2003-09-04  Martin Baulig  <martin@ximian.com>
21883
21884         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
21885
21886         * reflection.h (MonoReflectionGenericParam): New typedef.
21887         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
21888         the generic parameters from the managed TypeBuilder.
21889
21890         * reflection.c (mono_reflection_define_generic_parameter): New function.
21891         (mono_reflection_create_runtime_class): Encode generic parameters.
21892         (mono_reflection_setup_generic_class): New function; this is
21893         called after adding adding all generic params to the TypeBuilder.
21894         (encode_type): Added MONO_TYPE_VAR.
21895
21896 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
21897
21898         * class.h class.c (mono_class_needs_cctor_run): Moved this method
21899         here from the JIT.
21900
21901         * assembly.h assembly.c: Moved the AOT loading code into an assembly
21902         load hook.
21903
21904 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
21905
21906         * reflection.h reflection.c class.h class.c: Delete duplicate 
21907         definition of mono_type_get_name () from reflection.c and export the
21908         one in class.c.
21909
21910         * class.c: Class loading fixes from Bernie Solomon 
21911         (bernard@ugsolutions.com).
21912
21913         * reflection.c: Endianness fixes from Bernie Solomon 
21914         (bernard@ugsolutions.com).
21915         
21916 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
21917
21918         * assembly.h assembly.c: Define a file format version for AOT
21919         libraries.
21920         
21921         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
21922
21923         * appdomain.h (MonoJitInfo): New field to determine whenever the
21924         code is domain neutral.
21925         
21926 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
21927
21928         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
21929
21930 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
21931
21932         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
21933         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
21934         Avoid caching the result since strings must be domain specific. Fixes
21935         #48050.
21936
21937 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
21938
21939         * marshal.c (mono_marshal_init): Make this callable multiple times
21940         since it is hard to find a correct place to call it.
21941
21942         * object.c (mono_runtime_class_init): Execute static constructors in
21943         the correct appdomain.
21944
21945         * image.c (build_guid_table): Handle the case when multiple images have
21946         the same GUID.
21947
21948 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21949
21950         * icall.c: added a couple of icalls for System.Web.
21951
21952 2003-08-28  Martin Baulig  <martin@ximian.com>
21953
21954         * icall.c (ves_icall_Type_BindGenericParameters): Use
21955         `klass->generic_inst' instead of `&klass->byval_arg' in the
21956         mono_type_get_object() call.  The returned type must be
21957         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
21958
21959 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
21960
21961         * NOTES: New file.
21962
21963         * object.c (mono_class_proxy_vtable): Make it thread safe.
21964
21965         * pedump.c: Fix warning.
21966
21967         * object.c appdomain.h: Get rid of metadata_section. 
21968         It is no longer needed and it was causing deadlocks with domain->lock.
21969
21970         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
21971
21972 2003-08-26  Martin Baulig  <martin@ximian.com>
21973
21974         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
21975
21976 2003-08-26  Martin Baulig  <martin@ximian.com>
21977
21978         * pedump.c (main): Call mono_metadata_init(),
21979         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
21980         and mono_loader_init().
21981
21982 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
21983
21984         * loader.h: Add missing include to fix build.
21985
21986         * image.h: mono_image_load_references is no more.
21987
21988         * assembly.c: Reworked assembly loading to make it really thread safe.
21989         After these changes, the assembly returned by mono_assembly_open is
21990         fully initialized, i.e. all its references assemblies are loaded.
21991
21992         * assembly.c (mono_image_load_references): Renamed to 
21993         mono_assembly_load_references, and made private, since clients no
21994         longer need to call it.
21995
21996         * class.c: Removed calls to mono_assembly_load_references, since it was
21997         a source of deadlocks.
21998
21999         * loader.h loader.c class.h class.c: Protect data structures using a 
22000         new lock, the loader lock.
22001
22002         * class.c (mono_class_setup_vtable): Create temporary hash tables and
22003         GPtrArrays only when needed.
22004
22005         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
22006         into empty structures by mcs. Fixes pinvoke7.cs.
22007         
22008         * domain.c (mono_init): Call a new initialization function.
22009
22010         * appdomain.c (mono_runtime_init): Call the new initializer function
22011         of the marshal module.
22012
22013         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
22014         inserted into empty structures by mcs. Fixes pinvoke7.cs.
22015
22016         * marshal.h marshal.c: Added locks around the wrapper caches to make
22017         this module thread safe.
22018
22019         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
22020         this argument. Fixes pinvoke1.exe.
22021
22022 2003-08-25  Lluis Sanchez <lluis@ximian.com>
22023
22024         * object.h: Added call_type field to MonoMethodMessage and the corresponding
22025         enumeration of values. Removed fields to store remote call output values in
22026         MonoAsyncResult. Not needed any more.
22027         * object.c: Initialize call_type and async_result fields in mono_message_init.
22028         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
22029         dispatching the message.
22030         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
22031         async call to finish. To do it use a message with EndInvoke call type.
22032
22033 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
22034
22035         * loader.h loader.c (mono_method_hash_marhal_info): New function which
22036         determines whenever a method has marshalling info.
22037
22038 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22039
22040         * assembly.c: fix the build on windows.
22041
22042 2003-08-22 Lluis Sanchez <lluis@ximian.com>
22043
22044         * object.cs: Fixed bug #47785.
22045
22046 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
22047
22048         * string-icalls.c (StringReplace): If their are no occurances of
22049         the old string found return a reference to the supplied
22050         string. This saves some memory and matches MS behavoir.
22051         
22052 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22053
22054         * socket-io.c: fixed compilation for systems that define AF_INET6
22055         and don't define SOL_IP/SOL_IPV6.
22056
22057 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
22058
22059         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
22060         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
22061
22062         * rawbuffer.c rawbuffer.h: Make this module thread safe.
22063
22064         * domain.c: Make this module thread safe.
22065
22066         * domain.c (mono_init): Call new initialization function.
22067
22068         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
22069         reference types too. Fixes #38812.
22070
22071         * image.c (mono_image_init): Fixed warnings.
22072
22073         * class.c (mono_class_from_typeref): Handle assembly load failure
22074         correctly.
22075
22076         * appdomain.c (add_assemblies_to_domain): Handle the case when
22077         the references of an assembly are not yet loaded.
22078
22079         * metadata.c image.c assembly.c: Moved initialization of global
22080         variables to a separate function called at startup since lazy 
22081         initialization of these variables is not thread safe.
22082         
22083         * image.c assembly.c: Made this module thread safe by adding locks in 
22084         the appropriate places.
22085
22086         * domain.c (mono_init): Call the new initialization functions of the
22087         three modules.
22088
22089 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
22090
22091         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
22092           make a direct call. It is proxy's work to make the call asynchronous.
22093           mono_delegate_end_invoke(): If the targe is a proxy, just collect
22094           the return values.
22095         * object.cs: mono_method_call_message_new(): read AsyncResult and
22096           state object from parameters list, if this info is requested.
22097         * object.h: Added fields to store remote call output values in
22098           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
22099
22100 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
22101
22102         * object.h: add needed fields to MonoThread.
22103         * threads.c, threads.h: allow registering a function to cleanup data
22104         allocated per thread by the JIT.
22105
22106 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22107
22108         * loader.h: portability fix by Bernie Solomon
22109         * <bernard@ugsolutions.com>.
22110
22111 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
22112
22113         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
22114         return a MonoArray. This simplifies the code and also ensures that
22115         the cache allways contains an object reference as a value.
22116
22117         * icall.c (ves_icall_get_parameter_info): Simplified using the new
22118         function.
22119
22120 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22121
22122         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
22123         fixes a problem with byte ordering when getting the address family for
22124         a socket.
22125
22126 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
22127
22128         * .cvsignore: Added monosn.
22129
22130         * reflection.h reflection.c loader.c: Added support for parameter
22131         marshalling to dynamically created types. Fixes #47295.
22132
22133 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
22134
22135         * rand.c: remove useless warnings.
22136
22137 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
22138
22139         * class.c: implemented ldtoken for methods and fieldrefs.
22140
22141 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22142
22143         * threadpool.c: when mono_async_invoke was called, no one took care of
22144         monitoring the queue. So if the method invoked took some time and we
22145         got new async invoke requests after 500 ms (the thread created waited
22146         that long in WaitForSingleObject), the new async invoke was not called
22147         until the previous one finished.
22148
22149         This is fixed now. Thanks to Totte for helping with it.
22150
22151 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22152
22153         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
22154
22155 2003-08-11  Martin Baulig  <martin@ximian.com>
22156
22157         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
22158
22159 2003-08-06  Martin Baulig  <martin@ximian.com>
22160
22161         * mono-debug-debugger.c: Added support for static fields,
22162         properties and methods.
22163
22164 2003-08-06  Martin Baulig  <martin@ximian.com>
22165
22166         * mono-debug-debugger.c: Don't store the MonoString's vtable to
22167         make this work for applications with multiple application domains.
22168
22169 2003-08-04  Martin Baulig  <martin@ximian.com>
22170
22171         * mono-debug-debugger.c: Completely reworked the type support; the
22172         most important thing is that we're now just using one single
22173         `MonoType' instance per type.
22174
22175 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
22176
22177         * mono-endian.h, mono-endian.c, icall.c: Added icall
22178         ves_icall_System_Double_AssertEndianity to assert double word endianity
22179         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
22180
22181 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22182
22183         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
22184         support, icalls and fixes.
22185
22186 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
22187
22188         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
22189         classes that are a punctuation character in .NET is not the same a
22190         g_unichar_ispunct.
22191
22192 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22193
22194         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
22195
22196 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
22197
22198         * icall.c: Add new MemCopy internalcall.
22199         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
22200         Simplified code; It is not necessary to handle all the cases here,
22201         as the C# code takes care of it.  Only handle the case of the name
22202         resource embedded into the assembly.
22203
22204         Changed signature to return the data pointer and the size of the
22205         data. 
22206
22207 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
22208
22209         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
22210         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
22211
22212 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
22213
22214         * socket-io.c: ignore EINTR error in select.
22215
22216 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
22217
22218         * class.h, class.c: removed unused subclasses field in MonoClass.
22219
22220 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
22221
22222         * icall.c: improve fix of get_base_definition(). If the parent class
22223           doesn't have the mehod, look at the parent of the parent.
22224         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
22225           to check if a parameter is an in or out parameter
22226           (PARAM_ATTRIBUTE_IN is not set by default).
22227           mono_method_return_message_restore(): Use mono_class_value_size to
22228           get the size of a value type. mono_type_stack_size (parameterType)
22229           does not return the correct value if parameterType is byRef.
22230           mono_load_remote_field(), mono_load_remote_field_new(),
22231           mono_store_remote_field(), mono_store_remote_field_new():
22232           raise exception if the remote call returns an exception.
22233
22234 2003-07-28  Martin Baulig  <martin@ximian.com>
22235
22236         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
22237         method.  This is a wrapper around mono_runtime_invoke() which
22238         boxes the instance object if neccessary.
22239
22240 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22241
22242         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
22243         metadata.h, row-indexes.h, verify.c: first cut of generics support.
22244
22245 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22246
22247         * icall.c: disable mcs bug workaround.
22248
22249 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
22250
22251         * object.c (mono_runtime_class_init): Take the metadata_section
22252         mutex before obtaining the domain mutex.
22253
22254         * appdomain.h: Added definition of metadata_section mutex here. 
22255
22256         * object.c: define metadata_mutex here.
22257
22258 2003-07-24  Ravi Pratap  <ravi@ximian.com>
22259
22260         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
22261         fixed.
22262
22263 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
22264
22265         * reflection.c: Fix bug #46669
22266
22267 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22268
22269         * exception.c:
22270         * exception.h:
22271         * icall.c:
22272         * object.h: fill in the type name for TypeLoadException.
22273
22274 2003-07-23  Ravi Pratap  <ravi@ximian.com>
22275
22276         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
22277         relationship between TypeBuilders while compiling corlib) and bug
22278         45993 (Array types returned from the runtime while compiling
22279         corlib were from the loaded corlib).
22280
22281 2003-07-22  Martin Baulig  <martin@ximian.com>
22282
22283         * mono-debug-debugger.c: Reworked the type support a bit more;
22284         distinguish between types and classes.
22285
22286 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
22287
22288         * icall.c: add IsArrayImpl icall.
22289
22290 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
22291
22292         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
22293         initializing real_size only once. Also fix bug #46602.
22294
22295 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
22296
22297         * object.c: Renamed mono_metadata_section to metadata_section.
22298
22299 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
22300
22301         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
22302           empty array if the type is an array. Fixed.
22303           ves_icall_MonoMethod_get_base_definition: if the base method
22304           is abstract, get the MethodInfo from the list of methods of
22305           the class.
22306         * reflection.c: ParameterInfo.PositionImpl should be zero-based
22307           and it was 1-based. Fixed in mono_param_get_objects.
22308
22309 2003-07-20  Martin Baulig  <martin@ximian.com>
22310
22311         * mono-debug.h: Set version number to 31.
22312         (mono_debug_init): Added `MonoDomain *' argument.
22313
22314         * mono-debug-debugger.c: Reworked the type support; explicitly
22315         tell the debugger about builtin types; pass the `klass' address to
22316         the debugger.
22317
22318 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
22319
22320         * image.c: Allow new metadata tables to be loaded without a
22321         warning. Also update the warning message to give the new constant value.
22322                 
22323 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
22324
22325         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
22326         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
22327         array type representation changes.
22328
22329 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
22330
22331         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
22332         on Environment.Exit () call.
22333
22334 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
22335
22336         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
22337         requires a matching corlib.
22338
22339 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
22340
22341         * Changelog: My editor decided to add a CR to each line. Sorry about that.
22342           Committed again without the CRs.
22343         
22344 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
22345
22346         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
22347           getting it from the "this" socket instance. Did not work
22348           if the socket is a subclass of Socket.
22349           Also fixed bug #35371.
22350
22351 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
22352
22353         * metadata.c: fixed size for TypedByRef.
22354         * loader.c: when searching for a method, consider the vararg amrker.
22355         * unicode.c, decimal.c: constify some arrays.
22356
22357 2003-07-15  Dick Porter  <dick@ximian.com>
22358
22359         * socket-io.c: Fixed compilation for gcc < 3.2.
22360
22361         Fixed compilation for machines that don't have AF_INET6 (thanks to
22362         Bernie Solomon <bernard@ugsolutions.com> for that part.)
22363
22364         Fixed compile warnings.
22365         
22366         Fixed formatting and line endings.
22367
22368 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
22369
22370         * socket-io.h:
22371         * socket-io.c: Added IPv6 support.
22372
22373 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
22374
22375         * class.c (mono_class_is_assignable_from): New function to implement
22376         the is_assignable_from logic. Used by mono_object_isinst, 
22377         Type::IsAssignableFrom () and the interpreter.
22378
22379         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
22380         Object, even interfaces.
22381         
22382         * object.c (mono_object_isinst): Implement in terms of 
22383         is_assignable_from.
22384
22385         * icall.c (ves_icall_type_is_assignable_from): New icall.
22386
22387 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
22388
22389         * domain.c (foreach_domain): fix compiler warning.
22390
22391 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
22392
22393         * image.c (load_metadata_ptrs): use g_strndup because strndup is
22394         not available on all plattforms
22395
22396 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
22397
22398         * image.h image.c: Store the metadata version string in MonoImage.
22399         * icall.c: New icall to retrieve the image version.
22400         * reflection.c (create_dynamic_image): Fill in the image version field
22401         * reflection.c (build_compressed_metadata): Use the image version
22402         from the image structure.
22403
22404 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22405
22406         * appdomain.c: modified comment.
22407         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
22408         That will be its last iteration when mono_gc_cleanup is called from
22409         mono_runtime_cleanup and before the domain is unloaded.
22410
22411         Fixes bug #45962.
22412
22413 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
22414
22415         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
22416         attributes.
22417
22418 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22419
22420         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
22421         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
22422         Bernie Solomon <bernard@ugsolutions.com>.
22423
22424 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
22425
22426         * object.c, object.h: provide mono_object_new_fast() for faster
22427         allocation in some special cases.
22428
22429 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
22430
22431         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
22432         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
22433
22434 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
22435
22436         * threadpool.c: fix leaks.
22437
22438 2003-07-01  Dick Porter  <dick@ximian.com>
22439
22440         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
22441         using MonoGHashTables.  Fixes threadpool bug posted to list.
22442
22443 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
22444
22445         * image.h, image.c: added support to load an assembly from a byte array.
22446         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
22447         assembly bundle support.
22448
22449 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
22450
22451         * threadpool.c (mono_thread_pool_add): keep a reference to the
22452         AsyncResult to prevent GC
22453
22454 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
22455
22456         * class.c: leak fix.
22457
22458 2003-06-25  Dick Porter  <dick@ximian.com>
22459
22460         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
22461         for the async object, the WaitHandle object will close the handle.
22462         Fixes bug 45321.
22463
22464 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
22465
22466         * class.c: in mono_array_class_get (), lookup from the hash with the
22467         same type we insert: this works around a bug in
22468         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
22469         lluis. The real fix will have to wait for after the release.
22470
22471 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
22472
22473         * icall.c: fix memory leak when getting type members.
22474
22475 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
22476
22477         * reflection.c: added more pubtoken special cases.
22478
22479 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
22480
22481         * class.c: handle field offset correctly when class size
22482         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
22483
22484 2003-06-20  Martin Baulig  <martin@ximian.com>
22485
22486         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
22487         *image' field.
22488
22489 2003-06-20  Martin Baulig  <martin@ximian.com>
22490
22491         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
22492
22493 2003-06-20  Martin Baulig  <martin@ximian.com>
22494
22495         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
22496         just distinguish between variables in registers and variables at
22497         an offset relative to a register.
22498
22499 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22500
22501         * icall.c: #ifdef out latest changes until mcs is fixed.
22502
22503 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
22504
22505         * icall.c: return members in metadata order.
22506
22507 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
22508
22509         * icall.c: avoid infinite loop in GetTimeZoneData.
22510
22511 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
22512
22513         * icall.c: added Marshal.Prelink/All icalls.
22514
22515 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
22516
22517         * object.c, object.h: fix warnings and do some overflow checking
22518         when creating arrays.
22519
22520 2003-06-17  Dick Porter  <dick@ximian.com>
22521
22522         * file-io.h:
22523         * file-io.c: File attributes need to be tweaked slightly when
22524         passed from the managed to the w32 world.
22525
22526 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
22527         * profiler.h profiler-private.h profiler.c: Rework last patch
22528         based on suggestion by Paolo.
22529         
22530 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
22531
22532         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
22533         instruction level coverage data collection.
22534         * profiler.h profiler.c (: Added new callback function which can be
22535         used by the profiler to limit which functions should have coverage
22536         instrumentation.
22537         * profiler.c (mono_profiler_load): Call g_module_build_path to
22538         generate the file name of the profiler library.
22539
22540 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22541
22542         * profiler.c, profiler.h, profiler-private.h: added basic block 
22543         coverage profiling API.
22544
22545 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
22546
22547         * reflection.c (mono_reflection_create_runtime_class): Add support
22548         for events in dynamically generated code.
22549
22550         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
22551         not allocated.
22552
22553 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
22554
22555         * icall.c: when getting timezone info, return reasonable values if we
22556         can't get the actual data.
22557
22558 2003-06-14  Dick Porter  <dick@ximian.com>
22559
22560         * threads.c (start_wrapper): Remove the reference to the thread
22561         object in the TLS data, so the thread object can be finalized.
22562         This won't be reached if the thread threw an uncaught exception,
22563         so those thread handles will stay referenced :-( (This is due to
22564         missing support for scanning thread-specific data in the Boehm GC
22565         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
22566
22567 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
22568
22569         * reflection.c: ensure streams and tables are first allocated with
22570         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
22571
22572 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22573
22574         * icall.c: fixed GetElementType for byrefs (bug# 44792).
22575
22576 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
22577
22578         * reflection.c (mono_reflection_create_runtime_class): Add support for
22579         properties to dynamically created classes.
22580         * reflection.c: Fix a few places where non-MonoObjects were inserted
22581         into the tokens hashtable.
22582
22583 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
22584
22585         * object.c: some support to handle out of memory exceptions.
22586
22587 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
22588
22589         * marshal.c (mono_marshal_get_native_wrapper): support reference
22590         return types
22591
22592 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
22593
22594         * object.h, object.c: more portability stuff from Bernie Solomon.
22595         Unexport mono_object_allocate(). Added mono_object_unbox ().
22596         Set exitcode when an unhandled exception is thrown.
22597
22598 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
22599
22600         * marshal.c (mono_marshal_get_native_wrapper): use custom
22601         marshaler for return types.
22602
22603 2003-06-10  Dick Porter  <dick@ximian.com>
22604
22605         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
22606         ip_mreq is available
22607
22608 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
22609
22610         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
22611         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
22612         by Bernie Solomon <bernard@ugsolutions.com>.
22613
22614 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
22615
22616         * gc.c (mono_gc_init): Avoid error message on shutdown when
22617         GC_DONT_GC=1 is used.
22618
22619         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
22620         New icall to return the GUID of a module.
22621
22622 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
22623
22624         * class.c: ensure instance size always includes the parent's size
22625         even whem class size is set explicitly (fixes bug#44294).
22626
22627 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
22628
22629         * profiler.h, profiler.c: made the simple profiler thread-safe,
22630         get more accurate timing info. Allow the loading of an
22631         externally-developed profiler module.
22632
22633 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
22634
22635         * marshal.c (mono_marshal_get_native_wrapper): improved
22636         class/byref arguments.
22637         (mono_marshal_get_native_wrapper): better string marshaling support.
22638
22639 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
22640
22641         * class.c: ensure .pack and .size are handled correctly and
22642         simplified layout of static fields.
22643
22644 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
22645
22646         * appdomain.c
22647         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
22648
22649         * loader.c (mono_lookup_pinvoke_call): look for modules in the
22650         current directory (fix bug 44008)
22651
22652 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
22653
22654         * marshal.c (mono_marshal_get_native_wrapper): started support for
22655         custom marshalers.
22656         (mono_delegate_to_ftnptr): consider marshalling specifications
22657
22658 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
22659
22660         * reflection.c, reflection.h: emit custom marshal info.
22661
22662 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22663
22664         * object.c: free the GError.
22665         * icall.c: added CloseEvent_internal.
22666         * threads.[ch]:
22667         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
22668         call.
22669
22670 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
22671
22672         * loader.c (mono_method_get_signature): Add support for dynamic
22673         assemblies.
22674
22675 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
22676
22677         * reflection.c: fixed bug #43905.
22678
22679 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
22680
22681         * class.c, domain.c, icall.c, metadata.h, object.h: support for
22682         handling TypedReference and ArgIterator.
22683         * loader.c, loader.h: added function to get signature at call site.
22684
22685 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
22686
22687         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
22688         data readonly. Buglets and warning fixes. Some MethodSpec support.
22689
22690 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
22691
22692         * class.h, class.c, object.c: remove relative numbering support.
22693
22694 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
22695
22696         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
22697         free the string, until we get a chance to fix Gtk#
22698
22699 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22700
22701         * marshal.c: revert last patch.
22702
22703 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
22704
22705         * icall.c: updates for new mono_class_vtable() not calling
22706         the type constructor anymore.
22707
22708 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
22709
22710         * object.h, object.c: separate vtable creation from type
22711         initialization. Make running the .cctor thread safe.
22712
22713 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
22714
22715         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
22716
22717 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
22718
22719         * loader.c (mono_get_method): consider calling convention
22720
22721 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
22722
22723         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
22724         to return the invisible global type for a module.
22725
22726         * reflection.c (mono_image_build_metadata): Emit global fields too.
22727
22728 2003-05-20  Peter Williams  <peterw@ximian.com>
22729
22730         * loader.c (mono_lookup_internal_call): Add a few newlines.
22731
22732 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
22733
22734         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
22735         literal strings.
22736
22737         * appdomain.c (set_domain_search_path): Recalculate search path when
22738         AppDomainSetup.PrivateBinPath changes.
22739
22740         * object.c (mono_class_compute_gc_descriptor): It turns out some
22741         parts of the class libs (like System.Thread) holds pointers to
22742         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
22743         to treat native int a pointer type here.
22744         
22745 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
22746
22747         * appdomain.h, domain.c: add hashtable for jump target resolution.
22748
22749 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
22750
22751         * reflection.h reflection.c icall.c: Added new icalls 
22752         GetManifestResourceInfoInternal, GetModulesInternal and support
22753         infrastructure.
22754
22755 2003-05-16  Dick Porter  <dick@ximian.com>
22756
22757         * icall.c:
22758         * file-io.h:
22759         * file-io.c: Implement System.IO.MonoIO::GetTempPath
22760
22761 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
22762
22763         * object.c: mono_store_remote_field: little fix to previous patch.
22764
22765 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
22766
22767         * class.c: add constructors to array classes.
22768         * icall.c: special case array construction for InternalInvoke (),
22769
22770 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
22771
22772         * class.h class.c reflection.c object.c: Added support for field
22773         defaults in dynamically generated classes.
22774
22775 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
22776
22777         * reflection.c: properly encode charset for ddlimport.
22778
22779 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
22780
22781         * threads.c: allow compiling without GC.
22782
22783 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
22784
22785         * appdomain.h, object.c, object.h, threads.c, threads.h: added
22786         handling of thread static data.
22787
22788 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22789
22790         * reflection.h, reflection.c: added mono_custom_attrs_free ().
22791
22792 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
22793
22794         * class.c (mono_array_class_get): always set the serializable flags
22795         (mono_array_class_get): always set the SEALED attribute for array types
22796
22797 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
22798
22799         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
22800         attributes (fix for bug 42021).
22801
22802 2003-05-12  Dick Porter  <dick@ximian.com>
22803
22804         * gc.c: Don't run finalizers when the finalizer thread is
22805         finishing up, because the default domain has already been
22806         destroyed.
22807
22808 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
22809
22810         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
22811         value is null, we should throw an exception.   This is slightly
22812         different than the other conventions used for the constructor.
22813
22814 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22815
22816         * socket-io.c: fixed windows build.
22817
22818 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22819
22820         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
22821
22822 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
22823
22824         * object.c (mono_string_new_wrapper): Compatibility fix for MS
22825         compilers.
22826
22827 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
22828
22829         * class.c (mono_class_layout_fields): Add experimental GC aware
22830         auto layout facility. Requires class library changes to work correctly.
22831
22832         (mono_class_setup_vtable): Avoid overriding explicit interface
22833         method implementations. Fixes iface3.exe test.
22834
22835         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
22836         object reference.
22837         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
22838         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
22839
22840         * metadata.h: Add new type classification macro which determines
22841         whenever the type holds an object reference.
22842
22843 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
22844
22845         * marshal.c (mono_marshal_get_native_wrapper): cleanups
22846
22847 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
22848
22849         * gc.c (finalizer_thread): Work around a GC bug.
22850
22851 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
22852
22853         * marshal.c (emit_struct_conv): allow unions
22854
22855         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
22856
22857 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
22858
22859         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
22860
22861 2003-05-06  Martin Baulig  <martin@ximian.com>
22862
22863         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
22864
22865 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22866
22867         * socket-io.c:
22868         (Select_internal): allow NULLs, don't create arrays if not needed.
22869         Coupled with Socket.cs changes.
22870
22871         * threadpool.c:
22872         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
22873         register a finalizer for it that will close the semaphore handle. This
22874         fixes the leak and make Lupus' test run with > 4080 loops.
22875
22876 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
22877
22878         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
22879         Jerome Laban (bug #42287)
22880
22881 2003-05-02  Martin Baulig  <martin@ximian.com>
22882
22883         * debug-mono-symfile.h
22884         (MonoSymbolFile): Moved declaration into mono-debug.h.
22885         (MonoDebugMethodJitInfo): Likewise.
22886         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
22887         argument.
22888         (_mono_debug_address_from_il_offset): Take a
22889         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
22890
22891         * mono-debug.h
22892         (MonoDebugDomainData): New struct.
22893         (mono_debug_get_domain_data): New function.
22894         (mono_debug_add_method): Take an additional `MonoDomain *'
22895         argument.
22896         (mono_debug_source_location_from_address): Likewise.
22897         (mono_debug_il_offset_from_address): Likewise.
22898         (mono_debug_address_from_il_offset): Likewise.
22899
22900 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
22901
22902         * reflection.c: one more check for null type in custom attrs.
22903
22904 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22905
22906         * reflection.c: avoid warning (comparison is always false due to limited
22907         range of data type).
22908
22909 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22910
22911         * icall.c: throw an exception in Type.GetField if the argument 'name'
22912         is NULL.
22913
22914 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
22915
22916         * reflection.c: fixed handling of enums in named arguments to custom
22917         attributes (bug #42123).
22918
22919 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
22920
22921         * reflection.c: use the right array element type and handle
22922         a null for a Type argument, too.
22923
22924 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
22925
22926         * reflection.c: handle arrays as arguments to custom attributes.
22927
22928 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
22929
22930         * reflection.c: handle a string value in a custom attr
22931         ctor that takes an object.
22932
22933 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
22934
22935         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
22936         (fix bug #42063)
22937
22938 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
22939
22940         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
22941
22942 2003-04-27  Martin Baulig  <martin@ximian.com>
22943
22944         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
22945         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
22946         MONO_DEBUGGER_EVENT_BREAKPOINT.
22947         (mono_breakpoint_trampoline_code): Removed.
22948         (mono_debugger_event_handler): The last argument is now a
22949         `guint32'.
22950         (mono_debugger_insert_breakpoint_full): Removed the
22951         `use_trampoline' argument.
22952         (mono_debugger_method_has_breakpoint): Likewise.
22953         (mono_debugger_trampoline_breakpoint_callback): Renamed to
22954         mono_debugger_breakpoint_callback(); take the method and
22955         breakpoint number as arguments.
22956
22957 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
22958
22959         * metadata.c: fix off by one when loading parameters attributes.
22960
22961 2003-04-24  Martin Baulig  <martin@ximian.com>
22962
22963         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
22964
22965 2003-04-24  Martin Baulig  <martin@ximian.com>
22966
22967         * mono-debug-debugger.c: Moved all code which interacts with the
22968         Mono Debugger here.
22969
22970         * debug-mono-symfile.c: This code now just deals with the symbol
22971         file itself, the debugger code is now in mono-debug-debugger.c.
22972
22973 2003-04-23  Martin Baulig  <martin@ximian.com>
22974
22975         * mono-debug.c (mono_debug_source_location_from_il_offset):
22976         New method; like mono_debug_source_location_from_address(), but
22977         takes an IL offset instead of a machine address.
22978
22979 2003-04-23  Martin Baulig  <martin@ximian.com>
22980
22981         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
22982         `line' field; this is now computed by the debugger.
22983
22984 2003-04-23  Martin Baulig  <martin@ximian.com>
22985
22986         * mono-debug.[ch]: New files.  This is the new debugging interface.
22987
22988         * mono-debug-debugger.[ch]: New files.  Moved all code which
22989         interacts with the Mono Debugger here.
22990
22991 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
22992
22993         * domain.c (mono_init): initialize mono_defaults.monitor_class
22994
22995 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
22996
22997         * reflection.c (method_encode_code): Add a spicy exception to help
22998         future compiler authors.
22999
23000 2003-04-21  Martin Baulig  <martin@ximian.com>
23001
23002         * icall.c
23003         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
23004         Make this work with relative pathnames; g_filename_to_uri() needs
23005         an absolute filename.
23006
23007 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
23008
23009         * icall.c: Track name changes in Object and ValueType.
23010
23011 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
23012
23013         * metadata.c (mono_type_stack_size): size should be a multiple of
23014         sizeof (gpointer)
23015
23016 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23017
23018         * gc.c:
23019         (internal_domain_finalize): moved into mono_domain_finalize. No need
23020         to create another thread because the finalizers will be run in the
23021         finalizer thread.
23022         
23023         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
23024         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
23025         to be run (MS does this too).
23026
23027 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
23028
23029         * object.c (mono_class_compute_gc_descriptor): Update comment.
23030
23031         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
23032
23033         * image.h: Add synchronized wrapper cache.
23034
23035         * image.c (do_mono_image_open): Initialize cache.
23036
23037         * reflection.c (create_dynamic_mono_image): Initialize cache.
23038
23039 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23040
23041         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
23042         ves_icall_System_Buffer_ByteLengthInternal.
23043
23044 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23045
23046         * reflection.c: setup klass->nested_in earlier. Allow
23047         a dash in the assembly name.
23048
23049 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
23050
23051         * metadata.c (mono_type_to_unmanaged): dont access
23052         type->data.klass for MONO_TYPE_OBJECT
23053         (mono_type_to_unmanaged): consider System.Delegate class
23054
23055 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
23056
23057         * class.c: just setup supertypes in the proper place instead of
23058         initializing the full element class for arrays.
23059
23060 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
23061
23062         * class.c: ensure the element class of arrays is initialized.
23063         Setup the supertype info for array classes, too.
23064
23065 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
23066
23067         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
23068
23069 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23070
23071         * Makefile.am: re-added -m option when running cygpath. This way,
23072         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
23073         separator.
23074         * mono-config.c: same codepath for locating mono config file for WIN32
23075         and the rest.
23076         * assembly.c: if mono_assembly_setrootdir is called, don't override
23077         the value set.
23078
23079 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23080
23081         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
23082         MONO_ASSEMBLIES variable.
23083
23084 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
23085
23086         * icall.c: added Assembly::GetNamespaces() icall.
23087
23088 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23089
23090         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
23091
23092 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
23093
23094         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
23095         * object.c: fixed bug in the construction of vtable for proxies
23096
23097 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
23098
23099         * object.c (mono_array_new): Mark mono_array_new as an icall.
23100
23101 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23102
23103         * class.c: fixed test for public method when overriding interfaces.
23104         Closes bug #40970.
23105
23106 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23107
23108         * appdomain.h, domain.c: added mono_domain_foreach() to
23109         be able to access the currently loaded appdomains.
23110         * object.c: make string interning work across sppdomains.
23111         Mark some functions for use as icalls.
23112
23113 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
23114
23115         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
23116
23117         * reflection.h reflection.c: Allocate long living data using 
23118         GC_MALLOC_ATOMIC so the collector does not need to scan it.
23119
23120         * reflection.c: Double the allocation size in streams instead of
23121         increasing it, to prevent unneccesary copying on large assemblies.
23122         
23123         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
23124         creation if the assembly does not have the Run flag set.
23125
23126 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
23127
23128         * class.h: avoid the C++ keywords in header files (Jerome Laban
23129         spotted and fixed this).
23130
23131 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23132
23133         * object.c:
23134         (mono_unhandled_exception): fill in the arguments for the
23135         UnhandledException event. Only trigger that event for the default
23136         domain (as MS does).
23137
23138 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
23139
23140         * object.c: Improve typed allocation stuff based on suggestions from
23141         Paolo. Also turn it on if the GC library supports it.
23142
23143 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
23144
23145         * object.c object.h class.h: Added experimental typed allocation
23146         facility using the interfaces in gc_gcj.h.
23147
23148         * os/gc_wrapper.h: Added new include files.
23149         
23150 2003-04-03  Martin Baulig  <martin@ximian.com>
23151
23152         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
23153         which is not yet enabled by default.
23154
23155         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
23156         functions.
23157         (mono_gc_lock, mono_gc_unlock): New static functions.
23158
23159         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
23160         functions; stop/start the world for the garbage collector.  This
23161         is using the windows API; we need to complete the SuspendThread()/
23162         ResumeThread() implementation in the io-layer to make this work on Unix.
23163         (mono_gc_push_all_stacks): New public function; tells the garbage
23164         collector about the stack pointers from all managed threads.
23165
23166 2003-04-03  Martin Baulig  <martin@ximian.com>
23167
23168         * object.h (MonoThread): Added `gpointer stack_ptr'.
23169
23170         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
23171
23172 2003-04-03  Martin Baulig  <martin@ximian.com>
23173
23174         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
23175
23176 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
23177
23178         * reflection.c (typebuilder_setup_fields): Initialize field.first and
23179         field.last.
23180
23181 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
23182
23183         * loader.c (mono_lookup_internal_call): Report the corlib that is
23184         out of sync.
23185
23186 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
23187
23188         * icall.c (ves_icall_type_GetTypeCode): fixed check for
23189         System.DBNull (it's class not valuetype).
23190
23191 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
23192
23193         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
23194         if the array method was already assigned a token (fixes bug#40646).
23195
23196 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
23197
23198         * reflection.c (mono_reflection_get_type): Attempt type resolve even
23199         if no assembly is given.
23200
23201 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
23202
23203         * metadata.h: Added the new tables.
23204
23205         * row-indexes.h: Added definitions for new tables.
23206
23207         * metadata.c: Add schemas for new tables, and add support for
23208         computing the sizes of them.
23209
23210         * class.c: Update for handling the new type cases.
23211
23212 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
23213
23214         * metadata.h (MONO_TYPE_IS_VOID): new macro
23215
23216 2003-03-31  Martin Baulig  <martin@ximian.com>
23217
23218         * threads.h (MonoThreadCallbacks): Added `thread_created'.
23219
23220         * threads.c (mono_thread_new_init): Call `thread_created' in the
23221         mono_thread_callbacks.
23222
23223 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
23224
23225         * loader.h: added marshalbyrefobject_class to mono_defaults
23226         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
23227         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
23228           generation of output parameters.
23229           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
23230         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
23231           contextbound and the target object belongs to the context of the caller.
23232         * object.h: added context and unwrapped_server variables in MonoRealProxy.
23233         * object.c: Implemented support for interfaces and abstract classes
23234           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
23235           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
23236
23237 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
23238
23239         * class.h class.c (mono_class_is_subclass_of): New function.
23240         
23241         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
23242         routines for most common case (calls from ArrayList::ToArray).
23243
23244         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
23245         routine so programs which call Environment::Exit() can be profiled.
23246
23247         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
23248         Added MONO_ARCH_SAVE_REGS.
23249
23250         * icall.c (ves_icall_type_is_subtype_of): Use new function.
23251
23252 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
23253
23254         * blob.h: Add a couple of new MonoType types definitions.
23255
23256         * tabledefs.h: Add a couple of new call convs.
23257
23258 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
23259
23260         * reflection.h (MonoReflectionDynamicAssembly): track changes in
23261         the layout of the class.
23262
23263         * reflection.c (alloc_table): double the size on overflow to avoid
23264         unnecessary copying.
23265
23266         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
23267         avoid filling out metadata tables and blobs. Also set mb->ilgen to
23268         null so it can be garbage collected.
23269         
23270 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
23271
23272         * reflection.c (mono_reflection_get_type): Return the resolved type
23273         only if it is in the assembly we searched.
23274
23275         * reflection.c (ensure_runtime_vtable): Initialize method slots.
23276
23277         * class.c (mono_class_setup_vtable): Set the slot of the overriding
23278         method.
23279
23280 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23281
23282         * appdomain.c:
23283         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
23284         the right one is 'file:///blah', but MS allows it.
23285         * assembly.c:
23286         (mono_assembly_open): allow 'file://blah'
23287
23288         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
23289
23290 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
23291
23292         * socket-io.c: fixes bug #40310.
23293
23294 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
23295
23296         * reflection.c (mono_reflection_parse_type): handle deeply nested
23297         types correctly.
23298
23299         * reflection.c (mono_image_create_token): Use unique token values
23300         since they will be put into a hash table.
23301
23302         * class.c (mono_class_setup_vtable): If a method occurs in more than
23303         one place in the vtable, and it gets overriden, then change the
23304         other occurances too.
23305
23306         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
23307         object as return type.
23308
23309 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
23310
23311         * icall.c: Deleted "ToString" implementation for double and float
23312         because they are full implemented in managed code.
23313
23314 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
23315
23316         * reflection.c, reflection.h: implemented and exported functions
23317         to retrieve info about custom attributes.
23318
23319 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23320
23321         * appdomain.c: moved Uri handling to assembly.c
23322         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
23323         work when using a file Uri in *nix and windows.
23324
23325         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
23326         GetReferencedAssemblies.
23327
23328 2003-03-18  Dick Porter  <dick@ximian.com>
23329
23330         * icall.c: Rename a couple of internal calls
23331
23332         * threads.c: Set the thread state to Stopped when a thread exits.
23333         Fixes bug 39377.
23334
23335 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
23336
23337         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
23338         New icall.
23339
23340         * object.c (mono_class_vtable): fix warning.
23341
23342 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
23343
23344         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
23345
23346         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
23347         memory.
23348         (method_encode_clauses): Create exception info structures in the right
23349         order.
23350         (mono_reflection_setup_internal_class): Initialize supertypes field.
23351
23352         * class.c object.c: Handle interfaces which implement other interfaces 
23353         correctly.
23354
23355         * class.h class.c: Move the supertypes array initialization code into 
23356         a separate function so it can be used for dynamic types too. Also call
23357         it earlier, in mono_class_init(), since it can be used before the
23358         type is initialized.
23359
23360 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23361
23362         * Makefile.am:
23363         * assembly.c:
23364         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
23365
23366         * appdomain.c:
23367         * appdomain.h:
23368         * marshal.c:
23369         * object.c: remove warnings.
23370
23371 2003-03-13  Martin Baulig  <martin@ximian.com>
23372
23373         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
23374         (MonoDebugLexicalBlockEntry): New types.
23375
23376         * debug-mono-symfile.c
23377         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
23378
23379 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23380
23381         * process.c: ret can be any non-zero value accroding to MS doc.
23382
23383 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
23384
23385         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
23386         fixing a warning for a miss-used prototype, would have cause
23387         random memory corruption.
23388
23389 2003-03-07  Martin Baulig  <martin@ximian.com>
23390
23391         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
23392         getting really annoying ....
23393
23394 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
23395
23396         * reflection.c (fixup_method): added support for array methods.
23397
23398 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
23399
23400         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
23401         (pointed out by Michael Adams).
23402
23403 2003-03-04  Dick Porter  <dick@ximian.com>
23404
23405         * icall.c: Temporarily reverted the Double and Single ToString()
23406         change, because it broke nunit.
23407
23408 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
23409
23410         * object.h, threads.h: make include files compatible with C++
23411         (patch by Jerome Laban <jlaban@wanadoo.fr>).
23412
23413 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
23414
23415         * icall.c: Erased ToString helper functions for Double and Single.
23416         Now, that implementations ar all in managed code (Double and Single
23417         Formatters).
23418
23419 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
23420
23421         * appdomain.c: Added method for initializing the default context of
23422         a domain. Added internal call for getting the default context.
23423         * appdomain.h: Added context variable in MonoDomain struct.
23424         * domain.c: mono_domain_set also sets the default context of the domain
23425         * icall.c: Mapped internal method InternalGetDefaultContext.
23426         * object.c: mono_object_get_virtual_method returns always a remoting
23427         wrapper if the object is a transparent proxy.
23428         mono_runtime_invoke_array: when creating an object by calling the
23429         constructor, if the created object is a proxy, then the constructor should
23430         be called using the a remoting wrapper.
23431
23432 2003-03-03  Dick Porter  <dick@ximian.com>
23433
23434         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
23435         variable so it compiles on solaris.  Problem spotted by
23436         Christopher Taylor <ct@cs.clemson.edu>
23437
23438 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23439
23440         * appdomain.c:
23441         (get_info_from_assembly_name): don't leak value.
23442
23443         * icall.c:
23444         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
23445         result.
23446
23447 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
23448
23449         * assembly.c: export mono_image_load_references ().
23450         * class.c: handle function pointers. mono_class_from_name() now
23451         supports nested type names directly.
23452
23453 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
23454
23455         * reflection.h reflection.c: Encode already created dynamic methods 
23456         and fields correctly as a DEF instead of a REF.
23457
23458         * reflection.c: Get rid of the force_ref argument to 
23459         mono_image_typedef_or_ref since it was wrong in the first place.
23460
23461         * string-icalls.c: add error checking to string constructors according
23462         to the MSDN docs.
23463
23464         * reflection.c: Emit types in the order their TypeBuilders were 
23465         created. Previously, a new table index was assigned to each type before
23466         the tables were emitted. This was wrong because the signature blob
23467         might already refer to a type by its original table index.
23468
23469 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
23470
23471         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
23472         change.
23473         
23474 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23475
23476         * Makefile.am: make assemblies dir have \ instead of / on windows.
23477
23478 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
23479
23480         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
23481         iterate over the NESTEDCLASS table using a linear search since the
23482         table is not guaranteed to be sorted by the secondary key.
23483
23484         * class.c (mono_class_create_from_typedef): fixed up call to
23485         mono_metadata_nesting_typedef.
23486         
23487 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
23488
23489         * marshal.c (mono_string_to_byvalstr): clear the memory as
23490         suggested by Jerome Laban <jlaban@wanadoo.fr>
23491
23492 2003-02-26  Dick Porter  <dick@ximian.com>
23493
23494         * process.c: Cope with padding in .rsrc blocks
23495
23496 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
23497
23498         * metadata.h: reverted the filter_len change, it breaks reflection
23499         
23500 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
23501
23502         * metadata.h: added a new field to store the filter_len
23503         
23504
23505 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
23506
23507         * reflection.c: handle custom attributes for types and members
23508         created with Reflection.Emit (bug#38422).
23509
23510 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
23511
23512         * reflection.c: define RTSpecialName automatically for constructors for
23513         compatibility with MS.NET.
23514
23515         * reflection.c (mono_reflection_create_runtime_class): initialize
23516         nested_in field of dynamically created classes.
23517
23518 2003-02-22  Martin Baulig  <martin@ximian.com>
23519
23520         * debug-mono-symfile.h: Incremented version number.
23521
23522 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
23523
23524         * object.h icall.c process.c: fix warnings.
23525
23526 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
23527
23528         * appdomain.h appdomain.c:
23529         (mono_domain_try_type_resolve): split the 
23530         name_or_tb argument into a name and a tb argument.
23531         (mono_domain_has_type_resolve): new function to check whenever the
23532         application has registered a TypeResolve event handler.
23533         
23534         * icall.c reflection.h reflection.c: move the type resolve logic into
23535         mono_reflection_get_type () so it will be invoked when 
23536         Assembly::GetType () is called.
23537
23538         * reflection.c:
23539         (mono_reflection_get_type): renamed to get_type_internal.
23540         (mono_reflection_get_type): fixed type name generation so it works 
23541         for nested types too.
23542         (mono_reflection_get_type): call has_type_resolve () to avoid the 
23543         costly type name generation if there is no resolve event handler.
23544
23545 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
23546
23547         * class.c, image.c: load exported types from file references.
23548
23549 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
23550
23551         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
23552           used to cache the managed methods used to create proxies and make 
23553           remote invocation of methods.
23554         * class.h: Added in MonoVTable a flag to indicate that a class needs 
23555           to be remotely created.
23556         * object.c: Modified the method mono_class_vtable(). It now initializes 
23557           the remote flag of the vtable. Modified mono_object_new_specific(), 
23558           so now it checks the remote flag.
23559         * icall.c: Added a couple of internal methods, one for enabling instance 
23560           creation interception for a type, and one for creating objects bypassing
23561           the remote check.
23562
23563 2003-02-18  Martin Baulig  <martin@ximian.com>
23564
23565         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
23566         New interncall to get a method's metadata token.
23567
23568         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
23569         New interncall for the debugger.
23570
23571 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
23572
23573         * class.c (mono_class_setup_vtable): allocate supertype array
23574
23575 2003-02-18  Martin Baulig  <martin@ximian.com>
23576
23577         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
23578
23579 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23580
23581         * reflection.c:
23582         (assembly_name_to_aname): jump over unknown properties (i've found
23583         something like: 'type, assembly, version=xxx, custom=null, public...',
23584         so now will ignore custom=null and still get the rest of the values).
23585
23586 2003-02-17  Dick Porter  <dick@ximian.com>
23587
23588         * threads.c: Have Thread.Start() wait for a semaphore to signal
23589         that the thread has set up all its local data.  This fixes bug
23590         34323, where Abort() raced the new thread's TLS data.
23591
23592         Also removes the handle_store() call from start_wrapper, because
23593         threads are now always created suspended and there is no longer a
23594         race between the parent and child threads to store the info.
23595
23596 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
23597
23598         * image.c: explain the #- heap issue in a message, hopefully
23599         avoiding FAQs on mono-list.
23600
23601 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23602
23603         * icall.c:
23604         (GetEntryAssembly): if the domain has not invoked
23605         AppDomain.ExecuteAssembly yet, return the assembly of the default
23606         AppDomain.
23607
23608 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
23609
23610         * class.c (mono_ldtoken): make it work in dynamic assemblies.
23611
23612 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
23613
23614         * metadata.c, reflection.c: simple speedup to type hash
23615         and equals code.
23616
23617 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
23618
23619         * image.c, image.h, class.c, assembly.c: move module loading
23620         to MonoImage. When loading metadata, consider alignemnet from
23621         the start of metadata, not from the metadata address in memory.
23622
23623 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
23624
23625         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
23626         AssemblyBuilder objects. Factored out custom attribute creation into
23627         a separate function.
23628         (create_custom_attr): new function to create custom attributes.
23629
23630 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
23631
23632         * Makefile.am: Got tired of typing the full pathname to pedump.
23633         Until there is another option, am installing this.
23634
23635 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
23636
23637         * class.c (class_compute_field_layout): always set field->parent 
23638         (mono_ldtoken): use mono_defaults.fieldhandle_class;
23639
23640 2003-02-11  Dick Porter  <dick@ximian.com>
23641
23642         * threads-types.h:
23643         * monitor.c: Rewrote Monitor, making lock much faster and
23644         Pulse/Wait work as specified.  Also uses much fewer handles, and only
23645         creates them as needed.
23646
23647         * exception.c: Added SynchronizationLockException
23648
23649         * threads.c: Deleted old Monitor implementation.  The new one is
23650         in a new file.
23651
23652 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
23653
23654         * class.c: handled TypedReference type code. Set the correct size for
23655         class data. Setup interface_offsets for interface classes, too.
23656
23657 2003-02-09  Martin Baulig  <martin@ximian.com>
23658
23659         * debug-mono-symfile.h: Reflect latest symbol writer changes.
23660
23661 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
23662
23663         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
23664         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
23665         * object.c: fixed mono_object_get_virtual_method () for interfaces.
23666         * verify.c: check for code that runs after the end of the method.
23667
23668 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
23669
23670         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
23671         "System.Math::Round2".
23672         * sysmath.h: Added Floor, Round and Round2 definitions.
23673         * sysmath.c: Modified certain functions that were not 100% compliant
23674         with MS.NET (math precision) and added the implementation of Floor,
23675         Round and Round2.
23676
23677 2003-02-07  Martin Baulig  <martin@ximian.com>
23678
23679         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
23680
23681 2003-02-07  Martin Baulig  <martin@ximian.com>
23682
23683         * debug-mono-symfile.c: Reflected latest symwriter changes.
23684         (mono_debug_create_mono_symbol_file): Removed.
23685         (mono_debug_open_mono_symbol_file): Take an argument which
23686         specifies whether to create a dynamic symbol file.
23687
23688 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
23689
23690         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
23691
23692 2003-02-05  Martin Baulig  <martin@ximian.com>
23693
23694         * reflection.c (mono_image_build_metadata): Make this public,
23695         protect it against being called multiple times, don't create
23696         resources and don't build the compressed metadata here.
23697         (mono_image_create_pefile): Do this here.
23698
23699         * icall.c
23700         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
23701
23702 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23703
23704         * socket-io.c: fixed bug #36322.
23705
23706 2003-02-06  Piers Haken <piersh@friskit.com>
23707
23708         * appdomain.[ch]:
23709         * class.h:
23710         * debug-mono-symfile.c:
23711         * icall.c:
23712         * loader.c:
23713         * mono-config.c:
23714         * monosn.c:
23715         * reflection.c:
23716         * socket-io.c: warning cleanups
23717
23718 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
23719
23720         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
23721         function. works like remoting invoke, but does a check for the Proxy first.
23722
23723 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
23724
23725         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
23726
23727 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
23728
23729         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
23730         array of pointers.
23731         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
23732         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
23733
23734         * object.c (mono_store_remote_field_new): used by the new jit
23735         instead of mono_store_remote_field
23736         (mono_load_remote_field_new): used by the new jit
23737         instead of mono_load_remote_field
23738
23739 2003-02-05  Patrik Torstensson
23740
23741         * appdomain.c: changed unload to take the domain id instead
23742         of domain
23743         
23744         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
23745
23746
23747 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23748
23749         * appdomain.c: don't look for assemblies in ApplicationBase if
23750         PrivateBinPathProbe is set.
23751
23752 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23753
23754         * object.c: make the first argument in main_args contain the absolute
23755         path to the assembly. Fixes bug #37511.
23756
23757 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23758
23759         * icall.c: get correct UTC offset for countries not using daylight
23760         time saving. Fixes bug #30030.
23761
23762 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23763
23764         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
23765         and 1 are the family).
23766
23767 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
23768
23769         * icall.c (ves_icall_InternalExecute): removed wrong assertion
23770
23771         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
23772
23773 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
23774
23775         * reflection.c: added support for SignatureHelper tokens, which is
23776         needed by the Calli opcode.
23777
23778         * reflection.h: track changes to SignatureHelper class.
23779
23780         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
23781
23782 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23783
23784         * appdomain.c: fixed loading assemblies from PrivateBinPath.
23785
23786 2003-02-03  Patrik Torstensson
23787         * appdomain.[c|h], domain.c : 
23788          - Added support for getting a domain via domain id
23789          - Support for setting and getting domain from System.AppDomain 
23790            (used in cross appdomain channel)
23791          - Added support for get/set for a MonoAppContext on a thread 
23792            (Context class in System.Runtime.Remoting.Contexts),
23793          - Removed hack in Get/SetData and ExecuteAssembly.
23794         
23795         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
23796         the managed world to get control when a proxy is created.
23797
23798         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
23799         
23800 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
23801
23802         * icall.c
23803         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
23804         Populate the codebase field as well.
23805
23806 2003-02-02  Martin Baulig  <martin@ximian.com>
23807
23808         * debug-mono-symfile.c
23809         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
23810         (mono_debug_symfile_add_method): Allow interncalls.
23811
23812 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23813
23814         * icall.c: throw parse exception if strtod fails or the string is empty.
23815
23816 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
23817
23818         * marshal.c: handle object type separately from defined
23819         class types.
23820
23821 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
23822
23823         * marshal.c: handle NATIVE_LPSTR for strings when it's
23824         explicitly specified.
23825
23826 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
23827
23828         * reflection.c, reflection.h, icall.c: setup the reflection
23829         handle cache for ModuleBuilders and AssemblyBuilders.
23830
23831 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
23832
23833         * reflection.c (reflection_methodbuilder_to_mono_method): set
23834         pinvoke flag
23835
23836 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23837
23838         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
23839
23840 2003-01-29  Dick Porter  <dick@ximian.com>
23841
23842         * threads.c: No need for the fake_thread kludge now that Thread
23843         doesn't run a class constructor
23844         
23845 2003-01-29  Dick Porter  <dick@ximian.com>
23846
23847         * threads.c: Use g_direct_hash instead of the rather bogus
23848         g_int_hash
23849
23850 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
23851
23852         * marshal.c (mono_marshal_get_native_wrapper): add check for null
23853         (fix pinvoke12.exe)
23854         (mono_marshal_get_struct_to_ptr): generate valid IL code
23855         (mono_marshal_get_ptr_to_struct): generate valid IL code
23856         (*): correctly set sig->pinvoke, we need to memdup the signature
23857         to do that
23858
23859 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
23860
23861         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
23862         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
23863
23864 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
23865
23866         * profiler.c: provide more callers information.
23867
23868 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
23869
23870         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
23871
23872         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
23873
23874         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
23875
23876 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
23877
23878         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
23879         exception instead of going into an infinite loop on dates which it 
23880         can't yet handle.
23881
23882         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
23883         out-of-range exception if needed.
23884
23885         * class.c (mono_class_setup_vtable): allow a virtual method to provide
23886         an implementation for an interface method and to override an inherited
23887         method at the same time. 
23888         Imagine a scenario when a virtual method is used to override a
23889         virtual abstract method in a parent class, and this same method 
23890         provides an implementation for an method inherited from an interface. 
23891         In this case, the interface resolution code will set im->slot, which 
23892         means that the virtual method override pass will skip this method 
23893         which means a pointer to the abstract method inherited from the parent
23894         will remain in the vtable of this non-abstract class.
23895
23896         * class.c: (mono_class_setup_vtable): continue search for a real 
23897         method if only an abstract method is found.     
23898
23899 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
23900
23901         * reflection.c: add size to encoding for ByValStr and ByValArray
23902         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
23903
23904 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
23905
23906         * class.c (mono_class_setup_vtable): pass the override info as an
23907         argument.
23908
23909         * class.c (mono_class_setup_vtable): set the slot of overriding methods
23910         correctly.
23911         
23912         * reflection.c (ensure_runtime_vtable); add support for method 
23913         overrides.
23914         
23915 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
23916
23917         * reflection.c (resolution_scope_from_image): Hack to work to work with
23918         dynamic assemblies.
23919
23920         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
23921         added a 'force_ref' argument to force this function to allways return 
23922         a TypeRef. This is needed by mono_image_get_memberref_token ().
23923         
23924 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
23925
23926         * reflection.c (mono_image_get_type_info): interfaces really don't have
23927         a parent.
23928
23929         * reflection.c (mono_image_basic_init): fill out missing fields of
23930         image structure.
23931
23932         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
23933         dynamic assemblies. This is required so dynamic assemblies show up in
23934         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
23935         Type::GetType() etc. This is consistent with MS behaviour.
23936
23937         * image.c image.h reflection.c: add newly created classes to the name 
23938         cache so mono_class_get () will find them.      
23939
23940 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
23941
23942         First part of changes to get IKVM.NET running under mono.
23943         
23944         * appdomain.h, appdomain.c: added new function 
23945         mono_domain_try_type_resolve() which will emit TypeResolve events. 
23946         This function will call AppDomain::DoTypeResolve to do the actual work.
23947
23948         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
23949         moved existing code dealing with dynamic tokens to a new function 
23950         called mono_reflection_lookup_dynamic_token (). This function will 
23951         raise TypeResolve events when appropriate. Since reflection.c is not 
23952         part of libmetadata, a new hook function called 
23953         mono_lookup_dynamic_token() is added to class.c which will call this.
23954
23955         * assembly.h assembly.c: make the invoke_load_hook function public,
23956         so it can be called for dynamic assemblies.
23957
23958         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
23959
23960         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
23961         type isn't found.
23962
23963         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
23964         MonoGHashTable, since it contains pointers to objects which the GC 
23965         needs to track.
23966
23967         * assembly.c (search_loaded): remove unused variable.
23968         
23969 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
23970
23971         * object.c: fixed issue exposed by gcc-generated IL programs
23972         that use RVA data for pointers.
23973
23974 2003-01-25  Martin Baulig  <martin@ximian.com>
23975
23976         * threads.c (start_wrapper): Moved the initialization of
23977         `start_func' above the mono_new_thread_init() call to which we
23978         pass it as argument.
23979
23980 2003-01-24  Martin Baulig  <martin@ximian.com>
23981
23982         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
23983         the MonoThread pointer.
23984
23985 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
23986
23987         * icall.c: Rename `PowImpl' to Pow.
23988
23989 2003-01-23  Dick Porter  <dick@ximian.com>
23990
23991         * threads.c (start_wrapper): Create a Thread object if needed, so
23992         the Main() thread can do the class initialisation in a subthread
23993         that has been set up to allow managed code execution.
23994
23995         Pass the thread ID instead of the MonoThread pointer to the thread
23996         start and attach callbacks.  This change is required, because the
23997         jit thread start callback must be called _before_ the Thread
23998         object can be created.
23999         
24000         (mono_thread_init): Removed much object creation code that is no
24001         longer needed.  No managed code is called from here now.
24002
24003         * object.c (mono_runtime_exec_managed_code): Create a subthread
24004         for Main, and call back to the runtime to use it.
24005         Set the exit code when Main exits.
24006
24007         * gc.c: Make sure domain finalisation happens in a subthread.
24008         Re-enable threaded GC, fixing bug 31333 (again).
24009
24010         * environment.c: System.Environment internall calls (so far just
24011         ExitCode is here, the others are still in icall.c)
24012
24013         * appdomain.c (mono_runtime_cleanup): All threads running managed
24014         code should have finished before mono_runtime_cleanup() is
24015         reached, so no need to clean up threads.
24016
24017 2003-01-22  Martin Baulig  <martin@ximian.com>
24018
24019         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
24020         `gpointer func' arguments.      
24021         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
24022         but added `MonoThread *thread' argument.
24023         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
24024
24025         * threads.c (mono_new_thread_init): Added `gpointer func' argument
24026         and pass it to the mono_thread_start_cb callback.
24027         (mono_install_thread_callbacks): New public function to install a
24028         set of callbacks which are set by the debugger.
24029         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
24030
24031 2003-01-22  Martin Baulig  <martin@ximian.com>
24032
24033         * Makefile.am: Install debug-mono-symfile.h.
24034
24035 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
24036
24037         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
24038
24039 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
24040
24041         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
24042         * class.c (mono_ptr_class_get): correctly set access levels of pointers
24043         (mono_array_class_get): correctly set access levels of arrays
24044
24045 2003-01-20      Patrik Torstensson
24046         * image.h (MonoAssemblyName): changed major, minor, build, revision
24047         from signed to unsigned.
24048
24049 2003-01-20  sean kasun <skasun@azstarnet.com>
24050
24051         * reflection.c (load_cattr_value): Now this handles
24052         MONO_TYPE_SZARRAY.  Fixes bug #35629
24053
24054 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
24055
24056         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
24057         integer value
24058
24059 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24060
24061         * decimal.c: fixed bug #26056.
24062
24063 2003-01-17  Martin Baulig  <martin@ximian.com>
24064
24065         * gc.c: Raise an ExecutionEngineException instead of using g_error().
24066
24067 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24068
24069         * exception.[ch]:
24070         (mono_get_exception_type_initialization): new function.
24071
24072         * object.c: throw a TypeInitializationException when an exception is
24073         thrown invoking the class constructor.
24074
24075 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24076
24077         * reflection.c: fixed attribute reading.
24078
24079 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24080
24081         * icall.c:
24082         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
24083         provided, look for the type in the calling assembly and then in
24084         mscorlib; if the assembly name is provided, only try that one.
24085
24086 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
24087
24088         * object.c: register the vtable before there is a chance it's
24089         queried again recursively.
24090
24091 2003-01-13  Duncan Mak  <duncan@ximian.com>
24092
24093         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
24094         gc-internal.h. 
24095         
24096 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
24097
24098         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
24099
24100 2003-01-11  Martin Baulig  <martin@ximian.com>
24101
24102         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
24103         this to 20 for the release.
24104
24105 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
24106
24107         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
24108
24109         * loader.c (mono_method_get_marshal_info): bug fix
24110
24111         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
24112         structures with explicit layout
24113
24114 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
24115
24116         * profiler.c: made the output more readable (and sorted). 
24117         Added caller information for the allocation profiler.
24118
24119 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
24120
24121         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
24122
24123 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24124
24125         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
24126         to get value types.
24127         
24128 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
24129
24130         * object.c, profiler.h, profiler.c, profiler-private.h:
24131         Added object allocation profiler.
24132
24133 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
24134
24135         * reflection.h, reflection.c: handle global methods.
24136         Compress blob entries.
24137
24138 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
24139
24140         * marshal.c: fix compilation.
24141
24142 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
24143
24144         * loader.c (mono_method_get_marshal_info): impl.
24145
24146         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
24147
24148 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24149
24150         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
24151         for reference types.
24152
24153 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
24154
24155         * loader.c: fixed off by one error in loaded parameter names.
24156
24157 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
24158
24159         * marshal.c (mono_marshal_get_icall_wrapper): like
24160         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
24161         instead of a MonoMethod.
24162
24163 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24164
24165         * decimal.c: fixed bug #36537.
24166
24167 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
24168
24169         * marshal.c: throw a missing method exception if a
24170         P/Invoke method is not found.
24171
24172 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
24173
24174         * icall.c: allow a null this for constructors.
24175
24176 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
24177
24178         * icall.c: raise the proper exceptions if the arguments to the
24179         internal Invoke are incorrect.
24180
24181 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
24182
24183         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
24184
24185 2003-01-03  Martin Baulig  <martin@ximian.com>
24186
24187         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
24188
24189 2002-12-31  Martin Baulig  <martin@ximian.com>
24190
24191         * debug-mono-symfile.c: Completely rewrote the type section.
24192         Instead of using individual malloc()ed fields, we use one big
24193         continuous memory area and offsets into this area.
24194         See the comments in the source code for details.
24195
24196 2002-12-30  Martin Baulig  <martin@ximian.com>
24197
24198         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
24199
24200 2002-12-30  Martin Baulig  <martin@ximian.com>
24201
24202         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
24203         line number table in this data blob instead of using an external
24204         pointer.
24205
24206 2002-12-28  Martin Baulig  <martin@ximian.com>
24207
24208         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
24209
24210 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
24211
24212         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
24213         as a boxed return type.
24214
24215 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
24216
24217         * appdomain.c
24218         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
24219         g_build_filename to properly get separators on the filename created.
24220
24221         * object.h: Small change, introduce MonoMarshalByRefObject to
24222         track the layout of that structure in the C# universe as we make
24223         changes there.
24224
24225 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
24226
24227         * object.c: removed assert to allow static fields on interfaces.
24228         * loader.c: a TypeSpec may be used for any type, not just arrays.
24229
24230 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24231
24232         * class.c, class.h: added mono_class_array_element_size ().
24233         Ignore static methods in interfaces.
24234
24235 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24236
24237         * threads.c: fixed the build under cygwin.
24238
24239 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
24240
24241         * reflection.c: handle nullref constants. Allocate keys for
24242         reflection handles with the GC.
24243
24244 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
24245
24246         * threads.c, threads.h: added mono_thread_get_abort_signal()
24247         to get a suitable signal for thread abort.
24248
24249 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
24250
24251         * metadata.c: fix handling of ExportedType table.
24252
24253 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24254
24255         * icall.c: added WriteWindowsDebugString internal call.
24256
24257 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24258
24259         * reflection.h: added fields to match C# implementation.
24260
24261 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24262
24263         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
24264
24265 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
24266
24267         * gc.h, gc-internal.h: Rename header for GC internal calls to
24268         gc-internal.h from gc.h as to not clash with Boehm GC having its
24269         header installed as <gc.h> in outside include paths.
24270         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
24271         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
24272
24273 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24274
24275         * icall.c: assign minor, build and revision in FillName.
24276
24277 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
24278
24279         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
24280         Added support for running code generated by Reflection.Emit.
24281
24282 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24283
24284         * appdomain.c: check for NULL argument in LoadFrom.
24285
24286 2002-12-10  Dick Porter  <dick@ximian.com>
24287
24288         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
24289
24290 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24291
24292         * appdomain.c: fix buglet when building exe file name.  Handle full
24293         assembly name (needed after latest changes to AssemblyName).
24294         * image.c:
24295         (mono_image_close): free some hashtables.
24296
24297 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
24298
24299         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
24300         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
24301         on some systems (redhat 7.3) 
24302
24303 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
24304
24305         * threads.c: delete the critical section of a sync block,
24306         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
24307
24308 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
24309
24310         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
24311
24312 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24313
24314         * appdomain.[ch]: handle the assembly preload event to try loading the
24315         assemblies using the paths we have in the current domain.
24316
24317         * assembly.[ch]: created an assembly preload hook that is called to try
24318         loading the assembly by other means that the ones provided here.
24319
24320         * domain.c: initialize the domain search path.
24321
24322         From now on, assemblies (TODO: except corlib and System) are loaded
24323         according to these rules when using mono_assembly_load ():
24324
24325                 1. It tries to load the assembly from the ApplicationBase
24326                 of the current domain appending .dll and .exe (TODO: have to
24327                 try loading from name/name.dll and name/name.exe).
24328
24329                 2. It tries the search path specified in PrivateBinPath for the
24330                 current domain (if any).
24331
24332                 3. Previous behavior.
24333
24334 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
24335
24336         * icall.c: implemented GetInterfaceMap() related icall.
24337         * domain.c, loader.h: load MethodInfo in mono_defaults.
24338
24339 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
24340
24341         * gc.c: disable the finalizer thread for now, untill all the issues
24342         with it are resolved.
24343
24344 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
24345
24346         * string-icalls.c: handle embedded nulls in string ctor when the
24347         length is specified.
24348
24349 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
24350
24351         * class.c: look for explicit interface implementation in parent
24352         classes, too.
24353
24354 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
24355
24356         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
24357
24358 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
24359
24360         * gc.c: protect handles with a critical section.
24361
24362 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24363
24364         * icall.c:
24365         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
24366         parameters. If no assembly specified, try getting the type from all
24367         the assemblies in the current domain, else, load the assembly and get
24368         the type from it.
24369
24370 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24371
24372         * marshal.c: applied patch from Aleksey Demakov that fixes
24373         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
24374
24375 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24376
24377         * icall.c: fixed get_location.
24378
24379 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
24380
24381         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
24382         declarations to make it work with older gcc. 
24383
24384         * loader.c (mono_get_method): set signature->pinvoke for native calls
24385
24386 2002-11-20  Dick Porter  <dick@ximian.com>
24387
24388         * threads.c (mono_thread_init): Set the main thread's handle
24389
24390 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
24391
24392         * gc.c: allow compilation without GC support. Changed to match the
24393         mono coding style.
24394
24395 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
24396
24397         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
24398
24399 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
24400
24401         * reflection.c: set a public key token on the core assemblies.
24402
24403 2002-11-18  Dick Porter  <dick@ximian.com>
24404
24405         * threads.c: Split out some thread initialisation so that other
24406         files can set the start callback function.
24407
24408         * gc.c: Run finalisers in a separate thread, to avoid stack
24409         overflow.  Fixes bug 31333.
24410
24411         * appdomain.c: Set up GC finalisation thread.
24412
24413         * reflection.c: 
24414         * object.c: 
24415         * domain.c: Use gc.h macros for GC_malloc
24416         
24417 2002-11-15  Dick Porter  <dick@ximian.com>
24418
24419         * threadpool.c: 
24420         * threads.c:
24421         * appdomain.c: Removed mono_runtime_init_with_attach(),
24422         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
24423         merging the extra parameter with the existing function.  Removed
24424         unneeded code in mono_thread_attach().
24425
24426 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
24427
24428         * image.c (mono_image_loaded_by_guid): a method to get loaded
24429         images by guid. 
24430         (load_metadata_ptrs): we store the guid as string.
24431
24432 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
24433
24434         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
24435
24436         * metadata.c (mono_guid_to_string): imported method form Zoltan
24437         Varga (slightly modified)
24438
24439         * assembly.c (mono_assembly_open): load precompiled code
24440
24441         * loader.h (MonoMethod): we store the method token for use in the
24442         aot compiler. 
24443
24444 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24445
24446         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
24447         the hook function called when an assembly is loaded.
24448         
24449         * domain.c: Modified file.
24450         (mono_domain_assembly_load): removed hash table insertion of assemblies.
24451
24452         Fixes bug #33196.
24453
24454 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
24455
24456         * reflection.c: Map PEFileKind to the value expected by the WinNT
24457         image loader. 
24458
24459 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24460
24461         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
24462         Read until the buffer is filled completely.
24463
24464 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24465
24466         * icall.c: implemented MonoType.InternalGetEvent ().
24467
24468 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24469
24470         * appdomain.c: implemented InitAppDomainSetup. Delayed
24471         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
24472         the entry_assembly.
24473
24474         * assembly.c: base_dir is now an absolute path ending with
24475         G_DIR_SEPARATOR.
24476
24477         * icall.c: modified get_location according to the above changes.
24478
24479         * object.c: init AppDomain.SetupInformation for the default domain after
24480         we have the entry assembly.
24481
24482         * domain.c: when unloading a domain, setup = NULL.
24483
24484 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
24485
24486         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
24487
24488 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
24489
24490         * object.h, object.c: introduced mono_object_get_virtual_method ()
24491         to lookup the method invoked on an object when a callvirt is done on
24492         a method.
24493         * icall.c: make MethodInfo::Invoke() always do a virtual call.
24494
24495 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24496
24497         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
24498         current domain when loaded an assembly and failed to load it.
24499
24500         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
24501
24502 2002-10-31  Dick Porter  <dick@ximian.com>
24503
24504         * icall.c: 
24505         * file-io.h: 
24506         * file-io.c: Return the error status in a parameter, as the
24507         GetLastError() value has long since been blown away if we try and
24508         look it up in a subsequent internal call invocation.  Delete the
24509         GetLastError() internal call, because it's useless.
24510
24511 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
24512
24513         * class.[ch]: added cast_class to fix bug 29517
24514
24515 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
24516
24517         * marshal.c: create valid IL code in the filter clause:
24518         the new JIT is less forgiving:-)
24519
24520 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24521
24522         * icall.c: removed get_property internal call.
24523
24524 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
24525
24526         * appdomain.h domain.c: Added an ID to appdomains.
24527         
24528         * threads.c threads.h icall.c: Implement icall
24529         Thread:GetDomainID(), and remove unused icall 
24530         CurrentThreadDomain_internal.
24531
24532 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24533
24534         * icall.c: Don't recurse through the base types in GetConstructor.
24535         Fixes bug #32063. 
24536
24537 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
24538
24539         * mempool.h, mempool.c: added mono_mempool_empty() and
24540         mono_mempool_stats().
24541
24542 2002-10-23  Dick Porter  <dick@ximian.com>
24543
24544         * file-io.c: 
24545         * file-io.h: 
24546         * icall.c: Added MonoIO.GetFileType internal call
24547
24548 2002-10-17  Dick Porter  <dick@ximian.com>
24549
24550         * appdomain.c (mono_runtime_cleanup): Don't signal the async
24551         delegate semaphore before waiting for all threads to finish,
24552         because new threads can also call async delegates.  Fixes bug
24553         32004.
24554
24555         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
24556         of 3 seconds, in case another async job is queued.  (This part is
24557         needed because the bug fix reintroduced the 3s exit lag.)  This
24558         makes the mono_runtime_shutdown flag superfluous.
24559
24560 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
24561
24562         * reflection.c: include ehader size in method section headers.
24563         Really check for suplicated modules entries.
24564
24565 2002-10-17  Martin Baulig  <martin@gnome.org>
24566
24567         * debug-mono-symfile.c: Added back support for locals.
24568
24569 2002-10-14  Martin Baulig  <martin@gnome.org>
24570
24571         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
24572         MONO_TYPE_VOID.
24573
24574 2002-10-14  Martin Baulig  <martin@gnome.org>
24575
24576         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
24577         mono_class_get() instead of looking in the class cache. 
24578
24579 2002-10-13  Martin Baulig  <martin@gnome.org>
24580
24581         * debug-mono-symfile.c: Set version number to 28, include the
24582         signature in method names.
24583
24584 2002-10-13  Martin Baulig  <martin@gnome.org>
24585
24586         * debug-mono-symfile.h: Set version number to 27.
24587
24588 2002-10-11  Martin Baulig  <martin@gnome.org>
24589
24590         * gc.c: Don't register/unregister NULL pointers as disappearing links.
24591
24592 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
24593
24594         * metadata.c, metadata.h: added helper function to allocate signatures.
24595
24596 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24597
24598         * icall.c: added internal call to get the location of machine.config.
24599
24600 2002-10-08  Martin Baulig  <martin@gnome.org>
24601
24602         * debug-mono-symfile.c: Ignore classes with a pending init for the
24603         moment.
24604
24605 2002-10-03  Dick Porter  <dick@ximian.com>
24606
24607         * threads.c: Freebsd pthread_t is a pointer
24608
24609 2002-10-03  Dick Porter  <dick@ximian.com>
24610
24611         * socket-io.c: Implemented GetHostName_internal
24612
24613 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24614
24615         * mono-config.c:
24616         (mono_config_parse_file): don't leak the text.
24617
24618 2002-10-02  Martin Baulig  <martin@gnome.org>
24619
24620         * debug-mono-symfile.c: Added support for methods.
24621
24622 2002-10-01  Martin Baulig  <martin@gnome.org>
24623
24624         * debug-mono-symfile.c: Don't emit methods and line numbers for
24625         the dynamic symbol file, just write the type table.  We can easily
24626         have an external helper program which creates a symbol file for an
24627         IL file.        
24628
24629 2002-10-01  Dick Porter  <dick@ximian.com>
24630
24631         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
24632         Only add the handle to the cleanup array when we're about to
24633         launch the thread.  Bug 31425 deadlocked when the test was run on
24634         mono under w32.
24635
24636 2002-10-01  Martin Baulig  <martin@gnome.org>
24637
24638         * debug-mono-symfile.c: Added support for properties.
24639
24640 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
24641
24642         * reflection.c: unaligned store fix from Mark Crichton
24643         <crichton@gimp.org>.
24644
24645 2002-09-27  Martin Baulig  <martin@gnome.org>
24646
24647         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
24648         New interncall.
24649
24650 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
24651
24652         * assembly.h, assembly.c: use a sane API to hook into the assembly
24653         loading process instead of a useless special-purpouse hack
24654         (ngen needs a hook, too, for example).
24655
24656 2002-09-27  Dick Porter  <dick@ximian.com>
24657
24658         * threads.c (mono_thread_init): Call GetCurrentProcess() so
24659         io-layer can set up some process handle info.  Not needed on w32,
24660         but doesn't hurt either.
24661
24662         * process.c: Pass the program name in the second parameter to
24663         CreateProcess, so the path is searched.  Include the working
24664         directory. Implemented process name, process enumeration, and some
24665         process detail internal calls.
24666         
24667         * icall.c: Added internal calls for process lookup, and some
24668         process details
24669
24670 2002-09-26  Martin Baulig  <martin@gnome.org>
24671
24672         * assembly.c (mono_install_open_assembly_hook): New global
24673         function to install a function to be invoked each time a new
24674         assembly is loaded.
24675         (mono_assembly_open): Run this callback function if set.
24676
24677         * debug-mono-symfile.c: Put back line numbers for the dynamic
24678         symbol file and also record the .il file as source file.  This
24679         allows us to install the temporary symbol file as `file.dbg' just
24680         like a compiler-generated one.
24681
24682 2002-09-26  Nick Zigarovich <nick@chemlab.org>
24683
24684         * Corrected typo in gc.c (BOHEM vs BOEHM).
24685
24686 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24687
24688         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
24689         GetProperties. Also avoid calling g_slist_length in GetProperties and
24690         GetMethods.
24691
24692 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
24693
24694         * reflection.c: avoid unaligned stores (bug spotted by
24695         Mark Crichton  <crichton@gimp.org>).
24696
24697 2002-09-25  Martin Baulig  <martin@gnome.org>
24698
24699         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
24700         instead of guint64 for addresses and added prologue/epilogue info.
24701
24702 2002-09-25  Martin Baulig  <martin@gnome.org>
24703
24704         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
24705         store line number info.  For the dynamic symbol file, we only need
24706         to provide the JIT generated dynamic line number info for the dynamic
24707         symbol file.
24708
24709 2002-09-25  Martin Baulig  <martin@gnome.org>
24710
24711         * debug-mono-symfile.h: Incremented version number.
24712
24713 2002-09-24  Martin Baulig  <martin@gnome.org>
24714
24715         * class.c (mono_debugger_class_init_func): New global function
24716         pointer variable.
24717         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
24718         call it.
24719
24720         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
24721         function.  This is called via the mono_debugger_class_init_func
24722         hook to add all types to the dynamic type table.
24723         (ves_icall_MonoDebugger_GetType): New interncall to get a class
24724         from its metadata token.
24725
24726         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
24727         New interncall for the debugger.
24728
24729 2002-09-24  Nick Drochak <ndrochak@gol.com>
24730
24731         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
24732         before using it in case it is null.
24733         
24734 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
24735
24736         * metadata.c: allow custom modifiers in local var signatures
24737         (bug spotted by Zoltan Varga).
24738
24739 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
24740
24741         * class.c: deal with the <Module> class that may have a NULL vtable.
24742         Eliminate warnings.
24743
24744 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
24745
24746         * image.c, image.h: more strong name helpers.
24747         * monosn.c: more work: convert pem keys to cryptoapi format.
24748
24749 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
24750
24751         * string-icalls.c: speedup IndexOf.
24752
24753 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
24754
24755         * icall.c: updates from Zoltan.2.Varga@nokia.com.
24756
24757 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
24758
24759         * icall.c: cleanup: use mono_object_domain ().
24760
24761 2002-09-23  Martin Baulig  <martin@gnome.org>
24762
24763         * debug-mono-symfile.c: Improved type support.
24764
24765 2002-09-22  Martin Baulig  <martin@gnome.org>
24766
24767         * debug-mono-symfile.c: Added support for reference types and strings.
24768
24769 2002-09-22  Martin Baulig  <martin@gnome.org>
24770
24771         * debug-mono-symfile.c: Started to work on the type table.
24772
24773 2002-09-21  Martin Baulig  <martin@gnome.org>
24774
24775         * debug-mono-symfile.c: Largely reworked the symbol table format.
24776         The symbol table is now incrementally updated each time a new
24777         method is added.  We're now also using our own magic and version
24778         so that you don't need to recompile all your classes if the
24779         dynamic table changes.
24780         (mono_debug_update_mono_symbol_file): Removed.
24781         (mono_debug_symfile_add_method): New function to add a method.
24782
24783 2002-09-21  Martin Baulig  <martin@gnome.org>
24784
24785         * icall.c
24786         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
24787         New interncall.
24788
24789         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
24790         New interncall to get a method from its metadata token.
24791
24792 2002-09-21  Martin Baulig  <martin@gnome.org>
24793
24794         * debug-mono-symfile.c: Create type table.
24795
24796 2002-09-20  Martin Baulig  <martin@gnome.org>
24797
24798         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
24799
24800 2002-09-20  Martin Baulig  <martin@gnome.org>
24801
24802         * debug-mono-symfile.c: Provide information about params and locals.
24803
24804 2002-09-20  Martin Baulig  <martin@gnome.org>
24805
24806         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
24807         New interncall.
24808
24809         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
24810         interncall to get a method from its metadata token.
24811
24812 2002-09-20  Martin Baulig  <martin@gnome.org>
24813
24814         * debug-mono-symfile.c: Added a few checks for method->header
24815         being non-NULL.  This should never happen, but for the moment
24816         let's use a g_warning() rather than a g_assert().
24817
24818 2002-09-19  Mark Crichton  <crichton@gimp.org>
24819
24820         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
24821         even if support for it isn't present.  Added an #ifdef to fix this.
24822
24823         * socket-io.c: Added checks back for Solaris support.
24824
24825 2002-09-19  Martin Baulig  <martin@gnome.org>
24826
24827         * debug-mono-symfile.c (read_string, write_string): Reflect latest
24828         changes in the symbol file format.
24829
24830 2002-09-18  Martin Baulig  <martin@gnome.org>
24831
24832         * debug-mono-symfile.c: Set version number to 21.
24833
24834 2002-09-18  Dick Porter  <dick@ximian.com>
24835
24836         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
24837         on netbsd.  Fixes bug 30051.
24838
24839 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24840
24841         * reflection.c:
24842         (set_version_from_string): little fix.
24843
24844 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
24845
24846         * monosn.c, Makefile.am: added strong name utility.
24847         * reflection.h, reflection.c: implemented delayed signing,
24848         locale, version and hash id assembly attributes.
24849
24850 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
24851
24852         * loader.c, metadata.c: load param attributes in signatures.
24853
24854 2002-09-16  Martin Baulig  <martin@gnome.org>
24855
24856         * debug-mono-symfile.c: Added string table with all method names.
24857
24858 2002-09-14  Martin Baulig  <martin@gnome.org>
24859
24860         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
24861         fast method lookup.
24862
24863 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
24864
24865         * reflection.c: record the public key token of referenced assemblies.
24866
24867 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
24868
24869         * image.c, image.h: added functions to get the strong name and the
24870         public key of an assembly.
24871         * pedump.c: use them.
24872
24873 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
24874
24875         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
24876
24877 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
24878
24879         * marshal.c (mono_marshal_get_managed_wrapper): Added
24880         MONO_TYPE_BOOLEAN 
24881
24882 2002-09-11  Martin Baulig  <martin@gnome.org>
24883
24884         * gc.c: Call GC_unregister_disappearing_link() on all links when
24885         finalizing them, this is necessary to aviod a crash in boehm's
24886         finalize handler.
24887
24888 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
24889
24890         * gc.c: handle GetTarget for finalized objects spotted and fixed by
24891         nick@chemlab.org.
24892
24893 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
24894
24895         * icall.c: implemented MonoType::Module.
24896         * reflection.c, reflection.h: mono_module_get_object () from
24897         Tomi Pakarinen <tomi.pakarinen@welho.com>.
24898
24899 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
24900
24901         * icall.c: ignore overridden methods in GetMethods ().
24902         Fix for FieldInfo::SetValue().
24903         * object.c: handle float/double in runtime invoke.
24904
24905 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
24906
24907         * object.c: allow a constructor to be called again on an object.
24908
24909 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
24910
24911         * class.h, class.c: move field layout code to it's own function and
24912         export it. Get an interface id earlier. Move fields in MonoClass
24913         so they are more cache friendly and align the bitfields.
24914         * loader.c: temporary handle get_param_names() for a runtime method.
24915         * reflection.c, reflection.h: more code to handle runtime creation of
24916         types.
24917
24918 2002-09-09  Martin Baulig  <martin@gnome.org>
24919
24920         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
24921         signature with the pinvoke field being set for the actual call.
24922
24923 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
24924
24925         * icall.c: removed some unused icalls. Start of map of glib charsets
24926         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
24927
24928 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
24929
24930         * debug-helpers.c: break infinite loop (found and fixed by
24931         Holger Arnold <harnold@gmx.de>).
24932
24933 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
24934
24935         * icall.c: target may be null in create_delegate.
24936
24937 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
24938
24939         * marshal.c: handle a boolean return type.
24940
24941 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
24942
24943         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
24944
24945 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
24946
24947         * gc.c: fix weakreferences.
24948
24949 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
24950
24951         * icall.c: added icall to get default codepage.
24952
24953 2002-09-03  Dick Porter  <dick@ximian.com>
24954
24955         * threads.h: 
24956         * threads.c: Use MonoThread instead of MonoObject where
24957         apropriate.
24958
24959         Store running thread objects in a hash table, so that we have all
24960         the info to hand when waiting for them to finish
24961         (means we don't need OpenThread() any more, so mingw builds should
24962         be fully functional again.)
24963
24964         * verify.c:
24965         * object.h: Added thread ID to MonoThread
24966
24967 2002-09-03  Martin Baulig  <martin@gnome.org>
24968
24969         * icall.c (System.Reflection.Assembly::get_location): New interncall.
24970
24971 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24972
24973         * icall.c: fixed leak in get_temp_path. Thanks lupus.
24974
24975 2002-09-03  Martin Baulig  <martin@gnome.org>
24976
24977         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
24978         argument to store the end address of the disassembled instruction.
24979
24980         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
24981         here from debug-symfile.h.
24982         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
24983         JIT into this struct.
24984         (MonoSymbolFile): Added `char *image_file' field.
24985         (MonoDebugGetMethodFunc): Removed.
24986         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
24987         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
24988         (mono_debug_find_method): New method.
24989
24990         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
24991         create a full symbol file.
24992         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
24993         and static symbol files.
24994         (mono_debug_find_method): The symbol file keeps an internal method hash,
24995         call this to get a MonoDebugMethodInfo from a MonoMethod.
24996
24997         * debug-symfile.[ch]: Removed.
24998
24999 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
25000
25001         * image.c (do_mono_image_open): Remove linker version check.
25002
25003 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
25004
25005         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
25006         wrappers for instance methods.
25007         
25008 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25009
25010         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
25011
25012 2002-08-28  Dick Porter  <dick@ximian.com>
25013
25014         * Makefile.am: Export HOST_CC for w32 builds
25015
25016 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25017
25018         * file-io.c process.c: MonoString are null terminated, no
25019         need for mono_string_to_utf16() anymore.
25020
25021 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25022
25023         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
25024
25025 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
25026
25027         * icall.c, reflection.h: speedup System.MonoType.
25028
25029 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25030
25031         * reflection.c: allow null as the value of a string argument in
25032         custom attributes constructors.
25033
25034 2002-08-27  Martin Baulig  <martin@gnome.org>
25035
25036         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
25037         `trampoline_address' field.
25038
25039 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
25040
25041         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
25042         check (fixes bug #29486) 
25043
25044 2002-08-27  Martin Baulig  <martin@gnome.org>
25045
25046         * debug-mono-symfile.c: Changed the file format in a way that allows us
25047         open it read-only and to use a specially malloced area for all the
25048         dynamic data.  We can now also generate a symbol file on-the-fly if we're
25049         debugging IL code and there is no MCS generated symbol file for it.
25050
25051 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
25052
25053         * object.c: added a define for a good string and array
25054         creation speedup (not enabled by default because we need to deal with
25055         the synch stuff).
25056
25057 2002-08-26  Martin Baulig  <martin@gnome.org>
25058
25059         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
25060         function to create a dynamic symbol file.  This is used by the
25061         debugger to create a symbol file for IL code on-the-fly.
25062
25063 2002-08-26  Martin Baulig  <martin@gnome.org>
25064
25065         * loader.c (mono_lookup_pinvoke_call): Include the error message
25066         from g_module_error() in the error message.
25067
25068 2002-08-24  Martin Baulig  <martin@gnome.org>
25069
25070         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
25071         function to update the symbol file.  The symbol file is mmap()ed
25072         writable, but private.  This allows us to install the symbol file
25073         together with the assembly.
25074
25075 2002-08-24  Martin Baulig  <martin@gnome.org>
25076
25077         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
25078         but they can read the new symbol file format which mcs is now creating.
25079
25080         * debug-symfile.c (mono_debug_find_source_location): Moved to
25081         debug-mono-symfile.c; this is now operating on the new symbol file.
25082
25083 2002-08-23  Martin Baulig  <martin@gnome.org>
25084
25085         * debug-helpers.c (mono_method_desc_from_method): New function to get
25086         a MonoMethodDesc from a MonoMethod.
25087
25088 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
25089
25090         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
25091         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
25092
25093 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
25094
25095         * string-icalls.[ch]: make helper methods static.
25096
25097 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25098
25099         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
25100         types to it and to SetValueInternal.
25101
25102         * object.c: Moved handle_enum label to its proper place. This was the
25103         f... bug! ;-)
25104
25105         This time i compiled mcs and gtk-sharp and they both work.
25106
25107 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25108
25109         * icall.c: reverted partially my previous patch until 
25110         object.c:set_value handles enums correcly.
25111
25112 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25113
25114         * icall.c:
25115         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
25116         (ves_icall_System_Environment_get_MachineName): removed warning when
25117         compiling under cygwin.
25118
25119 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
25120
25121         * object.c: fixed field_get_value() for reference types.
25122
25123 2002-08-22  Dick Porter  <dick@ximian.com>
25124
25125         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
25126         Don't free a buffer while it's still needed.  Patch from Jonathan
25127         Liger <Jonathan.liger@wanadoo.fr>
25128
25129 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
25130
25131         * icall.c (ves_icall_System_Environment_get_Platform): Add new
25132         internal call.
25133
25134 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
25135
25136         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
25137         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
25138
25139         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
25140         we call unmanaged code which throws exceptions.
25141
25142 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25143
25144         * appdomain.h: added per-domain entry_assembly.
25145         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
25146         arguments.
25147         * icall.c: Assembly::GetEntryAssembly icall.
25148         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
25149         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
25150
25151 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25152
25153         * appdomain.h, gc.c: added mono_domain_finalize ().
25154
25155 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25156
25157         * object.c:
25158         (mono_print_unhandled_exception): changed g_warning by g_printerr
25159         because g_log has a 1024 characters limit (yeah, i got a big stack
25160         trace). Don't print exception name, that should be in ToString 
25161         returned string.
25162
25163 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25164
25165         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
25166         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
25167
25168 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25169
25170         * object.c:
25171         (mono_print_unhandled_exception): after previous commit, i realized
25172         that MS calls ToString on the exception. I changed this function to
25173         do that. This way we get stack_trace for free.
25174
25175 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25176
25177         * object.c:
25178         (mono_print_unhandled_exception): invoke Message property instead of
25179         getting 'message' field from Exception. Don't allocate memory for
25180         'trace' and 'message' if not needed.
25181
25182 2002-08-18  Dick Porter  <dick@ximian.com>
25183
25184         * unicode.c: Fix asserts to match Encoder.cs checks
25185
25186 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25187
25188         * marshal.c: fix unaligned store issue and a few wrong
25189         opcode argument types.
25190
25191 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25192
25193         * icall.c: added GetUninitializedObjectInternal internal call.
25194
25195 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
25196
25197         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
25198         to the right domain.
25199
25200 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
25201
25202         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
25203
25204         * class.c (class_compute_field_layout): set blittable to false for Strings
25205
25206         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
25207
25208 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25209
25210         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
25211         first chunk of code to create types at runtime. Code to
25212         handle ReflectedType/DeclaringType. Make reflection handles
25213         domain specific.
25214
25215 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
25216
25217         * class.c: set correct name in arrays.
25218
25219 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
25220
25221         * appdomain.c (mono_domain_transfer_object): make it work with
25222         valuetypes. bug fixes.
25223
25224 2002-08-12  Dick Porter  <dick@ximian.com>
25225
25226         * object.h: Rename some parameters to avoid c++ keywords (Patch
25227         from Joseph Wenninger <kde@jowenn.at>)
25228
25229 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
25230
25231         * icall.c: added icall to implement Assembly.GetFile*.
25232
25233 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25234
25235         * reflection.h, reflection.c: code to embed managed resources.
25236
25237 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
25238
25239         * class.c: move all the type size stuff into
25240         class_compute_field_layout().
25241
25242 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25243
25244         * class.c: ensure enums have always the correct instance size.
25245         * unicode.c: remove wrong assert.
25246
25247 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
25248
25249         * assembly.c: fix mem corruption issue.
25250         * image.h, image.c: added mono_image_get_resource () to access
25251         managed resources.
25252         * icall.c: implemented Assembly.EntryPoint property and some
25253         Managed Resources related internalcalls.
25254
25255
25256 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25257
25258         * image.c, image.h: impemented mono_image_get_entry_point ().
25259         * appdomain.c: use mono_image_get_entry_point.
25260
25261 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25262
25263         * reflection.c: support the object type argument when loading
25264         custom attributes.
25265
25266 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
25267
25268         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
25269         String as return type.
25270
25271 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
25272
25273         * reflection.c: fix encoding of named args for custom attrs to match
25274         the ms implementation. Read them back when instantiating custom
25275         attributes.
25276
25277 2002-08-02  Radek Doulik  <rodo@ximian.com>
25278
25279         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
25280         by Dietmar as quick fix
25281         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
25282         16 as stack size, used on more places as quick fix before Dietmar
25283         will fix it properly
25284
25285 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25286
25287         * object.h, object.c: added accessors for fields and properties.
25288
25289 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25290
25291         * class.c, class.h: made mono_class_get_field_from_name ()
25292         loop on parent types.
25293         Added mono_class_get_property_from_name ().
25294
25295 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
25296
25297         * class.c, class.h: move the code to setup the type vtable in its own
25298         function so that it can be reused also for types created at runtime.
25299         Eliminate the "class" identifier from the header file.
25300         * reflection.c: setup the vtable for enums so that we can create
25301         objects for use in SetConstant ().
25302
25303 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
25304
25305         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
25306         instead of the delegate itself as this pointer (bug #28383)
25307
25308 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
25309
25310         * marshal.c (mono_marshal_get_managed_wrapper): added return type
25311         conversions.
25312
25313 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25314
25315         * loader.c: don't set the pinvoke bit on icalls.
25316
25317 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
25318
25319         * debug-helpers.c (mono_method_full_name): only print a number to
25320         indicate wrapper type (so that the output is more readable in traces).
25321
25322 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
25323
25324         * class.c (mono_class_init): include method override patch from Paolo
25325
25326 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
25327
25328         * icall.c: fixed GetTypeCode().
25329
25330 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
25331
25332         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
25333         use real delegate invoke function to make it work with multicast
25334         delegates (fix bug# 28291).
25335
25336 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
25337
25338         * object.c: load constant strings.
25339
25340 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
25341
25342         * reflection.c: no magic numbers.
25343         * tabledefs.h: security action enum.
25344
25345 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
25346
25347         * assembly.c: fix possible memory corruption.
25348
25349 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25350
25351         * reflection.h, reflection.c: added support for linking resources.
25352         * verify.c: check we have an updated corlib.
25353
25354 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
25355
25356         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
25357         string arrays.
25358         (mono_marshal_string_array): null terminate unmanaged string arrays.
25359         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
25360
25361 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
25362
25363         * icall.c: Type.GetType () can now return also types from the
25364         calling assembly.
25365
25366 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
25367
25368         * loader.h, loader.c: stack walking support.
25369         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
25370         GetCallingAssembly.
25371
25372 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
25373
25374         * marshal.c: added optimisations for blittable types 
25375
25376         * class.c (mono_array_class_get): do not set blittable attribute on arrays
25377         (mono_class_setup_mono_type): set blittable attribute for single
25378         and double.
25379
25380         * marshal.c (mono_string_utf8_to_builder): impl.
25381         (mono_string_builder_to_utf8): impl.
25382         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
25383
25384 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
25385
25386         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
25387         (mono_marshal_get_managed_wrapper): impl. byref types
25388
25389 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25390
25391         * icall.c:
25392         (search_method): don't display debug message. 
25393
25394 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
25395
25396         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
25397
25398 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
25399
25400         * appdomain.c: set the missing filename when throwing exception.
25401
25402 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
25403
25404         * metadata.c (mono_type_size): code cleanup
25405         (mono_type_stack_size): removed some test code
25406
25407 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
25408
25409         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
25410         mono_get_exception_file_not_found now.
25411
25412         * exception.c (mono_exception_from_name_two_strings): New version
25413         that will call a constructor with two string arguments. 
25414         (mono_get_exception_file_not_found): New helper routine, used to
25415         report file-not-found errors.
25416
25417 2002-07-20  Dick Porter  <dick@ximian.com>
25418
25419         * process.h:
25420         * process.c: Pass file handles to CreateProcess
25421         
25422         * icall.c:
25423         * file-io.h:
25424         * file-io.c: Implemented CreatePipe
25425
25426 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
25427
25428         * metadata.c (mono_get_param_info): set alignment for value types
25429
25430 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25431
25432         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
25433         Constify mono_domain_assembly_open().
25434         * loader.c: handle null namespace in icalls.
25435
25436 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
25437
25438         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
25439         (emit_str_to_ptr_conv): marshal object as structs
25440
25441         * metadata.c (mono_type_to_unmanaged): marshal object as structs
25442
25443         * marshal.c (mono_marshal_get_runtime_invoke): support value types
25444
25445 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
25446
25447         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
25448         (mono_marshal_get_native_wrapper): we an now return value types
25449
25450 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25451
25452         * verify.c: more checks implemented.
25453
25454 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
25455
25456         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
25457         (fix bug #27695)
25458         (mono_marshal_get_native_wrapper): allow byref arguments
25459         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
25460         impl. PtrToStringXXX methods
25461         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
25462         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
25463         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
25464         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
25465         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
25466
25467 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25468
25469         * reflection.c: fix buglet in parsing an assembly name.
25470
25471 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
25472
25473         * marshal.c (emit_ptr_to_str_conv): first impl.
25474
25475 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
25476
25477         * object.c, class.h: cache the vtable in the class as suggested by
25478         vargaz@freemail.hu (Zoltan Varga).
25479
25480 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25481
25482         * class.h, loader.c: added mono_field_from_token().
25483         * verify.c: first cut of type checking code.
25484
25485 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
25486
25487         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
25488
25489 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
25490
25491         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
25492         (fix bug #27782)
25493         (mono_marshal_get_remoting_invoke): impl.
25494         (mono_delegate_begin_invoke): impl.
25495         (mono_mb_emit_save_args): impl.
25496         (mono_delegate_end_invoke): impl.
25497         (mono_marshal_get_delegate_begin_invoke):
25498         (mono_marshal_get_delegate_end_invoke):
25499         (mono_marshal_get_delegate_invoke): generate a special name for
25500         those methods (including the signature) and associate them whith
25501         the delegate class. 
25502
25503 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
25504
25505         * reflection.[ch]: 
25506         (mono_reflection_type_from_name): now it has a MonoImage parameter
25507         which is used as the default image to search the type in. If the image
25508         is NULL or getting the type from it fails, it defaults to corlib.
25509
25510         * icall.c: changed 1 call to mono_reflection_type_from_name to match
25511         new parameter.
25512
25513 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25514
25515         * reflection.c: update the parameter table index.
25516
25517 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
25518
25519         * domain.c: don't include the mark byte in the string hash.
25520
25521 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
25522
25523         * icall.cs: icall for Type.GetTypeCode ().
25524         * verify: a couple of fixes and disabled local initialization checks.
25525
25526 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
25527
25528         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
25529
25530         * debug-helpers.c (mono_method_full_name): print the type of the
25531         runtime wrapper
25532
25533         * metadata.c (mono_signature_hash): a hash function for signatures
25534         (mono_signature_hash): better hash algorithm
25535
25536         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
25537
25538         * debug-helpers.c (mono_method_full_name): this can now generate
25539         method names with signatures
25540
25541         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
25542         method dont have this pointers.
25543
25544 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
25545
25546         * reflection.c: fixup typebuilder tokens.
25547         * image.c: fix buglet.
25548         * marshal.h: remove whitespace.
25549         * metadata.h, metadata.c: reinstate code that was removed.
25550         * verify.c: handle catch directives and fix another couple of bugs.
25551
25552 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
25553
25554         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
25555         (mono_marshal_get_native_wrapper): make it comp. with the old code
25556         (mono_marshal_get_native_wrapper): support boolean
25557         (mono_marshal_get_managed_wrapper): support more types
25558
25559 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
25560
25561         * class.c (class_compute_field_layout): compute class->blittable attribute.
25562
25563 2002-07-09  Dick Porter  <dick@ximian.com>
25564
25565         * threads.c: Make the thread cleaning up cope with threads that
25566         call ExitThread()
25567
25568 2002-07-08  Radek Doulik  <rodo@ximian.com>
25569
25570         * reflection.c (method_encode_code): use non-translated values to
25571         compute finally_start, this fixes exception handling on ppc, yay!
25572
25573         * decimal.h (struct signscale): fix endianess
25574
25575 2002-07-07  Radek Doulik  <rodo@ximian.com>
25576
25577         * reflection.c: swap box_val and not val
25578
25579 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
25580
25581         * reflection.c, reflection.h: handle full assembly info in type name.
25582         Handle Type arguments when loading custom attributes.
25583         * icall.c: updated to use new mono_reflection_type_from_name () method.
25584
25585 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25586
25587         * loader.c:
25588         (method_from_memberref): also print assembly name when method not found.
25589
25590 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25591
25592         * icall.c:
25593         (ves_icall_TypeGetProperties): fixed bug #27473. 
25594
25595 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25596
25597         * reflection.c: display image name and token when cannot find the
25598         .ctor for an attribute.
25599
25600 2002-07-05  Martin Baulig  <martin@gnome.org>
25601
25602         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
25603
25604 2002-07-04  Dick Porter  <dick@ximian.com>
25605
25606         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
25607         compile on mingw.  This will cause mingw builds to not wait for
25608         subthreads to terminate after the main thread does.  I've lodged a
25609         bug with the mingw developers for them to wrap OpenThread().
25610
25611 2002-07-03  Dick Porter  <dick@ximian.com>
25612
25613         * threads.c: Store thread IDs instead of handles, because
25614         GetCurrentThread() returns a pseudohandle and therefore stores
25615         useless values.  mono_thread_cleanup() continues checking the
25616         array of threads until it is empty, to cope with subthreads
25617         spawning new threads after the main thread has finished.
25618
25619         * profiler.h:
25620         * profiler.c:
25621         * profiler-private.h: Pass the thread ID to thread profiler
25622         functions, instead of a handle
25623
25624 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
25625
25626         * verify.c: fixes to make it more usable.
25627         * pedump.c: added --verify code to verify IL code in an assembly.
25628
25629 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25630
25631         * reflection.c: turn errors into warnings to allow compiling corlib.
25632
25633 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
25634
25635         * reflection.c: add special cases to compile corlib.
25636
25637 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
25638
25639         * reflection.c: handle properties with only a set method.
25640
25641 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
25642
25643         * opcodes.h: add enum with opcodes in opval order.
25644
25645 2002-07-01  Dick Porter  <dick@ximian.com>
25646         
25647         * object.h:
25648         * object.c (mono_runtime_run_main): Removed unneeded argument
25649
25650 2002-06-28  Martin Baulig  <martin@gnome.org>
25651
25652         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
25653
25654 2002-06-27  Dick Porter  <dick@ximian.com>
25655
25656         * threads.c: Store the handle in both the parent thread and in the
25657         subthread, to minimise the time between starting a new thread and
25658         storing its ID.
25659
25660 2002-06-26  Dick Porter  <dick@ximian.com>
25661
25662         * appdomain.c (mono_runtime_cleanup): Close the socket library
25663         after all the threads have finished, not before
25664
25665 2002-06-26  Martin Baulig  <martin@gnome.org>
25666
25667         * debug-symfile.c (mono_debug_find_source_location): Added
25668         `guint32 *line_number' argument.  If it's not NULL, store the line number
25669         there and return the file name without the line number.
25670
25671 2002-06-25  Dick Porter  <dick@ximian.com>
25672
25673         * icall.c:
25674         * process.h:
25675         * process.c: Process forking and other support functions
25676
25677 2002-06-25  Dick Porter  <dick@ximian.com>
25678
25679         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
25680         things dont happen when the image is closed.
25681         (mono_image_lookup_resource): Walk the resource section looking
25682         for a particular entry
25683
25684         * cil-coff.h: PE resource section decoding
25685
25686 2002-06-25  Dick Porter  <dick@ximian.com>
25687         
25688         * assembly.h:
25689         * assembly.c: 
25690         (mono_assembly_foreach): Accessor functions to walk the list of
25691         loaded assemblies
25692         (mono_assembly_set_main):
25693         (mono_assembly_get_main): Process methods need to know which
25694         assembly is the "main" one
25695
25696         * object.c (mono_runtime_run_main): Record the main assembly
25697
25698         * debug-helpers.c: Fix typo
25699
25700 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
25701
25702         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
25703         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
25704
25705 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
25706
25707         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
25708
25709 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
25710
25711         * image.c (do_mono_image_open): Initialize reference count,
25712         otherwise we leak the MonoImage.
25713
25714 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
25715
25716         * reflection.c: small tweak to handle self-hosting.
25717
25718 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25719
25720         * reflection.c: fix type name parse code.
25721
25722 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
25723
25724         * reflection.c: break out of the loop.
25725         * image.c: special case corlib.
25726
25727 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25728
25729         * reflection.c: add all the custom attrs at the end to ensure the
25730         ctors have been properly initialized when the attributes are defined
25731         in the current assembly.
25732
25733 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
25734
25735         * reflection.c: handle correctly multiple-nested types.
25736
25737 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
25738
25739         * row-indexes.h: fix typos.
25740         * reflection.c: adjust for typos and fix method_def_or_ref
25741         encoding in MethodImpl table.
25742
25743 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
25744
25745         * reflection.c: fix entry point patching (thanks Serge!).
25746
25747 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
25748
25749         * verify.c: add check for System.Exception
25750
25751 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
25752
25753         * image.c, class.c: minifix for code just c&p'ed.
25754         * reflection.c: warning fix.
25755         * object.h, loader.h, domain.c: load also StringBuilder.
25756
25757 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
25758
25759         * marshal.h, marshal.c: some support code to handle complex marshaling.
25760
25761 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25762
25763         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
25764         Better signatures with vtable error dump.
25765
25766 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
25767
25768         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
25769
25770 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
25771
25772         * icall.c (ves_icall_Type_GetField): impl.
25773
25774 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25775
25776         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
25777         to retrieve a marshal description blob for a field or param.
25778
25779 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25780
25781         * reflection.h, reflection.c: change order of nested type emission
25782         to avoid table corruption. The NestedTypes table is sorted.
25783         * icall.c: change order of GetConstructor results to workaround mcs bug.
25784
25785 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
25786
25787         * reflection.h, reflection.c: handle field and param marshal
25788         information.
25789
25790 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25791
25792         * icall.c, marshal.c marshal.h: more Marshal class implementation.
25793
25794 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25795
25796         * reflection.c: fix call convention.
25797
25798 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25799
25800         * reflection.h, reflection.c: mono_image_get_memberref_token()
25801         takes a type instead of a class, now. Added
25802         mono_image_get_array_token() to create tokens for the special
25803         multi-dim array methods.
25804
25805 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25806
25807         * assembly.c: handle modules (no assembly table). Split
25808         loading references in its own function.
25809         * class.c: handle moduleref resolution scope.
25810         * image.c, image.h: cache module name in image.
25811
25812 2002-06-07  Martin Baulig  <martin@gnome.org>
25813
25814         * reflection.c (mono_image_get_type_info): Only add a class layout entry
25815         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
25816
25817 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
25818
25819         * icall.c: more signature fixes that used uint instead of int.
25820
25821 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25822
25823         * reflection.c: fixed signature of field refs.
25824
25825 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
25826
25827         * class.c, reflection.c: handle typerefs of nested types
25828         (both on read and when writing files).
25829
25830 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
25831
25832         * icall.c: fix method signatures that tried to workaround the previous
25833         typo, d'oh!
25834
25835 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
25836
25837         * debug-helpers.c: fix typo.
25838
25839 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
25840
25841         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
25842         rewrote the PE/COFF writing code (our programs are understood by the
25843         ms runtime, now).
25844
25845 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
25846
25847         * gc.c, gc.h, icall.c: weakreference support.
25848
25849 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25850
25851         * Makefile.am, mono-config.c: use $(sysconfdir).
25852
25853 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
25854
25855         * icall.c: changed default precision of Double.ToString() to 15.
25856         Fixed memory leak. Unified with Single.ToString.
25857
25858 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
25859
25860         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
25861
25862 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25863
25864         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
25865         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
25866         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
25867         and myself.
25868
25869 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
25870
25871         * debug-symfile.c, sysmath.c: yet more compilation fixes.
25872
25873 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25874
25875         * reflection.c, socket-io.c: more compilation fixes.
25876
25877 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
25878
25879         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
25880         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
25881         unicode.c: warning and compiler compatibility fixes.
25882
25883 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
25884
25885         * class.h, metadata.c: fixed warnings/compilation errors.
25886
25887 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
25888
25889         * Makefile.am, mono-config.c, mono-config.h: configuration file
25890         support routines.
25891         * loader.c, loader.h: make Dll mapping configurable at runtime in the
25892         config file. Export methods to insert and lookup mappings.
25893
25894 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25895
25896         * reflection.c: handle types and boxed objects in custom attr
25897         constructors.
25898
25899 2002-05-30  Martin Baulig  <martin@gnome.org>
25900
25901         * debug-symfile.c
25902         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
25903
25904 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
25905
25906         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
25907         to lookup the implmap row for a P/Invoke method.
25908         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
25909         P/Invoke method from the runtime on an as needed basis.
25910
25911 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
25912
25913         * metadata.c (mono_metadata_parse_signature): impl.
25914
25915 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25916
25917         * class.c: handle .pack directive.
25918
25919 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25920
25921         * object.c: initialize static fields with RVA data.
25922
25923 2002-05-25  Martin Baulig  <martin@gnome.org>
25924
25925         * debug-symfile.c
25926         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
25927
25928 2002-05-24  Martin Baulig  <martin@gnome.org>
25929
25930         * debug-symfile.c
25931         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
25932         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
25933         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
25934
25935 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
25936
25937         * object.c: special case string ctros in invoke.
25938         * gc.c: silly whitespace changes.
25939
25940 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
25941
25942         * threadpool.[ch]: impl. a threadpool that can
25943         be used by mint and mono.
25944
25945 2002-05-22  Martin Baulig  <martin@gnome.org>
25946
25947         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
25948         The first argument is now a `MonoReflectionModuleBuilder *', the return
25949         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
25950         `methods' field to get the method builder.  The `token' argument is the
25951         unfixed token.
25952
25953         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
25954         invalid characters instead of g_assert_not_reached()ing.  This seems
25955         to be the behaviour of mscorlib.
25956
25957 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
25958
25959         * object.c (mono_runtime_invoke_array): applied patch from Rachel
25960         Hestilow to fix bug #25104
25961
25962 2002-05-21  Martin Baulig  <martin@gnome.org>
25963
25964         * debug-symfile.c (mono_debug_find_source_location): New function.
25965         Looks up an IL offset in the line number table and returns the source
25966         location as a string.
25967
25968 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25969
25970         * icall.c:
25971         (mono_double_ToStringImpl): changed %f by %g until we have something
25972         better.
25973
25974 2002-05-21  Nick Drochak  <ndrochak@gol.com>
25975
25976         * icall.c : Use different name for Math.Pow's icall.  Needed to check
25977         parameters first in C#.
25978
25979 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
25980
25981         * icall.c, reflection.h: added icall to get info about an event.
25982
25983 2002-05-20  Radek Doulik  <rodo@ximian.com>
25984
25985         * object.c (mono_value_box): don't use memcpy for boxing on BIG
25986         endian
25987         (mono_value_box): don't use memcpy for small sizes on
25988         architectures with unaligned access
25989
25990 2002-05-20  Martin Baulig  <martin@gnome.org>
25991
25992         * reflection.c (mono_reflection_setup_internal_class): Don't crash
25993         if `tb->parent == NULL'.
25994         (mono_reflection_create_internal_class): New function.  This is
25995         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
25996         for enum types.
25997
25998         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
25999         New interncall.
26000
26001 2002-05-19  Martin Baulig  <martin@gnome.org>
26002
26003         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
26004         argument to get the length, don't default to the array length.
26005
26006 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
26007
26008         * assembly.c (mono_assembly_setrootdir): New function used to
26009         override the MONO_ASSEMBLIES directory.
26010
26011 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26012
26013         * icall.c: ValueType_GetHashCode() initialize local var.
26014
26015 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26016
26017         * reflection.c: sort custom attributes table.
26018
26019 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26020
26021         * reflection.c: support named args in custom attributes (write support).
26022
26023 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
26024
26025         * reflection.c: fix finally position calculation.
26026
26027 2002-05-15  Radek Doulik  <rodo@ximian.com>
26028
26029         * reflection.c: fixed endianess at many places
26030
26031         * icall.c (ves_icall_InitializeArray): comment out debug msg
26032
26033 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
26034
26035         * object.c (mono_unhandled_exception): new function to handle
26036         unhandled exceptions.
26037         (mono_unhandled_exception): call the UnhandledException event.
26038         (mono_runtime_delegate_invoke): impl.
26039
26040 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
26041
26042         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
26043         returns the RVA, not the direct pointer to the data. Handle the case
26044         when the class size is fixed.
26045
26046 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
26047
26048         * reflection.c: fix some endianess issues.
26049
26050 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
26051
26052         * object.c (mono_runtime_invoke): is now able to catch exceptions.
26053
26054         * threads.c (mono_thread_init): added a callback which is invoked
26055         at thread start.
26056
26057 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
26058         
26059         * icall.c: make GetHashCode return non-negative values.
26060
26061 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
26062
26063         * object.c, icall.c, gc.c: revert to address-based hashcode.
26064
26065 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
26066
26067         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
26068
26069 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26070
26071         * icall.c, class.c: special case <Module>.
26072
26073 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
26074
26075         * icall.c: fix bug in GetNow().
26076
26077 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
26078
26079         * object.c (mono_runtime_class_init): make sure that we call all
26080         static class constructors.
26081
26082 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26083
26084         * reflection.c: sort methodsemantics table.
26085
26086 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26087
26088         * reflection.h, reflection.c: honour init locals setting.
26089
26090 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
26091
26092         * icall.c: copied Double ToStringImpl for Single ToStringImpl
26093
26094 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
26095
26096         * reflection.c: support ContructorBuilders in attribute blob creation.
26097
26098 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26099
26100         * reflection.c: some changes to build a binary that can be run
26101         directly in windows.
26102
26103 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
26104
26105         * loader.c: print a big message when an icall can't be found.
26106
26107 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26108
26109         * string-icalls.c: fix bug 24248.
26110
26111 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
26112
26113         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
26114         icall.c, reflection.h: separate assembly loading by pathname and by
26115         assembly name. Use the MONO_PATH env var to search for assemblies.
26116
26117 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26118
26119         * assembly.c, image.h: add some support for assemblies
26120         with multiple modules.
26121         * class.c, class.h: export mono_class_from_typeref().
26122         * loader.c: remove duplicated code and use mono_class_from_typeref(),
26123         instead.
26124
26125 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26126
26127         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
26128         documentation says (the ECMA one is correct).
26129
26130 2002-05-02  Dick Porter  <dick@ximian.com>
26131
26132         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
26133         Don't name the synchronisation mutex.
26134
26135 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
26136
26137         * rand.c
26138         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
26139         Make the prototypes match.
26140         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
26141         Same.
26142
26143         * icall.c
26144         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
26145         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
26146         all systems have tm.tm_zone, so use strftime() with %Z to print
26147         the timezone abreviation into a temp string.
26148
26149         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
26150         rather than mono_array_addr() on a MonoString on Big Endian
26151         machines.
26152
26153 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
26154
26155         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
26156         fix bug 24041
26157
26158 2002-04-30  Dick Porter  <dick@ximian.com>
26159
26160         * socket-io.c: Cope with SOCKET being an integer rather than a
26161         pointer now.
26162
26163         * threads.c: Added Thread_free_internal, to deal with thread
26164         handle cleanup.  Moved calls to handle_store() and handle_remove()
26165         to start_wrapper(), so each can only be called once.  Allocate
26166         synchronisation blocks with GC_malloc(), and use GC finalisation
26167         to close the handles.
26168
26169         * icall.c: added System.Threading.Thread::Thread_free_internal
26170
26171 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26172
26173         * icall.c: support Environment.Exit, CommandLineArgs().
26174
26175 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26176
26177         * object.c, object.h: added mono_runtime_run_main () and
26178         mono_runtime_get_main_args () for use in System.Environment.
26179
26180 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26181
26182         * gc.c: fix thinko, enable actual finalization since the jit is now
26183         fixed.
26184
26185 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26186
26187         * gc.c, object.c: take into account that an object may be offset wrt the address
26188         returned by GC_malloc().
26189
26190 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
26191
26192         * image.c: handle files without entries in the assembly table (modules).
26193
26194 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
26195
26196         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
26197         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
26198         allowed to be null when it's System.Object class setup.
26199
26200 2002-04-27  Martin Baulig  <martin@gnome.org>
26201
26202         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
26203         if `tb->parent == NULL' rather than crashing.
26204
26205 2002-04-28  Nick Drochak  <ndrochak@gol.com>
26206
26207         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
26208         calling acos() where asin() should have been called.
26209
26210 2002-04-26  Martin Baulig  <martin@gnome.org>
26211
26212         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
26213         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
26214         there's a subdirectory called `System', but we don't want to read that
26215         subdirectory as an assembly.
26216
26217 2002-04-25  Martin Baulig  <martin@gnome.org>
26218
26219         * debug-symfile.c: Reflect latest MonoString changes.
26220
26221 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26222
26223         * rand.c, rand.h: instance method icalls need to have an explicit
26224         this pointer as first argument in the C implementation.
26225
26226 2002-04-25  Nick Drochak <ndrochak@gol.com>
26227
26228         * icall.c: Fix typo in map for GetNonZeroBytes
26229
26230 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26231
26232         * string-icalls.c : String does now passes unit tests without any 
26233         errors, the following changes has been made:
26234         
26235         Implemented replace methods.
26236         Renaming of methods to (try) follow the standard.
26237         Fixed compare ordinal
26238         Made all memory allocated directly to function instead of via icall function.
26239         Small performance fix in is_in_array function
26240                         
26241  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
26242
26243         c (mono_string_Internal_ctor_charp_int_int):
26244         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
26245         sindex < 0, throw ArgumentOutOfRangeException instead of
26246         ArgumentNullException.
26247
26248         Added new check for length == 0, however
26249         I need to make it return String.Empty from the C code.
26250         
26251         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
26252         that calculate the length for us here.
26253         
26254         (mono_string_Internal_ctor_sbytep_int_int): Replaced
26255         mono_string_new_utf16 with mono_string_new, since value is utf8.
26256
26257 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26258
26259         * object.c: register the object for finalization if needed.
26260         Allocate one more char in the string for the terminating 0 char.
26261
26262 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26263
26264         * class.c, class.h, image.c: check if a type implemenst a destructor.
26265         Use the proper key for array class lookups.
26266         * icall.c: register the icalls in the System.GC class.
26267         * gc.c, gc.h: GC-related functions and icalls.
26268
26269 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26270
26271         * icall.c:
26272         * socket-io.c:
26273         * unicode.c: free some strings gotten from mono_string_to_utf8 and
26274         changed a couple of free () by g_free ().
26275
26276         * decimal.c: one-liner in the comments for decimal2string ().
26277
26278 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26279
26280         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
26281
26282 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26283
26284         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
26285         * object.c (mono_runtime_invoke_array) : handle null in params
26286
26287 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26288
26289         * string-icalls.c: fixed bug in split (one off bug)
26290
26291 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26292
26293         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
26294         * icalls.c: added String::Equals as internal method
26295
26296 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26297
26298         * threads.c: fixed bug in the double interlocked functions
26299
26300 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
26301
26302         * threads.c: implemented all of the new interlocked icalls.
26303         * string-icalls.c: fix a bug in insert.
26304         * icalls.c: added the icalls for interlocked, removed old string functions.
26305         
26306 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
26307
26308         * loader.c: fix off-by-one error when reading argument names.
26309
26310 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26311
26312         * profiler.c: win32 counter implementation (untested).
26313         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
26314         (the latter needs testing and more complete impl. from win32 folks).
26315
26316 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
26317
26318         * object.c: mono_array_new_full workaround mono_array_class_get
26319         problem.
26320
26321 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26322
26323         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
26324         * object.h (mono_string_chars): Changed casting type.
26325
26326 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26327
26328         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
26329                            method signatures to use gunichar2 instead of gint16.
26330
26331 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
26332
26333         * object.h, object.c: domain-specific versions of mono_object_new and
26334         mono_array_new.
26335
26336 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
26337
26338         * object.c: changed String layout
26339
26340         * string-icalls.c (mono_string_Internal_ctor_chara): added
26341         internal string constructors.
26342
26343 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
26344
26345         * threads.c: pass 'this' to the thread start routine.
26346
26347 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26348
26349         * string-icalls.c: fix IndexOf and LastIndexOf. Now
26350         InternalCompareStr don't call twice mono_string_cmp_char for the last
26351         character. Improved performance in mono_string_cmp_char.
26352
26353 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
26354
26355         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
26356         code into its own library: libmonoruntime.
26357
26358 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
26359
26360         * object.h, object.c: changed array format so that szarrays do not
26361         require a bounds structure.
26362         * icall.c, appdomain.c: support for new szarray format.
26363
26364 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
26365
26366         * metadata.c: compare also the retuns type when comparing signatures:
26367         we didn't do this as an optimization since really overloaded methods
26368         must differ also in the arguments, but this doesn't work with
26369         low-level IL code (or when using explicit conversion operators: see
26370         bug#23498 for an example).
26371
26372 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26373
26374         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
26375
26376 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
26377
26378         * icall.c: make MonoType::GetElementType its own icall.
26379
26380 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26381
26382         * icall.c: remove MonoMethod_get_Name().
26383         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
26384         object.
26385
26386 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26387
26388         * string-icalls.c: optimized a few methods.
26389
26390 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26391
26392         * icall.c: added all new string internal calls
26393         * string-icalls.c: added, new string internal call implementation.
26394         * object.c: added mono_string_new_size for allocating a string a size
26395
26396 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
26397
26398         * object.c (mono_object_isinst): use the same code as in the
26399         optimized x86 version.
26400
26401 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26402
26403         * profiler.c: TSC-based timer code (faster and more accurate).
26404         Not hooked up in configure, yet (set USE_X86TSC to 1).
26405
26406 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
26407
26408         * profiler.c, profiler.h: track time spent compiling methods.
26409         * threads.c: track thread creation/destruction.
26410
26411 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
26412
26413         * profiler.c, profiler.h, profiler-private.h: profiling interface
26414         and sample implementation. Moved here so that it can be used also by
26415         the jit.
26416
26417 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
26418
26419         * reflection.c, reflection.h: keep types and other handles separate in
26420         the hash tables for referred tokens. Add guid for modules.
26421
26422 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26423
26424         * assembly.c: fix bugs found with valgrind.
26425         * metadata.h, metadata.c: added mono_metadata_guid_heap().
26426
26427 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
26428
26429         * threads: added icall support for getting current domain for
26430                    the thread.
26431  
26432 2002-04-13  Martin Baulig  <martin@gnome.org>
26433
26434         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
26435         (MonoDebugVarInfo): Added `index' field for register based addresses.
26436         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
26437         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
26438         `MonoDebugVarInfo *params' and `guint32 this_offset' with
26439         `MonoDebugVarInfo *this_var'.
26440
26441         * debug-symfile.c (relocate_variable): New static function to write
26442         a location description for a local variable or method parameter.
26443
26444 2002-04-12  Martin Baulig  <martin@gnome.org>
26445
26446         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
26447         stack offset and begin/end scope address of a local variable.
26448         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
26449         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
26450         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
26451
26452         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
26453         Added new relocation types for start/end scope of a local variable.
26454
26455 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26456
26457         * object.h: add mono_object_domain() macro.
26458         * reflection.c: handle typespecs.
26459         * icall.c: MonoMethod::get_Name() implementation.
26460
26461 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26462
26463         * icall.c: String::GetHashCode() icall implementation.
26464
26465 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26466
26467         * icall.c: String::IndexOfAny icall.
26468         * object.c, object.h: make array->max_length more useful.
26469         Intrduced mono_object_class() and mono_string_length() macros.
26470
26471 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26472
26473         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
26474         instead of g_unichar_isdigit.
26475
26476 2002-04-11  Nick Drochak  <ndrochak@gol.com>
26477
26478         * icall.c: Implement a simple Double.ToString().
26479
26480 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
26481
26482         * appdomain.h: only io-layer.h is supposed to be included.
26483         * icall.c: explicitly import environ. Fix warning.
26484
26485 2002-04-10  Nick Drochak  <ndrochak@gol.com>
26486
26487         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
26488                 return true even if it's not Daylight Savings time.
26489                 Only return false for the case where the function isn't
26490                 implemented for a plaform (read Windows).
26491
26492 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26493
26494         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
26495         data with a mutex.
26496
26497 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
26498
26499         * mempool.c (mono_mempool_alloc): only use g_malloc when
26500         absolutely necessary.
26501
26502 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
26503
26504         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
26505
26506         * class.c (mono_class_vtable): use domain mempool to allocate vtable
26507         (mono_class_proxy_vtable): use domain mempool
26508
26509 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26510
26511         * appdomain.h, appdomain.c: split initialization that requires the
26512         execution engine support into mono_runtime_init().
26513
26514 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
26515
26516         * class.c (mono_class_init): don't include vtable inside MonoClass
26517         to save some memory, gather some statistics.
26518         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
26519
26520 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26521
26522         * icall.c: internalcall implementation for ValueType.Equals().
26523
26524 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
26525
26526         * object.c (mono_message_init): moved 
26527         (mono_runtime_exec_main): new arch. independent impl.
26528         (mono_runtime_invoke_array): new method - like
26529         mono_runtime_invoke, but you can pass an array of objects.
26530         (mono_remoting_invoke): new arch. independent impl.
26531         (mono_message_invoke): new arch. independent impl.
26532         (mono_runtime_class_init): new arch. independent impl.
26533         (mono_runtime_object_init): new arch. independent impl.
26534
26535 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26536
26537         * metadata.c, object.c, reflection.c: documented the exported
26538         functions.
26539
26540 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
26541
26542         * icall.c: simpler code to pass the assembly builder data to corlib.
26543         Implement GetNestedTypes() internalcall.
26544
26545 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26546
26547         * class.c: warn if a type can't be loaded.
26548
26549 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
26550
26551         * image.h: typedef MonoImageOpenStatus
26552         * types.h: removed unused file
26553         
26554 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
26555
26556         * icall.c: Enum_ToObject accepts enum value arguments.
26557
26558 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
26559
26560         * class.c: move initialization of properties, events and nested
26561         classes, so that they happen for interfaces, too.
26562
26563 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26564
26565         * icall.c: cleanup some ugly casts in Array_SetValue*.
26566
26567 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26568
26569         * icall.c: the values array fro enums is of the correct type, now.
26570         Implement (correctly) getFullName instead of assQualifiedName for
26571         MonoType.
26572         * reflection.h, reflection.c: added mono_type_get_name ().
26573
26574 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26575
26576         * assembly.c, image.h: for each MonoImage, record from wich assembly
26577         it was loaded.
26578         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
26579         Make Type.Assembly work.
26580
26581 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
26582
26583         * debug-symfile.h: use char* instead of gpointer to avoid
26584         unnecessary casts.
26585
26586         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
26587
26588         * icall.c (ves_icall_InternalExecute): impl. FielSetter
26589         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
26590
26591 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
26592
26593         * icall.c (mono_message_init): impl. (code cleanup)
26594         (ves_icall_InternalExecute): impl. FieldGetter
26595
26596         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
26597         defined we call all (non-static)methods through the vtable. 
26598
26599 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
26600
26601         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
26602         finalizer even though the memory is still referenced (and the chunk of
26603         memory is not freed).
26604
26605 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
26606
26607         * assembly.c: fix brokeness.
26608
26609 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
26610
26611         * class.c: kill some warnings. Check explicit interface method
26612         implementation also without considering the namespace.
26613         Load also literal strings in static class data.
26614
26615 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
26616
26617         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
26618         (default_assembly_name_resolver): Make the resolver take the
26619         "base" directory where the assembly was originally defined, so we
26620         can load DLLs that are in the same directory as the assembly that
26621         is being referenced.
26622
26623 2002-03-28  Dick Porter  <dick@ximian.com>
26624
26625         * file-io.h: 
26626         * file-io.c:
26627         * socket-io.c: 
26628         * unicode.h: 
26629         * unicode.c: Warning cleanups
26630
26631 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
26632
26633         * object.h, reflection.h: use the correct type instead of MonoObject.
26634
26635 2002-03-28  Martin Baulig  <martin@gnome.org>
26636
26637         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
26638         (mono_debug_update_symbol_file): Initialize classes if necessary.
26639
26640 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
26641
26642         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
26643         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
26644
26645 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
26646
26647         * assembly.h: fix function prototype.
26648         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
26649         * mono-endian.h: use const cast.
26650
26651 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
26652
26653         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
26654
26655 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
26656
26657         * loader.c: don't assert when a typeref can't be loaded, give
26658         a chance to the runtime to trow an exception instead.
26659         * loader.h: fix warning.
26660
26661 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
26662
26663         * class.c (mono_class_proxy_vtable): added proxy support
26664
26665 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
26666
26667         * icall.c: removed last of PAL calls, added System.Environment
26668         * file-io.h, file-io.c: MonoIO implementation
26669         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
26670
26671 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
26672
26673         * appdomain.c: do not use the byte marker in ldstr table lookup.
26674         * debug-helpers.c: allow two ':' to separate class and method name.
26675         * object.c: allocate arrays bounds with the GC, too.
26676         * verify: add a few more checks.
26677
26678 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
26679
26680         * reflection.c: output also literal strings. Allocate parameter data
26681         with GC_malloc() (thanks, Martin, for catching this!).
26682
26683 2002-03-26  Martin Baulig  <martin@gnome.org>
26684
26685         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
26686         include the `this' offset in the `param_offsets'.
26687
26688 2002-03-25  Martin Baulig  <martin@gnome.org>
26689
26690         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
26691         mono_debug_get_class() function to get the classes. Added new
26692         relocation types for arrays and strings.
26693         (mono_debug_get_class): New static function to search in all
26694         referenced assemblies for a metadata token.
26695
26696         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
26697
26698 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
26699
26700         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
26701         hold gc-allocated objects. Make the string heap a stream like the
26702         others. Removed duplicated code when writing stream info.
26703         Added asserts to catch possible buffer overflows. Set the sorted map
26704         for tables that need sorting. Added some documentation.
26705
26706 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
26707
26708         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
26709         for interned strings and vtables.
26710
26711 2002-03-24  Martin Baulig  <martin@gnome.org>
26712
26713         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
26714         it in the array since it was created with g_slist_prepend().
26715
26716 2002-03-24  Martin Baulig  <martin@gnome.org>
26717
26718         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
26719         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
26720         (mono_debug_method_from_token): Renamed to
26721         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
26722         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
26723
26724         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
26725         relocation types.
26726
26727         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
26728
26729 2002-03-24  Martin Baulig  <martin@gnome.org>
26730
26731         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
26732         (mono_debug_method_from_token): New func.
26733
26734         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
26735         New interncall, calls mono_debug_local_type_from_signature().
26736         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
26737         calls mono_debug_method_from_token().
26738
26739 2002-03-23  Martin Baulig  <martin@gnome.org>
26740
26741         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
26742         specifies the number of bytes to be converted, not the array size.
26743         Return the number of chars, not the number of bytes.
26744         (ves_icall_iconv_get_chars): The `byteCount' argument
26745         specifies the number of bytes to be converted, not the array size.
26746
26747 2002-03-23  Martin Baulig  <martin@gnome.org>
26748
26749         * reflection.h (MonoReflectionSigHelper): New type.
26750
26751         * reflection.c (mono_reflection_sighelper_get_signature_local),
26752         (mono_reflection_sighelper_get_signature_local): New functions.
26753
26754         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
26755         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
26756         interncalls.
26757
26758 2002-03-23  Martin Baulig  <martin@gnome.org>
26759
26760         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
26761         is_writeable is set.
26762         (mono_raw_buffer_update): New function to write the modified map
26763         back to disk.
26764
26765         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
26766
26767         * debug-symfile.c (mono_debug_update_symbol_file): Call
26768         mono_raw_buffer_update() when done writing.
26769
26770 2002-03-23  Martin Baulig  <martin@gnome.org>
26771
26772         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
26773
26774         * debug-symfile.c: Added support for arguments and local variables.
26775
26776 2002-03-23  Dick Porter  <dick@ximian.com>
26777
26778         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
26779         protected by ifdefs, hence breaking the w32 build.
26780
26781 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
26782
26783         * object.c: implement is_interned() the right way.
26784
26785 2002-03-21  Martin Baulig  <martin@gnome.org>
26786
26787         * debug-symfile.[ch]: New files to handle debugging information
26788         files. There's also support to dynamically update these symbol
26789         files to include machine dependent information.
26790
26791 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
26792
26793         * threads.c (mono_thread_create): new function to create thread
26794         from C
26795
26796 2002-03-20  Martin Baulig  <martin@gnome.org>
26797
26798         * icall.c (ves_icall_InternalInvoke): Create a new object if the
26799         method is a constructor.
26800         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
26801         points to ves_icall_InternalInvoke().
26802
26803 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
26804
26805         * file-io.c: Flush shouldn't throw exceptions.
26806
26807 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
26808
26809         * file-io.c: FileStream flush support; FileSetLength now
26810         restores file pointer.
26811
26812 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
26813
26814         * class.c: set image for pointer classes.
26815
26816 2002/03/19  Nick Drochak <ndrochak@gol.com>
26817
26818         * sysmath.c: Forgot one.
26819
26820 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
26821
26822         * sysmath.c: Avoid redefining existing names.
26823
26824 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
26825
26826         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
26827         handled by runtime as icall rather than dllimport from libm.so
26828         * file-io.c, file-io.h: fixed handle argument type.
26829
26830 2002-03-18  Dick Porter  <dick@ximian.com>
26831
26832         * reflection.c (mono_image_get_type_info): rename interface to
26833         iface, because of "#define interface struct" on windows.
26834
26835 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
26836
26837         * class.c, class.h: rename and export mono_ptr_class_get().
26838         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
26839         * reflection.c, reflection.h, icall.c: better/saner type name
26840         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
26841         method signatures.
26842
26843 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
26844
26845         * class.c (mono_class_init): removed hardcoded GHC_SLOT
26846
26847         * icall.c (ves_icall_InternalInvoke): impl.
26848
26849 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
26850
26851         * reflection.c: output the interface map table, too.
26852
26853 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
26854
26855         * class.c (class_compute_field_layout): separate computation of 
26856         static field layout
26857
26858 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
26859
26860         * icall.c: added System.Buffer support.
26861         * file-io.c: moved file icalls from PAL to FileStream.
26862
26863 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
26864
26865         * icall.c (ves_icall_System_Object_GetHashCode): impl.
26866
26867 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
26868
26869         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
26870
26871 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
26872
26873         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
26874
26875 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
26876
26877         * debug-helpers.{c,h}: moved here from monograph some useful functions
26878         to locate a method by name/signature in a class or image. Included
26879         also a small and flexible IL disassembler.
26880
26881 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
26882
26883         * reflection.c: fixup tokens in methods with small header size, too.
26884
26885 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
26886
26887         * object.c (mono_string_to_utf8): remove assert(!error), instead
26888         print a warning. 
26889
26890 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
26891
26892         * icall.c: update to the new mono_Array_class_get interface.
26893
26894 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
26895
26896         * appdomain.c, object.c: Boehm-GC enable.
26897         * icall.c: make get_data_chunk() support split data requests.
26898         Ensure a class is initialized in more cases. Return only the first
26899         property found in GetProperties() or the compiler gets confused. 
26900         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
26901         * reflection.h, reflection.c: add fixup mechanism for field and method
26902         tokens. Initialize assembly->typeref in a single place. Output
26903         properties after events. Support custom attributes for events, too.
26904         Typo fix for paramter custom attrs.
26905
26906 2002-03-07  Martin Baulig  <martin@gnome.org>
26907
26908         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
26909
26910 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
26911
26912         * class.c (mono_array_class_get): fix. for multi. dim. arrays
26913
26914 2002-03-06  Martin Baulig  <martin@gnome.org>
26915
26916         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
26917         non-zero lower bounds. See testcases #F10-#F13.
26918
26919 2002-03-05  Martin Baulig  <martin@gnome.org>
26920
26921         * exception.c (mono_get_exception_argument_out_of_range): New exception.
26922
26923         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
26924         ves_icall_System_Array_GetValue(), only calculate the absolute array position
26925         here.
26926         (ves_icall_System_Array_SetValue): Likewise.
26927         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
26928         as argument and does the actual work. This function is used when copying a
26929         multi-dimensional array.
26930         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
26931         now do all the widening conversions of value types.
26932         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
26933
26934 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
26935
26936         * class.c: remove some magic numbers and use the smbolic names,
26937         instead. Added init_events() to load event info at class init time.
26938         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
26939         and mono_metadata_methods_from_event().
26940         * reflection.h, reflection.c: added support for writing out the evnets
26941         related information.
26942
26943 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
26944
26945         * reflection.h, icall.c: use a different method (GetInterfaces)
26946         to gather interface info and add isbyref, isprimitive and
26947         ispointer to the ves_icall_get_type_info() return value.
26948
26949 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
26950
26951         * class.h: stared adding support for events.
26952         * icall.c: split find_members implementation. Added debug icall to get
26953         the address of an object.
26954         * reflection.c: handle TypeBuilders in mono_type_get_object().
26955
26956 2002-03-01  Martin Baulig  <martin@gnome.org>
26957
26958         * icall.c (ves_icall_System_Array_GetLength): This must throw an
26959         ArgumentOutOfRangeException(), not an ArgumentException().
26960         (ves_icall_System_Array_GetLowerBound): Likewise.
26961         (ves_icall_System_Array_GetValue): Improved argument checking.
26962         (ves_icall_System_Array_SetValue): Improved argument checking.
26963
26964 2002-03-01  Martin Baulig  <martin@gnome.org>
26965
26966         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
26967         called with invalid arguments rather than just dying with g_assert().
26968         (ves_icall_System_Array_SetValue): Likewise.
26969         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
26970         raise a NotImplementedException instead.
26971         (ves_icall_System_Array_GetLength): Added argument checking.
26972         (ves_icall_System_Array_GetLowerBound): Added argument checking.
26973
26974 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
26975
26976         * object.h (mono_assert): new macros mono_assert and
26977         mono_assert_not_reached
26978
26979 2002-02-28  Martin Baulig  <martin@gnome.org>
26980
26981         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
26982         and "System::String::IsInterned" to "System::String::_IsInterned".
26983
26984 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
26985
26986         * icall.c: remove hacks for typebuilder. Added icall to create a
26987         modified type from a tybebuilder.
26988         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
26989         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
26990         to create a backing MonoClass for a TypeBuilder.
26991
26992 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
26993
26994         * class.c, class.h: more refactoring of class init.
26995         Export mono_class_setup_mono_type() and mono_class_setup_parent().
26996
26997 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
26998
26999         * marshal.c, marshal.h: start of marshaling interface.
27000
27001 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
27002
27003         * icall.c: fix order in assembly qualified name icall.
27004
27005 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
27006
27007         * class.c: do not free str, since we store it in the hash table.
27008         * reflection.h: add label field to MonoILExceptionInfo.
27009         * reflection.c: handle references to more than one assembly. Handle
27010         case when there isn't a module created in the assembly.
27011
27012 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
27013
27014         * class.c: Fix typo. Start refactoring of class init code.
27015
27016 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
27017
27018         * appdomain.c: exit with 1 on error.
27019         * class.c: we already have the name in MonoClassField.
27020         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
27021         MonoStreamHeader instead of an offset of image->raw_metadata.
27022
27023 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
27024
27025         * appdomain.c (mono_init): Be even more descriptive about the error.
27026
27027 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
27028
27029         * appdomain.c: give the user an informative message when corlib can't
27030         be loaded.
27031
27032 2002-02-26  Martin Baulig  <martin@gnome.org>
27033
27034         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
27035         New icall to get the time zone data.
27036
27037 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27038
27039         * reflection.c: set virtual and raw size of section correctly.
27040         * threads.c: transfer domain information to newly created threads.
27041
27042 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
27043
27044         * class.c: when instancing a class in a domain, load the default
27045         vaules for static fields from the constant table. Fix System.Enum to
27046         not be an enum.
27047         * icall.c: implement Object::GetType() internalcall. Implemented
27048         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
27049         Fixed checking of binding flags in find_members().
27050         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
27051         * reflection.c: handle enumerations when writing to the constant
27052         table. Use a different object cache for types.
27053
27054
27055 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
27056
27057         * object.c (mono_object_isinst): fix for arrays
27058
27059         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
27060
27061 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
27062
27063         * object.c: don't use mprotect ()  and fix intern pool hash table
27064         lookup for big endian systems.
27065
27066 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27067
27068         * icall.c: change type_is_subtype_of () signature.
27069
27070 2002-02-21  Mark Crichton  <crichton@gimp.org>
27071
27072         * rand.c, rand.h: Added random number generator for
27073         System.Security.Cryptography classes.
27074
27075         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
27076
27077         * icall.c: Added System.Security.Cryptography calls.
27078
27079 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
27080
27081         * class.c, icall.c, metadata.c: better support for pointer types.
27082         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
27083         * reflection.c: Add support for getting custom attrs for properties
27084         and simplify some code.
27085
27086 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27087
27088         * icall.c: change getToken () and add custom attribute GetBlob()helper
27089         method.
27090         * reflection.h: add custom attrs array to the reflection builder structures.
27091         * reflection.c: encode and emit custom attributes for all the relevant
27092         reflection objects. Cache fieldref and methodref tokens. Change
27093         mono_image_create_token() interface to take a MonoDynamicAssembly.
27094         More complete custom attributes decoder. Load custom attributes for
27095         Assembly, Field, Method and Constructor objects, too. Make the
27096         returned array an Attribute[] one, not object[]. Added
27097         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
27098         custom attribute constructor.
27099
27100 2002-02-20  Dick Porter  <dick@ximian.com>
27101
27102         * icall.c:
27103         * rawbuffer.c:
27104         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
27105         problem code out for now).
27106
27107 2002-02-19  Radek Doulik  <rodo@ximian.com>
27108
27109         * object.c (mono_ldstr): use hash table to avoid multiple swapping
27110
27111 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
27112
27113         * icall.c: register the GetCustomAttributes method.
27114         * object.c, object.h: add mono_string_new_len ().
27115         * reflection.h, reflection.c: added mono_runtime_invoke(),
27116         mono_install_runtime_invoke(). Added
27117         mono_reflection_get_custom_attrs () to load custom attributes and
27118         create the attribute objects.
27119
27120 2002-02-19  Dick Porter  <dick@ximian.com>
27121         * threads-dummy-types.c:
27122         * threads-dummy-types.h:
27123         * threads-dummy.c:
27124         * threads-dummy.h:
27125         * threads-pthread-types.c:
27126         * threads-pthread-types.h:
27127         * threads-pthread.c:
27128         * threads-pthread.h:  Deleted obsolete files
27129
27130 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
27131
27132         * class.c (mono_class_vtable): runtime init the class when we
27133         allocate static class data.
27134
27135         * icall.c (ves_icall_System_Array_SetValue): check for null values.
27136
27137         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
27138         and String - but we will need generic marshalling support in the
27139         future. 
27140         (mono_init): set the domain name in a ms compatible way
27141
27142         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
27143         String[].
27144
27145 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
27146
27147         * object.c (mono_array_clone): use alloca() instead of g_malloc  
27148         for sizes
27149
27150         * appdomain.c (mono_domain_unload): impl.
27151
27152 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27153
27154         * appdomain.c, object.c: fix intern pool implementation.
27155         * class.c: fix alignment code.
27156
27157 2002-02-16  Radek Doulik  <rodo@ximian.com>
27158
27159         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
27160         and s2 > s1, just copy lower bytes to be compatible with little
27161         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
27162         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
27163
27164         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
27165         force big_endian to be 1 for big endian machines 
27166         (ves_icall_iconv_new_decoder): ditto
27167
27168 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
27169
27170         * socket-io.c (convert_sockopt_level_and_name): If the system
27171         doesn't define SOL_IP or SOL_TCP, get them by hand using
27172         getprotobyname() and caching the values (because this could be a
27173         slow operation).
27174         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
27175         Use the appropriate struct when the system does support it. Ie,
27176         not all systems have struct ip_mreqn so use struct ip_mreq when
27177         appropriate.
27178
27179 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
27180
27181         * reflection.c: handle finally clauses.
27182
27183 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
27184
27185         * socket-io.c: use g_snprintf() instead of snprintf.
27186
27187 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
27188
27189         * reflection.c (mono_param_get_objects): Cast second argument to
27190         mono_method_get_param_names to a const char** to silence the
27191         compiler warning.
27192
27193         * appdomain.c (mono_domain_assembly_open): Put parens around the
27194         truth statement in the for-loop.
27195
27196         * unicode.c (iconv_convert): Got rid of a compiler warning about
27197         int i being unused when the system has a new iconv.
27198         (iconv_get_length): Same.
27199
27200         * image.c (load_class_names): Cast the second argument to
27201         g_hash_table_insert() to char* to hush compiler warnings about the
27202         arg being a const.
27203         (mono_image_open): Same here.
27204
27205         * socket-io.c: Don't conditionally include sys/filio.h or
27206         sys/sockio.h here anymore since we now get them from
27207         io-layer/io-layer.h
27208         (inet_pton): If the system doesn't support inet_aton, implement
27209         using inet_addr and also #define INADDR_NONE if it isn't defined
27210         by the system.
27211
27212 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
27213
27214         * metadata.c, metadata.h: added function to get packing and size info
27215         of a typedef.
27216         * reflection.h, reflection.c: handle field RVA data. Save info about
27217         the table layout if needed. Assign typedef indexes to all the types
27218         before dumping the info about them to avoid forward reference problems.
27219
27220 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
27221
27222         * socket-io.c (convert_sockopt_level_and_name): ifdef
27223         SO_ACCEPTCONN because it is not defined on my system (old debian)
27224
27225 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27226
27227         * opcode.c: use stddef.h to get NULL.
27228
27229 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
27230
27231         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
27232         for FIONBIO, FIONREAD and SIOCATMARK.
27233         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
27234         define INADDR_NONE and besides, inet_addr() is deprecated and
27235         should not be used. Use inet_pton() instead - it also has the
27236         added bonus that it can easily handle IPv6 addresses as well.
27237         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
27238
27239 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
27240
27241         * decimal.c: remove _MSC_VER conditional.
27242
27243 2002-02-13  Dick Porter  <dick@ximian.com>
27244
27245         * socket-io.c: 
27246         * icall.c: Internal calls for Blocking, Select, Shutdown,
27247         GetSocketOption and SetSocketOption
27248
27249 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27250
27251         * assembly.cs: better resolver: use it instead of some kludgy
27252         code.
27253
27254 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
27255
27256         * reflection.c: the best way to speed-up the compiler is to avoid
27257         infinite loops.
27258
27259 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
27260
27261         * class.c (mono_class_vtable): changed the object layout
27262         (obj->vtable->class). 
27263         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
27264
27265 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27266
27267         * assembly.c: look for assemblies in the assembly dir, too.
27268
27269 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27270
27271         * class.c: fix thinko in mono_class_from_type().
27272
27273 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27274
27275         * exception.h, exception.c: added TypeLoadException.
27276         * object.h, object.c: added mono_array_clone ().
27277         * icall.c: handle throwOnError in AssemblyGetType().
27278         Added Array.Clone().
27279         * opcode.h, opcode.c: use a single value for the opcode val.
27280         Compile fix for non-gcc compilers.
27281
27282 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
27283
27284         * opcodes.c, opcodes.h: export interesting info about opcodes.
27285
27286 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
27287
27288         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
27289         icalls. 
27290
27291         * class.c (class_compute_field_layout): set element_class for enums
27292         (mono_class_create_from_typedef): set element_class for normal classes
27293
27294         * icall.c (ves_icall_System_Enum_get_value): impl.
27295
27296         * class.c (mono_class_create_from_typedef): do not set valuetype
27297         flag for System.ValueType and System.Enum
27298
27299 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
27300
27301         * unicode.c (iconv_convert): fix big endian problem.
27302
27303 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27304
27305         * class.c: add asserts if we are ever going to scribble over memory.
27306         * socket-io.c: not all systems have AF_IRDA defined.
27307
27308 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
27309
27310         * class.c (class_compute_field_layout): do not consider static
27311         fields to compute alignment
27312
27313 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
27314
27315         * appdomain.c (mono_appdomain_get): impl.
27316         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
27317
27318 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
27319
27320         * icall.c: ignore "file://" prefix when loading an assembly.
27321
27322 2002-01-23  Dick Porter  <dick@ximian.com>
27323
27324         * socket-io.c:
27325         * icall.c:
27326         * Makefile.am: Added socket support
27327
27328 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
27329
27330         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
27331         code back.  This should return the assemblies that are loaded by
27332         the runtime on behalf of an application domain. 
27333
27334         The current implementation is still broken, it just returns every
27335         assembly loaded, but until we get real applications domain this
27336         will do.
27337
27338 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
27339
27340         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
27341         AppDomain object.
27342
27343 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
27344
27345         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
27346         the mono_class_from_name lookup.
27347         (ves_icall_get_parameter_info): ditto.
27348         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
27349         method.
27350         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
27351
27352 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
27353
27354         * class.c: load also nested classes on class init.
27355         System.ValueType instance methods gets passed boxed
27356         values, unless methods in derived classed that get a pointer to the
27357         data.
27358         * icall.c: use better name parsing code in GetType().
27359         * image.c, image.h: add mono_image_loaded ().
27360         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
27361         * reflection.c, reflection.h: added mono_reflection_parse_type().
27362
27363 2002-01-22  Veronica De Santis <veron78@interfree.it>
27364
27365         * icall.c : Added mapping of internal calls for Manual and Auto reset events
27366         * threads.c : Added the implementation of internal calls for events
27367         * threads.h : Added prototypes of internal calls for events
27368         
27369 2002-01-21  Radek Doulik  <rodo@ximian.com>
27370
27371         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
27372
27373 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
27374
27375         * class.c (mono_class_init): set min_align to 1 (instead of 0)
27376         (mono_class_value_size): use min_align
27377
27378 2002-01-20  Dick Porter  <dick@ximian.com>
27379
27380         * threads.h:
27381         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
27382         so it compiles on w32.
27383
27384 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
27385
27386         * metadata.c (mono_type_stack_size): impl.
27387
27388         * class.c (mono_class_get_field): impl. memberref token
27389
27390 2002-01-16 Veronica De Santis <veron78@@interfree.it>
27391
27392         * icall.h : Added the internal calls mapping for CreateMutex_internal
27393                     and ReleaseMutex_internal.
27394         * threads.h : Added the prototype of mutexes internal calls.
27395         * threads.c : Added the implementations of mutexes internal calls.
27396
27397 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
27398
27399         * metaparse.h: removed unused file.
27400         * reflection.c, reflection.h: added stream_data_align () function 
27401         to align data in streams and keep stream aligned. Add support for
27402         exception support in method headers.
27403
27404 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
27405
27406         * unicode.c: make iconv_convert () return the number of bytess written
27407         in the output buffer.
27408
27409 2002-01-15  Dick Porter  <dick@ximian.com>
27410         * threads.c: Make the runtime's idea of infinite timeouts coincide
27411         with the class library's
27412
27413         Fix a particularly egregious bug in mono_thread_cleanup(). That
27414         code was so utterly bogus it must have been written on a Monday.
27415
27416 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
27417
27418         * reflection.h: add subtypes field to TypeBuilder.
27419         * reflection.c: encode constants for literal fields.
27420         Handle subtypes. Fix user string token (and add a zero byte)
27421         at the end.
27422         
27423 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
27424
27425         * class.c (mono_class_init): bug fix: assign slot numbers for
27426         abstract methods.
27427
27428 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27429
27430         * reflection.c: don't try to output a code RVA for abstract methods.
27431         Small fixes for method header format. Output parameter info to the
27432         ParamDef table. Save method overriding info to MethodImpl table.
27433         Fix property support. Allow typedef.extends to be a type in the
27434         building assembly.
27435         * verify.c: fix off-by-one error.
27436
27437 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
27438
27439         * class.c: fix mono_class_from_mono_type () for szarray types.
27440         Remove unused cache check in mono_class_from_type_spec().
27441         * icall.c: *type_from_name () functions handle simple arrays and byref.
27442         * reflection.c: handle byref and szarray types. Handle methods without
27443         body (gets P/Invoke compilation working). Handle types and fields in
27444         get_token ().
27445         * reflection.h: add rank to MonoTypeInfo.
27446
27447 2002-01-10  Dick Porter  <dick@ximian.com>
27448
27449         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
27450         internal calls
27451
27452 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
27453
27454         * icall.c: initialize class in type_from_handle ().
27455         Loop also in parent classes for get_method ().
27456         * reflection.c: properly encode class and valuetype types.
27457         Start on encoding TypeBuilder types. Handle fieldrefs.
27458         Use correct length when registering a user string.
27459         Handle ConstructorBuilder and MonoMethod in get_token ().
27460         Make mono_type_get_object () aware of cached types.
27461         * object.c: back out change to mono_string_new ().
27462
27463 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
27464         * object.c: mono_string_new should return a NULL when the string 
27465         passed in is NULL -- not try to deference it.
27466         
27467 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
27468
27469         * icall.c: hack to make IsSubType work for TypeBuilders.
27470         * reflection.c: emit constructors before methods.
27471         Retrieve param names in mono_param_get_objects().
27472
27473 2002/01/05  Nick Drochak  <ndrochak@gol.com>
27474
27475         * Makefile.am: fix list of headers and sources so automake 1.5
27476         doesn't complain. Removed \# at end of list.
27477
27478 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
27479
27480         * reflection.c: get token for a method ref. Set return type of
27481         constructor to void.
27482         * loader.c: debug message.
27483         * class.c: typo fix.
27484
27485 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
27486
27487         * icall.c: fix array init with rank > 1. FindMembers
27488         loops in parent class as well.
27489         * image.c: do not insert nested types in name cache.
27490         * reflection.c: warning fix.
27491         * reflection.h: add override method (for interface impl).
27492
27493 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
27494
27495         * metadata.c: fix customattr decoding.
27496
27497 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
27498
27499         * rawbuffer.cs: Added native Win32 implementation, avoids using
27500         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
27501
27502 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
27503
27504         * class.c: make the low-level routines handle the cache.
27505
27506 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
27507
27508         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
27509
27510 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
27511
27512         * class.c: fix mono_array_element_size() for objects.
27513         * class.h, class.c: add properties to MonoClass and load them
27514         at init time.
27515         * icall.c: check with isinst() when assigning a value to an array
27516         instead of requiring the classes to match exactly.
27517         Implemented icall for System.Type::GetType().
27518         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
27519         enums. Handle bindingflags when looking for methods and fields.
27520         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
27521         and mono_metadata_methods_from_property().
27522         * reflection.h, reflection.c: added structures for propreties,
27523         parameters and enums. Implemented mono_property_get_object() and
27524         mono_param_get_objects().
27525
27526 2001-12-18  Dick Porter  <dick@ximian.com>
27527
27528         * file-io.c: Use mono_string_to_utf16() instead of
27529         mono_string_chars()
27530
27531         * object.c: Added mono_string_to_utf16(), which copies the non
27532         NULL-terminated MonoString into a new double-null-terminated
27533         buffer.
27534
27535 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
27536
27537         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
27538
27539 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
27540
27541         * file-io.c: raise exceptions if handle is invalid.
27542
27543 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
27544
27545         * assembly.c: yet another check for mscorlib.
27546         * class.c, class.h: load nesting info for classes.
27547         * icall.c: many new functions to support the Reflection classes.
27548         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
27549         * reflection.h, reflection.c: mono_image_create_token(),
27550         mono_assembly_get_object(), mono_type_get_object(),
27551         mono_method_get_object(), mono_field_get_object(): methods to return
27552         objects that parallel the C representation of assemblies, types,
27553         methods, fields.
27554
27555 2001-12-11  Dick Porter  <dick@ximian.com>
27556
27557         * icall.c:
27558         * file-io.c: Internal calls for file IO.
27559
27560 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
27561
27562         * tabledefs.h: missing FileAttributes.
27563         * verify.h, verify.c: use is_valid_string () to simplify and check for
27564         valid strings more correctly. Fix warnings and speeling.
27565         Check more tables: Filed, File, ModuleRef, StandAloneSig.
27566         Check code: branches, maxstack, method calls.
27567
27568 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
27569
27570         * object.c (mono_object_allocate): removed static, so that the jit
27571         can allocate value types.
27572
27573         * icall.c (ves_icall_System_DateTime_GetNow): impl.
27574
27575 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
27576
27577         * class.c: init enum types right away and register the
27578         token->MonoClass map in mono_class_create_from_typedef ().
27579         * verify.h, verify.c: first cut of the verifier.
27580         * pedump.c: add --verify switch to verify metadata tables.
27581         * tabledefs.h: add some missing enums.
27582
27583 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
27584
27585         * class.c (mono_install_runtime_class_init): impl.
27586         (mono_class_init): renamed mono_class_metadata_init to
27587         mono_class_init, also removed the metadata_inited flag
27588
27589         * object.c (mono_object_isinst): use faster algorithm
27590
27591 2001-11-30  Radek Doulik  <rodo@ximian.com>
27592
27593         * mono-endian.h: reverted last change
27594         added function prototypes
27595
27596         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
27597         add mono-endian.c back
27598
27599         * mono-endian.c: returned back, as Paolo pointed out, it's needed
27600         for unaligned access, I've mistaked it with endianess. I am
27601         sorry.
27602         (mono_read16): fix reverted endianess
27603         (mono_read64): ditto
27604         (mono_read32): ditto
27605
27606 2001-11-30  Dick Porter  <dick@ximian.com>
27607
27608         * exception.c: Implement mono_exception_from_name()
27609
27610 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
27611
27612         * metadata.h, metadata.c: remove params_size and locals_size and their
27613         calculation from the metadata code: they are only usefult to the
27614         interp.
27615
27616 2001-11-29  Radek Doulik  <rodo@ximian.com>
27617
27618         * object.c (mono_ldstr): swap bytes here, it's probably not the
27619         best place, but works for me now, I'll redo it once I know mono
27620         better, also note that I add PROT_WRITE and don't reset back, also
27621         note that it's only affects big endians, so x86 should be OK
27622
27623         * mono-endian.h (read16): use just glib macros for both endians
27624
27625         * mono-endian.c: removed as glib macros are used in in
27626         mono-endian.h so we don't need to care about endianess for read
27627         macros as glib does that for us already
27628
27629 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
27630
27631         * class.h, class.h: take minimum alignment into consideration so
27632         that the fields of a class remain aligned also when in an array.
27633
27634 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
27635
27636         * loader.h, loader.c: add mono_method_get_param_names().
27637         * class.c: 0-init class fields.
27638
27639 2001-11-26  Dick Porter  <dick@ximian.com>
27640
27641         * icall.c:
27642         * threads-types.h:
27643         * threads.c: New file that handles System.Threading on all platforms
27644
27645         * object.c: 
27646         * object.h: Remove the synchronisation struct from MonoObject,
27647         replace it with a pointer that gets initialised on demand
27648
27649         * Makefile.am: Replace all the system-specific threading code with
27650         a single file that uses the new wrapper library
27651
27652 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
27653
27654         * class.c, class.h: add mono_install_trampoline() so that the runtime
27655         can register a function to create a trampoline: removes the ugly
27656         requirement that a runtime needed to export arch_create_jit_trampoline.
27657         * object.h, object.c: added mono_install_handler() so that the runtime
27658         can install an handler for exceptions generated in C code (with
27659         mono_raise_exception()). Added C struct for System.Delegate.
27660         * pedump.c: removed arch_create_jit_trampoline.
27661         * reflection.c: some cleanups to allow registering user strings and
27662         later getting a token for methodrefs and fieldrefs before the assembly
27663         is built.
27664         * row-indexes.h: updates and fixes from the new ECMA specs.
27665
27666 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
27667
27668         * class.h, class.c: add enum_basetype field to MonoClass.
27669         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
27670         to get index in the constant table reated to a field, param or
27671         property.
27672         * reflection.h, reflection.c: handle constructors. Set public-key and
27673         version number of the built assembly to 0.
27674         * row-indexes.h: update from new ECMA spec.
27675
27676 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
27677
27678         * class.h, class.c: add a max_interface_id to MonoClass.
27679         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
27680         since it's used to do that. Added mono_type_type_from_obj().
27681         Make GetType() return NULL instead of segfaulting if the type was not
27682         found. Handle simple arrays in assQualifiedName.
27683         * object.h: add a struct to represent an Exception.
27684         * reflection.c: output call convention in method signature.
27685         Add code to support P/Invoke methods and fixed offsets for fields.
27686
27687 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
27688
27689         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
27690         the value.
27691         * icall.c: use mono_array_addr instead of array->vector: fixes the
27692         reflection image writing.
27693         * reflection.c: init call convention byte to 0 in method signature.
27694         Encode the property signature. Don't output property-related methods
27695         twice. Really process the properties for a type (don't cast a field to
27696         a property, my mom always told me that).
27697         Fix 64 bit issues in pointer alignment in a different and more
27698         readable way.
27699
27700 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
27701
27702         * loader.h: Removed type class from MonoDefaults, added monotype
27703
27704         * loader.c: Loaded MonoType, removed loading of Type
27705
27706         * icall.c (my_mono_new_object): Now returns a System.MonoType,
27707         and fills in System.Type._impl with a RuntimeTypeHandle rather
27708         than the actual MonoClass *
27709
27710         (ves_icall_type_from_handle): change from type_class to
27711         monotype_class
27712
27713         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
27714         implemented
27715
27716         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
27717         implemented
27718
27719         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
27720
27721         (ves_icall_System_Reflection_Assembly_GetType): implemented
27722
27723         (ves_icall_System_MonoType_assQualifiedName): implemented
27724
27725         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
27726
27727 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
27728
27729         * assembly.c (mono_assembly_open): Implement a cache for the
27730         assemblies. 
27731
27732         (mono_assembly_close): only destroy the assembly when the last
27733         reference is gone.
27734         
27735 2001-11-09  Dick Porter  <dick@ximian.com>
27736
27737         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
27738
27739 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
27740
27741         * class.c (mono_class_metadata_init): bug fix: compute the right slot
27742
27743 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
27744
27745         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
27746         from Martin Weindel.
27747         * object.h: add mono_string_chars ().
27748
27749 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
27750
27751         * reflection.c (build_compressed_metadata): Eliminates warnings
27752         and uses 64-bit clean code.
27753
27754         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
27755         (mono_type_equal): Change signature to eliminate warnings.
27756
27757 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
27758
27759         * icall.c, loader.c: remove the internalcall array constructors.
27760         Changes to match the new MonoArray structure.
27761         * object.h, object.c: an array object doesn't allocate an extra
27762         vector. Add mono_array_new_full () to create jagged arrays easily.
27763
27764 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
27765
27766         * metadata.h, metadata.c: add mono_metadata_field_info () to
27767         retreive all the info about a field from vairous tables.
27768         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
27769         * class.h, class.c: augment MonoClassField with more info.
27770         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
27771         policy and load a field's RVA if needed.
27772
27773 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
27774
27775         * class.c (mono_class_metadata_init): create a trampoline for all
27776         virtual functions instead of actually compiling them.
27777
27778 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
27779
27780         * class.h, class.c: include name in MonoClassField.
27781         * class.c: fix fundamental type of System.Object and System.String.
27782         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
27783         tokens in ldtoken.
27784         * icall.c: remove internalcalls for the Reflection stuff that is now
27785         done in C# code.
27786         * loader.c: mono_field_from_memberref () implementation.
27787         * mono-endian.c: thinko (s/struct/union/g).
27788         * object.c, object.h: make the mono_string_* prototypes actually use
27789         MonoString instead of MonoObject.
27790         * reflection.c, reflection.h: updates for changes in the reflection
27791         code in corlib: we use C structures that map to the actual C# classes.
27792         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
27793         fat method header if needed and use the info from the ILGenerator for
27794         methods. Handle fields in types. Misc fixes.
27795
27796 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
27797
27798         * class.c (mono_class_metadata_init): bug fix: always allocate
27799         space for static class data
27800
27801 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
27802
27803         * class.c (mono_compute_relative_numbering): use relative
27804         numbering to support fast runtime type checks.
27805
27806 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
27807
27808         * class.c (mono_class_create_from_typeref): added debugging output
27809         to print class name when MonoDummy is returned instead of real class
27810
27811 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
27812
27813         * class.c (mono_class_metadata_init): interface offset table now
27814         contains pointers into the vtable - this is more efficient for the jit
27815
27816 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
27817
27818         * class.c (mono_class_metadata_init): use a temporary vtable (the
27819         old algorithm only worked for the interpreter, but not for the jit)
27820
27821 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
27822
27823         * loader.c (method_from_memberref): use mono_class_get to get the
27824         class of an array instead of using System.Array directly.
27825         (mono_get_method): also add MEMBERREF methods to the method cache
27826         which usefull for arrays.
27827
27828 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
27829
27830         * pedump.c (arch_compile_method): added to compute vtable entry
27831
27832         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
27833         number of interfaces.
27834         
27835         * class.h: merged MonoArrayClass into MonoClass
27836
27837         * class.c (mono_class_create_from_typedef): compute the vtable size and
27838         allocate space to include the vtable inside MonoClass
27839         (mono_class_metadata_init): initialize the vtable
27840
27841 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
27842
27843         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
27844         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
27845         * image.c: endian fixes by Laurent Rioux.
27846         * object.h, object.c: rename MonoStringObject to MonoString and
27847         MonoArrayObject to MonoArray. Change some function names to conform to
27848         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
27849         guint16* as first argument, so don't use char*.
27850         Provide macros to do the interesting things on arrays in a portable way.
27851         * threads-pthread.c: updates for the API changes and #include <sched.h>
27852         (required for sched_yield()).
27853         * icall.c: updates for the API changes above.
27854         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
27855         platforms that need them.
27856
27857 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
27858
27859         * class.c: set the correct type for all the fundamental
27860         type when loading the class.
27861
27862 2001-10-05  Dick Porter  <dick@ximian.com>
27863
27864         * threads-pthread.c (pthread_mutex_timedlock): Simple
27865         compatibility version for C libraries that lack this call.
27866
27867 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
27868
27869         * class.c: MonoTypes stored in MonoClass are stored as
27870         fundamental MonoTypes when the class represents a
27871         fundamental type (System.Int32, ...).
27872         The TypeHandle return by ldtoken is a MonoType*.
27873         * icall.c: ves_icall_get_data_chunk () write out all the
27874         PE/COFF stuff. Implement ves_icall_define_method (),
27875         ves_icall_set_method_body (), ves_icall_type_from_handle ().
27876         * image.c: properly skip unknown streams.
27877         * loader.h, loader.c: add type_class to mono_defaults.
27878         * metadata.c, metadata.h: export compute_size () as
27879         mono_metadata_compute_size () with a better interface.
27880         Typo and C&P fixes.
27881         * pedump.c: don't try to print the entry point RVA if there is no entry point.
27882         * reflection.c, reflection.h: many cleanups, fixes, output method
27883         signatures and headers, typedef and typeref info, compress the metadata
27884         tables, output all the heap streams, cli header etc.
27885         * row-indexes.h: typo fixes.
27886
27887 2001-10-04  Dick Porter  <dick@ximian.com>
27888
27889         * object.h: Add a synchronisation mutex struct to MonoObject
27890
27891         * object.c (mono_new_object): Initialise the object
27892         synchronisation mutexes
27893
27894         * icall.c: System.Threading.Monitor internal calls
27895         
27896         * threads-pthread.h:
27897         * threads-pthread.c: System.Threading.Monitor internal calls
27898
27899         * threads-types.h: New file, includes the system-specific thread
27900         structures
27901         
27902         * threads-pthread-types.h:
27903         * threads-pthread-types.c: New files, handle pthread-specific
27904         synchronisation types
27905
27906         * threads-dummy-types.h: 
27907         * threads-dummy-types.c: New files of dummy support for
27908         thread-specific types
27909
27910         * metadata.c:
27911         * image.c:
27912         * pedump.c: include mono-endian.h not endian.h
27913         
27914         * Makefile.am: More threads files.
27915         Name mono-endian.h not endian.h
27916
27917 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
27918
27919         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
27920         stuff and implement a few more bits.
27921         * icall.c: a field needs to be dereferenced twice. Do not use the same
27922         name for two variables in the same scope.
27923         * image.c, image.h: cleanups.
27924
27925 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
27926
27927         * class.c (mono_class_metadata_init): bug fix: compute the right size
27928
27929 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
27930
27931         * icall.c: implemented some of the Reflection internalcalls.
27932         * image.c, image.h: start writing out the PE/COFF image.
27933         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
27934         that does the reverse than decode_blob_size ().
27935         * object.c: use mono_metadata_encode_value (). Move here
27936         temporary implementation of mono_string_to_utf8 ().
27937         * rawbuffer.c: make malloc_map static.
27938
27939 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
27940
27941         * metadata.c: fix type comparison for arrays.
27942         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
27943         Added a couple of new classes to monodefaults.
27944         * icall.c: added a couple of Reflection-related internalcalls.
27945         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
27946         Added a byval_arg MonoType to MonoClass.
27947
27948 2001-09-28  Dick Porter  <dick@ximian.com>
27949
27950         * icall.c:
27951         * threads-pthread.h: 
27952         * threads-pthread.c: Implemented internal calls for
27953         LocalDataStoreSlot operations.  Applied mutexes around all shared
27954         data.  Reworked the thread creation and Start() operations to
27955         avoid a race condition.
27956         
27957         * threads-dummy.h:
27958         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
27959
27960 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
27961
27962         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
27963
27964 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
27965
27966         * class.c, loader.c: warn and return NULL instead of erroring out.
27967         * icall.c: added System.AppDomain::getCurDomain().
27968         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
27969
27970 2001-09-25  Dick Porter  <dick@ximian.com>
27971
27972         * threads-pthread.h:
27973         * threads-pthread.c: Implemented timed thread joining and added
27974         System.Threading.Thread::Join_internal internal call
27975
27976         * icall.c: Added System.Threading.Thread::Join_internal internal call
27977
27978         * threads-dummy.h:
27979         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
27980
27981 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
27982
27983         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
27984         mono_string_intern () to implement the semantics of the ldstr opcode
27985         and the interning of System.Strings.
27986         * icall.c: provide hooks to make String::IsIntern and String::Intern
27987         internalcalls.
27988
27989 2001-09-23  Dick Porter  <dick@ximian.com>
27990
27991         * threads-dummy.c: 
27992         * threads-dummy.h: New files of dummy threading routines
27993
27994         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
27995         support code based on system specifics
27996
27997         Rename PTHREAD_LIBS to THREAD_LIBS
27998         
27999 2001-09-23  Dick Porter  <dick@ximian.com>
28000
28001         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
28002         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
28003         internal calls.
28004         (mono_thread_init): Set up a Thread object instance to return when
28005         the main thread calls Thread.CurrentThread
28006         (mono_thread_cleanup): Wait for all subthreads to exit
28007
28008         * icall.c: New internal calls for System.Threading.Thread::Sleep
28009         (including Schedule) and CurrentThread
28010
28011         * threads.h: New file, to insulate thread-specific stuff from the
28012         rest of the code
28013
28014 2001-09-21  Dick Porter  <dick@ximian.com>
28015
28016         * threads-pthread.h: 
28017         * threads-pthread.c: New file, for handling pthreads-style
28018         threading support.  Start() now starts a new thread and executes
28019         the ThreadStart delegate instance.
28020
28021         * icall.c: Added the internalcall for
28022         System.Threading.Thread::Start_internal
28023
28024         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
28025
28026 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
28027
28028         * loader.c: work around the different signatures for delegates
28029         constructors csc generates in compiled code vs the ones compiled in mscorlib.
28030
28031 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
28032
28033         * class.h, class.c: add mono_class_get_field_from_name ().
28034         * *: Fix C comments and other ANSI C issues.
28035
28036 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
28037
28038         * endian.h, assembly.c: fix some endianness issues.
28039
28040 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
28041
28042         * loader.h, load.c: add delegate_class to mono_defaults.
28043         Handle runtime provided methods in mono_get_method ().
28044
28045 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
28046
28047         * loader.c (mono_get_method): use pinvoke for internal call
28048
28049         * icall.c: use pinvoke for internal call
28050
28051         * loader.c (method_from_memberref): set the method name
28052
28053 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
28054
28055         * metadata.c: help the compiler generate better code for
28056         mono_class_from_mono_type ().
28057
28058 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
28059
28060         * class.c (mono_class_metadata_init): delayed computing of the
28061         class size to mono_class_metadata_init ()
28062
28063 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
28064
28065         * class.c, class.h: add an interfaces member to MonoClass.
28066         * image.c, image.h: add assembly_name field to MonoImage
28067         from the assembly table.
28068         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
28069
28070 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
28071
28072         * class.c: Handle Array in mono_class_from_mono_type ().
28073         * metadata.c, pedump.c: some endian fixes.
28074
28075 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
28076
28077         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
28078         * metadata.c: fix small problem introduced with the latest commit.
28079
28080 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
28081
28082         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
28083         We don't need a MonoMetadata pointer anymore to compare signatures in
28084         mono_metadata_signature_equal (), update callers.
28085         Reduced memory usage an number of allocations for MonoMethodHeader and
28086         MonoMethodSignature.
28087
28088 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
28089
28090         * metadata.c: added compare for szarray.
28091
28092 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
28093
28094         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
28095         and add a couple more types to it and mono_defaults. Give an hint on
28096         classes that need implementing in our corlib and are referenced
28097         in mscorlib.
28098
28099 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
28100
28101         * class.h, class.c: keep track if a class is also an Enum.
28102         * loader.c: Implement a couple more types for use in libffi
28103         marshalling. Gives better diagnostics when failing to dlopen
28104         a library. Set method->klass for P/Invoke methods, too.
28105
28106 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
28107
28108         * class.c, class.h: add a MonoType this_arg to MonoClass that
28109         represents a pointer to an object of the class' type that
28110         can be used by the interpreter and later the type cache.
28111         Add best guess alignment info for valuetype objects.
28112
28113 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
28114
28115         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
28116         into MonoType: one less level of indirection and allocation and
28117         simplifies quite a bit of code. Added cache for MonoTypes that are
28118         used frequently, so that we don't need to allocate them all the time.
28119
28120 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
28121
28122         * class.c (mono_class_create_from_typedef): System.Enum is also a
28123         value type, although it does not derive from System.ValueType
28124         (maybe a bug in the ms compiler?)
28125
28126         * metadata.c (mono_type_size): return the right size for value types
28127
28128         * loader.c (mono_get_method): only initialize method header if not abstract
28129
28130         * class.c (mono_class_from_mono_type): use mono_default values. 
28131
28132 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
28133
28134         * *: use MonoClass pointers instead of <type_tokens>
28135         
28136         * class.h: new flag: metadata_inited.
28137
28138         * class.c (mono_class_metadata_init): impl.
28139         (mono_class_instance_size): impl.
28140         (mono_class_data_size): impl.
28141
28142 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28143
28144         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
28145         MonoClass now has the name and name_space fields. 
28146         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
28147         mono_get_method () takes and optional MonoClass as argument.
28148         Removed mono_typedef_from_name() and added mono_class_token_from_name()
28149         instead that takes advantage of a map from class names to typedef
28150         tokens in MonoImage.
28151
28152 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
28153
28154         * metadata.c: zero is not a valid alignment boundary.
28155         Merge MONO_TYPE_VOID in default decoding code.
28156
28157 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
28158
28159         * image.h: merged MonoMetadata into MonoImage
28160
28161         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
28162         identify the type of elements.
28163
28164 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
28165
28166         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
28167         * cil-coff.h: split MonoMSDOSHeader and add size info.
28168         * image.c: add some consistency checks.
28169         * metadata.c: fix row size computation: one programmer
28170         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
28171         add explanation for the locator routine.
28172         Fix decoding of size in method header.
28173         
28174 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
28175
28176         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
28177         (g_concat_dir_and_file): Bring g_concat_dir_and_file
28178         function from gnome-libs.  This uses the right path separator
28179         based on the OS, and also works around a bug in some systems where
28180         a double slash is not allowed. 
28181         (default_assembly_name_resolver): Use g_concat_dir_and_file
28182         (mono_assembly_open): ditto.
28183
28184 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
28185
28186         * metadata.c (mono_metadata_signature_equal): impl.
28187
28188         * *: void is now a realy MonoType (instead of using NULL)
28189         
28190         * metadata.c (do_mono_metadata_parse_type): use
28191         mono_metadata_parse_type to parse void value.
28192
28193 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
28194
28195         * metadata.c, metadata.h: in the signature and method header store
28196         only the space required for holding the loca vars and incoming arguments.
28197
28198 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
28199
28200         * metadata.c (do_mono_metadata_parse_type): treat void like any
28201         other type (instead of assigning NULL);
28202
28203 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
28204
28205         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
28206
28207 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
28208
28209         * image.c (do_mono_image_open): added a cache for arrays.
28210
28211 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
28212
28213         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
28214         decode a single column from a row in a metadata table and changes
28215         to take advantage of it in the typedef locator (gives a nice speed up).
28216         Store offset info for function params.
28217
28218 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
28219
28220         * image.h (MONO_IMAGE_IS_CORLIB): removed 
28221
28222 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
28223
28224         * assembly.c: how could mono_assembly_close () had ever worked?
28225         * metadata.c, metadata.h: provide offset info for local vars.
28226         Implement mono_type_size () to take care of alignment as well
28227         as size (it was mono_field_type_size in cli/class.c before).
28228
28229 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
28230
28231         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
28232
28233         * assembly.h (CORLIB_NAME): set to corlib.dll
28234
28235         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
28236
28237 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
28238
28239         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
28240         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
28241         tokentype.h: massive namespace cleanup.
28242
28243 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
28244
28245         * metadata.h, metadata.c: decode exception clauses when parsing method header.
28246
28247 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
28248
28249         * metadata.c (mono_metadata_free_type): added check for type !=
28250         NULL (void) before calling mono_metadata_free_type()
28251
28252 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
28253
28254         * metadata.h, row_indexes.h: added header with enumerations to use
28255         to index in the columns from tables in metadata and to decode coded
28256         tokens: we should start using this instead of embedding magic numbers
28257         all over the code.
28258
28259 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
28260
28261         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
28262         Move metadata_t info from cli_image_info_t to MonoImage, where
28263         it's easily accessible. Changed all the uses accordingly.
28264         Added the method and class caches to MonoImage.
28265         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
28266         and mono_metadata_decode_value () signature to be more consistent
28267         with the other parse functions (and simplify code). Taken advantage
28268         of zero-length array allocation with GCC. Removed reduntant (and
28269         wrong) MonoFieldType struct and use MonoParam instead. Changed
28270         mono_metadata_parse_field_type () to use common code for parsing.
28271         Added mono_metadata_typedef_from_field () and
28272         mono_metadata_typedef_from_method () to lookup a typedef index from a
28273         field or method token.
28274         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
28275
28276 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
28277
28278         * metadata.c (mono_metadata_parse_field_type): Implement. 
28279         (do_mono_metadata_parse_type): Split engine from
28280         mono_metadata_parse_type, so that we can create smaller structures
28281         for things that just have one pointer to the MonoType (look at
28282         the MonoFieldType)
28283
28284 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
28285
28286         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
28287         as Jan Gray found out, it is incorrect. 
28288
28289 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
28290
28291         * assembly.c: Implement asssembly loading.  This loads an image
28292         and loads all the referenced assemblies.  Come to think of it, we
28293         could always do lazy loading of the assemblies. 
28294
28295         * image.c (mono_image_open): Keep loaded images in a hashtable.
28296
28297         * image.h (MonoImage): Add reference count.
28298
28299 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
28300
28301         * assembly.c (mono_assembly_open): Keep track of the file name in
28302         case the assembly has no ASSEMBLY table.
28303
28304         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
28305         from get.c here.
28306
28307 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
28308
28309         * metadata.c, metadata.h: decode local vars in method header
28310         parse function. Change callers accordingly.
28311
28312 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
28313
28314         * metadata.h, cil-coff.h: protect against multiple inclusion.
28315         Added some new structures to hold information decoded from metadata:
28316         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
28317         and relevant decoding/free functions.
28318         * metadata.c: implement decoding functions. Add warning for out of bounds
28319         index in mono_metadata_locate(). Implement mono_get_method () to retreive
28320         all the info about a method signature and invocation. Remove check on
28321         uninitialized local var in parse_mh() and fix memory leak.
28322
28323 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
28324
28325         * metadata.h: More macros.
28326
28327         * tokentype.h: New file.
28328
28329 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
28330
28331         * assembly.c: added a consistency check and initialize
28332         some structures with g_new0().
28333         * metadata.c: fixed a couple more bugs in table size computation
28334         and add other checks for out-of bound access to metadata.
28335
28336 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
28337
28338         * metatada.c: fix bugs computing table sizes. Spew a
28339         warning when index in string heap is out of bounds.
28340
28341 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
28342
28343         * metadata.h: Add a couple of macros to manipulate tokens. 
28344
28345 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
28346
28347         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
28348         cli_section_tables).
28349
28350 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
28351
28352         * metadata.c (mono_metadata_user_string): New function, provides
28353         access to the UserString heap. 
28354
28355 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
28356
28357         * metadata.c: Add inline documentation.
28358
28359 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
28360
28361         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
28362         files. 
28363
28364 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
28365
28366         * typeattr.h: New file, TypeAttribute flags. 
28367
28368 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
28369
28370         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
28371         mono_assembly_ensure_section): Section loading code.
28372         (load_section_tables): Load the sections.
28373
28374         * mono/metadata/metadata.c (mono_metadata_locate_token,
28375         mono_metadata_locate): Functions to locate the information
28376         definition given a token or a table and an index.
28377         (mono_metadata_compute_table_bases): New.
28378         (compute_size): New function to compute the sizes of the various
28379         tables.
28380
28381         * mono/metadata/metadata.h: Finish listing the different index
28382         types. 
28383
28384         * mono/metadata/pedump.c: Improve to dump new information.
28385
28386 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
28387
28388         * mono/metadata/metadata.c: Entered all the tables matching
28389         Beta2. 
28390
28391         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
28392
28393
28394