Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1
2 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
3
4         * mono-perfcounters.c: use the mono-proclib functions to
5         access process information.
6
7 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
8
9         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
10         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
11         reflection.c: remove rawbuffer usage: mmap support is more sanely
12         provided by utils/mono-mmap.
13
14 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
15
16         * gc.c: use posix semaphores when possible so that
17         mono_gc_finalize_notify() is signal safe.
18
19 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
20
21         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
22         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
23         be #ifdef-ed out, the linker will remove the rest.
24
25         * marshal.c: Implement DISABLE_COM.
26
27         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
28
29 2008-10-11  Miguel de Icaza  <miguel@novell.com>
30
31         * locales.c (string_invariant_compare_char): Optimization: do not
32         call g_unichar_type unless we actually need the information.
33
34 2008-10-10  Mark Probst  <mark.probst@gmail.com>
35
36         * object.c, class-internals.h: Also create remoting trampolines
37         for generic methods.  Pass the domain to the remoting trampoline
38         creation function, too.
39
40 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
41
42         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
43
44 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
45
46         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
47         Vector4ui.
48
49 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
50
51         * assembly.c:
52         * locales.c: remove the use of g_strdown. Fixes bug #322313.
53
54 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
55
56         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
57         for the least possible amount of time (extending the fix in r113458).
58
59 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
60
61         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
62
63 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
64
65         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
66         as possible simd intrinsic types.
67         Optimized the test to check for the common prefix first.
68
69 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
70
71         * class.c: back out part of a broken optimization committed on
72         May 23th (bug #433908).
73
74 2008-10-09  Mark Probst  <mark.probst@gmail.com>
75
76         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
77         Win32.  Should fix #432388 for most cases until we have the new
78         profiler on Win32.
79
80 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
81
82         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
83         instead of using inst->id so the hash is stable for AOT.
84
85 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
86
87         * appdomain.c:
88         * icall.c: create a .ini file for shadow-copied assemblies that
89         contains the location of the original assembly. Use this to return the
90         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
91         Also fix the number of '/' for windows when returning the CodeBase.
92         Fixes bug #430920.
93
94 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
95
96         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
97
98         Code is contributed under MIT/X11 license.
99
100 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
101
102         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
103           if if the class vtable needs initialized.
104
105         Code is contributed under MIT/X11 license.
106
107 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
108
109         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
110           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
111           STRING->BSTR, and CLASS->INTERFACE.
112
113         Code is contributed under MIT/X11 license.
114
115 2008-10-07  Marek Habersack  <mhabersack@novell.com>
116
117         * sysmath.h: changed the declaration of the
118         ves_icall_System_Math_Round2 icall by adding an extra
119         away_from_zero parameter.
120
121         * sysmath.c (ves_icall_System_Math_Round2): added support for
122         away from zero rounding. The icall now takes an extra boolean
123         parameter to signal that away from zero operation is requested.
124
125 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
126
127         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
128         the delegate klass so it can work with full-aot.
129         (mono_marshal_get_delegate_end_invoke): Ditto.
130         (mono_marshal_get_delegate_invoke): Ditto.
131
132 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
133
134         * gc.c, attach.h, attach.c: remove a bad pattern:
135         add_finalizer_callback () is not implemented correctly, it can't
136         without adding more overhead to the finalizer loop and it's not
137         even needed, since we know exactly what we need to call, so there is
138         no need to do so through an expensive function pointer.
139
140 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
141
142         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
143         for the no-gc case.
144         * attach.c (mono_attach_init): Remove the #ifdef.
145
146 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
147
148         * attach.c (mono_attach_init): Don't use
149         mono_gc_add_finalizer_thread_callback when compiling without GC.
150         Fixes #432306.
151         
152         Code is contributed under MIT/X11 license.
153
154 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
155
156         * class.c (mono_class_create_from_typedef): Remove the 
157         #ifndef DISABLE_SIMD stuff.
158
159 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
160
161         * class-internals.h (MonoClass): Added simd_type bit field.
162
163         * class.c (mono_class_create_from_typedef): Check if type is a simd
164         intrinsic.
165
166 2008-10-03  Mark Probst  <mark.probst@gmail.com>
167
168         * object.c (mono_method_add_generic_virtual_invocation): Only add
169         instantiations to the thunk whose count is at least as large as
170         the threshold.
171
172 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
173
174         * icall.c: changed the Type of the exception thrown when trying to
175         invoke a constructor on an abstract class. Part of the fix for bug
176         #324185.
177
178 2008-10-02  Mark Probst  <mark.probst@gmail.com>
179
180         * class.c, class-internals.h (mono_method_get_vtable_index): New
181         function which returns the index into the vtable and properly
182         handles inflated virtual generic methods.
183
184 2008-10-01  Mark Probst  <mark.probst@gmail.com>
185
186         * object.c, domain.c, object-internals.h, domain-internals.h:
187         Generalize IMT thunk machinery to also handle thunks for virtual
188         generic method invokes.  When a virtual generic method is invoked
189         more than a number of times we insert it into the thunk so that it
190         can be called without lookup in unmanaged code.
191
192         * generic-sharing.c, class-internals.h: Fetching a
193         MonoGenericInst* for a method from an (M)RGCTX.
194
195 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
196
197         * marshal.c (emit_marshal_string): Applied a variant of a patch by
198         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
199         marshalling. Fixes #431304.
200
201 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
202
203         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
204           handle when ref is specified without In or Out.
205
206         Code is contributed under MIT/X11 license.
207
208 2008-09-30  Mark Probst  <mark.probst@gmail.com>
209
210         * loader.c (mono_get_method_constrained): Don't expand method with
211         the class's context, because it's already a method of that class.
212
213 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
214
215         * attach.c : should be correct build fix.
216
217 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
218
219         * attach.c: Fix the previous change.
220
221 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
222
223         * attach.c : quick w32 build fix.
224
225 2008-09-27  Miguel de Icaza  <miguel@novell.com>
226
227         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
228         crashes MonoDevelop: #430455.
229
230 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
231
232         * domain-internals.h (struct _MonoDomain): Move most fields used only by
233         the JIT do MonoJitDomainInfo in ../mini/mini.h.
234
235         * domain.c: Remove initialization/cleanup of the removed fields.
236
237 2008-09-27  Mark Probst  <mark.probst@gmail.com>
238
239         * class.c (mono_class_generic_sharing_enabled): Enable generic
240         code sharing for PPC.
241
242 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
243
244         * attach.c : Fixing the Windows builds.
245
246         Code is contributed under MIT/X11 license.
247
248 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
249
250         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
251         the default generic sharing mode to 'all'.
252
253 2008-09-25  Mark Probst  <mark.probst@gmail.com>
254
255         * generic-sharing.c, class-internals.h: New function for checking
256         whether a method needs a static RGCTX invoke wrapper.  A few
257         funtions moved from mini/generic-sharing.c.
258
259         * icall.c: New function used.
260
261 2008-09-25  Mark Probst  <mark.probst@gmail.com>
262
263         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
264         Static RGCTX invoke wrapping applies to value type methods, too.
265
266         * class.c (mono_class_setup_vtable_general): In generic-shared
267         value types, wrap methods with a static RGCTX invoke wrapper.
268
269 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
270
271         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
272         osx build.
273
274 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
275
276         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
277         register a callback which is called when the finalizer thread is woken
278         up.
279         (finalizer_thread): Call the callback if it exists.
280
281         * attach.h attach.c: New files, implementing the attach mechanism.
282
283         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
284         
285         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
286         by the previous change.
287
288 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
289
290         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
291         loader.c, marshal.c, metadata-internals.h, metadata.c,
292         method-builder.c, object.c, reflection.c: introduced specific functions
293         to allocate from the domain and image mempools and cleaned up most of
294         the code to use them (still missing a few in reflection.c).
295         Keep the loader bytes counter updated.
296
297 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
298
299         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
300         loader-related counters.
301
302 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
303
304         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
305         added more MS-compatible counters.
306
307 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
308
309         * class.c (mono_class_setup_fields): Call setup_fields before accessing
310         class->blittable. Fixes #428217.
311
312 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
313
314         * reflection.c (mono_image_get_field_on_inst_token): Call 
315         field_encode_signature () since that handles custom modifiers too.
316         Fixes #424663.
317
318 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
319
320         * reflection.c (add_custom_modifiers): New helper function to merge custom
321         modifiers stored in objects to a MonoType.
322         (fieldref_encode_signature): Encode custom modifiers.
323         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
324         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
325
326 2008-09-19  KornĂ©l Pál  <kornelpal@gmail.com>
327
328         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
329         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
330         64-bit IL only images because imports are not resolved for IL only images.
331         Special thanks to Bill Holmes for finding this bug and testing the patch.
332         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
333
334         Contributed under MIT/X11 license.
335
336 2008-09-19  Miguel de Icaza  <miguel@novell.com>
337
338         * mono-config.c (dllmap_start): Add support for the bits keyword
339         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
340
341 2008-09-19  Mark Probst  <mark.probst@gmail.com>
342
343         * reflection.c (inflate_mono_method): When the class the method is
344         to be inflated for is itself not inflated, just return the method.
345
346 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
347
348         * mono-perfcounters.c: use more user friendly process instance names.
349
350 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
351
352         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
353           handle "[in] ref" and "[in][out] ref" cases.
354
355         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
356           to mono_mb_create_method.  This was causing problems calling native to
357           managed passing Variants by value.
358
359         Code is contributed under MIT/X11 license.
360
361 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
362
363         * class.c (can_access_internals): Call mono_assembly_load_friends ()
364         before accessing the friend_assembly_names field.
365
366         * assembly.c (mono_assembly_load_friends): Make this callable multiple
367         times.
368         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
369         called lazily when it is needed.
370
371         * metadata-internals.h (struct _MonoAssembly): Add 
372         'friend_assembly_names_inited' flag.
373
374 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
375
376         * mono-perfcounters-def.h: fix the types of a few counters.
377         * mono-perfcounters.c: implemented the instance names getter
378         and a few bugfixes.
379
380 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
381
382         * culture-info-table.h : regenerated.
383
384 2008-09-17  Robert Jordan  <robertj@gmx.net>
385
386         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
387         context bound objects. Fixes #415577.
388
389         Code is contributed under MIT/X11 license.
390
391 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
392
393         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
394         implementation (bug #423582).
395
396 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
397
398         * object.c (mono_object_get_virtual_method): Handle the case method->slot
399         is not set. Fixes #426309.
400
401 2008-09-16  Jb Evain  <jbevain@novell.com>
402
403         * class.c (mono_class_from_name): fix the exported type look up
404         when the type is defined in a referenced assembly.
405
406 2008-09-16  Jb Evain  <jbevain@novell.com>
407
408         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
409         increment the next index counter on each iteration to make that work
410         for more than one type forwarder. Unmanaged part to fix #422929.
411
412 2008-09-15  Mark Probst  <mark.probst@gmail.com>
413
414         * object-internals.h: enum ComInterfaceType in
415         MonoInterfaceTypeAttribute is guint32, not guint16.
416
417 2008-09-12  Mark Probst  <mark.probst@gmail.com>
418
419         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
420         writing code.
421
422 2008-09-11  Mark Probst  <mark.probst@gmail.com>
423
424         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
425         not gboolean.
426
427 2008-09-11  Mark Probst  <mark.probst@gmail.com>
428
429         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
430         Endianness fixes for MonoSymbolFileOffsetTable.
431
432 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
433
434         * process.c (complete_path) : Removing quotes from the 
435           input path.  The glib file routines do not handle file paths
436           that have quotes around them.
437
438         Code is contributed under MIT/X11 license.
439
440 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
441
442         * socket-io.h : Adding a comment to provide locations where 
443           changes to MonoSocketAsyncResult need to be synced.
444
445         Code is contributed under MIT/X11 license.
446
447 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
448
449         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
450         parameters as well. Fixes #425001.
451
452 2008-09-08  Miguel de Icaza  <miguel@novell.com>
453
454         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
455         windows build.
456
457 2008-09-07  Miguel de Icaza  <miguel@novell.com>
458
459         * console-io.c: Add support for tracking the window size if it
460         changes.
461
462         The setup is very simple: the TtySetup function will now return a
463         pointer to a location in memory that tracks the current console
464         size.  The managed code checks its current value every time its
465         queried against the last value set, and updates accordingly.
466
467         With this setup we can work with multiple consoles, and we do not
468         require to poke into managed code from a signal handler.
469
470         Additionally, the environment for COLUMNS and LINES is now handled
471         in unmanaged code.
472
473         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
474
475 2008-09-07  Mark Probst  <mark.probst@gmail.com>
476
477         * marshal.c (mono_type_native_stack_size): Treat
478         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
479
480 2008-09-04  Jb Evain  <jbevain@novell.com>
481
482         * class.c (mono_class_is_assignable_from): fix assignability of nullables
483         to nullables.
484
485 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
486
487         * verify.c (verify_type_compatibility_full): Revert change
488         to allow converting a native int to unmanaged pointer be verifiable
489         under non-strict mode.
490         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
491
492         * verify.c: Added some TODOs.
493
494 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
495
496         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
497           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
498           Changed to use GlobalAlloc for the memory returned on Windows platforms.
499
500         Code is contributed under MIT/X11 license.
501
502 2008-09-02  Jb Evain  <jbevain@novell.com>
503
504         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
505
506 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
507
508         reflection.c (typebuilder_setup_fields): Handle classes with
509         explicit size.
510
511 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
512
513         class.c (mono_class_setup_events): Add memory barrier due to
514         double checked locking.
515         
516         class.c (mono_class_setup_properties): Same.
517
518 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
519
520         * class.c (mono_class_is_assignable_from): Fix the build.
521         
522         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
523         before accessing klass->interface_bitmap. Fixes #421744.
524
525 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
526
527         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
528         the runtime into no-exec mode, useful when running the AOT compiler.
529
530         * appdomain.c gc.c object.c: Avoid executing managed code when running
531         in no-exec mode.
532         
533         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
534
535         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
536         special case when the mono_assembly_loaded () returns NULL because the 
537         search hook is not installed.
538
539 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
540
541         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
542         crashes in bstr marshalling on linux.
543
544 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
545
546         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
547         with more than one parameter.
548
549 2008-08-24  Miguel de Icaza  <miguel@novell.com>
550
551         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
552         start/stop flow control as well when turning off ICANON (allows
553         C-s and C-q to be read by Console.ReadKey).
554
555 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
556
557         * class.c (mono_class_init): Move the initialization of nested classes
558         into mono_class_get_nested_types (). Fixes #418433.
559
560         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
561         flag.
562
563         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
564         iterating tough the nested classes of a class.
565
566 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
567
568         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
569         on arm.
570
571 2008-08-22  Miguel de Icaza  <miguel@novell.com>
572
573         * console-io.c (sigcont_handler): Support signal chaining for
574         SIGCONT.
575
576         (console_set_signal_handlers): Use best practices with sigaction,
577         clear the structure before using it. 
578
579 2008-08-22  Robert Jordan  <robertj@gmx.net>
580
581         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
582         Fix the Windows build.
583
584 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
585
586         * class.c (mono_class_generic_sharing_enabled): Make the default
587         sharing mode 'corlib'.
588
589 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
590
591         * console-io.c (console_set_signal_handlers): Fix a warning.
592
593         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
594         method normally, the JIT will take care of avoiding recursion.
595
596 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
597
598         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
599
600         Code is contributed under MIT/X11 license.
601
602 2008-08-20  Miguel de Icaza  <miguel@novell.com>
603
604         * console-io.c (sigcont_handler): We need to restore the entire
605         termios state, not only the original settings, as things like echo
606         can be controlled after this (Booish exposes this issue with its
607         own ReadLine implementation).
608
609         Additionally, we need to set the terminal back into keypad_xmit
610         mode.
611         
612         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
613         string as a paramter as well.   Otherwise we get different
614         keyboard sequences.
615
616 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
617
618         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
619         delegates with byref out parameter passing. Fixes #351520.
620
621         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
622         a generic context.
623         (mono_type_get_desc): Add the type arguments for GENERICINST.
624         (mono_method_full_name): Stringify the class name using mono_type_full_name
625         so it picks up generic arguments.
626
627 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
628
629         * console-io.c: Removed debug output.
630
631 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
632
633         reflection.c (mono_reflection_create_runtime_class): Alloc
634         the nested classes linked list using the dynamic image mempool.
635         Fixes leak in corlib compilation.
636
637 2008-08-19  Miguel de Icaza  <miguel@novell.com>
638
639         * console-io.c: Fix incredibly annoying behavior on the console
640         after resuming execution after control-z.   This affected every
641         console application.
642
643 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
644
645         * mempool-internals.h: Header for mono private mempool functions. The first
646         two function are for allocating glib linked lists using pools.
647
648         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
649
650         * Makefile.am: Added mempool-internals.h.
651
652 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
653
654         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
655         (mono_domain_free): Ditto.
656
657         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
658         be used by the JIT to store its domain-specific information, instead of putting
659         it directly into MonoDomain.
660
661         * domain.c (mono_install_create_domain_hook): New helper function to install
662         a hook which initializes domain->runtime_info.
663
664         * domain.c (mono_install_free_domain_hook): Ditto.
665         
666 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
667
668         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
669         asserting if the ares parameter is null.
670
671         * mono-perfcounters.c: Fix warnings.
672
673         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
674         is not needed, don't check for interruptions either.
675         (mono_marshal_get_delegate_end_invoke): Ditto.
676
677 2008-08-15  Marek Habersack  <mhabersack@novell.com>
678
679         * mono-perfcounters.c (predef_readonly_counter): added support for
680         reading the ASP.NET Requests Queued counter from another process.
681
682 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
683
684         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
685         MonoImage to simplify the AOT code.
686
687 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
688
689         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
690         marshalling. Fixes #416078.
691
692 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
693         
694         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
695         it is set, looking up the icall address is deferred to the JIT, since 
696         in embedded scenarios, the icall might not be registered in the runtime
697         doing the AOT compilation. Backported from the 2.0 branch.
698
699 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
700
701         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
702         Fixes #415621.
703
704 2008-08-05  Marek Habersack  <mhabersack@novell.com>
705
706         * Makefile.am: added support for cross-compilation.
707
708 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
709
710         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
711
712 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
713
714         * mono-perfcounters.c: jitted methods and jitted bytes counters.
715
716 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
717
718         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
719         mono-perfcounters.c: performance counters implementation.
720
721 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
722
723         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
724         to gpointer, letting the AOT code decide what to store in it.
725
726 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
727
728         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
729           mono_class_setup_methods if the methods are not initialized.
730
731         Code is contributed under MIT/X11 license.
732
733 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
734
735         * verify.c: Remove some debug code I commited by accident.
736
737         * verify.c (mono_method_is_valid_in_context): Change the return value
738         to make possible to distinguish between invalid and unverifiable.
739
740         * verify.c (verifier_load_method): Don't return NULL for unverifiable
741         methods.
742
743 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
744
745         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
746         constraints. Fixes regression in gtest-253.
747
748 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
749
750         * verify.c (mono_verifier_verify_class): Don't allow generic types
751         with explicit layout.
752
753         * verify.c (mono_method_verify): Check locals and argument types.
754
755 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
756
757         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
758         wait if the thread is in StopRequested state.
759
760         * class.c (mono_class_from_name): Refactor the module searching code into
761         a separate function so it can be reused in the AOT case too.
762
763 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
764
765         * verify.c (mono_type_is_valid_in_context): Improve the error message.
766         Check both the type and it's generic type definition for loader errors.
767         
768         * verify.c (mono_method_is_valid_in_context): Don't generate another
769         error when a type errors occur, this leads to the wrong exception been
770         thrown.
771
772 2008-07-28  Dick Porter  <dick@ximian.com>
773
774         * icall-def.h
775         * process.c
776         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
777         New internal calls to duplicate and close a process handle.
778
779 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
780
781         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
782
783 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
784
785         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
786
787 2008-07-27  Robert Jordan  <robertj@gmx.net>
788
789         * class.c (mono_class_init): Don't compute class.has_finalize for
790         valuetypes. Fixes #412477.
791
792 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
793
794         * verify.c: Implement constraint equivalence checking.
795         This is required when a generic parameter is used as
796         argument to a constrained one.
797
798         Fixes #410637.
799
800 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
801
802         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
803
804         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
805
806         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
807         synch with managed object layout.
808
809 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
810
811         * verify.c (do_branch_op): Handle valuetypes and generic
812         arguments properly.
813
814         * verify.c (do_cmp_op): Same.
815
816         Fixes #410383.
817
818 2008-07-24  Mark Probst  <mark.probst@gmail.com>
819
820         * generic-sharing.c: Fix memory leaks.
821
822         * class.c, class-internals.h: Make
823         mono_class_inflate_generic_type_with_mempool() non-static.
824
825 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
826
827         * pedump.c (dump_verify_info): Dump full class name.
828
829 2008-07-24  Mark Probst  <mark.probst@gmail.com>
830
831         * generic-sharing.c: Removed some old code that didn't do anything.
832
833 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
834         * profiler.c: Added runtime_initialized_event,
835         mono_profiler_install_runtime_initialized and
836         mono_profiler_runtime_initialized. This new hook tells the profiler
837         when the runtime is sufficiently initialized to be able to call
838         mono_thread_attach on the root appdomain.
839         * profiler.h, profiler-private.h: Likewise.
840
841 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
842
843         * verify.c (do_cast): Do boxing for generic arguments as well.
844
845         * class.c (is_nesting_type): Drop generic instantiations before
846         checking for nesting.
847
848         * class.c (can_access_instantiation): Allow access to generic
849         arguments.
850
851 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
852
853         * verify.c (verify_class_for_overlapping_reference_fields):
854         On some cases, the field size might be zero, guard against that.
855         Fix the explicit layout check to work as expected.
856
857 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
858
859         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
860         mono_thread_resume () during shutdown, since the thread we want to abort
861         might be suspended.
862
863 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
864
865         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
866         warning.
867
868         * debug-mono-symfile.c: Fix a warning.
869
870         * mono-perfcounters.c (get_cpu_times): Fix a warning.
871
872         * object.c (mono_class_vtable): Check if exception_type is set, and return
873         NULL as defined by the function comments.
874
875 2008-07-22  Mark Probst  <mark.probst@gmail.com>
876
877         * mempool.c: Use malloc for every single mempool allocation if the
878         configure option is set.  This makes it easier to track mempool
879         allocations with tools like Valgrind.
880
881 2008-07-22  Jb Evain  <jbevain@novell.com>
882
883         * reflection.c (create_dynamic_mono_image): emit the same
884         metadata version that SL2 does when creating a SL2 image.
885
886 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
887
888         * icall-def.h:
889         * icall.c: New icall System.Enum:get_hashcode. This function
890         avoids the overhead of boxing the enum to the underlying type.
891
892 2008-07-21  Mark Probst  <mark.probst@gmail.com>
893
894         * reflection.c (mono_method_get_object): Don't let static RGCTX
895         invoke wrappers get into MonoReflectionMethods.
896
897 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
898
899         * object-internals.h:
900         * object.c: New mono_runtime_class_init_full function
901         that makes throwing the exception optinal.
902
903         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
904         for the case where the exception object is supplied.
905
906 2008-07-16  KornĂ©l Pál  <kornelpal@gmail.com>
907
908         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
909         old ld versions.
910
911         Contributed under MIT/X11 license.
912
913 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
914
915         * string-icalls.c (ves_icall_System_String_InternalSplit):
916         Optimize array allocation by caching the MonoClass of the
917         array type.
918
919         * icall.c (ves_icall_Type_GetMethodsByName): Same.
920
921         * reflection.c (mono_param_get_objects): Same.
922
923 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
924
925         * icall-def.h:
926         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
927         It inflates the given type using the class context.
928
929 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
930
931         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
932         the vtable if it already exists.
933
934         * object-internals.h: Add mono_class_try_get_vtable as part of the
935         internal API.
936
937         * reflection.c (mono_type_get_object): Use the MonoObject from the
938         vtable when possible. Reduces locking contention on reflection heavy
939         code.
940
941 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
942
943         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
944         g_bit_nth_msf () since that macro is not implemented in eglib.
945
946 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
947
948         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
949         on platforms which do not support it.
950
951 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
952
953         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
954
955 2008-07-11  Martin Baulig  <martin@ximian.com>
956
957         * mono-debug-debugger.h
958         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
959
960         * mono-debug-debugger.c
961         (_mono_debugger_interruption_request): New global volatile variable.
962         (mono_debugger_check_interruption): New public function.
963
964         * threads.c
965         (mono_thread_current_check_pending_interrupt): Call
966         mono_debugger_check_interruption().
967         (mono_thread_interruption_checkpoint_request): Likewise.
968
969 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
970
971         * verify.c: Add more type checks for loaded types. Verify the result
972         handle from ldtoken.
973
974 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
975
976         * loader.c (field_from_memberref): Don't crash if the field
977         wasn't found.
978
979 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
980
981         * verify.c: Verify if type and method instantiations
982         don't have invalid VAR or MVAR arguments.
983
984 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
985
986         * verify.c: Fix double free of function pointer list.
987
988 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
989
990         * object.c (mono_string_to_utf8): Comment the new code as it
991         breaks under eglib.
992
993 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
994
995         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
996
997 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
998
999         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
1000           is not throw too many times.
1001
1002         Code is contributed under MIT/X11 license.
1003
1004 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
1005
1006         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
1007         debugging is turned off.
1008
1009 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
1010
1011         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
1012
1013 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1014
1015         * class-internals.h, class.c: Added new generic sharing option:
1016         Share only stuff in System.Collections.Generic, which is now the
1017         default.
1018
1019 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1020
1021         * generic-sharing.c, class-internals.h: New function for getting a
1022         generic method in a generic class given the corresponding method
1023         for a different instantiation of the class.  Partly refactored
1024         from mini-trampolines.c.
1025
1026         * class.c: Make sure generic methods have a class_inst if they are
1027         part of a generic class.
1028
1029         * metadata.c (mono_type_stack_size_internal): Handle type
1030         variables.
1031
1032 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1033
1034         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
1035         Signifies whether information on the this/vtable/mrgctx variable
1036         is available.
1037
1038 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1039
1040         * object.c, object-internals.h, icall.c: New function
1041         mono_delegate_ctor_with_method(), which does the same as
1042         mono_delegate_ctor(), but takes an explicit method argument
1043         instead of taking the method from the jit info.
1044
1045         * marshal.c: When creating a delegate with an inflated method take
1046         the "this" argument as the target class for the castclass.
1047
1048 2008-07-03  Mark Probst  <mark.probst@gmail.com>
1049
1050         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
1051         mono_jit_info_table_find() to perform very badly in some cases.
1052
1053 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
1054
1055         * icall.c (type_from_typename): Handle 'string'.
1056
1057         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
1058         wrappers into the wrapper_hash, since the key is not a MonoMethod.
1059
1060 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
1061
1062         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
1063
1064         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
1065         number of available managed allocator types.
1066
1067         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
1068         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
1069
1070 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
1071
1072         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
1073         which is a low level lock protecting just the 'jit_code_hash' hash table.
1074
1075         * domain.c: Initialize+cleanup jit_code_hash_lock.
1076         
1077 2008-06-30  KornĂ©l Pál  <kornelpal@gmail.com>
1078
1079         * coree.c (mono_load_coree): Set coree_module_handle global variable only
1080         after initialization.
1081
1082         * coree.h: Make MonoFixupExe internal.
1083
1084         Contributed under MIT/X11 license.
1085
1086 2008-06-30  KornĂ©l Pál  <kornelpal@gmail.com>
1087
1088         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
1089         because that is platform independent. Check NumberOfRvaAndSizes in PE32
1090         as well.
1091         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
1092         image being loaded is a CLI image and _CorValidateImage gets called.
1093
1094         * coree.h: Add MonoLoadImage.
1095
1096         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
1097         instead of LoadLibrary.
1098
1099         Contributed under MIT/X11 license.
1100
1101 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
1102
1103         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
1104         for any primitive type.
1105
1106 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
1107
1108         * object.c (mono_array_new_specific): Optimize this and the other allocation
1109         functions a bit.
1110         
1111         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
1112         domains too if mono_dont_free_domains is set.
1113
1114         * domain-internals.h (mono_dont_free_domains): New internal option controlling
1115         whenever to free appdomain data after it has been unloaded.
1116
1117         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
1118         
1119 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
1120
1121         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
1122         (mono_method_get_equivalent_method): Fix a warning.
1123
1124         * object.c (mono_message_init): Avoid looking up array types for each call.
1125
1126 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
1127
1128         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
1129         call.
1130
1131         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
1132         even more.
1133
1134         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
1135         each iteration.
1136
1137         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
1138         fields of an enum.
1139
1140 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
1141
1142         * object.c (mono_value_box): Fix boxing of nullables.
1143
1144 2008-06-26  KornĂ©l Pál  <kornelpal@gmail.com>
1145
1146         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
1147         mono_module_handle that is defined by the linker; no initialization required.
1148         * coree.h: Remove mono_module_handle, add __ImageBase, update
1149         mono_image_open_from_module_handle.
1150         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
1151         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
1152         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
1153         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
1154         to 4 GB away from image base address. IA64 version is not tested but was very
1155         easy to implement and should work if we ever need it.
1156         * domain.c (mono_init_internal): Avoid system error message boxes.
1157         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
1158         with has_entry_point. Handle do_mono_image_load fauilre correctly.
1159         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
1160         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
1161         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
1162
1163         Contributed under MIT/X11 license.
1164
1165 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1166
1167         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
1168         as part of the private mono API.
1169         
1170         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
1171         Do proper argument checking for methods that belong to generic classes.
1172         Do proper type resolution for GMFH/2.
1173         Fixes #377324.
1174         
1175 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1176
1177         * verify.c (do_switch): Fix a memory corruption bug with
1178         the jump index is out of bound.
1179
1180 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1181
1182         * verify.c: Disable debug code.
1183
1184 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1185
1186         * reflection.c (mono_image_get_methodbuilder_token): Use
1187         mono_image_get_methodspec_token_for_generic_method_definition
1188         instead of mono_image_get_memberref_token. We cache more memberef
1189         entries now.
1190
1191 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1192
1193         * verify.c: Inflate exception clause types.
1194         Fixes #402606.
1195         
1196 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1197
1198         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
1199         name.
1200
1201         * reflection.c (mono_image_get_ctorbuilder_token): Same.
1202
1203         * reflection.c (mono_image_create_method_token): Same.
1204
1205 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1206
1207         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
1208         It does the same as mono_image_get_methodref_token but works on
1209         MethodBuilder.
1210
1211         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
1212         and always generate a methodspec. This follows the old behavior and fixes
1213         the regressions in System.Core. 
1214
1215 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
1216
1217         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
1218         don't event mono_class_get () succeeds. Fixes #402182.
1219
1220 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
1221
1222         * metadata-internals.h: Added MonoDynamicImage::methodspec
1223         hashtable to store methodspec tokens created for MethodBuilders.
1224
1225         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
1226         MethodBuilders as open instantiations if a methodspec was requested.
1227
1228         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
1229
1230         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
1231
1232         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
1233
1234         Fixes bug #349190.
1235
1236 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
1237
1238         * loader.c (method_from_methodspec): Avoid crashing if the
1239         method lookup fails.
1240
1241 2008-06-20  Dick Porter  <dick@ximian.com>
1242
1243         * socket-io.c (get_socket_assembly): Cope with Moonlight network
1244         classes being in a different assembly.  Fixes bug 399184.
1245
1246 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
1247
1248         * loader.c (mono_loader_init): Make this callable multiple times.
1249         (mono_dllmap_insert): Call mono_loader_init () so this works even before
1250         the runtime is initialized. Fixes #401755.
1251
1252 2008-06-19  Dick Porter  <dick@ximian.com>
1253
1254         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
1255         Fixes bug 349688.
1256
1257 2008-06-19  Dick Porter  <dick@ximian.com>
1258
1259         * socket-io.c:
1260         * icall-def.h: Implement Socket generic Send() and Receive()
1261         methods.  Fixes bug 395168.
1262
1263 2008-06-19  KornĂ©l Pál  <kornelpal@gmail.com>
1264
1265         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
1266
1267         Contributed under MIT/X11 license.
1268
1269 2008-06-18  Martin Baulig  <martin@ximian.com>
1270
1271         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
1272         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
1273         set to 80.0.  The debugger <-> runtime interface is now frozen as
1274         well.   
1275
1276         * mono-debug.c
1277         (mono_debug_debugger_version): Bump to 4.
1278
1279 2008-06-18  Martin Baulig  <martin@ximian.com>
1280
1281         * debug-mono-symfile.c
1282         (load_symfile): Don't check the minor version.
1283
1284         * debug-mono-symfile.h: Bump the version number to 50.0.
1285
1286 2008-06-18  Martin Baulig  <martin@ximian.com>
1287
1288         * debug-mono-symfile.c
1289         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
1290         minimum required version.
1291
1292 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
1293
1294         * reflection.c (mono_custom_attrs_from_property): Fix support for
1295         retriveving cattrs of dynamic inflated generic types.
1296
1297         * reflection.c (mono_custom_attrs_from_event): Same.
1298
1299         * reflection.c (mono_custom_attrs_from_field): Same;
1300
1301         * reflection.c (typebuilder_setup_events): Same cattrs of events.
1302
1303         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
1304         Moved to metadata.c.
1305
1306         * metadata.c: New functions to retrive the equivalent field, event
1307         of property from the generic type definition.
1308
1309         * metadata-internals.h: Added new functions from metadata.c.
1310
1311 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
1312
1313         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
1314         to cached in a mempool is used.
1315
1316         * metadata.c (free_generic_class): In some situations field generic_info type
1317         is not properly dup'ed and leads to double free'ing.
1318
1319         Fixes #400643.
1320
1321 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1322
1323         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
1324         this arguments (will be needed later for generic methods).
1325         Collect stats.
1326
1327 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1328
1329         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
1330         Create a static RGCTX invoke wrapper for methods which require it.
1331
1332 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1333
1334         * object.c, class-internals.h: New function for checking whether
1335         an individual field is special static.
1336
1337 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
1338
1339         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
1340         linear search since the table is sorted.
1341
1342         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
1343         Fixes #324180.
1344
1345 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
1346
1347         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
1348         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
1349
1350         * gc.c (mono_domain_finalize): Allow an infinite timeout.
1351
1352         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
1353         
1354         * threads.c (mono_thread_request_interruption): Get rid of locking, use
1355         InterlockedCompareExchange to query and modify 
1356         thread->interruption_requested.
1357
1358         * object-internals.h (struct _MonoThread): Change interruption_requested
1359         to a gint32 so it can be modified by atomic operations. Add 
1360         'critical_region_level' from the managed side, change small_id to a guint32,
1361         add new set of 'unused' fields.
1362
1363         * appdomain.c: Bump corlib version.
1364
1365 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
1366
1367         * class.c (mono_class_from_name): Search modules as well. Fixes
1368         #322332.
1369
1370 2008-06-13  Mark Probst  <mark.probst@gmail.com>
1371
1372         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
1373         templates.  Templates are generalized with an additional type_argc
1374         argument.  RGCTX templates have type_argc==0, MRGCTX templates
1375         have type_argc>0.
1376
1377         * domain-internals.h, domain.c: New hash table for looking up
1378         MRGCTXs.
1379
1380         * metadata.c, metadata-internals.h: Rename hash and equal
1381         functions for MonoGenericInst's and make them public.
1382
1383         * class-internals.h: New data structures for the MRGCTX.  Macros
1384         for distinguishing slots in the RGCTX and the MRGCTX.
1385
1386 2008-06-13  Mark Probst  <mark.probst@gmail.com>
1387
1388         * object.c (mono_method_get_imt_slot): Put the same methods of
1389         different instantiations of the same generic interface in the same
1390         IMT slots, to make generic sharing simpler.
1391
1392 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
1393
1394         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
1395
1396         * metadata.c (mono_metadata_field_info_with_mempool): Added.
1397         This function works just like mono_metadata_field_info, but
1398         accept a mempool as argument to be used allocating memory.
1399
1400         * marshal.c (mono_marshal_load_type_info): Use new function
1401         to load marshal data into image mempool.
1402
1403 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
1404
1405         * class.c (mono_class_inflate_generic_type_with_mempool):
1406         This function allows to inflate a generic type using
1407         a mempool.
1408
1409         * class.c (inflate_generic_type): Take a mempool as argument
1410         and use it to do type dup'ing.
1411
1412         * class.c (mono_class_setup_fields): Field type for generic
1413         generic classes are allocated from the image mempool.
1414
1415         * metadata.c (free_generic_class): Inflated field type is
1416         now allocated in the image mempool.
1417
1418 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
1419
1420         * threads.c (thread_cleanup): Free MonoThread::name.
1421
1422 2008-06-12  Marek Habersack  <mhabersack@novell.com>
1423
1424         * appdomain.c (ensure_directory_exists): avoid unnecessary
1425         mkdir(2) calls when the shadow directory already exists.
1426         (mono_make_shadow_copy): copy also satellite assemblies from the
1427         private bin directories.
1428
1429 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
1430
1431         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
1432         
1433         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
1434         a page boundary. Fixes #396219.
1435
1436 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1437
1438         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
1439         due to double-checked locking.
1440
1441 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1442
1443         * assembly.c (build_assembly_name): Release memory on failure.
1444
1445         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
1446
1447 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1448
1449         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
1450         memory on failure.
1451
1452 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1453
1454         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
1455         memory on failure.
1456
1457 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1458
1459         * loader.c (field_from_memberref): Check if field signature type is equal
1460         to the non-inflated type of the field. Fixes #398980.
1461
1462 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
1463
1464         * assembly.c (mono_assembly_load_from_full): Call 
1465         mono_assembly_load_friends () outside the assemblies lock, since it can
1466         acquire the loader lock. Fixes #323696.
1467
1468         * reflection.c (resolve_object): Inflate the inst with the context for
1469         FieldOnTypeBuilderInst. Fixes #399010.
1470
1471 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1472
1473         * reflection.c (mono_image_get_field_on_inst_token): Don't
1474         inflate the field to encode it's signature. If it's a
1475         VAR or MVAR it should stay that way in the signature.
1476         Fixes #399047.
1477
1478 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1479
1480         * reflection.c (resolve_object): Release memory of inflated types.
1481
1482 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1483
1484         * loader.c (mono_method_get_signature_full): Remove assert about
1485         loading a methodspec to a generic method. We have such methods, such as
1486         System.Threading.Interlocked::CompareExchange<T>.
1487         This assert was removed since it crashes the verifier when it checks
1488         methods calling CompareExchange<T>.
1489
1490 2008-06-10  Marek Safar  <marek.safar@gmail.com>
1491
1492         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
1493         of Type array and not MonoType.
1494
1495 2008-06-10  Marek Habersack  <mhabersack@novell.com>
1496
1497         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
1498         <lupus@ximian.com>
1499
1500 2008-06-10  Martin Baulig  <martin@ximian.com>
1501
1502         * debug-mono-symfile.h
1503         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
1504         changes to the file format, but we were generating incorrect
1505         source file indices in the line number table due to a bug, which
1506         made backtraces report an incorrect source file.
1507
1508 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1509
1510         * mono-debug.c: Moved mono_debug_free_method_jit_info from
1511         mini/debug-mini.c to here.
1512
1513         * mono-debug.c (il_offset_from_address): Free memory from find_method.
1514
1515         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
1516         use it to release structs returned by mono_debug_find_method.
1517
1518 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
1519
1520         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
1521         since it needs to set method->slot for all interface methods.
1522
1523 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
1524
1525         * class-internals.h: Forgot to add.
1526
1527 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
1528
1529         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
1530
1531         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
1532         Lookup the custom attributes from property_hash.
1533
1534         * reflection.c (mono_save_custom_attrs): Save the custom attributes
1535         in property_hash. Allocate all data using the image mempool.
1536
1537         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
1538         for dynamic_custom_attrs to checks if the image is dynamic.
1539
1540 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
1541
1542         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
1543         assemblies array.
1544         
1545         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
1546         runtime functions while holding the domain assemblies lock.
1547
1548 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
1549
1550         * verify.c: Reapplied the last bit of the reverted changes.
1551
1552 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
1553
1554         * verify.c: Reapplied more of the reverted changes.
1555
1556 2008-06-09  Martin Baulig  <martin@ximian.com>
1557
1558         * debug-mono-symfile.c (load_symfile): Check the major version
1559         first; if it's wrong, don't print the minor version in the error message.
1560
1561 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
1562
1563         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
1564         lock instead of the domain lock to avoid deadlocks, since the thread might
1565         already hold the loader lock.
1566
1567         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
1568         (mono_thread_attach): Ditto.
1569
1570         * monitor.c: Use a TLS variable for holding the current thread id instead
1571         of calling pthread_self ().
1572         (mono_monitor_init_tls): New internal function to initialize the TLS
1573         variable.
1574         (mono_monitor_try_enter_internal): Put the owner == id check after the
1575         owner == 0 check.
1576
1577         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
1578         missed optimizations when using gcc-4.3.
1579
1580 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
1581
1582         * reflection.c (mono_dynamic_image_free): Free the memory
1583         used by MonoGenericParam in MonoDynamicImage::gen_param.
1584
1585         * reflection.c (mono_reflection_setup_generic_class): Allocate
1586         container from mempool.
1587
1588         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
1589         container from mempool.
1590
1591 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
1592
1593         * threads.c (mono_set_pending_exception): New internal function to set the
1594         pending exception of the current thread.
1595         (mono_thread_get_and_clear_pending_exception): Check for 
1596         thread->pending_exception as well.
1597
1598         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
1599
1600         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
1601         it can trigger a collection.
1602
1603 2008-06-06  Martin Baulig  <martin@ximian.com>
1604
1605         Merged the `debugger-kahalo' branch.
1606
1607         * mono-debug.h
1608         (MONO_DEBUGGER_VERSION): Bumped to 72.
1609
1610         * debug-mono-symfile.h
1611         (MonoSymbolFileMethodIndexEntry): Removed.
1612         (MonoSymbolFileMethodEntry): New public typedef.
1613         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
1614         (MonoSymbolFileSourceEntry): Remove everything except `index' and
1615         `data_offset'.
1616         (MonoSymbolFileMethodEntry): Removed.
1617         (MonoSymbolFileLexicalBlockEntry): Removed.
1618         (MonoSymbolFileLineNumberEntry): Removed.
1619         (MonoDebugLexicalBlockEntry): Removed.
1620         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
1621         removed `num_il_offsets' and `il_offsets'.
1622         (MonoSymbolFile): Replace `version' with `major_version' and
1623         `minor_version'.
1624         (MONO_SYMBOL_FILE_VERSION): Replace with
1625         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
1626         `MONO_SYMBOL_FILE_MINOR_VERSION'.
1627
1628         * debug-mono-symfile.c
1629         (mono_debug_symfile_lookup_location): Add support for the new line
1630         number table format.
1631
1632 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
1633
1634         * metadata.c (free_generic_class): Release the inflated
1635         MonoClass of dynamic generic classes if it's not a generic
1636         type definition.
1637
1638 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
1639
1640         * verify.c: Reapplied more of the reverted changes.
1641
1642 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
1643
1644         * reflection.c (lookup_custom_attr): Clean the cached flag or
1645         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
1646         for SRE types.
1647
1648 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
1649
1650         * verify.c: Reapplied a small part of the reverted changes.
1651
1652 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
1653
1654         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1655
1656         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
1657         previously in managed code.
1658         (mono_monitor_exit): Ditto.
1659         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
1660
1661         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
1662         the managed definition.
1663
1664 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
1665
1666         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
1667
1668 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
1669
1670         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
1671         
1672         * monitor.c: Add some micro optimizations.
1673
1674         * icall.c (type_from_typename): Handle 'bool'.
1675
1676 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
1677
1678         * verify.c: Implement constructor verification per P III 1.8.1.4.
1679         Fixes #396716.
1680
1681 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
1682
1683         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
1684         holding the assemblies lock here too.
1685
1686 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
1687
1688         * verify.c: Kill stack_top function.
1689
1690 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
1691
1692         * verify.c: Kill stack_get function.
1693
1694 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
1695
1696         * verify.c (mono_method_verify): Last change broke the build. Fixed.
1697
1698 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
1699
1700         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
1701         more reliable.
1702
1703         * verify.c (mono_method_verify): Inflate params and locals to avoid
1704         mismatch when checking for compatibility.
1705
1706 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
1707
1708         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
1709         Length prefix should be size in bytes. Fix bug #339530.
1710         
1711         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
1712         Length prefix should be size in bytes. Fix bug #339530.
1713
1714         Code is contributed under MIT/X11 license.
1715
1716 2008-06-05  Bill Holmes <billholmes54@gmail.com>
1717
1718         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
1719
1720         Contributed under MIT/X11 license.
1721
1722 2008-06-05  Martin Baulig  <martin@ximian.com>
1723
1724         * mono-debug-debugger.c
1725         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
1726
1727 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
1728
1729         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
1730         while holding the assemblies lock to prevent deadlocks. Handle the case
1731         where the search hook returns NULL but the assembly was still loaded.
1732         Fixes #323696.
1733
1734         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
1735         modify domain state.
1736
1737 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
1738
1739         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
1740         * Makefile.am (pedump_LDADD): Post-process object files and
1741         add dtrace-generated object file, if necessary.
1742
1743         Code is contributed under MIT/X11 license.
1744
1745 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
1746
1747         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
1748
1749 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
1750
1751         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
1752
1753 2008-06-04  Mark Probst  <mark.probst@gmail.com>
1754
1755         * threads.c: Try to free everything from the delayed free table
1756         when shutting down threads, and set the variable to NULL after the
1757         table is freed so that calling
1758         mono_thread_hazardous_try_free_all() when shutting down the root
1759         domain doesn't crash.
1760
1761 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
1762
1763         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
1764         the caller if resulting type was inflated.
1765
1766         * class.c (mono_class_create_from_typespec): Free the MonoType if it
1767         was inflated.
1768
1769         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
1770
1771
1772 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
1773
1774         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
1775         class library tests.
1776
1777         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
1778         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
1779         #396989.
1780
1781 2008-06-04  Mark Probst  <mark.probst@gmail.com>
1782
1783         * domain.c, domain-internals.h: The JIT infos are now freed by the
1784         JIT info table code.  They are freed immediately if there only a
1785         single JIT info table in circulation.  If there is more, the free
1786         is delayed via a queue.
1787
1788         * threads.c, threads-types.h: New hazard pointer function for
1789         freeing all freeable delayed items in one sitting.
1790
1791 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
1792
1793         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
1794
1795         * reflection.c (typebuilder_setup_properties): Same.
1796
1797         * reflection.c (typebuilder_setup_events): Same.
1798
1799 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
1800
1801         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
1802         and use it for allocating memory.
1803
1804         * reflection.c (mono_marshal_spec_from_builder): Same.
1805
1806         * reflection.c: Change code to use new signatures.
1807
1808         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
1809
1810 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
1811
1812         * decimal.c (rescale128): Put back one line which was accidently commented
1813         out.
1814         
1815         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
1816         to cause crashes.
1817
1818 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
1819
1820         * reflection.c (mono_reflection_generic_class_initialize): Name must
1821         be always malloc'ed so we can free it later on. Do this for field, property
1822         and event.
1823
1824         * metadata.c (free_generic_class): Free field, property and event names.
1825
1826 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
1827
1828         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
1829         instead of g_memdup.
1830
1831         * reflection.c (typebuilder_setup_fields): Same.
1832
1833 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
1834
1835         * decimal.c (rescale128): Optimize this function a bit more.
1836
1837 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
1838
1839         * metadata.c (free_generic_class): Release some memory from
1840         SRE generic classes.
1841
1842 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
1843
1844         * reflection.c (mono_image_get_generic_field_token): No reference
1845         to name is kept, free it.
1846
1847         * reflection.c (mono_reflection_generic_class_initialize): Free
1848         more memory of the inflated field.
1849
1850 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
1851
1852         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
1853         code.
1854
1855 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
1856
1857         * reflection.c (mono_dynamic_image_free): Release memory used by
1858         MonoDynamicImage::array_methods elements.
1859
1860         * reflection.c (assembly_add_win32_resources): Release memory after
1861         encoding.
1862
1863 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
1864
1865         * decimal.c (log2_32): Use an optimized version for this function too.
1866         
1867         * decimal.c (log2_64): Fix this on 32 bit machines.
1868
1869 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
1870
1871         * class.c (mono_dup_array_type): Implement allocation using a mempool.
1872
1873         * class.c (mono_metadata_signature_deep_dup): Same.
1874
1875         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
1876         a mempool.
1877
1878         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
1879
1880         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
1881
1882         * metadata-internals.h: Added mono_metadata_signature_dup_full.
1883
1884         * class-internals.h: Update signatures to take a MonoMemPool.
1885
1886 2008-06-02  Dick Porter  <dick@ximian.com>
1887
1888         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
1889         * icall-def.h: Add
1890         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
1891         FormatMessage API to get the error text.  Fixes bug 321827.
1892
1893 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
1894
1895         * decimal.c: Add some micro optimizations to make decimal operations faster.
1896
1897 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
1898
1899         * reflection.c (method_encode_clauses): Take a mempool
1900         as parameter and use it to allocate the clause array.
1901
1902         * reflection.c (mono_image_get_field_on_inst_token): Free
1903         the inflated type after encoding it.
1904
1905         * reflection.c (mono_dynamic_image_free): Free each element
1906         of MonoDynamicImage::gen_params.
1907
1908         * reflection.c (reflection_methodbuilder_to_mono_method):
1909         Allocate the generic param array from the mempool.
1910         Allocate signature params from the mempool.
1911
1912         * reflection.c (mono_reflection_generic_class_initialize):
1913         Free inflated fields after been used.
1914
1915 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
1916
1917         * icall.c: Reapply the memory leak fixes as they no
1918         longer make mono crash.
1919
1920 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
1921
1922         * reflection.c (mono_type_get_object): Don't store the suplied
1923         MonoType with type_hash. A caller which pass a type that
1924         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
1925         might end with a pointer to freed memory.
1926         The solution is to use byval_arg or this_arg from the associated
1927         MonoClass of the supplied type.
1928
1929 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
1930
1931         * icall.c: Revert the rest of the last change as it breaks the build too.
1932
1933 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
1934
1935         * icall.c: Revert a leak fix as it's breaking the build.
1936
1937 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
1938
1939         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
1940
1941 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
1942
1943         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
1944
1945 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
1946
1947         * icall.c: Fix some memory leaks.
1948
1949 2008-05-29  Dick Porter  <dick@ximian.com>
1950
1951         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
1952         async socket operations from the pending list when a socket
1953         closes.  Leaving it until the threadpool services the event
1954         exposes a race condition when a socket descriptor is reused.
1955         Fixes bug 377589.
1956
1957 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
1958
1959         * object.c: Fix negative index check for array alocation.
1960
1961 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
1962
1963         * icall.c, marshal.c: Delegate wrappers should skip visibility.
1964         This check is performed by the verifier for IL created delegates
1965         and by Delegate::CreateDelegate for programatically created ones.
1966         Fixes #372406.
1967
1968 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
1969
1970         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
1971         Fix code to use mono_array_size_t instead of int.
1972
1973         Based on patch by Luis F. Ortiz.
1974         Contributed under X11 license.
1975         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
1976
1977 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
1978
1979         * icall.c: Added ves_icall_System_Array_GetLongLength and
1980         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
1981         arrays.
1982
1983         * icall.h: Export both new functions.
1984
1985         Based on patch by Luis F. Ortiz.
1986         Contributed under X11 license.
1987         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
1988
1989 2008-05-28  Martin Baulig  <martin@ximian.com>
1990
1991         The debugger now requires exactly r103463.
1992
1993         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
1994         This version is not supported by the debugger, wait for 72.
1995
1996 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
1997
1998         * object.h: Changed array related functions to use
1999         mono_array_size_t instead of guint32. Forgot to commit this file.
2000
2001         Patch by Luis F. Ortiz.
2002         Contributed under X11 license.
2003         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2004
2005
2006 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2007
2008         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
2009         don't define it. Use the number literal instead.
2010
2011 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2012
2013         * icall.c: Changed array related functions to use
2014         mono_array_size_t instead of guint32.
2015
2016         * icall.c (ves_icall_System_Array_GetLength): Check for length
2017         overflow under MONO_BIG_ARRAYS.
2018
2019         Based on patch by Luis F. Ortiz.
2020         Contributed under X11 license.
2021         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2022
2023 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2024
2025         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
2026
2027         Based on patch by Luis F. Ortiz.
2028         Contributed under X11 license.
2029         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2030
2031 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2032
2033         * object.c, object.h: Changed array related functions to use
2034         mono_array_size_t instead of guint32.
2035
2036         Patch by Luis F. Ortiz.
2037         Contributed under X11 license.
2038         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2039
2040 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2041
2042         * object.h: Introduced mono_array_size_t typedef. This must be used
2043         in all places an array length is expected. This is 64bits wide if
2044         MONO_BIG_ARRAYS is enabled.
2045
2046         Patch by Luis F. Ortiz.
2047         Contributed under X11 license.
2048         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2049
2050 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
2051
2052         * security-manager.c class.c: Set the class exception info by calling
2053         mono_class_set_failure ().
2054
2055         * class.c (mono_class_get_exception_data): New accessor function.
2056         (mono_class_set_failure): Store exception_data in the property hash.
2057
2058         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
2059         the struct as a property.
2060
2061         * loader.c (mono_get_method_full): Store the lookup result for method
2062         tokens in method_cache, the others in methodref_cache to decrease the memory
2063         usage of hash tables.
2064
2065         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
2066         (mono_image_init): method_cache is lazy inited now.
2067
2068         * metadata-internals.h (struct _MonoImage): Change method_cache to
2069         a MonoValueHashTable, add a separate methodref_cache.
2070
2071 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
2072
2073         * number-formatter.h: Fix tables to avoid arithemtic overflow in
2074           Double.ToString as exposed by Bug #383531.
2075
2076 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
2077
2078         * number-formatter.h: Make some tables static.
2079
2080         * class.c (mono_method_set_generic_container): New accessor function.
2081         (mono_method_get_generic_container): Ditto.
2082
2083         * class-internals.h (struct _MonoMethod): Remove rarely used 
2084         'generic_container' field, store it in the property hash instead. Add 
2085         'is_generic' boolean field instead.
2086
2087         * image.c (mono_image_init): Initialize property_hash.
2088         (mono_image_close): Destroy property_hash.
2089
2090         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
2091         hold rarely used fields of runtime structures belonging to this image.
2092
2093         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
2094         to get/set method->generic_container.
2095
2096         * loader.c (mono_get_method_from_token): Avoid loading the method header for
2097         generic methods.
2098
2099 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
2100
2101         * class.c (mono_class_inflate_generic_method_full): Don't increase
2102         mono_stats.inflated_method_count for methods found in the cache.
2103
2104         * threads.c (mono_thread_request_interruption): Add a comment about 
2105         QueueUserAPC ().
2106
2107 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
2108
2109         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
2110         interface_offsets_packed table.
2111         
2112         * class.c (mono_class_init): Remove some dead code.
2113
2114         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
2115         mono_class_setup_vtable () when CAS is active to detect security problems.
2116
2117 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
2118
2119         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
2120
2121         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
2122         parameters as it's irrelevant for delegate checking.
2123
2124 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
2125
2126         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
2127
2128         * class.c (mono_class_init): Control the creation of a generic vtable using
2129         a global which is true by default, but set to false by the runtime startup code.
2130         
2131         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
2132         Disabled for now since it breaks the embedding API.
2133         Move the setup of class->methods for arrays to mono_class_setup_methods ().
2134         (mono_class_setup_methods): Add a memory barrier.
2135
2136         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
2137         when mono_class_init () doesn't compute the generic vtable.
2138         
2139 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
2140         * profiler.c: Added mono_profiler_install_statistical_call_chain,
2141         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
2142         to support call chains (backtrace) in the stat profiler.
2143         * profiler.c, profiler-private.h: Likewise.
2144
2145 2008-05-22  Mark Probst  <mark.probst@gmail.com>
2146
2147         * generic-sharing.c: Init generic class when a method of it is
2148         requested via a runtime generic context.
2149
2150 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
2151
2152         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
2153
2154         * reflection.c (mono_type_get_object): Add a FIXME.
2155
2156         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
2157
2158         * class.c (mono_class_get_method_by_index): New helper function, returning an
2159         entry in the class->methods array.
2160
2161 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
2162
2163         * class.c (mono_class_init): Only do the array optimization for szarrays. 
2164         Avoid creating a generic vtable for generic instances as well.
2165         (mono_class_get_method_from_name_flags): Don't search in the metadata for
2166         generic instances.
2167
2168 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
2169
2170         * loader.c (mono_get_method_constrained): Inflate the signature
2171         with class context. Fix #325283.
2172
2173 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
2174
2175         * object.c (mono_class_create_runtime_vtable): Add a comment.
2176
2177         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
2178         where needed.
2179         (setup_interface_offsets): Handle the case when this is called twice for arrays.
2180         (mono_class_setup_vtable_general): Add an assert.
2181         (mono_class_init): Avoid creating a generic vtable for arrays.
2182
2183         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
2184         here, let mono_class_init () do that.
2185
2186         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
2187         interfaces in mscorlib.
2188
2189         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
2190         interfaces. Add some comments.
2191         (mono_class_init): Call mono_class_setup_methods () here since it is no
2192         longer called by mono_class_setup_vtable ().
2193
2194         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
2195         not set in class->vtable.
2196         (mono_class_create_runtime_vtable): Reenable the disabled code.
2197
2198         * object.c (mono_class_create_runtime_vtable): Disable the last change for
2199         now as it causes some test failures.
2200
2201         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
2202         if using the vtable trampoline. Also remove some strange code which put the
2203         generic methods themselves into the vtable slots. Remove the AOT init_vtable
2204         stuff as it is no longer needed.
2205
2206 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2207
2208         * pedump.c: Give make --verify all option check code as well.
2209         Using --verify code won't check for metadata now.
2210
2211 2008-05-19  Martin Baulig  <martin@ximian.com>
2212
2213         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
2214
2215         * mono-debug.c
2216         (_mono_debug_using_mono_debugger): New global variable; it's set
2217         directly by the debugger, so mono_debug_using_mono_debugger() also
2218         works after attaching.
2219
2220 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2221
2222         * object.c (mono_class_create_runtime_vtable): Use memory barriers
2223         as we do double checked locking on MonoClass::runtime_info and
2224         MonoClassRuntimeInfo::domain_vtables.
2225
2226 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
2227
2228         * debug-helpers.c (print_field_value): Fix a warning.
2229
2230 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
2231
2232         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
2233         set in the AOT case.
2234
2235 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
2236
2237         * class.c (mono_class_setup_vtable_general): Use memory barriers
2238         as we do double checked locking on MonoClass::vtable.
2239
2240 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
2241
2242         * reflection.c (resolve_object): Inflate only if the generic context
2243         is not null. Fixes #389886.
2244
2245 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
2246
2247         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
2248         instead of g_free.
2249
2250         Code is contributed under MIT/X11 license.
2251
2252 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2253
2254         * class.c: Revert unrelated change.
2255
2256 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2257
2258         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
2259         a generic instantiation, use mono_class_from_mono_type instead of playing
2260         with MonoType directly.
2261
2262 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2263
2264         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
2265         checks must ignore generic instantiations, so mono_class_has_parent is not
2266         suitable. Fixes #390128.
2267
2268 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
2269
2270         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
2271         it to avoid registering tokens during metadata generation. Fixes #390023.
2272
2273 2008-05-14  KornĂ©l Pál  <kornelpal@gmail.com>
2274
2275         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
2276         consistent.
2277
2278         Contributed under MIT/X11 license.
2279
2280 2008-05-14  KornĂ©l Pál  <kornelpal@gmail.com>
2281
2282         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
2283         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
2284         to fixup the EXE image.
2285         (mono_cleanup): Use mono_close_exe_image.
2286         (mono_close_exe_image): New function.
2287         * image.c: Include "marshal.h".
2288         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
2289         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
2290         counting when the image is loaded outside of mono_image_open_full. Set status
2291         based on GetLastError.
2292         * coree.c: Include required headers. Add init_from_coree.
2293         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
2294         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
2295         (_CorExeMain): Set init_from_coree.
2296         (CorExitProcess): Only call ExitProcess for now.
2297         (CorBindToRuntimeEx): New stub implementation.
2298         (CorBindToRuntime): New function.
2299         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
2300         (MonoFixupExe): ILONLY executables require no fixups.
2301         (mono_set_act_ctx): New function to set activation context.
2302         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
2303         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
2304         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
2305         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
2306         as MONO_INTERNAL.
2307         * domain-internals.h: Add mono_close_exe_image.
2308
2309         Contributed under MIT/X11 license.
2310
2311 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2312
2313         * metadata.c (mono_metadata_compute_size): Correctly calculate field
2314         size for generic param and event tables. Fixes #388977.
2315
2316 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
2317
2318         * loader.c (mono_method_signature): Use memory barriers because of the double
2319         checked locking pattern.
2320
2321         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
2322         aborting or aborted as well. Fixes #376391.
2323         
2324         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
2325         existing runtime state in the Suspend handler during shutdown.
2326
2327 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
2328
2329         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
2330
2331         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
2332         which are starting up or shutting down.
2333
2334         * threads.c (mono_threads_set_shutting_down): Don't return a value since
2335         this function never returns if the runtime is already shutting down.
2336
2337         * icall.c (ves_icall_System_Environment_Exit): Update after 
2338         mono_threads_set_shutting_down () signature change.
2339         
2340 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
2341
2342         * class.c: Added can_access_instantiation to verify if the instantiation
2343         is visible. Fix access check for nested types as they returned TRUE
2344         before doing type and generic instantiation visibility checks.
2345
2346 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
2347
2348         * reflection.c (mono_reflection_create_generic_class): The created type
2349         must have a different container from its TypeBuilder. Otherwise they
2350         will end sharing generic arguments, which is wrong.
2351
2352         Due to the sharing, making a generic instance of the created type using
2353         the TypeBuider generic arguments resulted in the generic type definition
2354         been returned, which is wrong as well.
2355
2356         As a bonus the code was leaking the type_params array. This memory should
2357         be allocated from the image mempool.
2358
2359         This fixes bug #354047.
2360
2361 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
2362
2363         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
2364         to here         as they are now used in assembly.c new code.
2365         Added a skipverification flag to MonoAssembly.
2366         New internal function mono_assembly_has_skip_verification.
2367
2368         * assembly.c: New function mono_assembly_has_skip_verification. It checks
2369         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
2370         part of #387274.
2371
2372 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
2373
2374         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
2375         needed. Fixes #387034.
2376
2377         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
2378
2379 2008-05-06  Miguel de Icaza  <miguel@novell.com>
2380
2381         * assembly.c (mono_assembly_load_reference): Prevent crash while
2382         disassembling Silverlight 2.0 executables while we still do not
2383         have GACed libraries.
2384
2385 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
2386
2387         * reflection.c: Special case generic type definitions as well. Fixes #383444.
2388
2389 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
2390
2391         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
2392         of the dynamic case. Fixes #387404.
2393
2394 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2395
2396         *verify.c (mono_verifier_is_class_full_trust): If under
2397         verify_all and the verifier mode was not set, only
2398         gac and corlib types are fulltrust. This makes --verify-all
2399         usable to detect unverifiable code, which is the expected
2400         use case.
2401
2402 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2403
2404         * verify.h: Ops, commited the header with debug
2405         enabled.
2406
2407 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2408
2409         * verify.c (merge_stack): Use the new value on unverifiable
2410         stack merges.
2411
2412         * verify.c (verify_type_compatibility_full): Comparison
2413         of nullable types can't use mono_class_is_assignable_from.
2414
2415         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
2416         that makes all verification errors be reported.
2417
2418         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
2419         mono_method_verify.
2420
2421 2008-05-05  Robert Jordan  <robertj@gmx.net>
2422
2423         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
2424         support for value types. See #386415.
2425
2426         * object.c: comments.
2427
2428         Code is contributed under MIT/X11 license.
2429
2430 2008-05-05  Martin Baulig  <martin@ximian.com>
2431
2432         * debug-mono-symfile.h
2433         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
2434         for old pre-terrania symbol files.
2435
2436 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
2437
2438         * mono-config.c: Add ppc64 architecture.
2439
2440         Code is contributed under MIT/X11 license.
2441
2442 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
2443
2444         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
2445           PPC64 uses function descriptors as well.
2446
2447         Code is contributed under MIT/X11 license.
2448
2449 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
2450
2451         * object.c (compute_class_bitmap): Ignore literal static fields.
2452
2453         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
2454         var has an invalid format.
2455         (describe_ptr): Add some sanity checks for the vtable.
2456         (add_nursery_frag): Clear unused nursery fragments.
2457         (major_collection): Clear all remaining nursery fragments.
2458
2459 2008-05-03  Robert Jordan  <robertj@gmx.net>
2460
2461         * image.c, metadata-internals.h: add thunk_invoke_cache.
2462
2463         * marshal.c, marshal.h: implement
2464         mono_marshal_get_thunk_invoke_wrapper ().
2465
2466         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
2467
2468         Code is contributed under MIT/X11 license.
2469
2470 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
2471
2472         * verify.c (do_leave): Empty the stack.
2473
2474 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
2475
2476         * class.c (mono_class_is_assignable_from): Variance
2477         doesn't work between reference and value types. For example,
2478         given type C<T+>, C<int32> is not assignable to C<object>.
2479         Break the argument checking loop on first error. 
2480
2481 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
2482
2483         * icall.c : base64_to_byte_array() needs some more strict
2484           check for sequence of '=' characters. Patch by Santa
2485           Marta (http://deee.g.hatena.ne.jp/santamarta).
2486
2487           Contributed under MIT/X11 license.
2488           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
2489
2490 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
2491
2492         * domain.c: Disable LoadLibrary support to fix Win32 build.
2493
2494         Code is contributed under MIT/X11 license.
2495
2496 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
2497
2498         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
2499         to help with cache behaviour.
2500
2501 2008-05-01  Miguel de Icaza  <miguel@novell.com>
2502
2503         * appdomain.c (mono_domain_from_appdomain): Add new accessor
2504         method. 
2505
2506 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
2507
2508         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
2509
2510 2008-05-01  Dick Porter  <dick@ximian.com>
2511
2512         * process.c (process_get_fileversion): Only pass 16 bits of
2513         language ID to VerLanguageName.  Fixes bug 381204.
2514
2515 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2516
2517         * verify.c (mono_method_verify): Fix the comparison
2518         operator for code bounds check.
2519
2520 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2521
2522         * verify.c (mono_method_verify): Check the bounds of
2523         all access of the code array.
2524
2525 2008-04-29  KornĂ©l Pál  <kornelpal@gmail.com>
2526
2527         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
2528
2529 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
2530
2531         * image.c (mono_image_strong_name_position): Fix return value when the rva is
2532         not valid.
2533
2534 2008-04-28  KornĂ©l Pál  <kornelpal@gmail.com>
2535
2536         * loader.c (mono_get_method_from_token, mono_method_signature): Add
2537         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
2538         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
2539         fixup main EXE images when using mono.exe for mixed-mode assembly support.
2540         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
2541         mono_runtime_load.
2542         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
2543         runtime initialization from metadata.
2544         * assembly.c: Remove obsolete ceGetModuleFileNameA.
2545         (mono_set_rootdir): Use mono_get_module_file_name.
2546         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
2547         handles.
2548         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
2549         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
2550         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
2551         MonoCLIImageInfo. Add support for module handles.
2552         (load_cli_header): Update mono_cli_rva_image_map signature.
2553         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
2554         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
2555         (mono_image_rva_map): Add support for module handles.
2556         (mono_image_ensure_section_idx): Add support for module handles.
2557         (mono_image_close): Add support for module handles.
2558         (do_load_header): Add support for module handles.
2559         (mono_image_open_from_module_handle): New function for internal use.
2560         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
2561         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
2562         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
2563         handles.
2564         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
2565         * image.h: Add mono_image_fixup_vtable.
2566         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
2567         support.
2568         * coree.h: New file.
2569         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
2570         unsupported native code.
2571         (mono_marshal_set_callconv_from_modopt): New function splitted from
2572         mono_marshal_get_managed_wrapper.
2573         (mono_marshal_get_managed_wrapper): Use
2574         mono_marshal_set_callconv_from_modopt.
2575         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
2576         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
2577         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
2578         that results in a deadlock when the runtime is loaded in _CorDllMain.
2579         * Makefile.am: Add coree.c and coree.h.
2580
2581         Contributed under MIT/X11 license.
2582
2583 2008-04-28  Mark Probst  <mark.probst@gmail.com>
2584
2585         * generic-sharing.c: Search for type arguments in array element
2586         types as well.
2587
2588 2008-04-28  Mark Probst  <mark.probst@gmail.com>
2589
2590         * class-internals.h, generic-sharing.c: New, small runtime generic context.
2591
2592         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
2593
2594         * object.c: Don't setup the RGCTX when the vtable is created,
2595         because we're setting it up lazily now.
2596
2597 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
2598
2599         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
2600         64 bit support.
2601
2602 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
2603
2604         * verify.c (verify_class_for_overlapping_reference_fields): 
2605         If class is under fulltrust allow reference types to overllap
2606         if they have the same RVA.
2607
2608 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
2609
2610         * pedump.c: Added new flag valid-only, that makes the verifier
2611         behaves just like --security=validil. It won't fail type load
2612         due to unverifiable restrictions.
2613
2614 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
2615
2616         * class-internals.h (struct MonoMethod): Added a verification_success
2617         field to cache verifier executions. Reduced MonoMethod:slot size by
2618         one bit.
2619
2620 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
2621
2622         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
2623         instead of a 'vt' argument to save an indirection and to allow these to be used
2624         for valuetypes.
2625         (scan_vtype): New helper function to scan an area using a gc descriptor.
2626         (mono_gc_wbarrier_value_copy): Implement this.
2627         (handle_remset): Add support for REMSET_VTYPE.
2628         (find_in_remset_loc): Ditto.
2629         (mono_gc_base_init): Allow some debugging options to be controlled through the
2630         use of the MONO_GC_DEBUG env variable.
2631         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
2632         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
2633
2634 2008-04-23  Martin Baulig  <martin@ximian.com>
2635
2636         * domain.c (mono_domain_create): Move the call to
2637         mono_debug_domain_create() down, after allocating the domain id.
2638
2639 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
2640
2641         verify.c (verify_class_for_overlapping_reference_fields): Skip
2642         static fields while verifying for overlapping fields as they
2643         don't matter at all.
2644
2645 2008-04-23  Marek Habersack  <mhabersack@novell.com>
2646
2647         * domain-internals.h: added a declaration of
2648         mono_make_shadow_copy.
2649
2650         * assembly.c (mono_assembly_open_full): shadow copying of
2651         assemblies moved to here, so that all the assemblies within the
2652         application domain's private binary directories can be
2653         processed. Fixes bug #380546
2654
2655         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
2656         mono_make_shadow_copy and made non-static. The decision whether
2657         to shadow-copy an assembly is made based on its location - it's
2658         copied if it's in one of the private application domain binary
2659         directories and its different to the target file in the shadow
2660         directory. Fixes bug #380546
2661
2662 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
2663
2664         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
2665
2666         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
2667         types.
2668
2669         * reflection.c (mono_image_create_token): Handle 
2670         Method/ConstructorOnTypeBuilderInst.
2671         (resolve_object): Ditto.
2672         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
2673         so it can be called from resolve_object. Also handle the case when the inflated
2674         class already has its methods setup.
2675
2676 2008-04-21  Martin Baulig  <martin@ximian.com>
2677
2678         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
2679
2680 2008-04-20  Geoff Norton  <gnorton@novell.com>
2681
2682         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
2683         pointer dereference.
2684
2685 2008-04-15  Marek Habersack  <mhabersack@novell.com>
2686
2687         * appdomain.c (try_load_from): if IOMAP is in effect, call the
2688         portability API to look up the assembly file. Fixes behavior in
2689         situations when the application has a bin/ directory, but the
2690         assembly search patch refers to Bin/ (and thus the requested file
2691         name is Bin/SomeLibrary.dll). Fixes bug #379888
2692
2693 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
2694
2695         verify.c (mono_type_is_generic_argument): Extracted this check
2696         from a dozen places to here.
2697
2698         verify.c: Fixed all issues related to boxing generic arguments
2699         and their constraints.
2700
2701 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
2702
2703         verify.c (mono_class_interface_implements_interface): Fix win32 build.
2704
2705 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
2706
2707         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
2708         isn't finished yet. Fixes #363447.
2709
2710 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
2711
2712         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
2713         Fixes #346419.
2714
2715 2008-04-13  Jb Evain  <jbevain@novell.com>
2716
2717         * domain.c: update the 2.1 profile versions.
2718         Merged from the Moonlight 2 branch.
2719
2720 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
2721
2722         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
2723         mscorlibs for the non-refonly case as well.
2724
2725         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
2726         in mono_assembly_load_from_full (). Fixes #378924.
2727
2728 2008-04-11  Geoff Norton  <gnorton@novell.com>
2729
2730         * icall.c: The global extern environ doesn't exist on Mac.  We
2731         need to call NSGetEnviron instead.
2732
2733 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
2734
2735         verify.c: Add generic method constraint verification.
2736
2737 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
2738
2739         class.c (mono_class_inflate_generic_method_full): Add a long
2740         explanation to the is_mb_open hack. Remove the FIXME.
2741
2742 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
2743
2744         * verify.c (mono_method_verify): Mark all unknown opcodes
2745         as invalid. Mark jmp as unverifiable.
2746
2747 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
2748
2749         * verify.c: Add code to do type constraint verification on class instances.
2750
2751         * verify.c (mono_verifier_verify_class): Use the type constraint 
2752         verification code.
2753
2754 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
2755
2756         * class.c (mono_class_get_field_default_value): Don't pass cindex
2757         as hint to mono_metadata_get_constant_index. The local is not initialized
2758         and should contain garbage most of the time. This could only work
2759         with a lot of luck.
2760
2761 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
2762
2763         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
2764
2765 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
2766
2767         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
2768
2769         * class.c (mono_class_from_generic_parameter): Save the token of the
2770         generic param in MonoClass::sizes.generic_param_token.
2771
2772         * reflection.c (mono_custom_attrs_from_class): If the class type is
2773         VAR or MVAR retrieve the attributes of the generic param.
2774
2775 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
2776
2777         * class.c (mono_class_init): Do class verification if the verifier
2778         is enabled.
2779
2780 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
2781
2782         * verify-internal.h: Added mono_verifier_verify_class.
2783
2784         * verify.c: Added mono_verifier_verify_class. It checks for
2785         classes with explicit layout that have overlapping reference fields.
2786
2787         * pedump.c: Init the verifier state prior to verification. Fixed
2788         command line arguments.
2789
2790 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
2791
2792         * Makefile.am: Added verify-internals.h, hopefully fix the build.
2793
2794 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
2795
2796         * verify-internals.h: Fix a warning.
2797
2798 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
2799
2800         * verify-internals.h: New header with the verifier configuration
2801         extracted from mini.c.
2802
2803         * verify.c: Implemented the new functions exported by verify-internals.h.
2804
2805 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
2806
2807         * verify.c: Add proper verification of ckfinite.
2808
2809 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
2810
2811         * verify.c (do_conversion): Improved error message to something
2812         more meanfull.
2813
2814         * verify.c (check_is_valid_type_for_field_ops): Fix to work
2815         with primitive types.
2816
2817 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
2818
2819         * verify.c: Added tail prefix checking. Marked icall
2820         as unverifible.
2821
2822 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
2823
2824         * verify.c: Fix the detection of branches to the middle
2825         of an instruction.
2826
2827 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
2828
2829         * verify.c: Implemented verification of volatile. and
2830         unaligned. prefix. Check if a type is valid after retrieving it.
2831
2832 2008-04-01  Dick Porter  <dick@ximian.com>
2833
2834         * process.c (process_get_fileversion): If there's no string block,
2835         set the file language to en_US.  Fixes the other new part of bug
2836         374600.
2837
2838 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
2839
2840         * class.c: New functions mono_method_can_access_field_full and
2841         mono_method_can_access_method_full. They perform type visibility
2842         and type site check.
2843
2844         * class-internal.h: Added exported functions.
2845
2846         * verify.c: Use new functions to implement proper visibility checks.
2847
2848 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
2849
2850         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
2851
2852 2008-03-28  Dick Porter  <dick@ximian.com>
2853
2854         * process.c (process_get_fileversion): Use the first language ID
2855         we see, rather than insisting on an invariant language.  Fixes bug
2856         374600.
2857
2858 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
2859
2860         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
2861         the streams to fix reading of invalid memory later.
2862
2863         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
2864         to ease debugging.
2865
2866 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
2867
2868         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
2869         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
2870
2871 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
2872         * threads.h: Added MonoThreadManageCallback type and
2873         mono_thread_set_manage_callback prototype
2874         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
2875         (used to store the mono_thread_manage callback).
2876         * threads.c: Added mono_thread_set_manage_callback, and handle
2877         "MonoThread->manage_callback" in build_wait_tids.
2878
2879 2008-03-26  Dick Porter  <dick@ximian.com>
2880
2881         * process.c (process_get_fileversion): Set FileVersionInfo strings
2882         to Empty when the resource doesn't have the particular info.
2883         Fixes bug 355717.
2884
2885 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
2886
2887         * verify.c (mono_method_verify): Proper prefix validation.
2888
2889 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
2890
2891         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
2892         itself in a separate argument instead of throwing them. Fixes #373448.
2893
2894         * appdomain.c: Bump corlib version.
2895
2896 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
2897
2898         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
2899
2900 2008-03-20  KornĂ©l Pál  <kornelpal@gmail.com>
2901
2902         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
2903         version macros.
2904
2905 2008-03-20  Mark Probst  <mark.probst@gmail.com>
2906
2907         * generic-sharing.c, class-internals.h: Code for putting
2908         reflection types into the runtime generic context.
2909
2910 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
2911
2912         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
2913         Fixes #340662. 
2914
2915
2916 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
2917
2918         * verify.c (VerifyContext): Added instruction prefix data to the struct.
2919
2920         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
2921
2922         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
2923
2924         * verify.c (do_cast): Let the result value keep the boxed status.
2925
2926         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
2927
2928 2008-03-17  Jb Evain  <jbevain@novell.com>
2929
2930         * reflection.c: when running on a 2.0 runtime, emit
2931         unconditionally the #~ header version as 2.0, and the
2932         CLI header version as 2.5, for symmetry's sake with csc.
2933
2934 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
2935
2936         * class.c: Remove the unused cache_interface_offsets stuff.
2937
2938         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
2939         profiler.c: Fix warnings.
2940
2941 2008-03-16  Mark Probst  <mark.probst@gmail.com>
2942
2943         * generic-sharing.c, class-internals.h: Support for putting
2944         methods into the runtime generic context.
2945
2946 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
2947
2948         * class.c (mono_class_setup_fields): Ignore calls made to this function for
2949         classes which are generic instances of not-yet finished typebuilders. Fixes
2950         #351172.
2951
2952         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
2953
2954 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
2955
2956         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
2957
2958         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
2959         field, replace it with a hash table in MonoDynamicImage.
2960
2961         * reflection.c (inflate_mono_method): Access the generic definition object from
2962         image->generic_def_objects instead of imethod->reflection_info.
2963
2964         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
2965
2966         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
2967         
2968         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
2969         function in reflection.c so it is easier to keep in sync with the dynamic image
2970         creation code.
2971
2972         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
2973         mono_image_close ().
2974
2975 2008-03-15  Mark Probst  <mark.probst@gmail.com>
2976
2977         * class.c (mono_class_generic_sharing_enabled): Disable generic
2978         sharing for all architectures except AMD64 and x86 to fix build.
2979
2980 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
2981
2982         * verify.c: Use the generic definition MonoGenericContext when available.
2983         Remove code for checking generics instance compatibility in favor of
2984         mono_class_is_assignable_from.
2985
2986 2008-03-14  Mark Probst  <mark.probst@gmail.com>
2987
2988         * marshal.c, marshal.h, metadata-internals.h, image.c,
2989         wrapper-types.h: New wrapper for invoking a shared static method
2990         without having to pass the runtime generic context argument.
2991
2992 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
2993
2994         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
2995
2996 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
2997
2998         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
2999         
3000         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
3001         create a token from a FieldOnTypeBuilderInst.
3002         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
3003         (resolve_object): Ditto.
3004
3005         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
3006         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
3007
3008 2008-03-14  Martin Baulig  <martin@ximian.com>
3009
3010         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
3011
3012         * debug-mono-symfile.h
3013         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
3014         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
3015
3016 2008-03-10  Martin Baulig  <martin@ximian.com>
3017
3018         * debug-mono-symfile.h
3019         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
3020         `lexical_block_table_offset'.
3021         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
3022         `lexical_blocks'.
3023         (MonoSymbolFile): Added `version'.
3024
3025         * mono-debug.h
3026         (MonoDebugLexicalBlockEntry): Removed.
3027         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
3028         `lexical_blocks'.
3029
3030         * mono-debug.c (mono_debug_add_method): Don't compute lexical
3031         blocks here; the debugger now does this internally.
3032
3033 2008-02-27  Martin Baulig  <martin@ximian.com>
3034
3035         * object.c (mono_runtime_exec_main): Call
3036         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
3037         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
3038
3039 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3040
3041         * verify.c (verify_type_compatibility_full): Allow native int to be converted
3042         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
3043
3044 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3045
3046         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
3047         ldftn with a virtual method.
3048
3049 2008-03-13  Geoff Norton  <gnorton@novell.com>
3050
3051         * decimal.c:  Only include memory.h if the platform has it.
3052
3053 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
3054
3055         * assembly.c, class.c, metadata-internals.h: make sure public key
3056         tokesns are compared in a case-insensitive way. Also, all
3057         the lookups in the GAC use a lowercase public key token
3058         (gaacutil already does the lowercasing on install). Fixes
3059         bug #369541.
3060
3061 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
3062
3063         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
3064         and return value.
3065
3066 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
3067
3068         * image.c: when someone loads a mscorlib from a file, return the
3069         currently loaded mscorlib (fixes bug #369253).
3070
3071 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
3072
3073         * class.c: handle types with no parents by forcing them to have
3074         System.Object as a parent and marking them as broken (this currently
3075         allows the first part of bug #369173 to work as well, likely because
3076         we don't check for typeload exceptions everywhere yet).
3077
3078 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
3079
3080         * class.c: more complete check that types belong to corlib
3081         (fixes second part of bug #369173).
3082
3083 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
3084
3085         * generic-sharing.c:  Including glib.h for the MSVC builds to define
3086           "inline" to "__inline" before including mono-membar.h.
3087           
3088         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
3089           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
3090           MSVC builds.
3091
3092         Contributed under MIT/X11 license.
3093
3094 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
3095
3096         * verify.c (do_invoke_method): Remove return type validation.
3097
3098         * verify.c (do_ret): Do return type validation at return site instead of
3099         call site.
3100
3101 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
3102
3103         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
3104
3105         * verify.c: Some todos cleaned and improved a few error messages.
3106
3107 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
3108
3109         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
3110
3111 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
3112
3113         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
3114         system types correctly.
3115
3116         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
3117         function.
3118
3119 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
3120
3121         * assembly.c (build_assembly_name): Fix a warning.
3122
3123 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
3124
3125         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
3126         the called function takes an object type argument. Fixes storing or
3127         valuetypes across remoting as well as reducing memory usage.
3128         * image.c, metadata-internals.h: remove now unused ldfld_remote and
3129         stfld_remote wrapper caches.
3130
3131 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
3132
3133         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
3134         is not found.
3135
3136         * reflection.c (mono_image_register_token): New helper function to save
3137         a token->object mapping.        
3138
3139         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
3140         managed code.
3141
3142         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
3143         one dimension arrays. Fixes #367670.
3144         (mono_reflection_get_type_internal): Ditto.
3145
3146 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
3147
3148         * marshal.c: mono_load_remote_field_new() always returns object.
3149         so use the proper signature (fixes bug #366445).
3150
3151 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
3152         
3153         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
3154         add an 'inline_failure' flag instead.
3155
3156 2008-03-04  Mark Probst  <mark.probst@gmail.com>
3157
3158         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
3159         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
3160         contains the location of "this", used for exception handling.
3161
3162 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
3163
3164         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
3165         their size on all platforms for perf reasons.
3166
3167 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3168
3169         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
3170         object-internal.h
3171
3172         * object-internal.h: Same.
3173
3174 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3175
3176         * reflection.h: Fix the build I just broke.
3177
3178 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3179
3180         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
3181         Test if a token is valid, this remove explicit usage of 
3182         MonoDynamicImage::tokens from the verifier code.
3183
3184         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
3185
3186         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
3187         instead of direct access to MonoDynamicImage::tokens.
3188
3189 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3190
3191         * verify.c (token_bounds_check): Fix the build I just broke.
3192
3193 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3194
3195         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
3196
3197         * verify.c (verifier_load_method): Fixed the errors message.
3198
3199         * verify.c (mono_method_verify): Fixed a debug message.
3200
3201 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
3202
3203         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
3204         mono-perfcounters.h, class-internals.h: support for predefined
3205         writable counters, query of categories and counters, bugfixes.
3206
3207 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
3208
3209         * verify.c (do_refanytype): Verify the refanytype opcode.
3210
3211         * verify.c (mono_method_verify): Use do_refanytype.
3212
3213 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
3214
3215         * verify.c (do_mkrefany): Verify the mkrefany opcode.
3216
3217         * verify.c (mono_method_verify): Use do_mkrefany.
3218
3219 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
3220
3221         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
3222         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
3223         implementation.
3224
3225 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
3226
3227         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
3228         the type load exception.
3229
3230 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
3231
3232         * verify.c: Added a few FIXME for method signatures
3233
3234         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
3235         of mono_method_get_signature and get vararg call working. Removed unused
3236         checks for return value.
3237
3238         * verify.c (do_refanyval): Verify the refanyval opcode.
3239
3240         * verify.c (mono_method_verify): Implemented verification of arglist and
3241         use do_refanyval.
3242
3243 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
3244
3245         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
3246         vtypes to marshal.c.
3247
3248         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
3249         it works for AOT as well.
3250
3251 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
3252
3253         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
3254         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
3255         the system time is adjusted.
3256
3257 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
3258
3259         * icall.c, icall-def.h: use the new time functions (fixes the
3260         non-monotonic behaviour of TickCount).
3261
3262 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
3263
3264         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
3265         it breaks the build.
3266         
3267         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
3268         cattr is not finished yet.
3269
3270 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
3271
3272         * verify.c: Proper token validation for field, method and type.
3273
3274 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
3275
3276         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
3277
3278         * loader.c (method_from_memberref): Generate type load error instead of method missing
3279         if the type is not found.
3280
3281 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
3282
3283         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
3284         some of the conversions caused the generation of a marshal directive exception.
3285
3286 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
3287
3288         verify.c: Report which exception should be thrown by the JIT.
3289         Added a lot of FIXME notes.
3290
3291 2008-02-22  Mark Probst  <mark.probst@gmail.com>
3292
3293         * generic-sharing.c: Runtime generic context slots are not
3294         instantiated on init anymore.  Instead, provide function to do the
3295         instantiating on demand.
3296
3297         * class-internals.h: Added vtable to runtime generic context.
3298         Macros for encoding direct and indirect slot offsets in one
3299         guint32.
3300
3301 2008-02-21  Mark Probst  <mark.probst@gmail.com>
3302
3303         * object.c, generic-sharing.c: Moved some generic sharing code
3304         from object.c to generic-sharing.c.
3305
3306         * generic-sharing.c: Added support for extensible runtime generic
3307         context.
3308
3309         * metadata-internals.h: Two new hash tables in MonoImage for
3310         extensible runtime generic context support.
3311
3312         * domain.c: Unregister generic vtables upon domain unloading.
3313
3314         * image.c: Destroy new hash tables upon image unloading.
3315
3316         * metadata.c: Unregister generic subclasses upon image unloading.
3317
3318         * class-internals.h: New data structure for runtime generic
3319         context template.  New fields in the runtime generic context for
3320         extensible part.
3321
3322         * Makefile.am: Added generic-sharing.c.
3323
3324 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
3325
3326         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
3327         there is a pending loader exception, raise it.
3328
3329         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
3330         same.
3331
3332         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
3333         same.
3334
3335         Fixes #363450.
3336
3337 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
3338
3339         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
3340
3341         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
3342         
3343         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
3344         ref-only requests for compatibility with MS.
3345
3346 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
3347
3348         * reflection.c (mono_custom_attrs_from_method): Don't silently
3349         return an empty list for generic method instances.
3350         (mono_custom_attrs_from_param): Likewise.
3351
3352 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
3353             Raja R Harinath  <harinath@hurrynot.org>
3354
3355         Fix #354757
3356         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
3357         * class.c (mono_class_inflate_generic_method_full): Initialize it
3358         when a fully-open method is instantiated.
3359         * metadata.c (inflated_method_equal, inflated_method_hash): Update
3360         to new field.
3361         * reflection.c (inflate_mono_method): Don't create a temporary context.
3362
3363 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
3364
3365         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
3366         Compute correct value, to prepare for imethod->reflection_info going away.
3367
3368 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
3369
3370         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
3371
3372 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
3373
3374         * verify.c: Implement skip visibility flag.
3375
3376 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
3377
3378         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
3379         which contains an extra field to tell the kind of exception that should be thrown.
3380
3381         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
3382
3383 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
3384
3385         * loader.c (mono_method_get_param_names): Initialize 'klass' after
3386         'method' is updated.
3387
3388 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
3389
3390         * class.c (mono_class_layout_fields): Set class->min_align for classes using
3391         explicit layout as well. Fixes #360375.
3392
3393 2008-02-11  Geoff Norton  <gnorton@novell.com>
3394
3395         * loader.c: Guard and dereference against inflated generic methods
3396
3397 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
3398
3399         * class.c: Include Retargetable spec in assembly name.
3400         * assembly.c: Always include PublicKeyToken spec in assembly name
3401         (with value "null" if assembly is not signed), and include
3402         Retargetable spec.
3403         * icall-def.h: Added icall for Assembly.get_fullname.
3404         * icall.c: Added icall returning the fullname of an assembly.
3405
3406 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
3407
3408         * class.c (mono_class_setup_vtable_general): Add a missing call to
3409         mono_class_setup_methods () which is needed in the AOT case.
3410
3411 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
3412
3413         * verify.c (mono_type_get_stack_name): Added. Return the name for the
3414         stack type of the given MonoType.
3415
3416         * verify.c (verify_type_compatibility_full): Handle the void type.
3417
3418         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
3419         way stack merging works.
3420
3421         * verify.c (store_local): Improved verification message.
3422
3423         * verify.c (do_branch_op): If the merging is invalid, the method
3424         is unverifiable and not invalid. Improved error message.
3425
3426         * verify.c (merge_stacks): Properly merge a boxed valuetype and
3427         a reference type diferent than System.Object. Improved error
3428         message.
3429
3430 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
3431
3432         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
3433
3434         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
3435         type of an enum even if the argument is byref.
3436
3437         * verify.c: Replace all explicit uses of enumtype and enum_basetype
3438         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
3439
3440         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
3441
3442         *verify.c (verify_type_compatibility_full): Make enum types
3443         compatible with their base types.
3444
3445         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
3446         types are compatible for the special case of a boxed valuetype and
3447         System.Object.
3448
3449         * verify.c (verify_stack_type_compatibility): The function
3450         is_compatible_boxed_valuetype was extracted from here.
3451
3452         * verify.c (push_arg): Only set ctx->has_this_store if the method
3453         is not static.
3454
3455         * verify.c (do_ldelem): Fixed a typo in an error message and added
3456         strict check for mixing int32 and native int as the array type
3457         and ldelem type.
3458
3459         * verify.c (merge_stacks): Consider boxed valuetypes in the
3460         compatibility checks.
3461
3462 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
3463         * profiler.h: (MonoGCEvent): Added start-stop the world events.
3464
3465 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
3466         *class.c: use_new_interface_vtable_code: renamed the env var to have
3467         a "MONO_" prefix, and fix the logic to enable it by default.
3468
3469 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
3470         *class.c:
3471         mono_class_setup_vtable_general: rewrote the way in which interface
3472         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
3473         makes the code more maintainable.
3474         For now the old code is still there, and can be activated setting
3475         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
3476
3477 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
3478
3479         * verify.c: guarded some debug functions around and #ifdef.
3480
3481         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
3482
3483 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
3484
3485         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
3486         changes for now since they seem to break too many things.
3487
3488 2008-02-05  Mark Probst  <mark.probst@gmail.com>
3489
3490         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
3491         mono_marshal_find_nonzero_bit_offset): Added macro and function
3492         for finding the byte- and bit-offset of a bitfield within a
3493         struct.
3494
3495 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
3496
3497         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
3498         (mono_marshal_get_struct_to_ptr): Ditto.
3499
3500         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
3501         cctor_signature.
3502
3503 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
3504
3505         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
3506         between methods for non-corlib types.
3507
3508 2008-02-02  Geoff Norton  <gnorton@novell.com>
3509
3510         * loader.c (mono_method_get_param_names): Populate the parameter name for 
3511         generic parameters as well. (Fixes #342536)
3512
3513 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
3514
3515         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
3516
3517         * verify.c (do_invoke_method): Fix for calling with byref structs.
3518
3519         * verify.c (do_cast): push a boxed value type based on the type token and not
3520         the type of stack.
3521
3522 2008-01-31  William Holmes  <billholmes54@gmail.com>
3523
3524         * process.c (process_module_string_read): Check the size returned form 
3525           VerQueryValue to avoid out of memory exception. 
3526
3527 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
3528
3529         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
3530         Handle properly modules which are not in the moduleref table. Fixes
3531         #356938.
3532
3533 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
3534
3535         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
3536         the dynamic case which is now in managed code.
3537         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
3538
3539         * marshal.c (mono_string_to_bstr): Fix a warning.
3540         (init_com_provider_ms): Ditto.
3541
3542         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
3543
3544         * exception.c (mono_get_exception_out_of_memory): New helper function.
3545
3546 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
3547
3548         * marshal.c: Add support for BSTR marshalling
3549         using other COM systems.
3550
3551         Code is contributed under MIT/X11 license.
3552
3553 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
3554
3555         * object.c (mono_runtime_invoke_array): reverted previous
3556         commit as it breaks the build.
3557
3558 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
3559
3560         * object.c (mono_runtime_invoke_array): Verify arguments for
3561         invalid types. Fixes #348522.
3562
3563 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
3564
3565         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
3566         non-final virtual calls using call. 
3567
3568         * verify.c (do_invoke): fixed some TODOs.
3569
3570         * verify.c (push_arg): set has_this_store for "ldarga 0".
3571
3572 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
3573
3574         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
3575         which belong to an inflated class. Fixes #356531.
3576
3577 2008-01-26  Robert Jordan  <robertj@gmx.net>
3578
3579         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
3580         which resort to FindFirstFile when a certain error condition
3581         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
3582         Code is contributed under MIT/X11 license.
3583
3584 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
3585
3586         * marshal.c (emit_marshal_string): Fix out string marshalling
3587         to use specified encoding. Fixes #323900.
3588
3589         Code is contributed under MIT/X11 license.
3590
3591 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
3592
3593         * class.c (mono_class_inflate_generic_method_full): Don't modify
3594         iresult->context after cache check.
3595
3596 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
3597
3598         * class.c (mono_class_inflate_generic_method_full): Change the
3599         struct assignments to memcpy for better visibility and add some comments.
3600
3601 2008-01-23  Dick Porter  <dick@ximian.com>
3602
3603         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
3604         procedure, and make it work on windows.
3605
3606 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
3607
3608         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
3609         a MonoReflectionTypeBuilder since it is always of that type.
3610
3611         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
3612
3613         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
3614
3615         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
3616         
3617         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
3618
3619         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
3620
3621         * reflection.c (mono_reflection_create_runtime_class): Remove already created
3622         instantiations from the type cache.
3623
3624 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
3625
3626         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
3627
3628         * verify.c (do_unbox_value): push a controled mutability managed pointer.
3629
3630 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
3631
3632         * verify.c (do_ldstr): added, verifies if the #US token is valid.
3633
3634         * verify.c (mono_method_verify): removed old TODO
3635
3636 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
3637
3638         * verify.c (do_newobj): add visibility check.
3639
3640 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
3641
3642         * verify.c (do_load_function_ptr): add visibility check.
3643
3644 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
3645         *class.c:
3646         mono_generic_class_get_class: hook profiler events.
3647         mono_field_get_offset: added to support heap-shot in the new profiler.
3648         *class.h: exported mono_field_get_offset.
3649         * reflection.c:
3650         mono_reflection_setup_internal_class: hook profiler events.
3651
3652 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
3653
3654         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
3655         argument here too and use it to avoid checking for pending exceptions if 
3656         possible.
3657
3658 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
3659
3660         * assembly.c (build_assembly_name): add arg for passing the assembly
3661         flags. Do not consider a PublicKey with value "null" valid.
3662         (mono_assembly_name_parse_full): added boolean argument that will be
3663         set if the assembly name contains a PublicKeyToken spec. Added support
3664         for the Retargetable spec for which only Yes or No are allowed as valid
3665         value. Consider assembly name invalid if Retargetable spec is set, but
3666         either version, culture or public key (token) are not specified.
3667         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
3668         with implementation in assembly.c.
3669         * icall.c (fill_reflection_assembly_name): also copy assembly flags
3670         from MonoAssemblyName.
3671         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
3672         introduced argument for mono_assembly_name_parse_full to know if the
3673         assembly name has a PublicKeyToken spec, and if it has instruct
3674         fill_reflection_assembly_name to use default value for keyToken (if
3675         PublicKeyToken is null).
3676
3677 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
3678
3679         * verify.c (mono_method_verify): fixed ovf ops with
3680         float values. They are unverifiable now.
3681
3682 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
3683
3684         * class.c (set_failure_from_loader_error): add BadImageException to the
3685         list of exceptions that can cause a type to fail to load.
3686
3687         * class.c (mono_class_get_exception_for_failure): same.
3688
3689 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
3690
3691         * verify.c (in_any_exception_block): added, check if offset
3692         is part of any exception handling clause.
3693
3694         * verify.c (get_stack_type): added VAR and MVAR types.
3695
3696         * verify.c (do_stobj): better error messages.
3697
3698         * verify.c (do_cpobj): added, check cpobj.
3699
3700         * verify.c (do_initobj): added, check initobj.
3701
3702         * verify.c (do_sizeof): added, check sizeof.
3703
3704         * verify.c (do_localloc): added, check localloc.
3705
3706         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
3707
3708 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
3709
3710         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
3711         save_lmf/restore_lmf opcodes.
3712
3713         * threads.c (mono_threads_install_notify_pending_exc): New function to
3714         install a callback notifying the JIT there is a pending exception on a thread.
3715         (mono_thread_request_interruption): Call the new callback.
3716         (mono_thread_get_and_clear_pending_exception): New function to return the
3717         exception pending on a thread.
3718
3719         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
3720         to turn off checking for pending exceptions.
3721         (mono_marshal_get_native_wrapper): Ditto.
3722
3723 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
3724
3725         * threads-types.h: Get rid of the unnecessary extern declarations.
3726
3727 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
3728
3729         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
3730         return field from parent class if not private.
3731         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
3732         returns fields from parent class if they are not private.
3733         (method_nonpublic): added function to determine if a given method
3734         should be considered non-public. Returns false for private methods
3735         on parent class, and internal methods from parent on the 1.0 profile.
3736         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
3737         use method_nonpublic function to determine whether method should be
3738         returned.
3739         (property_accessor_public): use newly introduced method_nonpublic
3740         function to determine whether accessor is non-public. 
3741         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
3742         event from parent class if not private. Only return static event if
3743         Static flag is set, and only return static event from parent class if
3744         FlattenHierarchy flag is set.
3745         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
3746         include non-private events from parent class.
3747
3748 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
3749
3750         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
3751         warning.
3752
3753 2008-01-16  Wade Berrier <wberrier@novell.com>
3754
3755         * security.c: Add assembly.h header to appease some warnings
3756
3757 2008-01-16  Dick Porter  <dick@ximian.com>
3758
3759         * process.c (process_module_string_read): Remove trailing null
3760         when saving string.
3761
3762 2008-01-16  Mark Probst  <mark.probst@gmail.com>
3763
3764         * class-internals.h: A new data structure describing the layout of
3765         a runtime generic context (MonoRuntimeGenericContextTemplate).
3766
3767         * metadata-internals.h: Added a hash table to MonoDomain that maps
3768         from open generic classes to their runtime generic context
3769         templates.
3770
3771         * object.c: Building of the runtime generic context, including
3772         proper handling of generic type arguments of superclasses.
3773         Building of the runtime generic context according to the template.
3774
3775 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
3776
3777         * class.c (mono_class_setup_fields): Set field.count for generic instances.
3778         Fixes #350856.
3779
3780         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
3781         mono_portability_find_file (). Fixes #325466.
3782         (mono_image_get_public_key): Fix a warning.
3783
3784 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
3785
3786         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
3787         Fixes #353550.
3788         (mono_class_from_name_case): Ditto.
3789
3790 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
3791
3792         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
3793           common storage for the tables used in the System/NumberFormatter class.
3794
3795 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
3796
3797         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
3798
3799 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
3800
3801         * verify.c (get_boxable_mono_type): check if the token is valid.
3802
3803         * verify.c (set_stack_value): changed to add an error if an
3804         invalid type is set on stack. Changed all callers due to signature change.
3805
3806         * verify.c (do_stobj): implement stobj validation.
3807
3808 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
3809
3810         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
3811         set container->is_method, it was set earlier.
3812
3813         * metadata.c (type_in_image): Handle MVARs which belong to not finished
3814         generic methods.
3815
3816         * reflection.c (mono_reflection_initialize_generic_parameter): Set
3817         is_method of the generic container to TRUE for methods.
3818
3819 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
3820
3821         * metadata.c (type_in_image): Handle type parameters properly.
3822
3823         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
3824         memory ownership of this structure.
3825
3826 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
3827
3828         * verify.c (get_boxable_mono_type): make typedref types been just
3829         unverifiable. check for void type.
3830
3831         * verify.c (do_unbox_any): added, verify opcode unbox.any.
3832
3833         * verify.c (do_load_function_ptr): accept method spec tokens.
3834
3835 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
3836
3837         * marshal.c (mono_class_native_size): Always set *align even if this is called
3838         recursively.
3839
3840 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
3841
3842         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
3843         out-of-date.
3844
3845 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
3846
3847         * verify.c: removed some old unused tables. A huge bunch of small fixes
3848         to things found while testing the verifier with mono basic.
3849
3850         * verify.c (dump_stack_value): dump null literal flag to.
3851
3852         * verify.c (verify_type_compatibility_full): fix comparison
3853         for types that have a generic super type.
3854
3855         * verify.c (verify_stack_type_compatibility): fix compatibility
3856         between null literals and reference types. fix compatibility between
3857         boxed valuetypes and object. fix corner case test for enums.
3858
3859         * verify.c (do_cmp_op): proper verification of cgt.un in case
3860         of reference types.
3861
3862         * verify.c (do_invoke_method): fix error message.
3863
3864         * verify.c (do_store_indirect
3865
3866         * verify.c (check_is_valid_type_for_field_ops): proper verification
3867         of managed pointers to valuetypes and boxed valuetypes. proper verification
3868         of null literals.
3869
3870         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
3871         allow token to be a reference type.
3872
3873         * verify.c (do_cast): proper handling of boxes valuetypes.
3874
3875         * verify.c (do_stelem): proper handling of storing a boxed valuetype
3876         in object[].
3877
3878         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
3879         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
3880         fixed the decoding of unbox_any
3881
3882 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
3883
3884         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
3885
3886 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
3887
3888         * verify.c (do_newobj): do delegate verification.
3889
3890         * verify.c (verify_delegate_compatibility): perform delegate
3891         verification.
3892
3893         * verify.c (verify_ldftn_delegate): perform tests related to
3894         ldftn delegates.
3895
3896         * verify.c (mono_delegate_signature_equal): perform the
3897         slightly diferent signature comparison required by delegates.
3898
3899         * metadata.c (mono_metadata_type_equal_full): added and exported
3900         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
3901         allows signature only comparison.
3902
3903         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
3904         as MONO_INTERNAL.
3905
3906 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
3907
3908         * verify.c: added a bunch of stack_slot_* functions to
3909         make access to stack slot type easier. This is required to
3910         allow optional flags, like null literal, boxed value and
3911         this pointer.
3912         All access paths to IlStackDesc::stype have been changed 
3913         to use these new funcions.
3914         Removed a bunch of unused functions and cleared all warnings.
3915         This patch introduces the usage of the this pointer and 
3916         boxed value flags.
3917
3918 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
3919
3920         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
3921
3922 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
3923
3924         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
3925         match managed version.
3926
3927         * appdomain.c: Bump corlib version.
3928         
3929         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
3930         argument.
3931
3932 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
3933
3934         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
3935         Set public key token to zero-length byte array if assembly is not
3936         strongnamed.
3937
3938 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
3939
3940         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
3941         writing a vtype array elem.
3942
3943 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
3944
3945         * assembly.c (build_assembly_name): return FALSE if length of token is
3946         not 16 (if not "null").
3947         (mono_assembly_name_parse_full): return FALSE if value of version,
3948         culture, token or key is 0.
3949         * icall.c (fill_reflection_assembly_name): add boolean arguments to
3950         specify whether public key and public key token must be set to default
3951         value (zero-length byte array) if not available. Set versioncompat to
3952         SameMachine. If public key is available or the default is set, then
3953         set PublicKey flag.
3954         (ves_icall_System_Reflection_Assembly_FillName): if no public key
3955         is available, use empty byte array as default value. On the 2.0
3956         profile, use default value for public key token if not set.
3957         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
3958         profile, use default value for public key if not set. On the 2.0
3959         profile, use default value for public key token if not set.
3960         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
3961         default values for public key and public key token.
3962
3963 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
3964
3965         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
3966         field to keep it in synch with the managed object.
3967
3968         * marshal.c (emit_marshal_object): Add support for byref marshalling of
3969         delegates. Fixes #351520.
3970
3971         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
3972         contains defined memory.
3973         
3974         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
3975
3976         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
3977         
3978         * sgen-gc.c (check_consistency): New helper function to do a consistency check
3979         of the GC data structures.
3980
3981         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
3982
3983         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
3984         
3985         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
3986         barrier.
3987         (mono_array_clone_in_domain): Ditto.
3988         (mono_array_clone_in_domain): Ditto.
3989
3990         * threads.c (start_wrapper): Register the thread start argument as a GC root.
3991         (cache_culture): Use a write barrier.
3992
3993         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
3994         (ves_icall_get_property_info): Ditto.
3995
3996         * object.h (MONO_STRUCT_SETREF): New macro.
3997
3998         * class-internals.h (MonoStats): Add some GC statistics.
3999
4000         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
4001
4002 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
4003
4004         * exception.c (mono_exception_from_name_two_strings):
4005         Break from loop after method is found.
4006
4007 2008-01-04  Dick Porter  <dick@ximian.com>
4008
4009         * process.c (process_module_string_read): Rename variable to
4010         reflect correct usage, after fixing bug 345972.
4011
4012 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
4013
4014         * verify.c (mono_type_create_fnptr_from_mono_method): 
4015         created a MonoType function pointer instance to be used during
4016         verification. The verifier releases this memory at end.
4017
4018         * verify.c (mono_method_is_constructor): extracted repeated
4019         checks for constructor into a single class.
4020
4021         * verify.c (do_push_field): use new extracted method
4022         for constructor check.
4023
4024         * verify.c (do_newobj): same.
4025
4026         * verify.c (do_ldftn): renamed to do_load_function_ptr
4027         and make it verify ldvirtftn too.
4028
4029         * verify.c (mono_method_verify: proper verification
4030         of ldvirtftn. release created MonoMethod instances.
4031
4032 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
4033
4034         * verify.c (token_bounds_check): added.
4035
4036         * verify.c (do_ldftn): added.
4037
4038         * verify.c (mono_method_verify): proper verificartion of ldftn.
4039
4040 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
4041
4042         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
4043         than the table row count. It's the resposibility of the caller to
4044         make the bounds check and raise the correct error.
4045
4046         * metadata.c (mono_metadata_decode_row_col): Same.
4047
4048         * loader.c (mono_get_method_from_token): perform bounds check
4049         on token for methoddef table.
4050
4051 2007-12-29  Miguel de Icaza  <miguel@novell.com>
4052
4053         * icall.c
4054         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
4055         assert into a negative result, the managed code already coped with
4056         that.
4057
4058         Some folks on Windows reported this error. 
4059
4060 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
4061
4062         * appdomain.c: Bump corlib version.
4063         * icall.c:
4064         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
4065         CultureInfo.CreateCulture to create CultureInfo for name.
4066         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
4067         create CultureInfo for name. Fixes bug #347174.
4068
4069 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
4070
4071         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
4072         flags.
4073
4074         * verify.c (is_valid_branch_instruction): allow branching to the
4075         first instruction of the protected block.
4076
4077         * verify.c (is_valid_cmp_branch_instruction): same.
4078
4079         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
4080         avoid double initialization.
4081
4082         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
4083         detect which cases the eval stack should just be copied.
4084
4085         * verify.c (mono_method_verify): check if the eval stack
4086         is empty when entering a protected block.
4087
4088 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
4089
4090         * verify.c: added is_clause_in_range, is_clause_inside_range,
4091         is_clause_nested and verify_clause_relationship. They perform
4092         the verifications stated in P1 12.4.2.7.
4093
4094         * verify.c (mono_method_verify): remove some unused variables,
4095         add the new exception clause checks, add instruction border
4096         checks for protected block start/end, improved some error 
4097         messages and fixed a bug in the way invalid instruction access
4098         is detected.
4099
4100 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
4101
4102         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
4103         from GC 7.0 if available.
4104
4105         * object.c: Remove an unused define.
4106         
4107         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
4108
4109         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
4110
4111         * null-gc.c (mono_gc_make_descr_for_array): Implement.
4112
4113         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
4114
4115         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
4116         to take the same arguments as the other make_descr functions.
4117
4118         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
4119
4120         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
4121         directly.
4122
4123         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
4124         mini.c.
4125
4126         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
4127         call to boehm-gc.c.
4128
4129         * boehm-gc.c (mono_gc_register_root): Fix a warning.
4130
4131         * null-gc.c (mono_gc_register_root): Fix a warning.
4132
4133         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
4134
4135         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
4136         (mono_gc_base_init): Call GC_init ().
4137
4138         * null-gc.c: Define mono_gc_register_root () as a no-op.
4139
4140         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
4141
4142 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
4143
4144         * verify.c: add prototype for merge_stacks at top
4145
4146         * verify.c (do_switch): added.
4147
4148         * verify.c (merge_stacks): on some cases the stack merging
4149         was not happening properly. Unequal stack sizes at merge
4150         points should be invalid.
4151
4152         * verify.c (mono_method_verify): added more debug info on stack state.
4153         verify switch properly.
4154
4155 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
4156
4157         * method-builder.h: New file, moved the mono_mb_ declarations here from 
4158         marshal.h.
4159
4160         * boehm-gc.c marshal.c: Include method-builder.h.
4161
4162         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
4163
4164         * marshal.c: Remove some code which is now in method-builder.c.
4165
4166 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
4167
4168         * method-builder.c: New file, extraction of the method builder functionality 
4169         from marshal.c.
4170
4171         * marshal.c: Move the mb functions into method-builder.c.
4172
4173         * marshal.h marshal.c: Export some mono_mb_... functions.
4174
4175         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
4176
4177         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
4178         the caller.
4179
4180         * class.c (mono_class_get_full): Check the token type in the dynamic case.
4181
4182         * loader.c (mono_field_from_token): Ditto.      
4183
4184         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
4185         type as well.
4186         
4187         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
4188         Fixes #342565.
4189
4190         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
4191         a helper function for setting it.
4192
4193         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
4194
4195         
4196         * assembly.c: Significally simplify code now that referenced assemblies are 
4197         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
4198
4199         * threads.h: Don't include  the internal threads-types.h header file. Fixes
4200         #349952.
4201
4202 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
4203
4204         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
4205         instructions that were target of branches or are at protected block boundaries.
4206
4207         * verify.c (in_same_block): handle filter clauses.
4208
4209         * verify.c (is_valid_branch_instruction): added. checks the target of
4210         instructions br or brtrue/false.
4211
4212         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
4213         binary branch instructions such as beq and bge.
4214
4215         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
4216         and made it pin the instruction as been part of the exception block.
4217
4218         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
4219         of in_same_block.
4220
4221         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
4222         of in_same_block.
4223
4224         * verify.c (do_ret): ret from a protected block is unverifiable and
4225         not invalid.
4226
4227         * verify.c (do_static_branch): verify br and br.s instructions.
4228
4229         * verify.c (merge_stacks): add extra param to support detection
4230         of branches in the middle of instructions.
4231         
4232         * verify.c (mono_method_verify): verify branches and exception blocks
4233         that target the middle of instructions. Proper verification of br and br.s.
4234
4235 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
4236
4237         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
4238         skip_visibility field.
4239         (reflection_methodbuilder_from_dynamic_method): Ditto.
4240
4241         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
4242         registrations. Fixes #348193.
4243
4244         * threads.h: Move the internal mono_thread_get_pending_exception () to
4245         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
4246
4247 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
4248
4249         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
4250         icall registration. Fixes #348193.
4251
4252         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
4253         for corlib classes into object. Fixes #349621.
4254
4255 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
4256
4257         * icall.c (property_accessor_nonpublic): new function to determine
4258         whether an accessor allows a property to be considered non-public.
4259         Returns false for private accessor(s) from parent class, and internal
4260         accessor(s) from parent on 2.0 profile (and higher).
4261         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
4262         to determine whether property should be included if NonPublic flag
4263         is set. Fixes bug #349078.
4264
4265 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
4266
4267         * verify.c (init_stack_with_value): added.
4268
4269         * verify.c (mono_method_verify): extracted common
4270         code for exception initialization into init_stack_with_value.
4271
4272         * verify.c (mono_method_verify): initialize the exception
4273         for handler clauses as well.
4274
4275         * verify.c (mono_method_verify): fix the exception clause
4276         ordering rules, it should use handler end offset and not
4277         start offset.
4278
4279 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
4280
4281         * rawbuffer.c: remove useless warning.
4282
4283 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
4284
4285         * threads.h, threads-types.h: move functions to the correct header
4286         (fixes bug#349952).
4287
4288 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4289
4290         * verify.c (mono_method_verify): proper verification
4291         of exception handling clauses ranges and fallthru in
4292         and out of protected blocks.
4293
4294 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4295
4296         * verify.c (mono_method_verify): fixed compilation issue.
4297
4298 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4299
4300         * verify.c (mono_method_verify): a printf slipped in, changed
4301         to use verifier debug macro.
4302
4303 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
4304
4305         * verify.c (is_correct_leave): check for filter clauses.
4306
4307         * verify.c (do_filter): added.
4308
4309         * verify.c (mono_method_verify): property verification of leave.
4310
4311
4312 2007-12-18  Mark Probst  <mark.probst@gmail.com>
4313
4314         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
4315         Win32 build, until we figure out how to do the proper thing on
4316         Win32.
4317
4318 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
4319
4320         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
4321         by the previous patch.
4322         
4323         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
4324         the assembly resolve handler for refonly assemblies.
4325
4326 2007-12-17  Mark Probst  <mark.probst@gmail.com>
4327
4328         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
4329         Make sure only one thread is allowed to commence shutdown, and
4330         don't allow new threads to be started once shutdown is in
4331         progress.
4332
4333 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
4334
4335         * verify.c (is_correct_endfilter): added.
4336
4337         * verify.c (is_unverifiable_endfilter): added.
4338
4339         * verify.c (do_endfilter): added.
4340
4341         * verify.c (mono_method_verify): property verification of endfilter
4342         and fixed a corner case or endfinally.
4343
4344 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
4345
4346         * verify.h: new flags to support fail fast of unverifiable code and
4347         do non-strict verification. Non-strict verification is required to
4348         have MS runtime compatibility. There are a huge amount of unverifiable
4349         code that it accepts as verifiable. The strict mode verifies the code
4350         as the specs says.
4351         Non-strict mode will be required in cases where code needs to be
4352         accepted as verifiable but fails under strict mode.
4353
4354         * pedump.c: added support to fail fast and non-strict verification.
4355
4356         * verify.c: added support for both fail fast and non-strict verification.
4357
4358 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
4359
4360         * verify.c (is_correct_endfinally): added.
4361
4362         * verify.c (mono_method_verify): property verification of endfinally.
4363
4364 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
4365
4366         * verify.c (in_any_block): check for filter clauses.
4367
4368         * verify.c (is_correct_rethrow): added.
4369
4370         * verify.c (mono_method_verify): property verification of rethrow.
4371
4372         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
4373
4374 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
4375
4376         * verify.c (do_throw): added.
4377
4378         * verify.c (mono_method_verify): property verification of throw
4379
4380 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
4381
4382         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
4383         assemblies. Fixes #346425.
4384
4385 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
4386
4387         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
4388         FieldBuilders.
4389
4390         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
4391
4392         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
4393         prevent asserts when this is called with a token which might not be valid.
4394
4395         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
4396         lookup_dynamic_token_class with valid_token == FALSE.
4397
4398         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
4399
4400         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
4401
4402         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
4403         
4404 2007-12-10  Mark Probst  <mark.probst@gmail.com>
4405
4406         * gc.c: Don't delay threadpool thread finalization unless Mono is
4407         shutting down.
4408
4409 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
4410
4411         * threads.c: turn an assert into a non-fatal warning.
4412
4413 2007-12-09  Robert Jordan  <robertj@gmx.net>
4414
4415         * icall.c (GetVirtualMethod): Add missing argument validation.
4416
4417 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
4418
4419         * verify.c (do_cast): added.
4420
4421         * verify.c (mono_method_verify): property verification of castclass and isinst.
4422
4423
4424 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
4425
4426         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
4427
4428         * verify.c (do_stelem): added.
4429
4430         * verify.c (mono_method_verify): property verification of stelem.X.
4431
4432 2007-12-07  Mark Probst  <mark.probst@gmail.com>
4433
4434         * class.c, class-internals.h: Introduce an environment variable
4435         (MONO_GENERIC_SHARING) through which the extent of generic code
4436         sharing can be controlled (share all classes, share only corlib
4437         classes, or share nothing).
4438
4439         * object.c: Only create runtime generic context for classes for
4440         which sharing is enabled.
4441
4442 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
4443
4444         * verify.c (do_ldelem): refactor it to work with ldelem.any.
4445
4446         * verify.c (mono_method_verify): property verification of ldelem.any.
4447
4448 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
4449
4450         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
4451         added ldelem.X opcodes.
4452
4453         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
4454
4455         * verify.c: proper verification of ldelem.X 
4456
4457 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
4458
4459         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
4460
4461 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
4462
4463         * verify.c (mono_method_verify): null literal requires special handling,
4464         the value pushed on stack need to be flagged as so.
4465
4466         * verify.c (do_ldelema): Verify ldelema properly.
4467
4468 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
4469
4470         * verify.c: Verify ldlen properly.
4471
4472 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
4473
4474         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
4475         to the target object's type. Fixes #346160.
4476
4477 2007-12-05  Dick Porter  <dick@ximian.com>
4478
4479         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
4480         Solaris needs the same workaround as BSD-derived systems.  Fixes
4481         bug 323524, patch by Burkhard Linke
4482         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
4483
4484 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
4485
4486         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
4487         handle to use when error dialog is shown; otherwise, update mask
4488         to show no error dialog when an error occurs.
4489
4490 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
4491
4492         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
4493
4494         * class.c (mono_class_get_field_default_value): New helper function to initialize
4495         field->def_type and field->data.
4496
4497 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
4498
4499         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
4500         the general one.
4501
4502         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
4503
4504         * marshal.c: Avoid depending on delegate->method_info being set.
4505
4506         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
4507         
4508         * object.c (mono_delegate_ctor): Set delegate->method.
4509
4510         * object-internals.h (struct _MonoDelegate): Add 'method' field.
4511
4512         * appdomain.c: Bump corlib version.
4513
4514 2007-11-27  Raja R Harinath  <harinath@gmail.com>
4515
4516         * metadata.c (mono_generic_inst_equal_full): Short-circuit
4517         equality check if we're comparing canonicalized MonoGenericInsts.
4518
4519 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
4520
4521         * class.c (generic_array_methods): Call mono_class_setup_methods () before
4522         accessing class->methods.
4523
4524 2007-11-22  Dick Porter  <dick@ximian.com>
4525
4526         * threads.c: Ensure that the synch_cs is set before trying to use
4527         it.
4528
4529 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
4530
4531         * profiler.c: r89126 broke the statistial profiler, unbreak.
4532
4533 2007-11-22  Martin Baulig  <martin@ximian.com>
4534
4535         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
4536
4537         * mono-debug.c
4538         (mono_debug_debugger_version): Bump to 3.
4539         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
4540         -> mono_debugger_class_initialized().
4541
4542         * mono-debug-debugger.c
4543         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
4544
4545         * class.c
4546         (mono_debugger_start_class_init_func): Removed.
4547         (mono_debugger_class_loaded_methods_func): Added.
4548         (mono_class_setup_methods): Call it here.
4549
4550 2007-11-22  Martin Baulig  <martin@ximian.com>
4551
4552         * mono-debug.c
4553         (mono_debug_add_delegate_trampoline): New public method.
4554         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
4555
4556         * mono-debug.h
4557         (MonoSymbolTable): Added `global_data_table'.
4558         (MonoDebuggerTypeKind): Removed.
4559
4560 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
4561
4562         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
4563         these methods.
4564
4565         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4566         
4567 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
4568
4569         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
4570
4571 2007-11-20  Martin Baulig  <martin@ximian.com>
4572
4573         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
4574
4575         * mono-debug-debugger.c
4576         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
4577         (mono_debugger_remove_breakpoint): Likewise.
4578         (mono_debugger_check_breakpoints): Likewise.
4579         (mono_debugger_register_class_init_callback): New public method.
4580         (mono_debugger_remove_class_init_callback): Likewise.
4581         (mono_debugger_add_type): Likewise.
4582
4583         * mono-debug-debugger.h
4584         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
4585
4586 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
4587
4588         * class.c: more interface implementations needed for the
4589         array enumerator (fixes bug #341112).
4590
4591 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
4592
4593         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
4594         fix ParamName of ArgumentNullExceptions.
4595
4596 2007-11-17  Miguel de Icaza  <miguel@novell.com>
4597
4598         * reflection.c (mono_reflection_encode_sighelper): Generate the
4599         modopts and modreqs.   I have a useless test that crashes monodis,
4600         but that shows the code working.
4601
4602 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
4603
4604         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
4605         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
4606
4607 2007-11-15  Dick Porter  <dick@ximian.com>
4608
4609         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
4610         When joining a thread, it's the thread that's calling Join that
4611         gets WaitSleepJoin state not the target.  Fixes the standalone
4612         test case in bug 334740, and hopefully the whole bug too.
4613
4614 2007-11-15  Dick Porter  <dick@ximian.com>
4615
4616         * process.c: Read file version info from the files pointed at by
4617         process modules, not the current process.  Fixes bug 315969.
4618
4619         Use windows typedef names in some places to fix warnings on the
4620         windows build.
4621
4622 2007-11-15  Mark Probst  <mark.probst@gmail.com>
4623
4624         * image.c, metadata-internals.h: Added a generic_class_cache hash
4625         to MonoImage for looking up generic classes when sharing generics.
4626
4627 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
4628
4629         * sgen-gc.c: warning cleanups.
4630
4631 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
4632
4633         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
4634         inherited properties.
4635
4636 2007-11-14  Mark Probst  <mark.probst@gmail.com>
4637
4638         * object.c, class-internals.h: Added more information to the
4639         runtime generic context.
4640
4641 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
4642
4643         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
4644         instead of just the target method. Generalize the abstract method handling to
4645         handle any non-static method.
4646
4647         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
4648         mono_marshal_get_delegate_invoke () signature change.
4649
4650 2007-11-13  Mark Probst  <mark.probst@gmail.com>
4651
4652         * class.c, class-internals.h: Made
4653         mono_type_get_basic_type_from_generic () public.  Fixed member
4654         access check for shared generics.
4655
4656         * loader.c: Don't insert field into field cache if it's part of a
4657         non-inflated generic class.
4658
4659         * domain.c, domain-internals.h: The generic sharing context is now
4660         part of the jit info data structure.  Added two accessor
4661         functions.
4662
4663 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
4664
4665         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
4666         the array Get/Set/Address methods, since the JIT inlines them.
4667
4668         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
4669
4670         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
4671         (mono_image_init): Initialize runtime_invoke_direct_cache.      
4672
4673         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
4674         mono_marshal_get_delegate_invoke signature change.
4675
4676         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
4677         an additional argument. Add support for invoking abstract methods.
4678
4679         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
4680
4681         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
4682
4683 2007-11-09  Mark Probst  <mark.probst@gmail.com>
4684
4685         * class.c: Do field layout for open generic classes as well.
4686
4687 2007-11-09  Mark Probst  <mark.probst@gmail.com>
4688
4689         * gc.c, gc-internal.h: Don't finalize threadpool threads with
4690         other objects, because the threadpool is still around.  Put them
4691         in a list instead and after finalizing all other objects in the
4692         root domain shut down the thread pool and then finalize the
4693         threads.  Fixes bug #337383.
4694
4695         * threads.c, thread-types.h: New mono_thread_create_internal()
4696         function for marking a thread with the threadpool flag before it
4697         started.  Set synch_cs to NULL after freeing it.
4698
4699         * threadpool.c: Mark threadpool threads before they start.
4700
4701 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
4702
4703         * reflection.h, reflection.c: don't export random functions
4704         and lazy load dbnull and missing objects.
4705
4706 2007-11-07  Jonathan Chambers <joncham@gmail.com>
4707
4708         * class.c: Initialize COM types if COM interfaces
4709         are present (not just COM classes).
4710         
4711         Code is contributed under MIT/X11 license.
4712
4713 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
4714         * reflection.c:
4715         create_dynamic_mono_image: hook module profiler events (dynamic case).
4716         mono_image_basic_init: hook assembly profiler events (dynamic case).
4717
4718 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
4719         * profiler.c:
4720         simple_appdomain_unload: completely terminate the profiler
4721         instead of only processing the statistical samples.
4722         simple_shutdown: make sure this is really called exactly once,
4723         even in multithreaded applications, and always listen to
4724         appdomain events.
4725         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
4726         here, the "[un]load" functions will do it.
4727         Fixes bugs #333791 and #325261.
4728
4729 2007-11-07  Geoff Norton  <gnorton@novell.com>
4730
4731         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
4732         rather than depend on __APPLE__.
4733
4734 2007-11-07  Mark Probst  <mark.probst@gmail.com>
4735
4736         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
4737
4738 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
4739
4740         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
4741         UTF16 MonoString. Fix the crash from bug #335488
4742
4743 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
4744
4745         * marshal.c: Correct (for non-Win32 OS) length != size in 
4746         mono_string_from_bstr. Fix #339530.
4747
4748 2007-11-06  Geoff Norton  <gnorton@novell.com>
4749
4750         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
4751         to succeed
4752
4753 2007-11-05  KornĂ©l Pál  <kornelpal@gmail.com>
4754
4755         * process.c: Added run-time GetProcessId API detection for Windows.
4756
4757 2007-11-04  Miguel de Icaza  <miguel@novell.com>
4758
4759         * reflection.c  (mono_param_get_objects): If a parameter has the
4760         attribute [System.Runtime.InteropServices.Optional] we should
4761         set the DefaultValue of the ParameterInfo to be
4762         System.Reflection.Missing instead of DBNull.
4763
4764         See bug #339013.
4765
4766         (mono_get_reflection_missing_object): New method,
4767         returns the System.Reflection.Missing.Value singleton instance.
4768
4769 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
4770
4771         * culture-info-table.h : regenerated.
4772
4773 2007-11-02  Jonathan Chambers <joncham@gmail.com>
4774
4775         * icall.c: Use GetEnvironmentStrings on windows
4776         so we are using the same environment block as 
4777         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
4778         #333740.
4779         
4780         Code is contributed under MIT/X11 license.
4781
4782 2007-10-31  Martin Baulig  <martin@ximian.com>
4783
4784         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
4785
4786         * mono-debug-debugger.h
4787         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
4788
4789 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
4790
4791         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
4792         classes.
4793
4794 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
4795
4796         * culture-info-table.h : regenerated.
4797
4798 2007-10-30  Robert Jordan  <robertj@gmx.net>
4799
4800         * icall-def.h, icall.c:
4801         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
4802
4803         Code is contributed under MIT/X11 license.
4804
4805 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
4806
4807         * class.c (mono_class_setup_vtable): Find the inflated methods in the
4808         inflated class instead of inflating them again.
4809         
4810         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
4811         dynamic case.
4812
4813         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
4814         Call setup_supertypes () after klass->parent is set.
4815         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
4816
4817         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
4818         for inflated instances of not yet created dynamic generic classes.
4819         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
4820         times from inflated_method.
4821         (methodbuilder_to_mono_method): Ditto.
4822
4823 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
4824
4825         * gc.c: code cleanup and removed old untested option of not creating the
4826         finalizer thread.
4827
4828 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
4829
4830         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
4831         creating a jump trampoline for dynamic methods.
4832
4833 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
4834
4835         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
4836         generic TypeBuilders when called from another method of the same type (bug #335131).
4837
4838
4839 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
4840
4841         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
4842         doesn't seem to work perfectly.
4843         
4844         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
4845         called multiple times.
4846         (methodbuilder_to_mono_method): Ditto.
4847         (resolve_object): Inflate FieldBuilder's.
4848
4849 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
4850
4851         * string-icalls.c, string-icalls.h, appdomain.c: patch from
4852         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
4853         RemoveEmptyEntries in the string.Split implementation (bug #322375).
4854
4855 2007-10-26  Dick Porter  <dick@ximian.com>
4856
4857         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
4858         Thread initialisation changes
4859
4860 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
4861
4862         * verify.c: fix compatibility check between arrays and System.Array
4863
4864 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
4865
4866         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
4867         too. Fixes #336999.
4868
4869 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
4870
4871         * object.c (mono_value_box): Use typed allocation here.
4872
4873 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
4874
4875         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
4876         trampoline instead of compiling the method right away.
4877
4878         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
4879
4880 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
4881
4882         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
4883         related fields for dynamic classes. Fixes #334493.
4884
4885 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
4886
4887         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
4888         
4889         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
4890
4891         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
4892         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
4893
4894         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
4895
4896         * reflection.c (create_generic_typespec): Initialize klass->generic_container
4897         if needed.
4898         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
4899
4900 2007-10-18  Jonathan Chambers <joncham@gmail.com>
4901
4902         * marshal.c: Use correct key when removing item
4903         from ccw_hash.
4904         
4905         Code is contributed under MIT/X11 license.
4906
4907 2007-10-17  William Holmes  <billholmes54@gmail.com>
4908
4909         *marshal.c: Adding a case to marshal booleans to U1
4910
4911         Code is contributed under MIT/X11 license.
4912
4913 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
4914
4915         * class.c (mono_class_from_name): Search the modules compromising dynamic
4916         assemblies. Fixes #331601.
4917
4918 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
4919
4920         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
4921         exception if the type name contains an assembly component. Fixes #334203.
4922
4923         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
4924         modules inside dynamic assemblies. Fixes #334200.
4925         
4926         * reflection.c: Set image->public_key and image->public_key_length;
4927
4928         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
4929         fields.
4930
4931         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
4932         
4933 2007-10-16  Mark Probst  <mark.probst@gmail.com>
4934
4935         * metadata.c: Implemented correct comparing of generic classes.
4936         An inflated generic class can be equal to a non-inflated one if it
4937         is inflated with generic type variables as type arguments.  Fixes
4938         bug #333798.
4939
4940 2007-10-15  Dick Porter  <dick@ximian.com>
4941
4942         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
4943         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
4944         81646.
4945
4946         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
4947         instead of a monitor lock.  This means that monitor_try_enter and
4948         co can set the thread state safely.
4949         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
4950         thread_interrupt_requested, so interrupt actually works.
4951
4952         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
4953         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
4954         state accessor function
4955
4956 2007-10-15  Martin Baulig  <martin@ximian.com>
4957
4958         * mono-debug.h
4959         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
4960         the debugger with the current runtime.
4961
4962 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
4963
4964         * object.c, object-internals.h: added the ability to set a single
4965         trampoline for all the slots in a vtable.
4966
4967 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
4968
4969         * marshal.c: deal with a possible race condition during multicast
4970         delegate invocation.
4971
4972 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
4973
4974         * class.c: ensure value type methods don't have the synchronized
4975         flag set.
4976
4977 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
4978
4979         * string-icalls.c, string-icalls.h: reverted unapproved patch that
4980         breaks the build.
4981
4982 2007-10-11  Joel Reed  <joelwreed@comcast.com>
4983
4984         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
4985         to take an options parameter so that empty entries can be removed during
4986         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
4987
4988 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
4989
4990         * marshal.c: make sure we don't store the signature from a dynamic
4991         method into the runtime invoke cache (bug #327189).
4992
4993 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
4994
4995         * marshal.c: make sure the wrapper methods are properly initialized.
4996
4997 2007-10-11  Mark Probst  <mark.probst@gmail.com>
4998
4999         * metadata.c, metadata-internals.h: Generalized
5000         mono_type_stack_size() to mono_type_stack_size_internal() which
5001         takes an additional argument specifying whether it allows open
5002         types.
5003
5004 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5005
5006         * verify.c (do_invoke_method): handle typedbyref params
5007         correctly and check for unverifiable return values.
5008
5009         * verify.c (do_newobj): fix a warning.
5010
5011 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5012
5013         * verify.c: don't tread typedbyref as allways unverifable,
5014         so uses, like (ld/st)loc.0 are valid. verify for the cases
5015         that it matters, like boxing related operations.
5016
5017 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5018
5019         * verify.c: add verification of the newobj opcode. verification
5020         of delegate instantation still missing due ldftn and virldftn not
5021         pushing the function type on stack
5022
5023 2007-10-08  Mark Probst  <mark.probst@gmail.com>
5024
5025         * class-internals.h: Runtime generic context data structure
5026         definition.
5027
5028         * object.c: Initialization of runtime generic context at runtime
5029         vtable creation time.
5030
5031 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
5032         * class.c (mono_class_create_from_typedef,
5033         mono_class_from_generic_parameter, mono_ptr_class_get,
5034         mono_fnptr_class_get, mono_bounded_array_class_get)
5035         * domain.c (mono_domain_create, mono_domain_free)
5036         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
5037         * image.c (do_mono_image_load, mono_image_close):
5038         Hooked up load-unload profiler events.
5039
5040 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
5041
5042         * domain.c: track statistics about the actual amount of native code
5043         allocated.
5044
5045 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
5046
5047         * class.c: the valuetype enumerators don't have the additional
5048         supertypes interfaces.
5049
5050 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5051
5052         * class.c: need more interfaces setup for the IEnumerator<T>
5053         object created for arrays (tests/ienumerator-interfaces.2.cs).
5054
5055 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
5056
5057         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
5058
5059 2007-10-05  Alp Toker  <alp@atoker.com>
5060
5061         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
5062         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
5063         #315863.
5064
5065 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
5066
5067         * verify.c (verify_type_compatibility_full): verification of
5068         compatibility improved, validates correctly non-strict checks between
5069         native int and I4 types different than (unsigned)int32.
5070
5071         * verify.c (do_store_indirect): added, do all verification of
5072         ldind.X opcodes. 
5073
5074         * verify.c (get_load_indirect_mono_type): renamed to
5075         get_indirect_op_mono_type, as it now returns the MonoType for 
5076         ldind.X and stind.X opcodes.
5077
5078 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
5079
5080         * reflection.c: Fix the encoding of generic type definition for
5081         TypeBuilders.
5082
5083         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
5084         mono_image_typedef_or_ref but allows to specify if typespec lookups should
5085         be made. Typespec check is done prior to typeref cache lookup.
5086
5087         * reflection.c (mono_image_typedef_or_ref): now just delegate to
5088         mono_image_typedef_or_ref_full.
5089
5090         * reflection.c (encode_generic_class): encode the generic class
5091         directly instead of calling encode_type.
5092
5093         * reflection.c (encode_type): encode the generic type definition
5094         MonoClass as a generic instantiation.
5095
5096         * reflection.c (create_typespec): cache typespec tokens in
5097         the assembly->typespec cache. Don't create typespec for a generic
5098         instance MonoClass. Create typespec for the generic type defintion.
5099
5100         * reflection.c (create_generic_typespec): encode the generic
5101         class directly instead of calling encode_type.
5102
5103         * reflection.c (mono_image_create_token): encode the generic
5104         type definition not using a typespec for MonoType instances.
5105
5106
5107 2007-10-04  Raja R Harinath  <rharinath@novell.com>
5108
5109         Fix #328812
5110         * class.c (mono_image_init_name_cache): Don't return nested
5111         'protected internal' classes.
5112         (mono_class_from_name_case): Likewise.
5113
5114 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
5115
5116         * icall-def.h, icall.c : get_bundled_machine_config() is now the
5117           common function used by both DefaultConfig in System.dll and
5118           InternalConfigurationHost in System.Configuration.dll.
5119
5120 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
5121
5122         * class.c: automatically add to vectors only a few essential explicit
5123         generic interfaces. The rest of the interfaces that arrays should
5124         provide are currently implicitly added (but still not lazily, see the
5125         design in the discussion of bug#325495 for the details of what is
5126         needed for that). Additionally, implicit interfaces are assigned the
5127         same vtable slot as the explicit interfaces (as they are compatible):
5128         this enables huge memory savings since we don't need to instantiate
5129         as many memthods and as large vtables anymore. Also, Since
5130         GetEnumerator<T> returns an instance of a type that is required to
5131         support a similarly large set of interfaces as arrays, we add
5132         implicit interfaces and interface offset sharing support to those
5133         types, too. This change adds all the required interfaces so that
5134         the anonarray.cs test case in the bug report works (we don't add
5135         all the interfaces to arrays of arrays 3-level deep and more because
5136         of the memory requirements explained in the bug and since they are much
5137         less common: the lazy-loading support will enabled them to work, too).
5138
5139 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
5140
5141         * verify.c (merge_stacks): major clean up, all type compatibility
5142         checks are done by verify_type_compatibility. This fix my earlier lack
5143         of understanding of the CLR type system and merge_stacks no longer looks
5144         scary.
5145
5146         * verify.c: fixed some bad spelling.
5147
5148 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
5149
5150         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
5151         a given stack slock.
5152         
5153         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
5154         verify_type_compatibility_full. This removed a near indentical function and fixed
5155         handling of Int32 and IntPtr across all opcodes.
5156
5157 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
5158
5159         * class.c: only vectors have the additional generic interfaces.
5160
5161 2007-10-01  Jonathan Chambers <joncham@gmail.com>
5162
5163         * mono-config.c: Use g_strcasecmp instead of
5164         strcasecmp like everywhere else to fix
5165         compilation with MSVC.
5166         
5167         Code is contributed under MIT/X11 license.
5168
5169 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5170
5171         * object.c, object-internals.h: refactored the IMT code to enable
5172         building a single slot at a time and lazily creating the IMT trampolines
5173         and thunks.
5174
5175 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
5176
5177         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
5178
5179         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
5180         Fixes #328501.
5181         
5182 2007-09-29  Raja R Harinath  <harinath@gmail.com>
5183
5184         * loader.c (method_from_methodspec): Rearrange to avoid
5185         un-necessary exposition.  Don't assert out if the method's
5186         declaring type is a generic type definition.
5187
5188 2007-09-28  Martin Baulig  <martin@ximian.com>
5189
5190         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
5191
5192 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
5193
5194         * class-internals.h: optimize field layout of MonoClass to
5195         requires less cachelines at runtime and save a few bytes on 64 bit
5196         systems.
5197
5198 2007-09-28  Jb Evain  <jbevain@novell.com>
5199
5200         * reflection.c: when encoding type names in custom attributes,
5201         if the type is a closed generic type, its generic arguments
5202         have to be serialized as AssemblyQualifiedName, so that when
5203         they are deserialized, it's possible to re-create them properly.
5204         Fixes #329450.
5205
5206
5207 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
5208
5209         * object.c, class-internals.h: added delegate-creation counter.
5210
5211 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
5212
5213         * class.c: cleanup of the code that synthetizes interfaces for
5214         arrays in 2.0: saves quit a bit of corlib mempool memory.
5215         Code to fix bug #325495 ifdeffed out for now until the issues
5216         with memory usage and O(n^2) behaviour are fixed.
5217
5218 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
5219
5220         * marshal.c: when possible, do not duplicate the name of the methods
5221         in the method builder and in the generated MonoMethod.
5222
5223 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
5224         * verify.c: added support for type checking ldind_* opcodes.
5225
5226 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
5227
5228         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
5229         which is used to distinguish the fully open instantiation of a TypeBuilder
5230         with the rest. This temporary hack is required to restore the property that
5231         the fully open instantiation is the same type of the generic type definition.
5232
5233         * class-internals.h (mono_generic_class_is_generic_type_definition):
5234         new function as part of the internal API.
5235
5236         * class.c (inflate_generic_type): return NULL when the generic inst is
5237         fully open. The fully open generic type is now the same as the generic type
5238         definition for non TypeBuilder types.
5239
5240         * class.c (mono_generic_class_get_class): removed assert since it is
5241         no longer valid, gklass->cached_class can point to the generic type definition.
5242
5243         * class.c (mono_generic_class_is_generic_type_definition): new.
5244
5245         * metadata.c (mono_generic_class_hash): added is_tb_open field
5246         to the hash calculation.
5247
5248         * metadata.c (free_generic_class): if the generic class is associated
5249         with the generic type definition, its field will come from the mempool and
5250         must not be freed.
5251
5252         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
5253         new, this function identifies the corner case of a TypeBuilder fully open
5254         instantiation.
5255
5256         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
5257         for lookup. Set gclass->cached_class to be the container class in case of
5258         the fully open instantiation of non TypeBuilder types.
5259
5260         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
5261         to compare generic classes.
5262
5263         * reflection.c (method_encode_methodspec): remove assert that
5264         no longer is valid.
5265
5266         * reflection.c (mono_reflection_generic_class_initialize): add
5267         an aditional assert to ensure the proper type is used.
5268
5269 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
5270
5271         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
5272         to enjoy it.
5273
5274 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
5275
5276         * verify.c (push_arg): Fixed support for ldarga
5277         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
5278         MonoType used as first arg in case of instance calls.
5279
5280 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
5281
5282         * verify.c: Support for verifying VAR and MVAR types, 
5283
5284 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
5285
5286         * icall.c (ves_icall_get_property_info): Set the reflected type of the
5287         accessors correctly.
5288
5289 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
5290
5291         * threads.c: support OSX and other systems in
5292         mono_thread_get_stack_bounds (bug #328026).
5293
5294 2007-09-25  Martin Baulig  <martin@ximian.com>
5295
5296         * mono-debug.h
5297         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
5298
5299 2007-09-24  Martin Baulig  <martin@ximian.com>
5300
5301         * mono-debug.h
5302         (MonoDebugClassEntry): Moved the definition of this struct into
5303         mono-debug.c to make it private.
5304
5305         * mono-debug.c
5306         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
5307         type table per symbol file, we don't need to store the symfile id
5308         any longer.
5309
5310 2007-09-24  Martin Baulig  <martin@ximian.com>
5311
5312         Create one type table per symbol file, since a `MonoClass *' gets
5313         invalid when its image is unloaded.
5314
5315         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
5316         (MonoDebugHandle): Added `type_table'.
5317
5318 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
5319
5320         * mempool.c, mempool.h: added mono_mempool_new_size () API
5321         to be able to specify a smaller initial size for the pool.
5322         Adjusted the code to slowly increase pool size before using
5323         the previous default size.
5324         * image.c: use a small initial size for image mempools.
5325
5326 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
5327
5328         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
5329         Fixes ##320990.
5330
5331         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
5332         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
5333
5334 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
5335
5336         * metadata.c (mono_type_create_from_typespec): Remove an invalid
5337         free. Fixes #327438.
5338
5339 2007-09-21  Raja R Harinath  <harinath@gmail.com>
5340
5341         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
5342         generic instantiations, etc.
5343         <MONO_TYPE_ARRAY>: Likewise.
5344
5345 2007-09-21  Martin Baulig  <martin@ximian.com>
5346
5347         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
5348         these structs were never defined.
5349         (MonoDebugHandle): Removed the `_priv' field, it was never used.
5350
5351 2007-09-21  Martin Baulig  <martin@ximian.com>
5352
5353         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
5354
5355 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
5356
5357         * image.c: removed the guid hash tables: we can get the same info
5358         without the additional memory usage hit (partially fixes also bug #327052).
5359
5360 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
5361
5362         * profiler.h, profiler-private.h, profiler.c: add a new profiler
5363         event to handle unloading methods. After the event is called, the
5364         corresponding MonoMethod* must be considered invalid.
5365         * loader.c (mono_free_method): call the new mono_profiler_method_free
5366         event.
5367
5368 2007-09-20  Mark Probst  <mark.probst@gmail.com>
5369
5370         * domain-internals.h: New flag in MonoJitInfo which marks shared
5371         generic methods.  New hash table (shared_generics_hash) in
5372         MonoDomain to keep track of shared generic methods.  Prototypes
5373         for functions to register and lookup shared generic methods.
5374
5375         * domain.c: Support for registering and looking up shared generic
5376         methods via a hash table (shared_generics_hash) in MonoDomain.
5377
5378         * class-internals.h: New exception to signal failure of shared
5379         compilation of a generic method.  New counters for generics
5380         sharing in MonoStats.
5381
5382 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
5383
5384         * image.c, metadata-internals.h: don't keep a file descriptor open
5385         for loaded assemblies (bug#325988).
5386
5387 2007-09-19  Raja R Harinath  <rharinath@novell.com>
5388
5389         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
5390         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
5391         use the corresponding datatypes.
5392         (type_in_image): Update to changes.
5393         (CleanForImageUserData): Simplify.
5394         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
5395         Avoid quadratic behaviour in handling the "stolen" list by
5396         separating the filter predicate out, and by prepending the stolen
5397         items rather than appending them.
5398         (steal_ginst_in_image): Likewise.
5399         (mono_metadata_clean_for_image): Update to changes.
5400
5401 2007-09-19  Martin Baulig  <martin@ximian.com>
5402
5403         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
5404
5405 2007-09-19  Martin Baulig  <martin@ximian.com>
5406
5407         * mono-debug.c (mono_debug_cleanup): Don't call
5408         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
5409
5410 2007-09-19  Raja R Harinath  <harinath@gmail.com>
5411
5412         Fix crash on 'make run-test' in mcs/errors
5413         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
5414         Avoid more potential allocations in mono_class_from_mono_type.
5415         (ginst_in_image): Update to changes.
5416         (gclass_in_image): Rearrange slightly.
5417
5418 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
5419
5420         * class.c (mono_class_init): Move the code that sets up class->methods to 
5421         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
5422
5423         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
5424         canonical instance of an inflated generic signature.
5425         (mono_type_create_from_typespec): Remove an invalid free.
5426
5427         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
5428
5429 2007-09-18  Marek Habersack  <mhabersack@novell.com>
5430
5431         * domain-internals.h: added a declaration of the
5432         mono_assembly_load_full_nosearch internal function.
5433
5434         * assembly.c (mono_assembly_load_with_partial_name): use
5435         mono_try_assembly_resolve return value properly.
5436         (mono_assembly_load_full_nosearch): copied the function body from
5437         mono_assembly_load_full, without the code to invoke assembly
5438         search hooks.
5439         (mono_assembly_load_full): calls the above new function and if the
5440         assembly is not resolved, invokes the search hooks.
5441
5442         * appdomain.c (mono_runtime_init): restore the global postload
5443         assembly search handlers.
5444
5445 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
5446
5447         * class.c (mono_class_init): Make sure class->methods and class->properties
5448         are never NULL in the generics case.
5449
5450         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
5451
5452 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
5453
5454         * metadata.c (free_generic_class): Disable some code to fix the build.
5455
5456         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
5457
5458         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
5459         from the image mempool.
5460
5461         * metadata.c (free_generic_class): Free more data from the inflated class.
5462
5463         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
5464
5465         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
5466         mempool.
5467         (mono_type_create_from_typespec): Ditto.
5468
5469         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
5470         MonoImage to the caller.
5471         (mono_init_internal): Save the opened image in a global variable.
5472         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
5473
5474         * reflection.c (resolve_object): Fix a leak.
5475
5476         * metadata.c: Fix the freeing of data in the generics caches.
5477         
5478         * metadata.c (free_generic_inst): Comment this out to fix the build.
5479         (free_generic_class): Ditto.
5480
5481         * metadata.c: Free cached generic methods, instantinations and classes when
5482         they are removed from the caches.
5483         (mono_metadata_free_type): Free the type itself.
5484
5485         * class.c: Free the result of mono_class_inflate_generic_type () in a few
5486         places.
5487
5488 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
5489
5490         * boehm-gc.c: restrict managed allocs to __thread supporting
5491         architectures.
5492
5493 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
5494
5495         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
5496         (mono_generic_class_get_class): Fix a leak.
5497
5498         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
5499         mono_metadata_free_type ().
5500         (mono_metadata_inflate_generic_inst): Fix a leak.
5501
5502 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
5503
5504         * mono-debug.c (free_header_data): Fix a leak missed earlier.
5505
5506         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
5507         mempool.
5508
5509         * mono-debug.c (mono_debug_close_image): Fix call to 
5510         g_hash_table_remove ().
5511
5512 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
5513
5514         * icall-def.h: redirect all the string ctor to the managed
5515         CreateString () methods.
5516         * string-icalls.c, string-icalls.h: removed dead code for string
5517         ctors and icalls.
5518
5519 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
5520
5521         * mono-debug.c: Fix memory leaks.
5522
5523 2007-09-14  Jonathan Chambers <joncham@gmail.com>
5524
5525         * threads-types.h: Implement mono_hazard_pointer_set and 
5526         mono_hazard_pointer_clear macros using do/while(0) to fix
5527         compilation with MSVC.
5528         
5529         Code is contributed under MIT/X11 license.
5530
5531 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
5532
5533         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
5534         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
5535
5536 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5537
5538         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
5539         icalls.
5540
5541 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5542
5543         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
5544         managed-code allocated as well.
5545
5546 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
5547
5548         * class.c (mono_class_is_assignable_from): Add support for generic variance.
5549
5550 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
5551
5552         * boehm-gc.c: fixed the build after the AOT changes.
5553
5554 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
5555
5556         * wrapper-types.h: Add an ALLOC wrapper type.
5557
5558         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
5559         reference managed allocator methods.
5560
5561 2007-09-12  Marek Safar  <marek.safar@gmail.com>
5562
5563         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
5564         of Type array and not MonoType, a fix suggested by Hari.
5565         
5566 2007-09-12  Jonathan Chambers <joncham@gmail.com>
5567
5568         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
5569         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
5570         
5571         Code is contributed under MIT/X11 license.
5572
5573 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
5574
5575         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
5576
5577 2007-09-12  Marek Habersack  <mhabersack@novell.com>
5578
5579         * image.c (do_mono_image_open): if assembly file fails to open and
5580         MONO_IOMAP is in effect, try to find the path in a
5581         case-insensitive way.
5582
5583         * appdomain.c (mono_runtime_init): do not install postload hooks -
5584         tests show that MS.NET doesn't use anything of that sort to
5585         trigger the AppDomain.AssemblyResolve event.
5586         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
5587         made non-static.
5588         (mono_runtime_init): init portability helpers here.
5589
5590         * assembly.c (mono_assembly_load_with_partial_name): if other   
5591         attempts fail, trigger the AppDomain.AssemblyResolve event handler
5592         to resolve the assembly.
5593
5594         * domain-internals.h: added mono_try_assembly_resolve and marked
5595         it as internal.
5596
5597 2007-09-11  Jb Evain  <jbevain@novell.com>
5598
5599         * object-internals.h (MonoReflectionDynamicMethod): add
5600         a `MonoReflectionType *owner` field. The owner is used
5601         * reflection.c:
5602         (mono_reflection_create_dynamic_method): use the owner of the dynamic
5603         method as the class declaring the dynamic method.
5604         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
5605         dynamic method to the declaring type of the methodbuilder.
5606
5607 2007-09-11  Mark Probst  <mark.probst@gmail.com>
5608
5609         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
5610         rules for calling methods via reflection.
5611
5612 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
5613
5614         * reflection.c (resolve_object): Add support for MonoGenericClass. 
5615         Inflate MonoType's.
5616
5617 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
5618
5619         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
5620         provide a managed method that does fast allocations without needing
5621         a managed->unmanaged transition. Boehm GC implementation currently
5622         enabled for ptrfree objects on sane architectures.
5623
5624 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
5625
5626         * marshal.c, marshal.h: exported a couple of useful functions and
5627         added mono_mb_get_label () to easily handle backward branches.
5628
5629 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
5630
5631         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
5632
5633 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
5634
5635         * loader.c (find_method): Fixed the regression introduced while
5636         fixing bug #81466.
5637
5638 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
5639
5640         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
5641         well.
5642         
5643         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
5644         icall.c reflection.c: Pass a MonoGenericContext argument to 
5645         mono_lookup_dynamic_token ().
5646
5647         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
5648         #82744.
5649         
5650 2007-09-09  Robert Jordan  <robertj@gmx.net>
5651
5652         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
5653         for generic methods.
5654
5655         * object.c (mono_object_get_virtual_method): Handle generic methods.
5656         Fixes bug #78882.
5657
5658         Code is contributed under MIT/X11 license.
5659
5660 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
5661
5662         * image.c: fix locking in mono_image_load_file_for_image ().
5663
5664 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
5665
5666         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
5667         used only as a cache: added an icall to fill it.
5668
5669 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
5670
5671         * reflection.h: exposed mono_reflection_free_type_info
5672         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
5673         since mono_reflection_bind_generic_parameters makes a copy of it.
5674         * reflection.c (free_type_info): subinfos should be freed.
5675         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
5676         made non static.
5677         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
5678         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
5679         this fixes #82695 and #81726.
5680    
5681
5682 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
5683
5684         * process.h, process.c:  added support for user profile/info in
5685           ProcessStartInfo. For now only Windows works.
5686
5687 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
5688
5689         * metadata.c: consider the generic arguments when comparing
5690         signatures (bug #82614).
5691
5692 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
5693
5694         * cil-coff.h, image.c: updated assembly loader to cope with the
5695         PE32+ 64 bit file format.
5696
5697 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
5698
5699         * assembly.c, class.c, domain.c, loader.c: remove useless
5700         inclusion of cil-coff.h.
5701
5702 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
5703
5704         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
5705         if interface is marked with CoClassAttribute. 
5706    
5707         Code is contributed under MIT/X11 license.
5708
5709 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
5710
5711         * sgen-gc.c: ensure no object from the to space is copied again or finalized
5712         if it's seen twice in major collections.
5713
5714 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
5715
5716         * sgen-gc.c: big objects are not copied to the gray area, but they
5717         need to be considered for scanning, too, if they are brought alive
5718         by an object ready for finalizations or a survived one.
5719
5720 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5721
5722         * sgen-gc.c: properly account the number of disappearing links when
5723         they are nullified.
5724
5725 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
5726
5727         * sgen-gc.c: share the code to scan the registered roots between the
5728         different types of collections.
5729
5730 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
5731
5732         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
5733
5734 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
5735
5736         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
5737         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
5738
5739 2007-08-28  Mark Probst  <mark.probst@gmail.com>
5740
5741         * security-manager.c (mono_security_manager_get_methods):
5742         LinkDemandSecurityException now has 2 arguments instead of 3.
5743
5744 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
5745
5746         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
5747         platforms which need it.
5748
5749 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
5750
5751         * sgen-gc.c: unregister thread data structures with a pthread_key_t
5752         dtor.
5753
5754 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
5755
5756         * threads.c: free the thread static data on thread exit.
5757
5758 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
5759
5760         * class.c: walk the hierarchy to find the generic definition for
5761         a class (fixes runtime part of bug #82498).
5762
5763 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
5764
5765         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
5766         ...
5767
5768         * image.c (mono_image_close): Here. Hopefully fixes #82510.
5769
5770 2007-08-24  Mark Probst  <mark.probst@gmail.com>
5771
5772         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
5773
5774 2007-08-24  Robert Jordan  <robertj@gmx.net>
5775
5776         * appdomain.c: don't perform the ':'->';' substitution on Win32.
5777
5778 2007-08-24  Jb Evain  <jbevain@novell.com>
5779
5780         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
5781         for byref types.
5782
5783 2007-08-24  Mark Probst  <mark.probst@gmail.com>
5784
5785         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
5786         #82286.
5787
5788 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
5789
5790         * assembly.c: Fix a warning.
5791         
5792 2007-08-23  Marek Habersack  <mhabersack@novell.com>
5793
5794         * appdomain.c: parse the <runtime> section looking for the probing
5795         element with the 'privatePath' attribute, which sets additional
5796         directories in which the runtime should look for assemblies.
5797
5798 2007-08-23  Robert Jordan  <robertj@gmx.net>
5799
5800         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
5801         Fixes #82499.
5802
5803 2007-08-23  Martin Baulig  <martin@ximian.com>
5804
5805         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
5806         _mono_debug_init_corlib() and remove it from the header file.
5807
5808 2007-08-23  Martin Baulig  <martin@ximian.com>
5809
5810         * mono-debug-debugger.c
5811         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
5812         don't notify the debugger about it.
5813
5814         * mono-debug-debugger.h
5815         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
5816
5817 2007-08-23  Robert Jordan  <robertj@gmx.net>
5818
5819         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
5820         Code is contributed under MIT/X11 license.
5821
5822 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
5823
5824         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
5825
5826 2007-08-22  Martin Baulig  <martin@ximian.com>
5827
5828         * mono-debug.c: Store debugging info on a per-domain basis and
5829         free it on domain unload.  Add support for unloading symbol files.
5830
5831         * mono-debug.h
5832         (MonoDebugList): New typedef.
5833         (MonoSymbolTable):
5834         - add `data_tables and `type_table'.
5835         - replace 'symbol_files' and `num_symbol_files' with a
5836           `MonoDebugList *'.
5837         (mono_debug_data_table): Removed.
5838         (mono_debug_list_add): New public function.
5839         (mono_debug_list_remove): New public function.
5840         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
5841         (mono_debug_init_2_memory): Renamed into
5842         mono_debug_open_image_from_memory().
5843         (mono_debug_close_image): New public function.
5844         (mono_debug_domain_create): Likewise.
5845         (mono_debug_domain_unload): Likewise.
5846         (MONO_DEBUGGER_VERSION): Bump to 60.
5847
5848         * mono-debug-debugger.h
5849         (MonoDebuggerEvent):
5850         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
5851         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
5852         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
5853         - rename `THREAD_CREATED' and `THREAD_EXITED' into
5854           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
5855         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
5856           meaning.
5857         (mono_debugger_add_symbol_file): Removed.
5858         (mono_debugger_add_type): Removed.
5859         (mono_debugger_lookup_type): Removed.
5860         (mono_debugger_lookup_assembly): Removed.
5861
5862         * domain.c
5863         (mono_domain_create): Call mono_debug_domain_create().
5864         (mono_init_internal): Call mono_debug_init_corlib().
5865
5866         * assembly.c
5867         (mono_assembly_close): Call mono_debug_close_image().
5868
5869 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
5870
5871         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
5872         mmap call.
5873
5874 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
5875
5876         * sgen-gc.c: ensure section->pin_queue_end is initialized
5877         correctly when non pinning objects in the section have been found.
5878
5879 2007-08-22  Marek Habersack  <mhabersack@novell.com>
5880
5881         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
5882         containing a list of directories separated by ':'. MSDN docs say
5883         the directories should be separated with ';'. Part of a bugfix for
5884         bug #81446
5885
5886 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
5887
5888         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
5889         it should MonoType and not MonoClass.
5890
5891 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
5892
5893         * culture-info-table.h : regenerated.
5894
5895 2007-08-20  William Holmes  <billholmes54@gmail.com>
5896
5897         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
5898          to call ReplaceFile Kernel32 on windows or in io-layer.
5899         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
5900         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
5901          as an internal call.
5902
5903         Code is contributed under MIT/X11 license.
5904
5905 2007-08-20  Jb Evain  <jbevain@novell.com>
5906
5907         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
5908         and MONO_EXCEPTION_FIELD_ACCESS.
5909
5910         * debug-helpers.[c|h]: new mono_field_full_name function.
5911
5912 2007-08-20  Mark Probst  <mark.probst@gmail.com>
5913
5914         * class.c: Removed class_security_level() and moved it to
5915         security-core-clr.c.
5916
5917         * security-core-clr.c, security-core-clr.h: class_security_level()
5918         is now public and renamed to mono_security_core_clr_class_level().
5919         It also looks for security attributes in the classes a class is
5920         nested in.
5921
5922 2007-08-20  Mark Probst  <mark.probst@gmail.com>
5923
5924         * security-core-clr.c, security-core-clr.h: CoreCLR security
5925         utility functions.
5926
5927         * Makefile.am: Added security-core-clr.[ch].
5928
5929         * security-manager.c, security-manager.h: Functions and enum for
5930         setting and getting the security mode.
5931
5932         * class.c: CoreCLR security checks.
5933
5934 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
5935
5936         * icall-def.h, process.c, process.h: implemented icall to get
5937         user/system processor times.
5938
5939 2007-08-17  Mark Probst  <mark.probst@gmail.com>
5940
5941         * domain.c, threads.c, class-internals.h, domain-internals.h: New
5942         reader-lock-free jit_info_table.
5943
5944 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
5945
5946         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
5947
5948         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
5949
5950         * object-internals.h (MonoException): Add missing _data member.
5951
5952 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
5953
5954         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
5955         checking that only methods with matching qname or fqname are picked
5956         from implemented interfaces.
5957
5958 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
5959
5960         * verify.c (do_newarr):added, do type verification of
5961         newarr ops, push the right value on the eval stack.
5962         * verify.c (mono_method_verify): use do_newarr
5963
5964
5965 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
5966
5967         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
5968         factored the common code into get_boxable_mono_type, which
5969         is now using mono_type_get_full, this fixed byref related tests.
5970
5971 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
5972
5973         * class.c: added mono_type_get_full, this function has the same
5974         behavior of mono_class_get_full but the returned MonoType has
5975         all metadata of the associated token in case of a typespec token.
5976         * class.c: added mono_type_retrieve_from_typespec, used by 
5977         mono_type_get_full to retrieve the token type.
5978         * class.c (mono_class_create_from_typespec): changed to use
5979         mono_type_retrieve_from_typespec.
5980         * class.c (mono_ldtoken): changed to use mono_type_get_full
5981         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
5982         * class-internals.h: exported mono_type_get_full for internal use.
5983
5984 2007-08-16  Jb Evain  <jbevain@novell.com>
5985
5986         * domain.c (supported_runtimes): add entry for
5987         the 'moonlight' runtime version.
5988
5989 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
5990
5991         * verify.c (mono_method_verify): small typo sliped in.  
5992
5993 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
5994
5995         * verify.c (do_unbox_value): added, do type verification of
5996         unboxing ops
5997         * verify.c (mono_method_verify): use do_unbox_value
5998
5999
6000 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6001
6002         * verify.c (dump_stack_value): fixed typo, was printing string
6003         instead of object on stack.
6004         * verify.c (do_box_value): moved the byref check up as it leads
6005         to invalid code and should be done earlier.
6006         * verify.c: improved error messages for and ldobj
6007
6008 2007-08-15  William Holmes  <billholmes54@gmail.com>
6009
6010         * marshal.c (emit_marshal_custom): Omit the call to 
6011           marshal_native_to_managed when calling native to managed 
6012           and the argument is specified as an out argument.
6013
6014         Code is contributed under MIT/X11 license.
6015
6016 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6017
6018         * verify.c: fixed the type checks for generics, function pointers and vectors.
6019         Added type verification for ldobj and ldtoken. The verifier
6020         would segfault if header or signature of a method contained references
6021         to non-existant types.
6022
6023 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
6024
6025         * marshal.c (cominterop_get_ccw): Patch from
6026         Bill Holmes to no walk up interface hierarchy. 
6027         All parent methods should be present in the interface for COM.
6028    
6029         Code is contributed under MIT/X11 license.
6030
6031 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
6032
6033         * marshal.c (emit_marshal_com_interface): Patch from
6034         Bill Holmes to handle COM Interfaces as return values
6035         for native->managed calls.
6036    
6037         Code is contributed under MIT/X11 license.
6038
6039 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
6040
6041         * marshal.c (cominterop_get_idispatch_for_object): Implement
6042         for runtime callable wrappers.
6043    
6044         Code is contributed under MIT/X11 license.
6045
6046 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
6047
6048         * pedump.c (main): changed from mono_init to mono_init_from_assembly
6049         so 2.0 types are accessible
6050
6051
6052 2007-08-13  Miguel de Icaza  <miguel@novell.com>
6053
6054         * domain.c (mono_init_internal): Call mono_assembly_load_friends
6055         once we load mscorlib.   Due to the order in which we initialize,
6056         the mono_assembly_load_full routine that loads mscorlib did not
6057         load friends.   We now load it once we load the
6058         mono_defaults.internals_visible_class class. 
6059
6060         * assembly.c: Expose the mono_load_friend_assemblies method.
6061
6062 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
6063
6064         * verify.c: improved the handling of boxing, better
6065         type checking for unary ops and conversion. Fix bug
6066         regarding managed pointer compatibility checking
6067
6068 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
6069
6070         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
6071
6072         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
6073
6074 2007-08-09  Raja R Harinath  <rharinath@novell.com>
6075
6076         * reflection.c (dup_type): Remove.
6077         * class.c (dup_type): Remove.
6078         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
6079         instead of the dodgy 'dup_type'.
6080         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
6081         handle the case where 'dup_type' needed the second argument.
6082
6083 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
6084
6085         * domain.c: Fix a warning.
6086
6087 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
6088
6089         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
6090         checking that methods with the same fqname are not overridden
6091         with a method from an ancestor.
6092
6093 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
6094
6095         * threads.c (free_thread_static_data_helper): Avoid a crash if
6096         thread->static_data is not yet set.
6097
6098 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
6099
6100         * marshal.c: Use correct image when emitting
6101         native wrapper for COM calls.
6102    
6103         Code is contributed under MIT/X11 license.
6104
6105 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
6106
6107         * icall-def.h, security.c, security.h :
6108           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
6109
6110 2007-08-07  Martin Baulig  <martin@ximian.com>
6111
6112         * mono-debug-debugger.h
6113         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
6114
6115         * domain.c (mono_domain_free): Call
6116         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
6117
6118 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
6119
6120         * verify.c (check_underflow, check_overflow): error message now returns IL offset
6121         * verify.c (in_same_block): code should test if either offset is inside the clauses
6122         * verify.c (mono_method_verify): push the exception into the eval stack of exception
6123         and filter blocks
6124
6125 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
6126
6127         * image.c (mono_image_close): Fix a leak.
6128
6129         * object.c (mono_runtime_invoke_array): Avoid using alloca.
6130
6131         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
6132
6133 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
6134
6135         * domain.c, threads.c, threads-types.h: fix memory retention issue
6136         with thread static variables not being cleared on domain unload.
6137         Reuse thread static slots after domain unload.
6138
6139 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
6140
6141         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
6142         nullable type.
6143
6144         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
6145         now done in mono_runtime_invoke_array.
6146
6147         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
6148         receiver is a nullable type.
6149
6150         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
6151         generic parameter.
6152
6153 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
6154
6155         * marshal.c: Implement COM Objects as return type for 
6156         managed->unmanaged calls. Added Release calls for COM Object
6157         out/return values in managed->unmanaged calls.
6158
6159         Code is contributed under MIT/X11 license.
6160
6161 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
6162
6163         * threads.h, threads-type.h: move the hazard pointer declarations
6164         to the private header.
6165
6166 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
6167
6168         * file-io.c, appdomain.c: memory leak fixes.
6169
6170 2007-08-02  Dick Porter  <dick@ximian.com>
6171
6172         * socket-io.c
6173         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
6174         SO_REUSEADDR setting into io-layer/sockets.c.
6175
6176 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
6177
6178         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
6179         from Object when called on a generic parameter. Fixes #82211.
6180
6181 2007-08-01  Dick Porter  <dick@ximian.com>
6182
6183         * file-io.c (convert_share): Test FileShare values bit-by-bit.
6184         Fixes bug 79250 yet again.
6185
6186 2007-07-30  Martin Baulig  <martin@ximian.com>
6187
6188         Merged the `debugger-dublin' branch.
6189
6190         * mono-debug.h
6191         (MonoDebugDataTable): New typedef.
6192         (MonoDebugMethodAddressList): New typedef.
6193         (MonoDebugWrapperData): Removed.
6194         (MonoDebugSymbolTable): Removed `current_data_table',
6195         `current_data_table_size', `current_data_table_offset'.
6196         (MonoDebugDataItemType): Moved into mono-debug.c.
6197         (MonoDebugMethodJitInfo): Remove `address'.
6198         (mono_debug_data_table): New global variable.
6199         (mono_debug_lookup_method_addresses): New public function.
6200         (mono_debug_find_method): Take a `MonoMethod *', not a
6201         `MonoDebugMethodInfo *'.
6202
6203         * mono-debug.c: Drop support for the old symbol tables.
6204
6205 2007-06-28  Martin Baulig  <martin@ximian.com>
6206
6207         * mono-debug.c (mono_debug_debugger_version): New public variable.
6208
6209 2007-07-31  William Holmes  <billholmes54@gmail.com>
6210
6211         * metadata.c Changed mono_type_create_from_typespec to not insert
6212           the type into the hash map until after
6213           do_mono_metadata_parse_type has completed.
6214         Fixes Bug #82194
6215         Code is contributed under MIT/X11 license.
6216
6217 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
6218
6219         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
6220         generic parameter. Fixes #82211.
6221
6222 2007-07-27  Jb Evain  <jbevain@novell.com>
6223
6224         * pedump.c (dump_metadata, dump_metadata_header): dump
6225         versions contained in the metadata header.
6226
6227 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
6228
6229         * threads.c: register small_id_table with the GC.
6230
6231 2007-07-27  Mark Probst  <mark.probst@gmail.com>
6232
6233         * threads.c, threads.h, class-internals.h, object-internals.h:
6234         Hazard pointers, to be used by lock-free parallel algorithms.
6235
6236 2007-07-26  Dick Porter  <dick@ximian.com>
6237
6238         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
6239         routine on non-windows platforms, as I've not managed to think of
6240         a non-kludgy way of doing this.  Finishes off bug 78739.
6241
6242 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
6243
6244         * object.c: properly setup interface_bitmap in proxy vtables.
6245
6246 2007-07-25  Marek Habersack  <mhabersack@novell.com>
6247
6248         * appdomain.c (get_shadow_assembly_location): do not use TickCount
6249         to create unique shadow copy target directories, use the domain's
6250         serial number instead. Each domain gets a unique target directory
6251         that way.
6252
6253         * domain.c (mono_domain_create): added code to increment domain
6254         shadow copy serial number and cache the value in the current
6255         domain structure.
6256
6257         * domain-internals.h (struct _MonoDomain): added a new field -
6258         shadow_serial to hold the serial number used in generation of
6259         shadow-copy directories. This is to make sure that the directory
6260         name is unique for each and every domain created. We avoid a race
6261         condition with overriding assemblies already in use by other app
6262         domains.
6263
6264 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
6265
6266         * class.c (mono_bounded_array_class_get): fixed memory leak when 
6267         binding generic parameters.
6268
6269 2007-07-24  Raja R Harinath  <rharinath@novell.com>
6270
6271         * metadata.c (do_mono_metadata_parse_generic_class): Use
6272         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
6273         error.
6274
6275 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
6276
6277         * loader.c, class-internals.h, reflection.c: removed the per-method
6278         generics hashtable: we use the global one through the call of
6279         mono_class_inflate_generic_method ().
6280
6281 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
6282
6283         * class.c, metadata.c, class-internals.h: introduce yet another
6284         generics global cache for inflated methods (fixes 98% of the perf
6285         issue in bug #81806).
6286
6287 2007-07-23  Raja R Harinath  <rharinath@novell.com>
6288
6289         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
6290         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
6291         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
6292         return a MonoGenericInst containing (a copy) of those types.
6293         (mono_metadata_inflate_generic_inst): Update to changes.
6294         (mono_metadata_parse_generic_inst): Likewise.
6295         (mono_get_shared_generic_inst): Likewise.
6296         * reflection.c (mono_class_bind_generic_parameters): Likewise.
6297         (mono_reflection_bind_generic_method_parameters): Likewise.
6298         * metadata-internals.h: Likewise.
6299         * icall.c (free_generic_context): Kill.
6300         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
6301
6302         * reflection.c (reflection_methodbuilder_to_mono_method): Use
6303         mono_metadata_type_dup.
6304         * marshal.c (mono_mb_create_method): Likewise.
6305
6306         * metadata.c (mono_metadata_type_dup): Rename from
6307         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
6308         MonoImage.  Handle a few more cases, esp. when no mempool is given.
6309         * marshal.c, metadata-internals.h: Update to changes.
6310
6311 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6312
6313         * class.c: fixed a small leak for array classes and removed warning.
6314
6315 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
6316
6317         * loader.c (mono_method_get_param_token): Make this work on generic methods.
6318         Return 0x8000000 for return parameters. Fixes #82161.
6319
6320 2007-07-21  Marek Habersack  <grendello@gmail.com>
6321
6322         * appdomain.c (get_shadow_assembly_location): append the current
6323         ticks value to the path. Avoids overwriting the same assemblies by
6324         several threads at the same time.
6325
6326 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
6327         and Raja R Harinath  <rharinath@novell.com>
6328
6329         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
6330         Simplify slightly.
6331         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
6332         property for testing if a method is a generic method definition.
6333
6334 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
6335
6336         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
6337
6338 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6339
6340         * verify.c: used function from private branch, reverted to the one in class.h 
6341
6342 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6343
6344         * verify.c: a typo slipped in and the code wont compile
6345
6346 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6347
6348         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
6349         disabled box instruction as it is doing the wrong thing
6350         improved stack dump messages, now it is easier to debug type related issues
6351
6352
6353 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
6354
6355         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
6356
6357 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6358
6359         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
6360         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
6361         grouped with class and valuetype. This change will simply 
6362         the code as it should be handled just like unmanaged pointers.
6363
6364 2007-07-19  Mark Probst  <mark.probst@gmail.com>
6365
6366         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
6367
6368 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6369
6370         * verify.c: several stack merge issues fixed, reference comparisons now
6371         check the type size. strict type check now works correctly.
6372         added more uses of IS_MANAGED_POINTER macro.
6373         fixed issues pointed by running the test suite against .net.
6374         
6375
6376 2007-07-19  Mark Probst  <mark.probst@gmail.com>
6377
6378         * class.c, loader.c, class-internals.h: Removed the
6379         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
6380         defines.
6381
6382         * icall.c: Better error checking in some internal reflection
6383         methods.
6384
6385 2007-07-18  William Holmes  <billholmes54@gmail.com>
6386
6387         * filewatcher.c : removed unused variable 'filename' in 
6388           ves_icall_System_IO_FSW_SupportsFSW
6389
6390 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
6391
6392         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
6393         obsolete, removed.
6394
6395 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
6396
6397         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
6398         
6399         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
6400
6401 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
6402
6403         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
6404         Implement generics support.
6405         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
6406
6407         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
6408         type_args and method_args arguments.
6409         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
6410         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
6411         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
6412
6413 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
6414
6415         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
6416           It adds a rootimage parameter to mono_reflection_get_type_internal,
6417           adds new function mono_reflection_get_type_with_rootimage and use
6418           the rootimage to resolve the types instead of the current image
6419
6420 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6421
6422         * culture-info-table.h: Forgot to update after r78304.
6423
6424 2007-07-13  Raja R Harinath  <rharinath@novell.com>
6425
6426         * class.c (mono_class_is_open_constructed_type)
6427         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
6428
6429 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
6430
6431         * class.c (mono_bounded_array_class_get):  method fails if used with
6432         an incomplete TypeBuilder enum (no basetype field), fixed it by 
6433         avoiding calculating the size for such array as it cannot be instantiated.
6434         Fix bug #82015
6435
6436 2007-07-12  Raja R Harinath  <rharinath@novell.com>
6437
6438         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
6439         field.
6440         * metadata.c, reflection.c: Update to changes.
6441
6442 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
6443
6444         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
6445         mono_class_is_valid_enum, they are used to valide a enum when loading.
6446         * reflection.c: used new functions to throw TypeLoadException when and
6447         invalid enum is build with TypeBuilder. Fixes #82018
6448   
6449 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6450
6451         * object.c: forgot commit of mono_class_setup_methods () to access
6452         iface->methods.
6453         * object-internals.h: added a few more handy fields to
6454         MonoIMTCheckItem.
6455
6456 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
6457
6458         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
6459         iface->methods.
6460
6461 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
6462
6463         * class-internals.h, object-internals.h, object.c: IMT-based
6464         interface invocation core from Massimiliano Mantione
6465         (massi@ximian.com) with a reworked arch-specific interface,
6466         bsearch implementation and a few bugfixes and memory savings by me.
6467
6468 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
6469
6470         * class.c (mono_class_create_from_typedef): mono would segfault if 
6471         an enum did not have a __value field. It now throws a TypeLoadException
6472         for such cases. Fix bug #82022
6473
6474 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
6475
6476         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
6477
6478 2007-07-09  Mark Probst  <mark.probst@gmail.com>
6479
6480         * class.c (mono_class_init): If a class is already inited but has
6481         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
6482
6483 2007-07-09  Mark Probst  <mark.probst@gmail.com>
6484
6485         * class.c: Properly handle the case of an unimplemented interface
6486         method.  Fixes: 81673.
6487
6488 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
6489
6490         * class-internals.h, object.c: cleanup patch from massi: use
6491         MonoVTable->interface_bitmap since the vtable interfaces offset array
6492         is going away.
6493
6494 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
6495
6496         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
6497         GetMDStreamVersion icall instead.
6498
6499 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
6500
6501         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
6502         not use mono_dl_build_path() with a full library name: makes
6503         fallbacks to libgaim and libfam work.
6504
6505 2007-07-06  William Holmes  <billholmes54@gmail.com>
6506
6507         * assembly.c: Added a continue statement in probe_for_partial_name when
6508          parse_assembly_directory_name fails.  Fixes : 82002
6509
6510 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
6511
6512         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
6513         and added a verification  for TYPEDBYREF.
6514         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
6515         make native int interchangeable with int32 and some small cleanup and formating.
6516         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
6517         handle byref of byref.
6518         * verify.c (push_local): handle byref of byref.
6519         * verify.c (do_binop): invalid mix of values is unverifiable
6520         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
6521         added visibility checks
6522         * verify.c (field related method): added visibility checks
6523         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
6524
6525 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
6526
6527         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
6528         string.
6529
6530 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
6531
6532         * profiler.c (mono_profiler_load): Fix an off-by-one error.
6533
6534         * marshal.c (emit_marshal_string): When returning a string from managed code,
6535         allways make a copy even for unicode strings. Fixes #81990.
6536
6537 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
6538
6539         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
6540         of byref generic inst types (bug #81997).
6541
6542 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
6543
6544         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
6545         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
6546
6547 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
6548
6549         * marshal.c (emit_marshal_string): Add support for unicode strings in
6550         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
6551
6552 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
6553
6554         * verify.c: field load/store are now verified, missing only access checks now
6555
6556 2007-06-28  Martin Baulig  <martin@ximian.com>
6557
6558         * mono-debug.c (mono_debug_debugger_version): New public variable.
6559
6560 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
6561
6562         * locales.c: When constructing DateTimeFormat or NumberFormat for
6563         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
6564         MonoCultureInfo contructed from the current locale is always
6565         read-only and has UseUserOverride set to true. All MonoCultureInfo
6566         instances returned for GetCultures have both IsReadOnly and
6567         UseUserOverride set to true. Fixes part of bug #81930.
6568
6569 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
6570
6571        * icall-def.h: Update System.__ComObject icalls
6572        * marshal.c: Avoid managed transition (and object creation)
6573        when looking up COM interface in RCW.
6574        * marshal.h: Ditto.
6575        
6576        Code is contributed under MIT/X11 license.
6577
6578 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
6579
6580         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
6581         to avoid crashes during assembly unloading.
6582
6583 2007-06-22  Raja R Harinath  <rharinath@novell.com>
6584
6585         Fix MethodInfo.IsGenericMethodDefinition
6586         * reflection.c (mono_reflection_bind_generic_method_parameters):
6587         Rearrange code to ensure we always uses a generic method definition.
6588         * class.c (mono_class_inflate_generic_method_full): Set
6589         'generic_container' field only for generic method definitions.
6590         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
6591         Use presense of 'generic_container' field as indication of being a
6592         generic method definition.
6593
6594 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
6595
6596         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6597
6598         * object-internals.h: Reflect changes in the layout of the managed Delegate
6599         class.
6600         
6601         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
6602         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
6603         runtime memory used by the dynamic method. Fixes #77146.
6604
6605 2007-06-21  Dick Porter  <dick@ximian.com>
6606
6607         * file-io.h: 
6608         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
6609         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
6610         81767.
6611
6612 2007-06-21  Raja R Harinath  <rharinath@novell.com>
6613
6614         * reflection.c (method_encode_methodspec): Add a tripwire.
6615         * class.c (inflate_generic_type): The fully open generic type is
6616         not the same as the generic type definition.
6617
6618 2007-06-21  Martin Baulig  <martin@ximian.com>
6619
6620         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
6621
6622         * mono-debug-debugger.h
6623         (MonoDebuggerBreakpointInfo): Removed.
6624         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
6625         (mono_debugger_remove_breakpoint): Likewise.
6626         (mono_debugger_breakpoint_callback): Likewise.
6627         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
6628
6629 2007-06-21  Raja R Harinath  <rharinath@novell.com>
6630
6631         * metadata.c (mono_metadata_lookup_generic_class): The fully open
6632         generic type is not the same as the generic type definition.
6633         * class.c (mono_generic_class_get_class): Likewise.
6634
6635 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
6636
6637         * icall.c: The second argument to 
6638         System.Reflection.MethodBase.GetMethodFromHandleInternalType
6639         is a MonoType not a MonoClass.
6640
6641 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
6642
6643         * verify.c: support for function pointers in the verifier
6644
6645 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
6646
6647         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
6648
6649 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
6650
6651         * assembly.c: removed Mono.Data.SqliteClient from the list of
6652         forward-compatible assemblies as it breaks the ABI (bug #81899).
6653
6654 2007-06-19  Raja R Harinath  <rharinath@novell.com>
6655
6656         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
6657         lookup/update with the loader lock.
6658         * reflection.c (mono_class_bind_generic_parameters): No need to
6659         protect mono_metadata_lookup_* with the loader lock.
6660         * class.c (inflate_generic_type): Likewise.
6661         
6662         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
6663         on a generic instantiated type.
6664
6665 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
6666
6667         *verify.c: produce meanfull error messages on verification error
6668         *verify.c: fixed some cases of verification errors reported as validation errors
6669         *pedump.c: fixed the error name array, now it shows validation errors properly
6670         *verify.h: fixed the contant that should be used for verification errors
6671
6672 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
6673
6674         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
6675         for bug #77596, 81858 and 80743 (generics data structures on domain
6676         unload).
6677
6678 2007-06-15  Raja R Harinath  <rharinath@novell.com>
6679
6680         Avoid allocating 'MonoGenericContext' on the heap.
6681         * class-internals (_MonoMethodInflated::context): Make field
6682         inline, not a pointer.
6683         * loader.c (method_from_methodspec): Allocate 'new_context' on the
6684         stack.  Use the context embedded within the inflated method as the
6685         hash key, rather than 'new_context'.
6686         * class.c (inflate_generic_context): Simplify.  Return a struct
6687         rather than allocating on the heap.
6688         (mono_class_inflate_generic_method_full): Update to changes.  Now,
6689         doesn't salt away a copy of the context -- simplifying the
6690         lifetime rules of a 'MonoGenericContext *'.
6691         (mono_method_get_context): Return pointer to embedded context.
6692         (setup_generic_array_ifaces): Allocate temporary context on stack.
6693         * reflection.c (inflate_mono_method): Likewise.
6694         (mono_reflection_bind_generic_method_parameters): Likewise.
6695         Use the context embedded within the inflated method as the hash key.
6696
6697         Avoid a source of allocation of 'MonoGenericContext'.
6698         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
6699         and 'cached_context' fields into embedded 'MonoGenericContext' field.
6700         * class.c: Update to changes.
6701         (mono_generic_class_get_context): Simplify drastically.  Now just
6702         returns a pointer to the field.
6703         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
6704         argument as a const pointer.
6705         (mono_metadata_generic_context_equal): Likewise.
6706         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
6707         Update to changes.
6708
6709 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
6710
6711         * verify.c improved the handling of brtrue/brfalse, factored out common code
6712
6713 2007-06-14  Raja R Harinath  <rharinath@novell.com>
6714
6715         Kill MonoGenericMethod.
6716         * class-internals.h (MonoGenericContext::method_inst): Rename from
6717         'gmethod' and convert to a MonoGenericInst.
6718         (MonoGenericMethod): Remove.
6719         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
6720         * loader.c (method_from_methodspec): Update to changes.  Use a
6721         MonoGenericContext as the key to the hashtable.
6722         * metadata.c (mono_metadata_generic_context_equal): Rename from 
6723         'mono_metadata_generic_method_equal' and take MonoGenericContext.
6724         (mono_metadata_generic_context_hash): Likewise from
6725         'mono_metadata_generic_method_hash'.  Change hash function.
6726         (mono_metadata_load_generic_params): Update to changes.
6727         (mono_get_shared_generic_method): Remove.
6728         * metadata-internals.h (mono_get_shared_generic_method): Remove.
6729         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
6730         (inflate_generic_context): Likewise.
6731         (mono_class_inflate_generic_method_full): Likewise.
6732         (setup_generic_array_ifaces): Likewise.
6733         (mono_class_create_from_typespec): Likewise.
6734         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
6735         (method_encode_methodspec): Update callsite.
6736         (reflection_methodbuilder_to_mono_method): Update to changes.
6737         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
6738         MonoGenericContext as the key to the hashtable.
6739         (inflate_mono_method): Update to changes.
6740
6741         * class-internals.h (MonoGenericMethod::container): Remove.
6742         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
6743
6744 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
6745
6746         * profiler-private.h, profiler.c, profiler.h: added API to profile
6747         exception events.
6748
6749 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
6750
6751         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
6752
6753 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
6754
6755         * verify.c: method invocation is now validated, now we verify parameter types on stack.
6756         Fixed overflow and underflow not aborting the verification process.
6757
6758 2007-06-13  Mark Probst  <mark.probst@gmail.com>
6759
6760         * class-internals.h (MonoStats): Added stats entries for dynamic
6761         code allocations.
6762
6763 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
6764
6765         * loader.c (mono_free_method): Free header->locals and header->clauses.
6766
6767         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
6768         dynamic case.
6769
6770         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
6771
6772         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
6773
6774 2007-06-12  Raja R Harinath  <rharinath@novell.com>
6775
6776         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
6777         the tables.
6778
6779 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
6780
6781         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
6782
6783 2007-06-11  Raja R Harinath  <harinath@gmail.com>
6784
6785         MonoGenericMethod on a diet
6786         * class-internals.h (_MonoMethodInflated::reflection_info): Move
6787         here ...
6788         (_MonoGenericMethod::reflection_info): ... from here.
6789         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
6790         Update to changes.
6791         * reflection.c (inflate_mono_method): Likewise.
6792         (mono_reflection_bind_generic_method_parameters): Likewise.
6793
6794 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
6795
6796         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
6797         *verify.c: factored long ldarg forms to share code with short forms
6798
6799 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
6800
6801         *verify.c: fixed code formating factored some duplicate code
6802         into a new function
6803
6804         *verify.h: fixed binary incompatibility introduced earlier
6805
6806         *pedump.c: fixed formating
6807
6808 2007-06-11  Raja R Harinath  <harinath@gmail.com>
6809
6810         Fix assertion when disassembling Mono.C5.dll
6811         * loader.c (method_from_methodspec): Avoid inflating a method
6812         twice with the same context.  If the methodref is inflated, use
6813         the declaring method instead.
6814
6815         * class.c (mono_class_from_generic_parameter): Fix case similar to
6816         bug #81830 handled below, but for method containers.
6817
6818 2007-06-10  Raja R Harinath  <harinath@gmail.com>
6819
6820         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
6821         get_shared_generic_class.  Directly inflate the instance.
6822         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
6823         (inflate_generic_class): Delete.
6824         (get_shared_generic_class): Delete.  Move setting of
6825         'cached_class' and 'cached_context' ...
6826         * metadata.c (mono_metadata_lookup_generic_class): ... here.
6827
6828         * metadata.c (mono_metadata_lookup_generic_class): Change
6829         signature to take the components of a MonoGenericClass rather than
6830         an allocated MonoGenericClass.  Change semantics to be intern-like.
6831         * reflection.c (mono_class_bind_generic_parameters): Update to
6832         changes.  Make locking region tighter.
6833         * class.c (inflate_generic_class): Update to changes.
6834         (get_shared_generic_class): Likewise.
6835         * metadata-internals.h: Likewise.
6836
6837         * reflection.c (mono_class_bind_generic_parameters): Take and
6838         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
6839         (mono_reflection_bind_generic_parameters): Use
6840         'mono_class_bind_generic_parameters' rather than duplicate the code.
6841         * class.c (mono_bounded_array_class_get): Update to changes.
6842         * object-internals.h: Likewise.
6843
6844         * reflection.c (mono_class_bind_generic_parameters): Only support
6845         parameterizing generic type definitions.  Remove support for other
6846         open types.
6847
6848 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
6849
6850         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
6851
6852         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
6853         in the dynamic case.
6854
6855 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
6856
6857         * threads.c: When cleaning up thread, reset the Background bit.
6858         Fixes bug #81720.
6859
6860 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
6861
6862        * metadata.c: Move variable declarations to top of scope.
6863        * verify.c: Move variable declarations to top of scope.
6864
6865        Code is contributed under MIT/X11 license.
6866
6867 2007-06-08  Raja R Harinath  <rharinath@novell.com>
6868
6869         * reflection.c (mono_class_bind_generic_parameters): Replace
6870         open-coded loop with mono_metadata_inflate_generic_inst.
6871
6872         * class.c (get_shared_generic_class): Don't call
6873         mono_get_shared_generic_inst.  Use the container's own
6874         'class_inst'.
6875
6876         * metadata.c (mono_metadata_load_generic_params): Move
6877         initialization of 'context' field here from ...
6878         * class.c (mono_class_create_from_typedef): ... here, and ...
6879         * loader.c (mono_get_method_from_token): ... here.
6880
6881         * class.c (get_shared_generic_class): Rename from
6882         mono_get_shared_generic_class and make static.
6883         (mono_get_shared_generic_inst): Move to metadata.c.
6884         * loader.c (mono_get_shared_generic_method): Likewise.
6885         * class-internals.h, metadata-internals.h: Update to changes.
6886
6887         Fix #81830
6888         * class.c (mono_class_from_generic_parameter): Don't assume a
6889         generic container owner exists.  Generic containers from monodis
6890         don't have any.
6891
6892 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
6893
6894         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
6895         * verify.h: new typedefs to returns the non-verifiable status
6896         * verify.c: initial implementation of generics, stack merging and object compatibility check
6897
6898 2007-06-06  Mark Probst  <mark.probst@gmail.com>
6899
6900         * class.c, image.c, class-internals.h (MonoImage): class_cache is
6901         a MonoInternalHashTable again (fixed bug in internal hash table
6902         code).
6903
6904 2007-06-06  Mark Probst  <mark.probst@gmail.com>
6905
6906         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
6907         MonoInternalHashTable again (fixed bug in internal hash table
6908         code).
6909
6910 2007-06-06  Mark Probst  <mark.probst@gmail.com>
6911
6912         * class.c, image.c, class-internals.h, domain.c,
6913         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
6914         changes.  Have to figure out what makes them break the SWF
6915         regression.
6916
6917 2007-06-04  Mark Probst  <mark.probst@gmail.com>
6918
6919         * class.c, image.c, class-internals.h (MonoImage): class_cache is
6920         a MonoInternalHashTable now.
6921
6922 2007-06-04  Mark Probst  <mark.probst@gmail.com>
6923
6924         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
6925         MonoInternalHashTable now.
6926
6927 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
6928
6929         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
6930         invoke_impl code.
6931
6932         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
6933
6934         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
6935         dependent trampoline.
6936
6937         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6938
6939         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
6940
6941 2007-05-29  Robert Jordan  <robertj@gmx.net>
6942
6943         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
6944
6945 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
6946
6947         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
6948
6949 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
6950
6951        * marshal.c: Fix interface lookup loops for
6952        cominterop_get_com_slot_for_method and 
6953        cominterop_get_method_interface. Only need to lookup
6954        if type is a class, else use interface type method is on.
6955
6956        Code is contributed under MIT/X11 license.
6957
6958 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
6959
6960         * reflection.c: HasSecurity can be present even if no specially 
6961         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
6962         SecurityAttribute). Fix CAS regression tests on buildbot.
6963
6964 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
6965
6966        * appdomain.c: Add configure checks for header files.
6967        * image.c: Add configure checks for header files.
6968        * file-io.c: Add configure checks for header files.
6969        * debug-mono-symfile.c: Add configure checks for header files.
6970        * threadpool.c: Add configure checks for header files.
6971        * console-io.c: Add configure checks for header files.
6972        * profiler.c: Add configure checks for header files.
6973        * rawbuffer.c: Add configure checks for header files.
6974        * icall.c: Add configure checks for header files.
6975        * rand.c: Add configure checks for header files.
6976        * socket-io.c: Add configure checks for header files.
6977
6978        Code is contributed under MIT/X11 license.
6979
6980 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
6981
6982         * reflection.c (mono_custom_attrs_from_builders): Remove the 
6983         assertion as it breaks the build.
6984         
6985         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
6986
6987         * reflection.c (lookup_custom_attr): Make a copy here too.
6988
6989         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
6990         dynamic images.
6991
6992         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
6993         images.
6994
6995         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
6996         info.
6997
6998 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
6999
7000         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
7001         (load_cattr_value): Ditto.
7002
7003 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
7004
7005         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
7006
7007 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
7008
7009         * threads.c: In "start_wrapper", set apartment_state to MTA if
7010         apartment_state is Unknown and we're running on 2.0 profile or
7011         higher.
7012         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
7013         to main method, then set apartment_state to Unknown on 1.0 profile,
7014         and MTA on 2.0 profile.
7015
7016 2007-05-16  Jb Evain  <jb@nurv.fr>
7017
7018         * class-internals.h (MonoDefaults): Add an attribute_class and
7019           customattribute_data_class.
7020         * domain.c (mono_init_internal): Populate them.
7021         * reflection.c: Use them to remove duplicates. Make a vew
7022         MonoClass variables `static'.
7023
7024 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
7025
7026         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
7027         step in implementing IMT, so that all isinst checks now can go
7028         through the bitmap.
7029         This was needed because vtables for TransparentProxy need to look
7030         like the vtable of the "target" class, so they need to point to
7031         its interface bitmap directly.
7032
7033         * object.c: inside "mono_class_create_runtime_vtable" and
7034         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
7035
7036 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7037
7038         * object-internals.h
7039           culture-info.h : added territory field in MonoCulture and
7040           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
7041         * locales.c : fill territory field above too.
7042         * culture-info-table.h : regenerated.
7043
7044 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
7045
7046         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
7047         Fixes #81599.
7048
7049 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
7050
7051         * object.c: Always initialize apartment, even if 
7052         there is no custom attributes on entry point.
7053         
7054         Code is contributed under MIT/X11 license.
7055
7056 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
7057
7058         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
7059         * metadata.c: If no encoding is set, check for unicode
7060         on class.
7061         
7062         Code is contributed under MIT/X11 license.
7063
7064 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
7065
7066         * threads.c: Handle if mono_thread_current returns NULL 
7067         
7068         Code is contributed under MIT/X11 license.
7069
7070 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
7071
7072         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
7073         in start_wrapper. Added mono_thread_init_apartment_state and
7074         mono_thread_cleanup_apartment_state.
7075         * object.c: Initialize thread apartment state on main thread
7076         by checking for STAThreadAttribute on entry point.
7077         * object-internals.h: Add apartment_state field to MonoThread.
7078         * threads-types.h: Add unmanaged definition of 
7079         System.Threading.ApartmentState, MonoThreadApartmentState.
7080         
7081         Code is contributed under MIT/X11 license.
7082         
7083 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
7084
7085         * class.c: Fix windows build.
7086         * class-internals.h: Fix windows build.
7087         
7088         Code is contributed under MIT/X11 license.
7089
7090 2007-05-08  Robert Jordan  <robertj@gmx.net>
7091
7092         * process.c (CreateProcess_internal):
7093         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
7094         .CreateNoWindow was specified. Fixes #81496.
7095
7096 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
7097
7098         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
7099         step in implementing IMT, replaced it with two compact arrays
7100         (interfaces_packed and interface_offsets_packed) and a bitmap that
7101         is used for isinst checks (interface_bitmap).
7102
7103         * class.c: (compare_interface_ids): compare function to pass to
7104         bsearch when looking for an interface with a given id.
7105         (mono_class_interface_offset): reimplemented using bsearch on
7106         interfaces_packed, getting the offset from interface_offsets_packed.
7107         (print_implemented_interfaces): utility debugging function.
7108         (setup_interface_offsets): reworked to initialize interfaces_packed,
7109         interface_offsets_packed and interface_bitmap.
7110
7111         * object.c: replaced all accesses to "MonoClass.interface_offsets"
7112         with uses of interfaces_packed and interface_offsets_packed.
7113
7114 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
7115
7116         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
7117         mono_class_interface_offset prototype to wrap all accesses to
7118         "MonoClass.interface_offsets".
7119
7120         * class.c: Implemented mono_class_interface_offset, and wrapped all
7121         accesses to "MonoClass.interface_offsets".
7122
7123         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
7124         "MonoClass.interface_offsets".
7125
7126 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
7127
7128         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
7129         GetMethodFromHandle overloads (bug #78637).
7130
7131 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
7132
7133         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
7134         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
7135
7136 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
7137
7138         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
7139         #81498.
7140
7141         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
7142         gracefully.
7143         (mono_custom_attrs_from_index): Ditto.
7144
7145         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
7146         Fixes #81501.
7147
7148 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
7149
7150         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
7151         is now allocated from a mempool.
7152
7153 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
7154
7155         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
7156         caller holds threads_lock, leading to deadlocks. Fixes #81476.
7157
7158 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
7159
7160         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
7161         mono_loader_clear_error () too late. Fixes #81463.
7162
7163 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
7164
7165         * culture-info-table.h : regenerated.
7166
7167 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
7168
7169         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
7170         is missing.
7171
7172 2007-04-25  Dick Porter  <dick@ximian.com>
7173
7174         * Makefile.am: Put the mingw enforced-optimisation back into the
7175         PLATFORM_WIN32 section.
7176
7177 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
7178
7179         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
7180         patch.
7181
7182         * image.c (mono_image_load_module): New API function to load a module reference.
7183
7184         * image.c (load_modules): Load modules lazily. Fixes #80812.
7185
7186         * class.c (mono_class_from_typeref): Use mono_image_load_module.
7187         
7188         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
7189
7190         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
7191         to mono_image_load_module_dynamic.
7192
7193 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
7194
7195         * marshal.c: Fix calling convention for CCW on non-windows
7196         platforms. STDCALL on windows, CDECL everywhere else to work 
7197         with XPCOM and MainWin COM.
7198         
7199         Code is contributed under MIT/X11 license.
7200
7201 2007-04-23  Martin Baulig  <martin@ximian.com>
7202
7203         Fix #80969.
7204
7205         * loader.c
7206         (method_from_memberref): Added `gboolean *used_context' argument.
7207         (mono_get_method_from_token): Likewise.
7208         (mono_get_method_full): Don't insert the method in the cache when
7209         `used_context' is true.
7210
7211 2007-04-23  Raja R Harinath  <rharinath@novell.com>
7212
7213         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
7214
7215         * reflection.c (mono_reflection_bind_generic_parameters): Don't
7216         create new MonoTypes for returned types.
7217         * class.c (mono_generic_class_get_class): Export mono-internal.
7218         * class-internals.h: Update to changes.
7219
7220 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
7221
7222         * threadpool.c, threadpool.h, icall-def.h: patch from
7223         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
7224
7225 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
7226
7227         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
7228         
7229         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
7230
7231         * threads.c (mono_thread_get_stack_bounds): New helper function.
7232
7233         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
7234         Correctly compute stack bounds when attaching. Fixes #81394.
7235
7236 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
7237
7238         * reflection.c: fix handling of doubles in custom attributes
7239         for the arm-fpa format (bug #81368).
7240
7241 2007-04-18  Raja R Harinath  <rharinath@novell.com>
7242
7243         * reflection.c (assembly_add_win32_resources): Mildly relax an
7244         bounds check to let the end pointer point just past the end of the
7245         allocated buffer.  (may fix #81384)
7246
7247 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
7248
7249         * culture-info-table.h : regenerated.
7250
7251 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
7252
7253         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
7254         the thread is aborted early.
7255
7256 2007-04-05  Dick Porter  <dick@ximian.com>
7257
7258         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
7259         FindFirstFile()/FindNextFile() to find entries.  This lets the
7260         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
7261         81038.
7262
7263         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
7264         the parameters of
7265         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
7266
7267 2007-04-04  Martin Baulig  <martin@ximian.com>
7268
7269         * debug-helpers.c
7270         (mono_method_desc_full_match): Add support for nested classes.
7271
7272 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
7273
7274         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
7275
7276 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
7277
7278         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
7279         waiting for too many threads.
7280
7281 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
7282
7283         * environment.c: Fix return value check on uname so we can get the 
7284         executing version on Solaris operating systems.
7285
7286 2007-03-28  Jb Evain  <jbevain@gmail.com>
7287
7288         * class.c (mono_type_get_name_recurse): Complete the
7289         fix for the creation of assembly qualified names for
7290         pointer types. Fixes #81208.
7291
7292 2007-03-27  Dick Porter  <dick@ximian.com>
7293
7294         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
7295         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
7296         changed.
7297
7298         * threads.c
7299         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
7300         the value of ReleaseMutex().
7301
7302 2007-03-27  Dick Porter  <dick@ximian.com>
7303
7304         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
7305         in little-endian order, not network endian, so must be converted
7306         to host endian here.  Fixes bug 80593.
7307
7308 2007-03-22  Jb Evain  <jbevain@gmail.com>
7309
7310         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
7311         qualified names for pointer types. Fixes #81208.
7312
7313 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
7314
7315         * marshal.c: Add support for PreserveSigAttribute. 
7316         
7317         Code is contributed under MIT/X11 license.
7318
7319 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
7320
7321         * process.c: Fix endianness issues. Fixes #81126.
7322
7323         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
7324         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
7325
7326         * image.c (mono_image_lookup_resource): Make this work on big-endian
7327         machines.Change API contract so the caller needs to free the return value.
7328         
7329         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
7330         API change.
7331         
7332 2007-03-14  Martin Baulig  <martin@ximian.com>
7333
7334         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
7335         mono_type_get_desc() as well.
7336
7337 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
7338
7339         * icall.c:  Fix environ access in VS.  
7340         
7341 2007-03-13  Alp Toker  <alp@atoker.com>
7342
7343         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
7344         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
7345         #63841.
7346
7347 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
7348
7349         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
7350         circular references among dynamic methods. Fixes #81091.
7351
7352         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
7353
7354 2007-03-09  Martin Baulig  <martin@ximian.com>
7355
7356         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
7357
7358 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
7359
7360         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
7361         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
7362         
7363         Code is contributed under MIT/X11 license.
7364         
7365 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
7366
7367         * loader.c: Reapply patch for bug #79424.
7368
7369 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
7370
7371         * metadata.c (mono_type_to_unmanaged): Only convert object to
7372         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
7373
7374 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
7375
7376         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
7377         (and incorrectly set) is_reference field from MonoGenericInst.
7378
7379 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
7380
7381         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
7382         a little earlier.
7383
7384         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
7385
7386         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
7387
7388 2007-03-05  Miguel de Icaza  <miguel@novell.com>
7389
7390         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
7391         FileOptions.1 value to mean "temporary", map that to
7392         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
7393
7394         Fixes 80688
7395
7396 2007-03-03  Marek Habersack  <mhabersack@novell.com>
7397
7398         * appdomain.c: implement MS .Net style shadow copying. Copies of
7399         the assemblies are made in a subdirectory of the dynamic base
7400         directory, the assembly names are preserved.
7401         Copy .mdb and .config files along with the assemblies being shadowed.
7402
7403 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
7404
7405         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
7406         (emit_marshal_handleref): Ditto.
7407
7408         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
7409         on Visual C++. Fixes #80671.
7410
7411 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
7412
7413         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
7414         for clone operations.
7415
7416 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
7417
7418         * marshal.c: Fix warnings.
7419
7420 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
7421
7422         * loader.c: allow case-insensitive matching of the dll name
7423         in dllmap handling when prefixed with "i:".
7424
7425 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
7426
7427         * threads.c: Fix #ifdef for dummy_apc function for VS.
7428
7429 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
7430
7431         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
7432
7433 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
7434         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
7435         giving precedence to the methods with a fully qualified name
7436         (InterfaceName.MethodName) when building the interface sections
7437         of the vtable.
7438
7439 2007-02-16  Dick Porter  <dick@ximian.com>
7440
7441         * threadpool.c (append_job): Fix fast-path array handling, so it's
7442         less likely the array will grow exponentially when the load is
7443         heavy.
7444
7445 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
7446
7447         * metadata-internals.h, loader.c: fix dllmap lookup order
7448         for non-function maps, too, and prepare for fallback code.
7449
7450 2007-02-12  Robert Jordan  <robertj@gmx.net>
7451
7452         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
7453         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
7454         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
7455         GlobalFree. Fixes a part of bug #77075.
7456
7457 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
7458
7459         * loader.c: implemented typedef parent in field memberref.
7460
7461 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
7462
7463         * marshal.c: Fix warnings and remember to call Release on
7464         IUnknown of RCW.
7465         
7466         Code is contributed under MIT/X11 license.
7467
7468 2007-02-10  Miguel de Icaza  <miguel@novell.com>
7469
7470         * class-internals.h: Add MonoHandleRef definition, and
7471         handleref_class to mono_defaults. 
7472
7473         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
7474         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
7475
7476         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
7477         (do nothing on this stage)
7478         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
7479         (emit_marshal_handleref): New method, used for argument handling
7480         of HandleRefs. 
7481
7482 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
7483
7484         * class.c (mono_class_setup_parent): Lazily init com types.
7485         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
7486         init com types.
7487         * object.c (mono_remote_class_vtable): Lazily init com types.
7488         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
7489         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
7490         * domain-internals.h: Expose mono_init_com_types.
7491         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
7492         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
7493         Add support for COM Callable Wrapper marshalling.
7494         * marshal.h: Add icall definitions.
7495         * gc.c: Handle freeing of CCWs in finalizer code.
7496         
7497         Code is contributed under MIT/X11 license.
7498
7499 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
7500
7501         * reflection.c: changed all the signature encoding code to use
7502         a variable-sized buffer.
7503
7504 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
7505
7506         * marshal.c: locking fixes: never take the loader lock
7507         or other runtime locks when holding the marshal lock
7508         (fixes bug#80664).
7509
7510 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
7511
7512         * marshal.c: make the delegate function pointer mapping
7513         work for the moving GC.
7514
7515 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
7516
7517         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
7518         for bug #80618.
7519
7520 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
7521
7522         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
7523         gmodule.
7524
7525 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
7526
7527         * threadpool.c: made the code moving-GC safe.
7528
7529 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
7530
7531         * assembly.c, boehm-gc.c, class-internals.h, class.c,
7532         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
7533         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
7534         warning cleanup.
7535         * reflection.c: warning cleanup, some threading and moving GC fixes.
7536
7537 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
7538
7539         * class.c, loader.c: create the needed Set/Get/Address array methods
7540         as well as the .ctors in mono_class_init (), fixes bug #80567.
7541
7542 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
7543
7544         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
7545         we doesn't decrease its alignment. Should fix the sparc build.
7546
7547 2007-01-24  Dick Porter  <dick@ximian.com>
7548
7549         * socket-io.c
7550         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
7551         Create the returned object if we need to ignore an unsupported
7552         socket option.  Fixes a segfault reported by Atsushi.
7553
7554 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
7555
7556         * class.c, object.c: restrict GC-tracked fields to
7557         UIntPtr fields used inside corlib, so we provide better
7558         type info to the GC and also allow broken packing as in
7559         bug #80580.
7560
7561 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
7562
7563         * sgen-gc.c: removed duplicated function.
7564
7565 2007-01-19  Miguel de Icaza  <miguel@novell.com>
7566
7567         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
7568         value that means that the value is not supported, but that we
7569         should not return a failure, but instead report this as a
7570         successful operation.
7571
7572 2007-01-19  Raja R Harinath  <rharinath@novell.com>
7573
7574         Fix tests/bug79956.2.il
7575         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
7576         (mono_generic_class_get_class): If the generic definition in an
7577         enum, copy over other fields related to it.
7578
7579 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
7580
7581         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
7582         genericinst enums (bug #79215).
7583
7584 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
7585         * class.c: Fix bug 80307.
7586
7587 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
7588
7589         * image.c: if the file table is not present, try to load
7590         all the modules, since we don't have info about them
7591         having or not metadata (bug #80517).
7592         * assembly.c: allow mono_assembly_load_references () to
7593         work for netmodules.
7594
7595 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
7596
7597         * image.c, metadata-internals.h, object.c: execute module
7598         cctors when running on the 2 runtime if present (bug #80487).
7599
7600 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
7601
7602         * icall.c: optimized InitializeArray() on bigendian.
7603
7604 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
7605
7606         * icall.c: fix for the broken ARM FPA double format.
7607
7608 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
7609
7610         * icall.c: handle endian issues for r4 and r8 types, too, in
7611         the InitializeArray() icall.
7612
7613 2007-01-15  Miguel de Icaza  <miguel@novell.com>
7614
7615         * loader.c (mono_loader_error_prepare_exception): Clear the error
7616         once we have extracted the information from it, do this before we
7617         call into the JIT's class loading mechanisms.
7618
7619         * object.c (mono_class_create_runtime_vtable): Do not clear the
7620         loader error before calling mono_class_get_exception_for_failure
7621         as the loader error is needed inside
7622         mono_class_get_exception_for_failure to throw the error (thinko).
7623
7624         Fixes #80521
7625         
7626 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
7627
7628         * reflection.c: align fields rva data so it's faster to load at
7629         runtime.
7630
7631 2007-01-12  Raja R Harinath  <rharinath@novell.com>
7632
7633         Prepare to simplify GenericMethod handling.
7634         * class-internals.h (mono_method_get_context): New accessor function.
7635         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
7636         rather than directly accessing '->context' field.
7637
7638         * class-internals.h (_MonoGenericParam.method): Move ...
7639         (_MonoGenericContainer): ... here.  Add into union with klass field.
7640         * class.c, icall.c, loader.c, metadata.c, reflection.c:
7641         Update to changes.
7642
7643 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
7644
7645         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
7646         the wrapper type enum and reduce relocations.
7647
7648 2007-01-12  Raja R Harinath  <rharinath@novell.com>
7649
7650         * reflection.c (inflate_mono_method): Reuse method instantiation
7651         from the generic method, if available.
7652
7653 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
7654
7655         * marshal.c (emit_marshal_variant): Fix conv_arg
7656         type in last commit, based on whether parameter is byref.
7657         
7658 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
7659
7660         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
7661         marshalling.
7662         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
7663         MONO_TYPE_OBJECT back for VARIANT support.
7664
7665 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
7666
7667         * marshal.c, marshal.h, icall-def.h: Implement 
7668         Marshal.ReAllocCoTaskMem.
7669
7670 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
7671
7672         * marshal.c: memory retention fixes: use the proper
7673         image cache for runtime_invoke method lookups.
7674
7675 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
7676
7677         * mempool.c: added code to help debug mempool allocations.
7678
7679 2007-01-11  Dick Porter  <dick@ximian.com>
7680
7681         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
7682         support (experimenting with faking it with IP_MTU_DISCOVER for
7683         systems that don't have IP_DONTFRAGMENT.)
7684         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
7685         icall.
7686
7687         * icall-def.h: new System.Net.Sockets.Disconnect icall.
7688
7689         * socket-io.h: Add new fields to MonoSocketAsyncResult
7690         corresponding to the new ones in Socket.cs.
7691
7692 2007-01-11  Raja R Harinath  <rharinath@novell.com>
7693
7694         Fix IronPython regression mentioned in #80249
7695         * metadata.c (do_mono_metadata_parse_generic_class): Clear
7696         'cached_context' field, since it may have been initialized as a
7697         side-effect of metadata parsing.
7698
7699         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
7700         (_MonoGenericClass.cached_class): Move here and rename from lone
7701         remaining field of ...
7702         (_MonoInflatedGenericClass): ... this.  Remove.
7703         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
7704         to changes.
7705
7706         Fix mcs/tests/test-128.cs regression.
7707         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
7708         2007-01-10 change below.
7709         [MONO_TYPE_OBJECT]: Recurse into array case.
7710
7711 2007-01-11  Raja R Harinath  <harinath@gmail.com>
7712
7713         * class-internals.h (mono_get_inflated_generic_class): Remove.
7714         * class.c (mono_get_inflated_generic_class): Remove.
7715         (mono_generic_class_get_class): Rename from
7716         mono_class_create_generic.
7717         (mono_class_from_mono_type) [GENERICINST]: Use it.
7718         * reflection.c, metadata.c: Update to changes.  Use
7719         'mono_class_from_mono_type'.
7720
7721 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
7722
7723         * reflection.c: use passed type when encoding an array element
7724         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
7725
7726 2007-01-09  Robert Jordan  <robertj@gmx.net>
7727
7728         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
7729         result arguments (someDelegate.EndInvoke (unrelatedAres)).
7730         Fixes bug #80392.
7731
7732 2007-01-09  Raja R Harinath  <rharinath@novell.com>
7733
7734         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
7735
7736         * object.c (set_value): Avoid aliasing between type->data.klass
7737         and type->data.generic_class.
7738
7739         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
7740
7741 2007-01-08  Raja R Harinath  <rharinath@novell.com>
7742
7743         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
7744         between type->data.klass and type->data.generic_class.
7745
7746 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
7747
7748         * marshal.c: In MS.NET, StringBuilder objects are not copied by
7749         value in out parameters.
7750
7751 2007-01-08  Raja R Harinath  <rharinath@novell.com>
7752
7753         Simplify invariant for MonoGenericClass::klass field.
7754         * class.c (mono_class_create_generic): Verify 'klass' is null.
7755         * metadata.c (do_mono_metadata_parse_generic_class): Don't
7756         initialize 'klass' field.
7757
7758 2007-01-05  Raja R Harinath  <rharinath@novell.com>
7759
7760         Ongoing work to avoid redundant data and simplify invariants.
7761         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
7762         'generic_class', and change type to a GenericInst.
7763         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
7764         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
7765
7766 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
7767
7768         * class.c : skip io-layer under PLATFORM_WIN32.
7769
7770 2007-01-03  Tor Lillqvist  <tml@novell.com>
7771
7772         Fix #80305: In a bundled executable, look in the bundled exe
7773         assembly to determine the runtime version. Add the possibility to
7774         bundle also the machine.config file.
7775         
7776         * assembly.c (mono_assembly_open_from_bundle): Make
7777         non-static. Allow being called even if we have no bundled
7778         assemblies, and return NULL right away in that case.
7779
7780         * domain-internals.h: Declare mono_assembly_open_from_bundle()
7781         here.
7782
7783         * domain.c (app_config_parse): Take an assembly exe file name as
7784         parameter instead of a config file name. Check for a bundled
7785         config file for that assembly by calling
7786         mono_config_string_for_assembly_file() (see below) before looking
7787         for one in the file system.
7788         (get_runtimes_from_exe): Corrsponding change to call of
7789         app_config_parse().
7790         (get_runtimes_from_exe): Check for bundled assembly exe file first
7791         by calling mono_assembly_open_from_bundle(). If no bundled
7792         assembly exe file is found, call mono_image_open() as before to
7793         look it up in the file system.
7794
7795         * mono-config.c: Add variable bundled_machinec_onfig.
7796         (mono_config_string_for_assembly_file): New function.
7797         (mono_config_for_assembly): Move code snippet that looks for a
7798         bundled assembly .config file into the above new function. Call
7799         it.
7800         (mono_register_machine_config, mono_get_machine_config): New
7801         functions to set and retrieve
7802
7803         * assembly.h: Declare mono_register_machine_config().
7804
7805         * mono-config.h: Declare mono_get_machine_config() and
7806         mono_config_string_for_assembly_file().
7807
7808         * icall.c: No declaration of environ necessary on Win32. It is
7809         declared (as a macro expanding to a function call) in stdlib.h.
7810         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
7811         New internal mono function. Returns the value of
7812         mono_get_machine_config() as a Mono string.
7813
7814         * icall-def.h: Add get_bundled_machine_config().
7815
7816 2007-01-04  Raja R Harinath  <rharinath@novell.com>
7817
7818         Remove redundant field
7819         * class-internals.h (_MonoGenericContext.container): Remove field.
7820         * loader.c (mono_method_get_signature_full): Don't parse a
7821         "container" for a signature parse when the signature is inflated
7822         immediately.
7823         (method_from_methodspec): Likewise, for a generic_inst.
7824         * class.c, metadata.c, reflection.c: Update to changes.
7825
7826 2006-01-04  Raja R Harinath  <rharinath@novell.com>
7827
7828         * class-internals.h (_MonoGenericClass): Rename 'context' field to
7829         'cached_context', and change semantics -- it starts off NULL, and
7830         is initialized on demand.
7831         * class.c (mono_generic_class_get_context): New accessor to
7832         replace 'context' field accesses.
7833         (mono_class_get_context): New helper.
7834         (*): Update to changes.
7835         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
7836
7837 2007-01-03  Miguel de Icaza  <miguel@novell.com>
7838
7839         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
7840         before the memcpy.   Fixes Marshal2 regression.
7841
7842 2007-01-02  Jb Evain  <jbevain@gmail.com>
7843
7844         * blob.h: add a MONO_TYPE_ENUM definition
7845         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
7846         fix the encoding of arrays of enums in custom attributes.
7847
7848         Fixes #79666.
7849
7850 2007-01-01  Miguel de Icaza  <miguel@novell.com>
7851
7852         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
7853         string is null terminated, but only cut the string short if it
7854         overflows the buffer.   
7855         
7856         (mono_string_to_byvalstr): Also fix this routine.   The code here
7857         was not properly terminating a string (it was only terminated
7858         because of the previous catch-all memset). 
7859
7860         I left the memset, because I do not know if applications expect
7861         the runtime to clear this region. 
7862
7863         Fixes #79944.
7864
7865         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
7866         Clear the error before returning to unmanaged code to prevent the
7867         runtime from being confused later on (fixes  80420).
7868         (ves_icall_type_from_name): Always call mono_loader_clear_error
7869         after parsing a type that could have failed.
7870         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
7871
7872         * loader.c (mono_loader_clear_error): Fix indentation.
7873
7874 2006-12-28  Martin Baulig  <martin@ximian.com>
7875
7876         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
7877
7878 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
7879
7880         * reflection.c: patch from Rolf Bjarne Kvinge to fix
7881         getting a token for an EnumBuilder.
7882
7883 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
7884
7885         * reflection.c: be more careful in case resource generation
7886         fails to create the data array.
7887
7888 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
7889
7890         * sgen-gc.c: write barrier for clone and fix unregister handles.
7891
7892 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
7893
7894         * reflection.c: some fixes needed in the generics code for the moving GC.
7895
7896 2006-12-22  Robert Jordan  <robertj@gmx.net>
7897
7898         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
7899         account. Fixes bug #80299.
7900
7901 2006-12-21  Raja R Harinath  <rharinath@novell.com>
7902
7903         Fix WaitHandle usage in delegates.
7904         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
7905         * object.c (mono_wait_handle_new): Use the property set method to
7906         initialize the handle.
7907         (mono_wait_handle_get_handle): New.
7908         * threadpool.c (mono_async_invoke): Use it.
7909         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
7910         Likewise.
7911         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
7912
7913 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
7914
7915         * marshal.c (emit_marshal): Call emit_marshal_variant and
7916         emit_marshal_com_interface when applicable.
7917         (emit_marshal_variant, emit_marshal_com_interface): Add
7918         methods for this case and remove if's from emit_marshal_object.
7919         
7920 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
7921
7922         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
7923
7924 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
7925
7926         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
7927         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
7928         and GlobalFree on Windows. Remove FIXME.
7929
7930 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
7931
7932         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
7933         implementation for managed objects.
7934
7935 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
7936
7937         * object.c: implemented code to be used for checking
7938         that no reference field overlaps with non-references.
7939
7940 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
7941
7942         * threadpool.c: fix queue code to be compatible with the
7943         moving GC.
7944
7945 2006-12-18  Miguel de Icaza  <miguel@novell.com>
7946
7947         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
7948         in structures by throwing ArgumentNullException.
7949
7950         (emit_marshal_safehandle): Also when they are null parameters.
7951
7952         (emit_marshal_safehandle): Add support for ref
7953         SafeHandles parameters
7954
7955 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
7956
7957         * profiler.c: updated to use the mono-dl API instead of
7958         gmodule.
7959
7960 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
7961
7962         * profiler.c: updated to use the mono-dl dynamic loading
7963         API instead of gmodule.
7964
7965 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
7966
7967         * profiler.c: use readlink, older versions of glib don't have
7968         g_file_read_link ().
7969
7970 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
7971
7972         * profiler.c: try to detect the path to mono if libc fails to provide
7973         a useful name (bug #80286).
7974
7975 2006-12-16  Raja R Harinath  <rharinath@novell.com>
7976
7977         Fix #80242
7978         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
7979         instance, use the generic type definition instead.
7980         (ves_icall_Type_GetNestedTypes): Likewise.
7981         * class.c (mono_class_create_generic): Always set the
7982         nested_classes of a generic instance to NULL, even if the generic
7983         type definition has nested types.
7984
7985 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
7986
7987         * marshal.c (mono_string_from_bstr): Revert previous Windows change
7988         and fix on Linux.
7989         
7990 2006-12-15  Miguel de Icaza  <miguel@novell.com>
7991
7992         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
7993         my arguments were in the wrong order.   I also fixed the Windows
7994         version which seems to have had the same issue.
7995
7996         (mono_free_bstr): On Unix, this is g_free.
7997         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
7998         conversions (for the tests in corlib to pass).
7999
8000 2006-12-14  Miguel de Icaza  <miguel@novell.com>
8001
8002         * marshal.c (emit_ptr_to_object_conv): For now, ignore
8003         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
8004         exception if a ref SafeHandle in a struct has changed).
8005         
8006         (emit_struct_conv): Do not perform layout checks for classes
8007         derived from SafeHandle, as those are specially handled. 
8008
8009         (emit_object_to_ptr_conv): Add support for
8010         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
8011
8012         (emit_marshal_safehandle): Implement conversion of return values
8013         of safehandles (MARSHAL_ACTION_CONV_RESULT).
8014         
8015         * threads.c: WaitHandle now is compiled with two different handles
8016         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
8017         for 2.0.
8018         
8019         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
8020         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
8021         these routines to cope with both kinds of fields.
8022
8023 2006-12-12  Miguel de Icaza  <miguel@novell.com>
8024
8025         * metadata.c (mono_type_to_unmanaged): Handle the case where
8026         type->data.klass is a SafeHandle, and in that case, return the
8027         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
8028         MONO_MARSHAL_CONV_SAFEHANDLE. 
8029
8030 2006-12-11  Miguel de Icaza  <miguel@novell.com>
8031
8032         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
8033         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
8034         calling emit_marshal_object.
8035
8036         (emit_marshal_safehandle): Implement marshalling of
8037         SafeHandle parameters (no ref support yet).
8038
8039         (MarshalAction): Document the defines as I implement
8040         them for SafeHandle.
8041
8042         (emit_marshal_object): indentation police.
8043
8044         * class-internals.h: Define MonoSafeHandle.
8045         Add safehandle_class to MonoDefaults type.
8046
8047         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
8048         list of classes to check for fields. 
8049
8050         * domain.c (mono_init_internal): Add SafeHandle to the list of
8051         mono_defaults loaded.
8052
8053 2006-12-15  Raja R Harinath  <rharinath@novell.com>
8054
8055         Fix #80253
8056         * reflection.c (mono_reflection_bind_generic_parameters): If the
8057         generic type definition is a type builder, ensure that it is fully
8058         initialized before instantiating it.  Kill some dead code.
8059
8060 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
8061
8062         * object.c: clear the loader_error () before loading
8063         more metadata stuff (bug #80258).
8064
8065 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
8066
8067         * icall.c, icall-defs.h: type modifiers icalls for
8068         parameters and properties.
8069
8070 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
8071
8072         * object.c, icall.c: fixed warnings.
8073
8074 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
8075
8076         * marshal.c: fixed a couple of leaks and coding style in a few places.
8077
8078 2006-12-08  Dick Porter  <dick@ximian.com>
8079
8080         * process.c: Cope with NULL ProcessStartInfo arguments on windows
8081         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
8082         80173.
8083
8084 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
8085
8086         * process.c: ProcessStartInfo may have only filename set and
8087         arguments can be NULL.
8088
8089 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
8090
8091         * icall.c: fix leak found by Robert Jordan.
8092
8093 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
8094
8095         * marshal.c, marshal.h: generate managed method to access an element
8096         of a multi-dimensional array.
8097
8098 2006-11-30  Paolo Molaro (lupus@ximian.com)
8099
8100         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
8101
8102 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8103
8104         * icall.c: back out GetFields () fix until the serialization code is
8105         fixed to not depend on the incorrect behaviour.
8106
8107 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
8108
8109         * profiler.c: provide defaults if none are set.
8110
8111 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
8112
8113         * Makefile.am, attrdefs.h: new public header file with
8114         constants for attributes for use by embedders.
8115
8116 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
8117
8118         * icall.c: GetFields () fix for bug #80064.
8119
8120 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
8121
8122         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
8123         removed long unused icalls.
8124
8125 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
8126   
8127         * marshal.c: 
8128                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
8129                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
8130                 can be generated without a delegate class.
8131                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
8132         
8133         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
8134
8135 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8136
8137         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
8138         #80069.
8139
8140 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
8141
8142         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
8143         icall-def.h: added icalls needed by System.GC.
8144
8145 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
8146
8147         * loader.c: ensure the class in catch clauses is handled
8148         correctly for generics methods (fixes bug#79980).
8149
8150 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
8151
8152         * monitor.h, monitor.c: added mono_locks_dump () function
8153         to help debug deadlocks involving managed locks.
8154
8155 2006-11-13  Dick Porter  <dick@ximian.com>
8156
8157         * file-io.c (get_file_attributes): If the file is a symlink try
8158         and get the stat data for the target, but also add the
8159         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
8160         the specs for the windows symlink support, but will probably have
8161         to be reworked when I have test data from a vista machine.  Fixes
8162         bug 79887.
8163
8164 2006-11-13  Dick Porter  <dick@ximian.com>
8165
8166         * gc.c (mono_domain_finalize): 
8167         * marshal.c (mono_delegate_begin_invoke): 
8168         * threadpool.c (socket_io_init, mono_thread_pool_init)
8169         (mono_thread_pool_finish): 
8170         * monitor.c (mono_monitor_try_enter_internal): 
8171         * threads.c (mono_thread_resume, mono_thread_init)
8172         (mono_thread_suspend_all_other_threads)
8173         (mono_thread_execute_interruption): 
8174         * appdomain.c (mono_domain_unload): Check for NULL error returns
8175         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
8176         75733.
8177
8178 2006-11-11  Miguel de Icaza  <miguel@novell.com>
8179
8180         * process.c
8181         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
8182         Only close the handle if the value of the handle is not
8183         INVALID_HANDLE_VALUE.  This just makes the process a bit more
8184         robust.
8185
8186         Improvement for #75733, so that we do not run into this problem. 
8187
8188         
8189         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
8190         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
8191         internal variables.  Fixes #79462 
8192         
8193
8194 2006-11-09  Dick Porter  <dick@ximian.com>
8195
8196         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
8197         Use poll() not select().  Fixes bug 79397.
8198
8199 2006-11-09  Raja R Harinath  <rharinath@novell.com>
8200
8201         Fix #79872
8202         * assembly.c (mono_assembly_load_from_full): Check that the given
8203         image has an assembly manifest.
8204
8205 2006-11-09  Ankit Jain  <jankit@novell.com>
8206
8207         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
8208         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
8209         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
8210
8211 2006-11-07  Dick Porter  <dick@ximian.com>
8212
8213         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
8214         Put the old resolver behaviour back for pre-2.0 profiles.
8215
8216 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
8217
8218         * threadpool.c: precise GC and locking fixes.
8219
8220 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
8221
8222         * class.c: don't load types that have an explicit unaligned
8223         managed reference. Provide better info in the TypeLoad exception.
8224         Part of the fix for bug #79744.
8225         * object.c: use the correct check for class type load issues.
8226
8227 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
8228
8229         * class.c: enforce alignment of fields with managed references
8230         even when Pack=1 is forced by the user (bug #77788).
8231
8232 2006-11-03  Dick Porter  <dick@ximian.com>
8233
8234         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
8235         If the address reverse lookup fails, return it as the hostname
8236         anyway.  Fixes bug 79721.
8237
8238 2006-11-03  Dick Porter  <dick@ximian.com>
8239
8240         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
8241         Fix build on Windows.
8242
8243 2006-11-02  Dick Porter  <dick@ximian.com>
8244
8245         * icall-def.h: 
8246         * object-internals.h: 
8247         * exception.c (mono_get_exception_thread_interrupted): 
8248         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
8249         Fixes bug 74525.
8250
8251         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
8252         Check for pending Thread.Interrupt.
8253
8254 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
8255         * loader.c: Fixed bug 79684.
8256
8257 2006-10-27  Dick Porter  <dick@ximian.com>
8258
8259         * file-io.c (get_file_attributes): Force symlinks to directories
8260         to be returned as a regular file.  Fixes bug 79733.
8261 2006-10-26  Dick Porter  <dick@ximian.com>
8262
8263         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
8264         CreateFile to open a directory then we need to set the
8265         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
8266
8267 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
8268
8269         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
8270         friends.
8271
8272 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
8273
8274         * sgengc.c: small cleanup of timer code.
8275
8276 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
8277
8278         * sgen-gc.c: fix some warnings and start adding support for
8279         complete object removal on domain unload.
8280
8281 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
8282
8283         * assembly.c: build_assembly_name should not consider a version
8284         number without build or revision number invalid. Fixes bug #79715.
8285
8286 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
8287
8288         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
8289         call kernel32 function OutputDebugString directly.
8290         
8291         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
8292         
8293 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
8294
8295         * reflection.c: small cleanup, using a function to insert a MonoString
8296         in the string heap.
8297
8298 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
8299
8300         * reflection.c: moving GC fixes.
8301
8302 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
8303
8304         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
8305         all the objects with finalizers belonging to an unloading appdomain.
8306
8307 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
8308
8309         * sgen-gc.c: added ability to allocate even when the nursery is fully
8310         pinned and fixed a couple of bugs.
8311
8312 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
8313
8314         * threads.h: Revert the last change for now.
8315
8316         * threads.h (mono_thread_get_pending_exception): Rename this to
8317         mono_thread_get_undeniable_exception ().
8318
8319 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
8320
8321         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
8322         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
8323         when fname does not refer to valid assembly. This result in a more
8324         meaningful error message.
8325         * exception.c: added mono_get_exception_bad_image_format2 which 
8326         constructs a BadImageFormatException using the ctor taking a custom
8327         message and the file name. Passing in a NULL msg results in a default
8328         message.
8329         * exception.h: define mono_get_exception_bad_image_format2 function.
8330         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
8331         when file name pointed to an invalid IL image. Use 
8332         mono_get_exception_file_not_found2 to construct FileNotFoundException,
8333         as this results in a more meaningful error message.
8334
8335 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
8336
8337         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
8338         #79465.
8339
8340 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
8341
8342         * metadata.c (mono_type_size): Change the align parameter to guint32 for
8343         consistency with the other _size functions.
8344         (mono_type_stack_size): Ditto.
8345
8346         * class.c object.c icall.c: Fix warnings caused by the above change.
8347
8348         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
8349
8350         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
8351
8352         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
8353
8354 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
8355
8356         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
8357         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
8358         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
8359         threadpool.h, threads-types.h: mark more internal functions.
8360
8361 2006-10-11  Dick Porter  <dick@ximian.com>
8362
8363         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
8364         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
8365         reproduce the bug even before applying the fix.)
8366
8367 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
8368
8369         * reflection.c: allow retrieving attributes for arguments in generic
8370         methods (bug #79241).
8371
8372 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
8373
8374         * debug-mono-symfile.c: properly check fopen () result (found by
8375         coverity).
8376
8377 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
8378
8379         * reflection.c: make error message clearer and fixed two
8380         issuelets found by Coverity.
8381
8382 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
8383
8384         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
8385
8386 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
8387
8388         * object-internals.h, gc-internal.h, profiler-private.h:
8389         mark internal functions.
8390
8391 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
8392
8393         * reflection.c: put data in the text section.
8394         * icall.c: recognize more types in type_from_typename ().
8395         * process.c, marshal.c: added some GC FIXMEs.
8396
8397 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
8398
8399         * loader.c: check for NULL before initializing.
8400
8401 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
8402
8403         * gc.c (finalizer_thread): Use a non-alertable wait here.
8404
8405         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
8406         until the correct solution is found.
8407
8408 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
8409
8410         * reflection.c (mono_module_get_object): Avoid an assert when operating on
8411         modules with no metadata. Fixes #79596.
8412
8413         * image.c (load_metadata_ptrs): Put back the error message when
8414         the #- heap is encountered since the support is not complete yet.
8415
8416 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
8417
8418         * gc.c: do not allow the user to SuppressFinalize () a
8419         delegate because it would leak the trampoline if present.
8420
8421 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
8422
8423         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
8424         PropertyPtr table.
8425
8426 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
8427
8428         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
8429
8430         * metadata.c (mono_metadata_get_param_attrs): Ditto.
8431
8432         * row-indexes.h: Add definitions for *Ptr tables.
8433
8434         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
8435
8436         * metadata.c (mono_metadata_translate_token_index): New helper function to
8437         translate table indexes used in uncompressed metadata.
8438         (mono_metadata_decode_table_row): Ditto.
8439         (mono_metadata_decode_table_row_col): Ditto.
8440
8441         * metadata.c: Add table schema for *Ptr tables.
8442
8443         * class.c loader.c: Use the new helper function to access the affected metadata
8444         tables.
8445         
8446         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
8447         #38532.
8448         
8449 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
8450
8451         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
8452         sequences which can be unbounded in size. Fixes #79583.
8453
8454 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
8455
8456         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
8457         static initialization.
8458
8459         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
8460
8461         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
8462
8463         * domain.c (mono_domain_free): Free up type_init_exception_hash.
8464
8465         * object.c (mono_runtime_class_init): Implement correct semantics when a static
8466         ctor fails, i.e. throw the same exception on subsequent accesses.
8467         
8468 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
8469
8470         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
8471         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
8472         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
8473         Handle marshalling of interfaces and VARIANTs contained in structs.
8474         
8475         Code is contributed under MIT/X11 license.
8476         
8477 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
8478
8479         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
8480         
8481         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
8482         mempool.
8483
8484 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8485
8486         * console-io.c: ignore previous SIGINT handler.
8487
8488 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
8489
8490         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
8491         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
8492         #79460, #79461, #79485.
8493
8494         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
8495
8496         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
8497         #79217.
8498
8499 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
8500
8501         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
8502         could be generated from it.
8503
8504 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
8505
8506         * rand.c: fix read loop to correctly handle EINTR.
8507
8508 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
8509
8510         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
8511         internal calls are defined to keep methods closer to the declaring
8512         type and allow a significant reduction in runtime relocations and
8513         memory usage.
8514
8515 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
8516
8517         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
8518         exception message to have FileNotFoundException use the default
8519         assembly load error message. Fixes bug #79426.
8520         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
8521
8522 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8523
8524         * threadpool.c: (start_thread_or_queue) use the root domain when
8525         creating the thread instead of the async object one.
8526
8527 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
8528
8529         * class.c, object.c, class-internals.h, reflection.c:
8530         for arrays, store element_size inside MonoClass (speedup
8531         for array object creation).
8532
8533 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
8534
8535         * icall.c: fixed CodeBase to use the file name and not the module
8536         name (bug #79365).
8537
8538 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
8539
8540         * mono-debug.c, mono-debug.h: export find_method as
8541         mono_debug_find_method ().
8542
8543 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
8544
8545         * debug-helpers.c, class-internals.h: added a few functions useful
8546         when debugging under gdb.
8547
8548 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8549
8550         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
8551         characters that need special handling.
8552
8553 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
8554
8555         * mono-config.c: make the os/cpu specification more flexible,
8556         allowing lists and negation.
8557
8558 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
8559
8560         * marshal.c: COM Interop fixes. Handle case where method->klass.
8561         is interface. Handle BSTR/MonoString when null. Use CDECL as 
8562         calling convention on non-windows platforms. This is for
8563         compatibility with XPCOM and MainWin COM.
8564         
8565         Code is contributed under MIT/X11 license.
8566         
8567
8568 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
8569
8570         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
8571         correctly. Fixes #79217.
8572
8573         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
8574
8575 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
8576
8577         * mono-config.c: allow both an os and cpu attribute for dllmap
8578         and dllentry elemnets to enable a single config file to be used
8579         for multiple architectures.
8580
8581 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
8582
8583         * loader.c: MonoLoaderError was cleared too soon on load failure.
8584         Fixes bug #79424.
8585
8586 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
8587
8588         * icall.c: use the defining class vtable when accessing a
8589         static field, not a pobblibly derived class.
8590
8591 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
8592
8593         * icall.c string-icalls.c: Remove references to unicode.h.
8594
8595         * unicode.h unicode.c Makefile.am: Remove these unused source files.
8596
8597         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
8598
8599         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
8600         indicating the image where custom marshaller types should be looked up.
8601         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
8602         custom marshallers, instead of corlib. Fixes #79425.
8603
8604 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
8605
8606         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
8607
8608 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
8609
8610         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
8611         Implement Environment.ProcessorCount.
8612         
8613         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
8614         Implement Environment.ProcessorCount.
8615         
8616         * icall.c: 
8617         Add Environment.ProcessorCount icall.
8618         
8619         Patch by Jason McFall.
8620
8621 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8622
8623         * assembly.c: don't append .exe/.dll when the filename already contains
8624         one of those extensions.
8625
8626 2006-09-12  Martin Baulig  <martin@ximian.com>
8627
8628         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
8629         to array interfaces.
8630
8631 2006-09-11  Martin Baulig  <martin@ximian.com>
8632
8633         * reflection.c (mono_image_build_metadata): Create the
8634         MethodImpl's after emitting all types and methods, so we don't
8635         need another fixup pass for them.
8636
8637 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
8638
8639         * class.c (mono_class_from_name_case): Fix regression introduced by the last
8640         change.
8641
8642 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
8643
8644         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
8645         unload.
8646
8647 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
8648
8649         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
8650         args is not set. Fixes #78926.
8651
8652 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
8653
8654         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
8655
8656         * image.c (load_class_names): Move this to class.c, and rename it to 
8657         'mono_image_init_name_cache'.
8658         (load_modules): Fix a warning.
8659
8660         * class.c icall.c image.c: Initialize image->name_cache lazily.
8661
8662         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
8663         on its name using information in the AOT file.
8664
8665         * class.c (mono_class_from_name): Use the new hook function.
8666
8667 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
8668
8669         * reflection.c (mono_param_get_objects): Handle enum default parameter values
8670         correctly.
8671
8672         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
8673         Fixes #79289.
8674         
8675 2006-09-06  Martin Baulig  <martin@ximian.com>
8676
8677         * icall.c (mono_lookup_internal_call): Small fix.
8678
8679 2006-09-05  Raja R Harinath  <rharinath@novell.com>
8680
8681         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
8682         double g_free.
8683
8684 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
8685
8686         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
8687         when --debug is specified.
8688
8689 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
8690
8691         * class.c (setup_generic_array_ifaces): Fix a warning.
8692
8693 2006-09-04  Miguel de Icaza  <miguel@novell.com>
8694
8695         * Temporarily remove the patch to assemly.c that checks the
8696         assembly versions as it breaks our gacutil.
8697
8698 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
8699
8700         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
8701
8702         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
8703         a net 1.0 runtime.
8704
8705         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
8706         created using the default ctor. Fixes #79152.
8707         (mono_string_builder_to_utf16): Ditto.
8708
8709 2006-09-01  Martin Baulig  <martin@ximian.com>
8710
8711         Fix handling of the generic array interfaces.
8712
8713         * class-internals.h
8714         (MonoDefaults): Removed `generic_array_class' and added
8715         `generic_ilist' class.
8716
8717         * class.c
8718         (mono_bounded_array_class_get): Add the new generic array interfaces.
8719         (setup_generic_array_ifaces): New static method; create vtable
8720         entries for each method in the generic array interfaces.
8721
8722         * metadata.c
8723         (select_container): Allow "parent-less" generic methods.
8724
8725         * marshal.c
8726         (mono_marshal_get_generic_array_helper): New public method.
8727
8728         * icall.c
8729         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
8730         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
8731         moved the interncall into System.Array.
8732
8733 2006-09-01  Raja R Harinath  <rharinath@novell.com>
8734
8735         A few more cases of avoiding work on types with ->byref set.
8736         Has the real fix for #79238
8737         * icall.c (is_generic_parameter): New helper.
8738         (ves_icall_Type_GetGenericParameterPosition): Use it.
8739         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
8740         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
8741         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
8742         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
8743         reference types.
8744         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
8745         reference types.
8746         (ves_icall_Type_get_IsGenericInstance): Likewise.
8747         (ves_icall_Type_get_IsGenericType): Likewise.
8748
8749 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
8750
8751         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
8752         class if possible.
8753
8754         * mempool.h (mono_mempool_get_allocated): New helper function.
8755
8756         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
8757         change.
8758
8759         * mempool.c: Fix warnings and the calculation of stats.
8760
8761         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
8762
8763         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
8764
8765         * loader.c (mono_get_method_from_token): Update method_count stat.
8766
8767         * class-internals.h (MonoStats): Add some stats.
8768
8769 2006-08-31 Robert Jordan  <robertj@gmx.net>
8770
8771         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
8772         with managed variants.
8773         All code is contributed under the MIT/X11 license.
8774         
8775 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
8776
8777         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
8778         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
8779
8780         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
8781
8782         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
8783         with cycles in classes.
8784
8785         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
8786
8787         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
8788         missing a [MarshalAs] directive. Fixes #79203.
8789
8790         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
8791         klass->marshal_info. Fixes #79217.
8792
8793 2006-08-30  Martin Baulig  <martin@ximian.com>
8794
8795         Committing a patch from Joachim Ante <joe@otee.dk>:
8796         Add support for binary data symbol stores.
8797
8798         * debug-mono-symfile.c
8799         (mono_debug_open_mono_symbol_file): Renamed into
8800         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
8801         arguments.
8802
8803         * mono-debug.c
8804         (mono_debug_open_image): Added `raw_contents' and `size' args.
8805         (mono_debug_init_2_memory): New public function.
8806
8807 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
8808
8809         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
8810
8811 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8812
8813         * appdomain.c: implement support for ShadowCopyFiles.
8814
8815 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
8816
8817         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
8818         when value is NULL (and should remove CID #51).
8819
8820 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8821
8822         * image.c: moved 2 functions to ../utils.
8823
8824 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
8825
8826         * gc.c: cope with the target object of a GC handle being NULL
8827         (bug #78877).
8828
8829 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
8830
8831         * class.c: recursively check parent's explicit implementations
8832         of interface methods (fixes bug #79125).
8833
8834 2006-08-19  Miguel de Icaza  <miguel@novell.com>
8835
8836         * filewatcher.c: Avoid warnings when building, do not redefine
8837         constants that are defined.
8838
8839         Remove warnings.
8840
8841 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8842
8843         * image.c: don't fail when the link points to an absolute path.
8844
8845 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
8846
8847         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
8848         Fix CID #3.
8849
8850 2006-08-17  Miguel de Icaza  <miguel@novell.com>
8851
8852         * image.c (full_path): A new method used to obtain the actual path
8853         of an assembly even in the presence of symbolic links.  
8854
8855         This is necessary for the case where we are running a binary that
8856         has been GACed, but we are using the "published" path name
8857         ($prefix/mono/1.0/blah.exe) which happens to point to the real
8858         file in the GAC.
8859
8860         This was the source of the failure for the `xsp' command with the
8861         recent AppDomain changes, as far as the runtime was concerned,
8862         there were two different assemblies: $prefix/mono/1.0/blah.exe and
8863         $prefix/mono/gac/blah/version/blah.exe.
8864
8865         (do_mono_image_open): use full path
8866
8867 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
8868
8869         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
8870
8871 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
8872
8873         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
8874         domain_id is supplied. Fix CID #241 and corlib's unit tests.
8875
8876 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
8877
8878         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
8879         small structures. Fixes #78990.
8880
8881 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
8882
8883         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
8884
8885         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
8886
8887 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8888
8889         * appdomain.c:
8890         * marshal.c: don't load all the assemblies from a domain into newly
8891         created ones. The new domains might have different rules and load
8892         assemblies from different locations. Fixes bug #76757.
8893
8894         Patch by Lluis. Conflicts resolved by Brian Crowell.
8895
8896 2006-08-16  Alp Toker  <alp@atoker.com>
8897
8898         * socket-io.c: First half of the fix for #79084.
8899         Set sa_size to the length of the content, not that of the struct.
8900         Don't add NULL suffix to the content, this should be done in
8901         managed code if needed.
8902
8903 2006-08-14  Raja R Harinath  <rharinath@novell.com>
8904
8905         Fix part of #79012
8906         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
8907         mono_metadata_parse_type returns NULL.
8908
8909 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
8910
8911         * normalization-tables.h : new file for string normalization data.
8912         * locales.c, locales.h, icall.c :
8913           added load_normalization_resource() for string normalization,
8914           and icall as well.
8915         * Makefile.am : added normalization-tables.h to the sources.
8916
8917 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
8918
8919         * marshal.c: Add more helper functions to reduce code duplication and use them
8920         everywhere.
8921
8922 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
8923
8924         * marshal.c: Fix non-x86 stdcall warnings.
8925         
8926         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
8927         them everywhere.
8928
8929 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
8930
8931         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
8932         type check on multi-dimensional arrays. Fixes #79000.
8933
8934 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
8935
8936         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
8937         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
8938         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
8939         * class-internals.h: add is_com_object to class structure.
8940         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
8941         null checks to COM object marshalling. Fix .ctor call on RCW.
8942         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
8943         
8944         All code is contributed under the MIT/X11 license.
8945
8946 2006-08-09  Dick Porter  <dick@ximian.com>
8947
8948         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
8949         racing mono_monitor_allocator_lock() somewhere, so don't delete
8950         the critical section for now.  Found by running and exiting
8951         monodevelop.
8952
8953 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
8954
8955         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
8956         (ves_icall_System_ComObject_FindInterface): Ditto.
8957         (ves_icall_System_ComObject_CacheInterface): Ditto.
8958
8959         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
8960         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
8961
8962 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8963
8964         * threadpool.c: treat pipes from process asynchronous reads as sockets
8965         when reading from them, so we get select/poll or epoll to wait for
8966         data.
8967
8968 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
8969
8970         * loader.c: Fix a typo (CID #233) in the null check.
8971
8972 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
8973
8974         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
8975         Hopefully fixes #78949.
8976         
8977         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
8978         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
8979         bytes. Fixes #78972.
8980
8981 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8982
8983         * filewatcher.c: we need to set errno here.
8984
8985 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8986
8987         * filewatcher.c: let Win32Exception get the error value.
8988
8989 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8990
8991         * filewatcher.c: translate errno into win32 errors for Win32Exception
8992         to know what happened.
8993
8994 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
8995
8996         * threadpool.c: Fix more warnings.
8997
8998         * assembly.c (search_loaded): Fix warnings.
8999
9000         * threadpool.c (mono_thread_pool_finish): Fix warnings.
9001         (mono_async_invoke): Ditto.
9002
9003 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
9004
9005         * object.c (mono_remote_class_vtable): Need to create proxy vtable
9006         entries for __ComObject type in addition to ComImport types.
9007         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
9008         about hash table.
9009         
9010         All code is contributed under the MIT/X11 license.
9011
9012 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
9013
9014         * image.c: avoid tentative loading of modulerefs that contain
9015         no metadata (P/Invoke library names).
9016
9017 2006-07-28  Dick Porter  <dick@ximian.com>
9018
9019         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
9020         mono_loader_lock() somewhere, so don't delete the critical section
9021         for now.  Found by running and exiting monodevelop.
9022
9023 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9024
9025         * filewatcher.c: define the inotify syscalls when we're building on
9026         linux and have sys/syscall.h. The build system might not have support
9027         for inotify but the target system might have it.
9028
9029 2006-07-26  Miguel de Icaza  <miguel@novell.com>
9030
9031         * domain.c: Documentation updates.
9032
9033         * loader.c (mono_free_method): Do not release the method
9034         information if we are being profiled, as profilers will use this
9035         information at shut down to present some data to the user.
9036
9037         This is needed so that the profiler does not crash, as the
9038         profiler tends to keep MonoMethods around, and they might become
9039         invalid if we free these.
9040
9041         (mono_get_method_constrained): Return the original CIL stream
9042         method as well, so verification can be performed against it.
9043
9044 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9045
9046         * filewatcher.[ch]: support for inotify file system watcher.
9047         * icall.c: add new internal calls for the inotify file system watcher.
9048
9049 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9050
9051         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
9052         #78888.
9053
9054 2006-07-20  Dick Porter  <dick@ximian.com>
9055
9056         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
9057         warning.
9058
9059 2006-07-20  Dick Porter  <dick@ximian.com>
9060
9061         * threads.c (start_wrapper): Do the thread cleanup while we still
9062         hold a reference to its object.  Fixes bug 78123.
9063
9064 2006-07-18  KornĂ©l Pál  <kornelpal@gmail.com>
9065
9066         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
9067         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
9068           "managed-to-managed".
9069         * icall.c: Redirect string constructors that take sbyte* to
9070           ves_icall_System_String_ctor_RedirectToCreateString.
9071         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
9072           to CreateString () methods with matching signature.
9073         * reflection.c: Use original security informations for
9074           MONO_WRAPPER_MANAGED_TO_MANAGED.
9075         * security-manager.c: Use original security informations for
9076           MONO_WRAPPER_MANAGED_TO_MANAGED.
9077         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
9078           that is a placeholder and only its address should be used.
9079         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
9080           that is a placeholder and only its address should be used.
9081
9082 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
9083
9084         Begin implementing COM Interop.
9085         * appdomain.c: Increment corlib version.
9086         * class.c: Set ComImport classes' parent to __ComObject.
9087         * loader.c: Mark cominterop methods as such.
9088         * domain.c: Add __ComObject class to MonoDefaults structure.
9089         * image.c: Add 2 hashtables to the image for COM Interop related methods
9090         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
9091         using the mempool allocator
9092         
9093         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
9094         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
9095         declaration for mono_metadata_type_dup_mp.
9096         
9097         * debug-helpers.c: Added strings for two additional wrapper types
9098         * object.c: Create proxy objects for ComImport classes
9099         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
9100         and added __ComObject class to MonoDefaults structure.
9101         
9102         * object-internals.h: Finish MonoRealProxy definition, and add definition of
9103         MonoComInteropProxy and MonoComObject.
9104         
9105         * marshal.c: Added support for COM Interop
9106         (signature_cominterop): Converts managed signature to corresponding
9107         unmanaged COM signature.
9108         (cominterop_get_function_pointer): gets unmanaged function pointer via
9109         COM object vtable
9110         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
9111         (cominterop_get_method_interface): returns interface type that method is defined on
9112         (mono_mb_emit_cominterop_call): emits native call to function pointer
9113         gotten from vtable
9114         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
9115         that matches signature of unmanaged function.
9116         (cominterop_get_native_wrapper): wrapper around adjusted method call.
9117         (cominterop_get_invoke): forwards call from proxy to __ComObject
9118         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
9119         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
9120         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
9121         
9122         * marshal.h: Added Marshal icall declarations.
9123         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
9124         so we can access them in finalizer
9125         
9126 2006-07-14  Dick Porter  <dick@ximian.com>
9127
9128         * object.c (mono_type_initialization_cleanup): Fix a race
9129         condition by temporarily commenting out the critical section
9130         deletion.
9131
9132 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
9133
9134         * reflection.c (create_custom_attr): Fix some warnings.
9135         (create_custom_attr_data): Ditto.
9136         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
9137         types. Fixes #78855.
9138
9139 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
9140
9141         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
9142
9143         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
9144
9145 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
9146
9147         * reflection.c (resolve_object): Add support for DynamicMethod.
9148
9149         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
9150         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
9151
9152 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
9153
9154         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
9155         don't leak GPtrArray's pdata has we have no use (nor free) for it.
9156
9157 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
9158
9159         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
9160         Fixes #77888.
9161
9162 2006-06-30  Raja R Harinath  <rharinath@novell.com>
9163
9164         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
9165         slightly: remove a shadow local variable.
9166
9167 2006-06-29  Raja R Harinath  <rharinath@novell.com>
9168
9169         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
9170         definition that introduces the virtual function slot.
9171         Also fix Coverity #105.
9172
9173 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
9174
9175         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
9176         for dynamic assemblies. Fixes #78724.
9177
9178 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
9179
9180         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
9181         Fixes #78722.
9182
9183 2006-06-21  Martin Baulig  <martin@ximian.com>
9184
9185         * reflection.c
9186         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
9187         fixes #76484.
9188
9189 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
9190
9191         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
9192
9193 2006-06-20  Raja R Harinath  <rharinath@novell.com>
9194
9195         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
9196         nor TYPEREFs.
9197         * class.c (mono_class_create_from_typespec): Add 'context' argument.
9198         Inflate result if necessary.
9199         (mono_class_get_full): Remove old version.  Rename from
9200         'mono_class_get' and add 'context' argument.  Pass it to
9201         ..._create_from_typespec.
9202         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
9203         (mono_ldtoken): Revert change below.
9204
9205 2006-06-20  Martin Baulig  <martin@ximian.com>
9206
9207         * class.c (mono_ldtoken): Don't pass the generic context to
9208         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
9209
9210 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
9211
9212         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
9213         and later freeing it. Fixes #78638.
9214
9215 2006-06-15  Miguel de Icaza  <miguel@novell.com>
9216
9217         * icall.c (mono_class_get_throw): Revert over-zealous error
9218         throwing, the caller for mono_class_get_throw will cope with
9219         errors when classes are not properly initialized already.
9220
9221         The code still copes with loader exceptions though.
9222
9223         Fixes the regression in reftype1 and reftype3 from the CAS tests.
9224         
9225 2006-06-14  Miguel de Icaza  <miguel@novell.com>
9226
9227         Fixes the `make run1' version of RuntimeAbort (to be commited,
9228         source is in Bugzilla).
9229         
9230         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
9231         FALSE on class loading failure instead of returning true.
9232
9233         * class.c (mono_class_create_from_typedef): It is possible for
9234         mono_metadata_interfaces_from_typedef_full to fail if a class is
9235         not found, cope with this.
9236         
9237
9238 2006-06-14  Dick Porter  <dick@ximian.com>
9239
9240         * socket-io.c: 
9241         * process.c: Fix a bunch of signed/unsigned warnings from gcc
9242         4.1.1
9243
9244 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
9245
9246         * culture-info-table.h : oops, forgot to make it nsync with r61548.
9247
9248 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9249
9250         * icall.c: Another fix for building mono in Visual Studio.
9251
9252 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9253
9254         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
9255         
9256 2006-06-09  Martin Baulig  <martin@ximian.com>
9257
9258         * debug-mono-symfile.c: Put this back and really fix it this
9259         time. Sorry for all the trouble.
9260
9261 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
9262
9263         * icall.c (mono_class_get_throw): Fix a warning.
9264         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
9265         ReflectionTypeLoadException if needed. Fixes #78606.
9266
9267         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
9268         (mono_class_init): Ditto.
9269
9270         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
9271         ref_only exceptions.
9272         (mono_loader_clear_error): Make this work even if there is no error.
9273
9274 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
9275
9276         * object-internals.h marshal.c marshal.h icall.c: Implement method 
9277         Marshal.GetComSlotForMethodInfo using internal call.
9278
9279 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
9280
9281         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
9282         a function for signalling it.
9283
9284         * class.c (mono_class_from_typeref): Use the new kind of loader error when
9285         a referenced assembly is not found.
9286
9287         * loader.c (mono_loader_error_prepare_exception): Add support for 
9288         LOADER_ERROR_ASSEMBLY. Fix formatting.
9289
9290 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
9291
9292         * domain.c appdomain.c class-internals.h marshal.c: Add support 
9293         for VARIANT marshalling on windows and increment corlib version
9294         since Variant struct was added.
9295
9296 2006-06-03  Miguel de Icaza  <miguel@novell.com>
9297
9298         * debug-mono-symfile.c: Revert Martin's previous patch which broke
9299         stack trace line information:
9300
9301         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
9302         (Martin) when looking up B which is between A and C, return A not C.
9303
9304         Bug is #78573.
9305
9306         Thanks to Alexander Olk for tracking this down.
9307
9308 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
9309
9310         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
9311         
9312         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
9313         avoid clobbering its value.
9314         (mono_string_to_lpstr): Fix a warning on windows.
9315
9316 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
9317
9318         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
9319
9320         * reflection.c loader.c: Removed references to 'dummy' flag.
9321
9322         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
9323
9324         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
9325         it gets GC tracking.
9326
9327         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
9328         GC tracking.
9329         
9330         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
9331
9332         * marshal.c threadpool.c: Update callers of mono_async_result_new.
9333
9334         * appdomain.c: Bump corlib version.
9335
9336 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
9337
9338         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
9339         CEE_STIND_REF when working with object references.
9340
9341 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
9342
9343         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
9344         Fixes #78539.
9345
9346 2006-05-30  Miguel de Icaza  <miguel@novell.com>
9347
9348         * loader.c (method_from_memberref): Fix argument value for
9349         mono_loader_set_error_method_load (I was passing the MonoClass
9350         instead of the class name char *).
9351
9352 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
9353
9354         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
9355         CEE_STIND_REF when working with object references.
9356
9357 2006-05-30  Martin Baulig  <martin@ximian.com>
9358
9359         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
9360         mono_method_full_name() change and replace the ':' with a '.'
9361         here.
9362
9363 2006-05-30  Martin Baulig  <martin@ximian.com>
9364
9365         * debug-mono-symfile.c
9366         (mono_debug_symfile_lookup_location): Fix the algorithm:
9367         when looking up B which is between A and C, return A not C.
9368
9369 2006-05-29  Martin Baulig  <martin@ximian.com>
9370
9371         * mono-debug.h
9372         (MonoDebugMethodInfo): Make the typedef public.
9373         (MonoDebugSourceLocation): New public struct.
9374
9375         * mono-debug.c
9376         (mono_debug_source_location_from_address): Removed.
9377         (mono_debug_source_location_from_il_offset): Removed.
9378         (mono_debug_il_offset_from_address): Removed.
9379         (mono_debug_address_from_il_offset): Removed.
9380         (mono_debug_lookup_method): New public function.
9381         (mono_debug_lookup_source_location): New public function; replaces
9382         the old mono_debug_source_location_from_*() functions; see the
9383         inline documentation.
9384         (mono_debug_free_source_location): New public function.
9385         (mono_debug_print_stack_frame): New public function; see the
9386         inline documentation.
9387
9388         * debug-mono-symfile.c
9389         (mono_debug_find_source_location): Renamed into
9390         mono_debug_symfile_lookup_location(); only take a
9391         `MonoDebugMethodInfo *' and an `offset' argument; added inline
9392         documentation.
9393         (mono_debug_find_method): Renamed into
9394         mono_debug_symfile_lookup_method().
9395
9396 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
9397
9398         * assembly.c (mono_assembly_open_full): Dont overwrite the status
9399         returned by mono_image_open_full ().
9400
9401         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
9402         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
9403         #78517.
9404
9405         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
9406         #78518.
9407
9408 2006-05-27  Miguel de Icaza  <miguel@novell.com>
9409
9410         * class.c (mono_class_from_typeref): handle missing images
9411         earlier, deals with bug #78418.   Refactor code; 
9412
9413         Fix a warning introduced in my previous commit (some stale code
9414         from before I revisited my patch).
9415
9416         * class.c (mono_class_create_from_typedef): On failure, remove the
9417         class from the MonoImage->class_cache as the class is not
9418         initialized;   Fixes the leak pointed out by Paolo.
9419
9420 2006-05-25  Dick Porter  <dick@ximian.com>
9421
9422         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
9423         DeleteCriticalSections until I figure out which one may still be
9424         sometimes locked when mono_thread_cleanup is called.
9425
9426 2006-05-24  Dick Porter  <dick@ximian.com>
9427
9428         * threads.c (mono_thread_cleanup): Move the threading cleanup out
9429         of mono_thread_manage and back into its own function, so it can be
9430         called after the finalizer thread has finished.
9431
9432         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
9433
9434 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
9435
9436         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
9437         Fixes #78495.
9438
9439         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
9440         with non-blittable elements.
9441         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
9442
9443 2006-05-24  Martin Baulig  <martin@ximian.com>
9444
9445         * mono-debug-debugger.h (MonoDebuggerEvent): Added
9446         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
9447
9448         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
9449         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
9450         `mono_debugger_event_handler' to NULL.
9451
9452 2006-05-24  Martin Baulig  <martin@ximian.com>
9453
9454         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
9455
9456 2006-05-24  Martin Baulig  <martin@ximian.com>
9457
9458         * mono-debug-debugger.h
9459         (mono_debugger_create_notification_function): Added
9460         `MonoCodeManager *' argument.
9461
9462 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
9463
9464         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
9465
9466 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
9467
9468         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
9469         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
9470         implementation.
9471
9472 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
9473
9474         * icall.c: precise GC support: objects can't be stored in unmanaged
9475         memory anymore, even if they are kept alive by other references: since
9476         they can move the GC needs to be able to always find them.
9477
9478 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
9479
9480         * object.c: precise GC support for static fields. Support
9481         for moving GCs: write barriers and pinned allocation for interned
9482         strings.
9483
9484 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
9485
9486         * domain.c, domain-internals.h: precise GC support for the MonoDomain
9487         structure.
9488
9489 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
9490
9491         * class.c, gc.c: sgen and precise GC updates.
9492
9493 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
9494
9495         * marshal.h, marshal.c: added write barrier wrapper and precise type
9496         fixes.
9497
9498 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
9499
9500         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
9501         support.
9502
9503 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
9504
9505         * reflection.c: precise and sgen GC updates.
9506
9507 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
9508
9509         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
9510
9511 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
9512
9513         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
9514
9515 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
9516
9517         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
9518         MONO_TYPE_OBJECT. Fixes #78462.
9519
9520 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
9521
9522         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
9523         and blittable types.
9524
9525 2006-05-17  Miguel de Icaza  <miguel@novell.com>
9526
9527         * class.c (mono_class_get_exception_for_failure): Implement parts
9528         of a TODO: if the loader error is set (instead of the class
9529         error), we return a Loader exception that can be properly thrown
9530         elsewhere.
9531
9532         This was exposed by some Winforms 2.0 code that I tried to run
9533         (Atsushi pointed me to it).
9534
9535 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
9536
9537         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
9538         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
9539         
9540         * marshal.c (emit_marshal_vtype): Add limited support for 
9541         UnmanagedType.LPStruct. Fixes #78427.
9542
9543         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
9544         Applied a patch from kangaroo to fix #77523.
9545
9546 2006-05-17  Martin Baulig  <martin@ximian.com>
9547
9548         * threads.c
9549         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
9550         (debugger_thread_created): Removed.
9551         (debugger_thread_exited): Removed.
9552
9553 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
9554
9555         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9556
9557         * object-internals.h (MonoReflectionResource): Sync with managed version.
9558
9559 2006-05-12  Wade Berrier <wberrier@novell.com>
9560
9561         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
9562
9563 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
9564
9565         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
9566         functions try to allocate from the image mempool.
9567
9568 2006-05-12  Dick Porter  <dick@ximian.com>
9569
9570         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
9571
9572 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
9573
9574         * object.c: The FieldGetter and FieldSetter methods require the full
9575         name of the class, not only the name. Fixes bug #78277.
9576
9577 2006-05-11  Miguel de Icaza  <miguel@novell.com>
9578
9579         * loader.c (method_from_memberref): Do not pass the NULL klass to
9580         mono_loader_set_error_() methods.  Pass the non-NULL value
9581         (class). 
9582
9583 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
9584
9585         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
9586         (mono_assembly_close): Null out assembly->image->references after freeing it.
9587
9588         * image.c (mono_image_close): Free image->references.
9589         
9590         * reflection.c (mono_image_basic_init): Fix a small memory leak.
9591
9592 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
9593
9594         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
9595         before checking if it's NULL (g_assert).
9596
9597 2006-05-10  Martin Baulig  <martin@ximian.com>
9598
9599         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
9600         I thought I already killed that two months ago, but now it somehow reappeared.
9601
9602 2006-05-10  Martin Baulig  <martin@ximian.com>
9603
9604         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
9605
9606 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
9607
9608         * reflection.c: Allocate memory for dynamically created methods in the image
9609         mempools.
9610
9611 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
9612
9613         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
9614         don't use the ad pointer before checking if it's NULL (g_assert).
9615
9616 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
9617
9618         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
9619         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
9620
9621         * marshal.c: Allocate all signatures from mempools.
9622
9623         * marshal.c: Allocate some more signatures from mempools.
9624
9625 2006-05-09  Miguel de Icaza  <miguel@novell.com>
9626
9627         * object.c (mono_load_remote_field): The code used to provide a
9628         temporary variable for returning results if the user did not
9629         provide a result pointer.  But our temporary variable was allocted
9630         on the satck.
9631
9632         Fix calling code to always pass a result area.   Coverity ID 103.
9633
9634 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
9635
9636         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
9637         value, not the old. Fixes #78312.
9638         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
9639
9640         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
9641         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
9642         per-image cache.
9643
9644         * assembly.c (mono_assembly_close): Free image->references.
9645
9646         * assembly.c (mono_assembly_names_equal): Fix a warning.
9647         (mono_assemblies_cleanup): Cleanup more global data.
9648
9649         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
9650
9651         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
9652         ptr_cache and image->modules.
9653
9654         * image.c (mono_image_init): Allocate array_cache lazily.
9655         
9656 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9657
9658         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
9659         behavior was changed recently and has bad side effects.
9660
9661 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
9662
9663         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
9664         
9665         * assembly.c (mono_assembly_close): Remove a debug printf.
9666
9667         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
9668
9669         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
9670         to also allow for temporary references between mono_image_open ()/close ().
9671
9672         * domain.c (get_runtimes_from_exe): Add a FIXME.        
9673
9674 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
9675
9676         * marshal.c: Fix support for dynamic methods.
9677
9678         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
9679
9680         * marshal.c (mono_marshal_cleanup): New cleanup function.
9681
9682         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
9683         image mempools.
9684
9685         * class.c (mono_class_init): Fix leaking class->nested_classes.
9686
9687         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
9688
9689         * image.c (mono_image_init): Initialize the new cashes.
9690
9691         * image.c (mono_image_close): Destroy the new cashes.
9692
9693         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
9694
9695         * mempool.c (mono_mempool_strdup): New helper function.
9696
9697         * class-internals.h: Add prototype for mono_loader_unlock ().
9698
9699         * domain.c (mono_jit_info_table_find): Fix a warning.
9700         (mono_debugger_check_runtime_version): Ditto.
9701
9702         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
9703         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
9704         functions to these modules.
9705
9706         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
9707         metadata modules.
9708         
9709         * marshal.c (mono_free_bstr): Fix a warning.
9710
9711         * assembly.c (mono_assembly_open_full): Fix another small leak.
9712
9713         * object.c: Fix some unload leaks in the remoting code.
9714
9715         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
9716         function.
9717
9718         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
9719
9720         * reflection.c: Fix some unload leaks in dynamic assemblies.
9721
9722 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
9723
9724         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
9725         * marshal.h: Add BSTR support on Win32
9726         * icall.c: Add BSTR icalls
9727         * metadata.h: Add BSTR enums
9728
9729 2006-04-28  Miguel de Icaza  <miguel@novell.com>
9730
9731         Work to catch the crash from #76795 and turn it into an
9732         exception.   As I stubbed out pieces of the VisualBasic support,
9733         I found a number of places where the code was failing and I added
9734         checks to those places. 
9735         
9736         * metadata.c (do_mono_metadata_parse_generic_class): Make this
9737         function return a status code.  If we fail to parse the signature
9738         from mono_metadata_parse_generic_inst, return FALSE.
9739
9740         * loader.c (mono_get_method_from_token): If we fail to load the
9741         method (mono_class_get) return NULL.   
9742
9743         * (method_from_memberref): Return NULL if we are unable to parse
9744         the method signature
9745
9746         (mono_loader_error_prepare_exception): Since we now use the
9747         loader_error flag internally to stop processing, and obtaining
9748         exceptions that might be thrown will walk this code path the
9749         proper way of going from a MonoLoaderError into a
9750         MonoException was convoluted.   This new routine encapsulates the
9751         process of turning the error into an exception and *clearing* the
9752         error afterwards.
9753         
9754 2006-04-27  Miguel de Icaza  <miguel@novell.com>
9755
9756         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
9757         with missing assemblies), and to cope with:
9758
9759                 * Missing fieldref from a non-existing assembly.
9760                 * Missing methodref from a non-existing assembly.
9761
9762         The first batch of work to address *some* of the issues from 76661.
9763         
9764         * object.c (mono_class_create_runtime_vtable): If we fail to
9765         initialize the class raise the exception here. 
9766
9767         * metadata.c (mono_class_get_overrides_full): If any methods fail
9768         to load return the failure to the caller.
9769
9770         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
9771         flagging assemblies that failed to load.   
9772
9773         Do not crash if we are unable to load the assembly.
9774
9775         (mono_assembly_close): Do nothing with REFERENCE_MISSING
9776         assemblies. 
9777
9778         * loader.c (mono_loader_set_error_type_load): Change the
9779         convention to always pass unallocated strings, so we make our own
9780         copies (I know our own code had duplicated strings before, but
9781         this keeps the normal conventions).
9782         (method_from_memberref): Call mono_loader_set_error_method_load
9783         for all possible failures of loading the class. 
9784         Remove assert, turn into a loader error.
9785
9786         (mono_loader_error_to_exception): Move this routine from mini
9787         (mini_loader_error_to_exception) there was no need to have that in
9788         mini. 
9789
9790         * class.c (mono_class_from_typeref): If we were not able to load
9791         the assembly with mono_assembly_load_reference, call the
9792         mono_loader_set_error_type_load to register the problem.
9793
9794         (mono_class_setup_fields): If we fail to load the type from
9795         mono_metadata_parse_type_full, call mono_class_set_failure and
9796         break from the loop.
9797
9798         If class->exception_type is set, we do not layout the fields as
9799         that might crash the runtime, and instead return (from breaking
9800         from the previous loop).
9801
9802         (mono_class_setup_vtable): This now returns a boolean indicating
9803         whether the table was properly setup.   The decision is driven by
9804         mono_class_get_overrides_full which might run into non-existing
9805         methods. 
9806         
9807         (mono_class_init): Returns TRUE on success or FALSE if there was a
9808         problem in loading the type (incorrect assemblies, missing
9809         assemblies, methods, etc).
9810
9811         When we call mono_class_setup_fields we also check for a potential
9812         error inside this call (either a class exception or a general
9813         loader exception).
9814
9815         (mono_class_create_from_typedef): If the parent fails to load
9816         (calling mono_class_get_full) return NULL.
9817         
9818         ** Important **
9819
9820         calls to mono_metadata_parse_type_full should be checked
9821         everywhere and set the mono_class_set_failure
9822         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
9823
9824         The current patch checks the places where my manually constructed
9825         tests show the errors are showing up, but we should do it
9826         everywhere. 
9827
9828         ** Important2 **
9829
9830         mono_class_init return values should be tested everywhere, like
9831         the previous case this is something that we should audit
9832         everywhere and not only on the cases exposed by the tests I
9833         created. 
9834
9835 2006-04-26  Miguel de Icaza  <miguel@novell.com>
9836
9837         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
9838         boolean parameter and instead pass the information on `options'
9839         parameter (FileOptions).
9840
9841         * icall.c: Register the new signature for MonoIO.Open.
9842
9843         * debug-helpers.c (dis_one): Trying to understand how coverity
9844         works.  Fix Run 5, item 78.
9845
9846 2006-04-26  Dick Porter  <dick@ximian.com>
9847
9848         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
9849         dereference.
9850
9851 2006-04-25  Martin Baulig  <martin@ximian.com>
9852
9853         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
9854
9855         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
9856         debugger_thread_created().
9857         (debugger_gc_push_all_stacks): Don't handle the main thread in any
9858         special way.
9859         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
9860         (mono_debugger_finalize_threads): New function; undo the effects
9861         of mono_debugger_init_threads().
9862         (mono_debugger_create_all_threads): Removed.
9863
9864 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
9865
9866         * image.c (mono_image_close): Tidy up trace messages.
9867
9868         * assembly.c (mono_assembly_close): Ditto.
9869
9870         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
9871         no longer references an already freed assembly. Fixes #78168.
9872
9873 2006-04-21  Dick Porter  <dick@ximian.com>
9874
9875         * threads.c (mono_thread_detach): Fix reference counting when
9876         detaching threads.
9877
9878 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
9879
9880         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
9881         #78155.
9882
9883 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
9884
9885         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
9886         (mono_type_to_stind): Ditto.
9887
9888         * marshal.c: Use the new helper functions to simplify code.
9889
9890         * image.c (mono_image_close): Add some code for help debug assembly unloading
9891         problems.
9892
9893         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
9894         image mempool.
9895
9896         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
9897         assembly was already loaded in another appdomain. Fixes #78083.
9898
9899 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
9900
9901         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
9902         referenced assemblies.
9903         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
9904
9905         * domain.c (mono_domain_free): Add a trace message.
9906
9907         * appdomain.c (add_assemblies_to_domain): Ditto.        
9908
9909         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
9910         field.  
9911
9912 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
9913
9914         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
9915
9916 2006-04-12  Martin Baulig  <martin@ximian.com>
9917
9918         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
9919         `USE_INCLUDED_LIBGC'.   
9920
9921 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
9922
9923         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
9924         the patch contains ../ and a small directory name later. Hopefully fixes
9925         #78035.
9926
9927 2006-04-10  Martin Baulig  <martin@ximian.com>
9928
9929         Clean up the debugger's thread-handling code.
9930
9931         The debugger's thread-handling code has been moved from
9932         ../mini/debug-debugger.c to threads.c.  We now iterate directly
9933         over the `threads' hash, keep track of exiting threads and also
9934         use proper locking.
9935
9936         We can now debug XSP and XSP based applications with the debugger.
9937
9938         * object-internals.h (MonoThread): Added `gpointer end_stack'.
9939
9940         * threads.h
9941         (MonoThreadCallbacks): Removed; this was only used by the debugger.
9942         (mono_install_thread_callbacks): Likewise.      
9943
9944         * threads.c (mono_thread_callbacks): Removed.
9945         (debugger_thread_created, debugger_thread_exited): New static functions.
9946         (start_wrapper): Call debugger_thread_created().
9947         (thread_cleanup): Call debugger_thread_exited().
9948         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
9949         (mono_debugger_init_threads): New public function.
9950         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
9951         iterate directly over the `threads' hash and also use proper locking.
9952
9953         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
9954
9955         * mono-debug-debugger.h
9956         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
9957
9958 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
9959
9960         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
9961         argument type=array. Fixes #78057.
9962
9963 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
9964
9965         * culture-info-table.h : regenerated. Fixed bug #69652.
9966
9967 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
9968
9969         * loader.c metadata.c: Reapply a variant r59116.
9970         
9971         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
9972
9973         * class.c (mono_class_setup_interface_offsets): New internal function.
9974
9975         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
9976         interfaces too. Fixes #77398.
9977
9978         * reflection.c (encode_cattr_value): Add support for 
9979         parameter type=object, argument type=array.
9980         (load_cattr_value): Ditto. Fixes #77916.
9981
9982         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
9983         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
9984
9985         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
9986         a byval char array and CharSet is Ansi.
9987
9988         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
9989
9990 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
9991
9992         * metadata.c: Add some locking comments.
9993         
9994         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
9995         mempool.
9996         (mono_metadata_free_method_signature): Don't free the signature itself.
9997
9998         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
9999
10000         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
10001         reference the same MonoImage.
10002         (mono_assembly_load_from_full): Add an assert.
10003
10004 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
10005
10006         * image.c (mono_image_close): Don't put the image we are about to free into the
10007         loaded_images_guid_hash.
10008
10009         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
10010         to reduce code duplication.
10011
10012         * marshal.c: Register the native functions called by this module as icalls, to
10013         somewhat centralize the creation of MonoMethodSignature's.
10014
10015         * loader.c (mono_method_signature): Add a cache for method signatures.
10016
10017         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
10018         the parameter attributes of a method.
10019         (mono_metadata_parse_method_signature_full): Refactored the computation of
10020         parameter attributes into a separate function. Also avoid one allocation in
10021         most cases.
10022
10023         * assembly.c (mono_assembly_close): Ditto.
10024
10025         * image.c (mono_image_close): Log trace messages with INFO level.
10026
10027         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
10028
10029         * image.c reflection.c: Correct reference counting of image modules.
10030         
10031         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
10032         of this function from the image mempool.
10033         
10034         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
10035         to allow more cached types to be used.
10036
10037         * mono-debug.c (mono_debug_add_method): Appled patch from
10038         David S. Miller  <davem@sunset.davemloft.net>: Access 
10039         minfo->lexical_blocks[] entry elements using read32().
10040
10041 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
10042
10043         * loader.c (mono_free_method): No longer free the method header for non-dynamic
10044         methods as it is allocated from the mempool.
10045
10046         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
10047         image mempool.
10048
10049         * metadata-internals.h: Add comments describing the reference counting scheme
10050         used for MonoImage and MonoAssembly.
10051
10052         * image.c assembly.c reflection.c: Rework reference counting of images and 
10053         assemblies so they are freed when the runtime is shut down. Free some 
10054         additional memory structures when an image is unloaded.
10055         
10056 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
10057
10058         * class.c loader.c reflection.c: Allocate more data structures in
10059         the image mempool.
10060
10061 2006-03-31  Miguel de Icaza  <miguel@novell.com>
10062
10063         * icall.c
10064         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
10065         build on pre glib 2.4 systems.
10066
10067 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
10068
10069         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
10070
10071         * icall.c: Fix some warnings.
10072
10073 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
10074
10075         * culture-info-table.h : regenerated.
10076
10077 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
10078
10079         * threads.c, object-internals.h, verify.c: changed the culture caching
10080         code to use a normal MonoArray for storage so the GC can keep track of
10081         them easily. Fixed bits of the cache logic, too and simplified the
10082         code.
10083
10084 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
10085
10086         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
10087         thread for non-Boehm GCs.
10088
10089 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
10090
10091         * domain.c, object.c, domain-internals.h: reduce the amount of memory
10092         needed to keep track of the data for static fields.
10093
10094 2006-03-29  Raja R Harinath  <rharinath@novell.com>
10095
10096         Fix #75172
10097         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
10098         for interface classes.  Use 'num_methods' instead.
10099         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
10100         before using '->vtable_size' field.
10101
10102 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
10103
10104         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
10105         doesn't contain managed pointers, so use a normal hashtable.
10106
10107 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
10108
10109         * reflection.c, class-internals.h, domain.c: fixed handling of types
10110         used as values for objects in custom attributes (bug #77915):
10111
10112 2006-03-24  Martin Baulig  <martin@ximian.com>
10113
10114         * class.c (mono_class_setup_fields): Added support for generic
10115         instances; fixes #77580.
10116
10117 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10118
10119         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
10120
10121 2006-03-24  Dick Porter  <dick@ximian.com>
10122
10123         * file-io.c (get_file_attributes): More stat macro breakage.
10124         Fixes bug 77759.
10125
10126 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
10127
10128         * profiler.c: added the file=filename option in the default profiler
10129         to output the profile data to filename.
10130
10131 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10132
10133         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
10134         bug #77877.
10135
10136 2006-03-22  Martin Baulig  <martin@ximian.com>
10137
10138         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
10139         allocated `MonoClassField *' in `fb->handle'.
10140
10141 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10142
10143         * class.c, image.c, metadata-internals.h: implemented new mechanism to
10144         allocate interface ID to save memory and allow better ID reuse on
10145         appdomain unload. setup_generic_vtable () removal from Martin.
10146
10147 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
10148
10149         * object.h, appdomain.c, domain.c, exception.c, icall.c,
10150         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
10151         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
10152         write barriers for reference stores with managed objects accessed with
10153         C structures in the runtime and in embedding programs.
10154
10155 2006-03-20  Raja R Harinath  <rharinath@novell.com>
10156
10157         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
10158         'interface_id' and 'max_interface_id' fields of MonoClasses
10159         representing open generic types.
10160
10161 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
10162
10163         * object.h, object.c, icall.c: added functions to deal with
10164         storing valuetypes that contain references in managed objects.
10165         * reflection.c, string-icalls.c, threads.c, marshal.c: small
10166         fixes and comments around uses of mono_array_addr ().
10167
10168 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
10169
10170         * object.h, icall.c, monitor.c: object.GetHashCode ()
10171         implementation that supports the moving garbage collector.
10172
10173 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10174
10175         * icall.c, threads-types.h, threads.c: implemented finalizer for
10176         LocalDataStoreSlot.
10177
10178 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
10179
10180         * metadata.c (mono_type_size): Add a fixme.
10181         (mono_type_stack_size): Ditto.
10182
10183         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
10184         'type_forwarders' field.
10185
10186         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
10187         attribute from net 2.0.
10188
10189         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
10190         from class.c.
10191
10192         * class.c (mono_class_setup_fields): Fix a warning.
10193         
10194         * class.c (mono_class_from_name): Add support for assemblyref entries
10195         in the EXPORTEDTYPE table.
10196
10197         * reflection.c: Add support for handling type forwarders under net 2.0.
10198
10199         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
10200         
10201 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
10202
10203         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
10204         overwriting entries in ModuleBuild->types, also clean up the code
10205         a little. Fixes #77774.
10206
10207 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
10208
10209         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
10210         load friend assembly info when present.
10211
10212 2006-03-14  Raja R Harinath  <rharinath@novell.com>
10213
10214         Fix crasher on gtest-158.cs.
10215         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
10216         the return value if the MonoClass we want is yet in an
10217         inconsistent state.
10218         * class.c (mono_class_create_from_typedef): Add an comment
10219         explaining an order dependency between mono_class_setup_parent and
10220         mono_class_setup_mono_type.
10221
10222 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
10223
10224         * class.c: documentation updates and events bug fix.
10225
10226 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
10227
10228         * class.c: some cleanup, locking fixes.
10229
10230 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10231
10232         * class.c: fix the generics code to setup nested
10233         type info to the instantiated type (bug #77770).
10234
10235 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
10236
10237         * marshal.c: fixed a few type correctness issues.
10238
10239 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10240
10241         * loader.c: the Set/Get/Addrtess array methods should be public.
10242
10243 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
10244
10245         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
10246         
10247         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
10248         info->wrapper.
10249
10250 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
10251
10252         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
10253
10254         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
10255
10256         * mempool.c (mono_mempool_alloc): Speed this up a bit.
10257         (mono_mempool_alloc0): Ditto.
10258
10259 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10260
10261         * socket-io.c:
10262         (create_object_from_sockaddr): it was allocating 4 extra bytes
10263         for the AF_UNIX data. Fixes bug #77747.
10264
10265 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
10266
10267         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
10268
10269 2006-03-09  Dick Porter  <dick@ximian.com>
10270
10271         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
10272         Fixes bug 76966 again.
10273
10274 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10275
10276         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
10277         names from r57532
10278         * appdomain.c: Bumped corlib version to 48 (due to r57532)
10279
10280 2006-03-07  Martin Baulig  <martin@ximian.com>
10281
10282         * object.c
10283         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
10284
10285 2006-03-07  Martin Baulig  <martin@ximian.com>
10286
10287         * class.c
10288         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
10289         regression introduced in r56970; see gtest-252.cs.
10290
10291         * loader.c (mono_get_method_constrained): Correctly handle generic
10292         methods; see gtest-253.cs.
10293
10294 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
10295
10296         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
10297
10298 2006-03-04  Martin Baulig  <martin@ximian.com>
10299
10300         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
10301         compute the parent type at runtime, just like we're already doing
10302         it for interfaces.
10303
10304         * reflection.c
10305         (mono_reflection_bind_generic_parameters): Don't compute the
10306         parent type anymore.
10307
10308         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
10309
10310 2006-03-04  Martin Baulig  <martin@ximian.com>
10311
10312         * mono-debug-debugger.h
10313         (mono_debugger_create_notification_function): Allocate memory at
10314         runtime and return a pointer to it.
10315
10316 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
10317
10318         * assembly.c: Fix windows build.
10319         
10320         * assembly.c: Fix build.
10321
10322         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
10323
10324         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
10325         
10326 2006-03-03  Dick Porter  <dick@ximian.com>
10327
10328         * process.c
10329         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
10330         Check parameters before dereferencing them.  Fixes Aaron's part of
10331         bug 77393.
10332
10333 2006-03-03  Raja R Harinath  <rharinath@novell.com>
10334
10335         Fix performance regression.
10336         * loader.c (find_method_in_class): Add 'from_class' argument.
10337         Rename 'klass' argument to 'in_class'.  The signature is compared
10338         against the method in 'in_class', and the corresponding method is
10339         returned from 'from_class'.
10340         (find_method): Walk both 'in_class' and 'from_class' in parallel.
10341         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
10342         type definition and generic instantiation in parallel.
10343         (mono_get_method_constrained): Update to changes.
10344
10345 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
10346
10347         * threads.c: make sure the domain is correct, too when doing
10348         mono_thread_attach ().
10349
10350 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
10351
10352         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
10353         windows. Fixes #77683.
10354
10355 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
10356
10357         * object.h, *: introduced specific way to set elements of an array
10358         of references to be used as write barrier. Still need to audit the
10359         uses of mono_array_addr.
10360
10361 2006-03-01  Miguel de Icaza  <miguel@novell.com>
10362
10363         * object-internals.h: New field to cache the assmebly name, patch
10364         from Tambet Ingo (tambet@ximian.com)
10365
10366 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
10367
10368         * decimal.h, class-internals.h, metadata-internals.h,
10369         file-io.h: mark a few function declarations as internal, to
10370         reduce the number of PLT entries.
10371
10372 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10373
10374         * file-io.c: fix typo in warning message.
10375
10376 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
10377
10378         * loader.c: on unix, lookup the "*A" version of a function
10379         if charset is auto as a second option before failing.
10380
10381 2006-02-28  Raja R Harinath  <rharinath@novell.com>
10382
10383         * class.h (mono_class_inflate_generic_method): Revert to two
10384         argument version.
10385         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
10386         (mono_class_inflate_generic_method_full): Add.
10387         * class.c (mono_class_inflate_generic_method_full): Rename from
10388         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
10389         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
10390         * loader.c, reflection.c: Update to changes.
10391
10392 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
10393
10394         * icall.c: const fixes and small improvements.
10395
10396 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10397
10398         * threadpool.c: for asynchronous connect(), enable the same workaround
10399         for BSD 6 as for the Mac. Fixes bug #77637.
10400
10401 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
10402
10403         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
10404         formatted classes. Fixes #77524.
10405
10406 2006-02-24  Raja R Harinath  <rharinath@novell.com>
10407
10408         * class.c (inflate_generic_type): Add a couple more
10409         micro-optimizations.
10410         (inflate_generic_context): Don't use the 'gmethod' from
10411         'inflate_with'.
10412         (mono_class_inflate_generic_method): If the method has generic
10413         parameters, but the passed-in context doesn't have a 'gmethod',
10414         create one.  Use the possibly simplified generic instantiation
10415         from the declaring class instead of the one passed in.
10416
10417 2006-02-24  Raja R Harinath  <harinath@gmail.com>
10418
10419         Make generic method signature and method header handling lazy.
10420         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
10421         (inflate_generic_header): Likewise.
10422         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
10423         parameter to avoid inflating types.
10424         (mono_get_inflated_method): Empty out.
10425         * class.h (mono_class_inflate_generic_method): Update to changes.
10426         * loader.c (mono_get_method_from_token): Don't parse signature for
10427         generic methods, nor methods of generic classes.
10428         (mono_method_signature): Rename from 'mono_method_signature'.
10429         Inflate signature on demand.
10430         (mono_method_get_header): Inflate method header on demand.
10431         * reflection.c: Update to changes.
10432
10433 2006-02-23  Raja R Harinath  <rharinath@novell.com>
10434
10435         * metadata.c (mono_metadata_inflate_generic_inst): If the
10436         instantiation is closed, don't bother expanding it in the new
10437         context.
10438         * class.c (inflate_generic_class): If the generic instantiation
10439         doesn't change after inflation, return the argument itself.
10440         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
10441         Add bounds checks.
10442         (inflate_generic_context): If neither the generic class nor the
10443         generic method instantiations change, return the original context.
10444         * reflection.c (mono_method_get_object): Do
10445         'mono_get_inflated_method' before accessing the ->klass field.
10446         (inflate_mono_method): Don't create a MonoGenericMethod unless
10447         necessary.
10448         (inflate_method): Don't pass a constructed type as the declaring
10449         type of a methodbuilder.
10450
10451 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
10452
10453         * object.c: fix memory overwrite.
10454
10455 2006-02-22  Dick Porter  <dick@ximian.com>
10456
10457         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
10458         it doesn't work any more.
10459         (mono_threads_request_thread_dump): Fix unused variable warnings.
10460
10461 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10462
10463         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
10464         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
10465         the public header file.
10466
10467 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
10468
10469         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
10470
10471 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
10472
10473         * class-internals.h, object.c: reduce the size of MonoVTable
10474         and store the interface_offsets array at negative offsets.
10475
10476 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
10477
10478         * metadata.c: tweak table descriptors data structures to reduce
10479         size and runtime relocations.
10480
10481 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10482
10483         * marshal.c: fix some types and opcodes to be type-safe
10484         in marshaling wrappers.
10485
10486 2006-02-21  Ankit Jain  <jankit@novell.com>
10487
10488         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
10489
10490 2006-02-21  Raja R Harinath  <rharinath@novell.com>
10491
10492         * metadata.c (get_constraints): Relax debugging checks for monodis.
10493
10494 2006-02-21  Ankit Jain  <jankit@novell.com>
10495
10496         * metadata.c (mono_metadata_load_generic_params): Move the code
10497         checking for ambiguous generic params from here to mono/dis/get.c
10498         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
10499
10500 2006-02-21  Raja R Harinath  <harinath@gmail.com>
10501
10502         Fix assertion triggered when compiling nemerle.
10503         * class.c (mono_get_shared_generic_inst): Rename from
10504         get_shared_inst and make non-static.
10505         * loader.c (mono_get_shared_generic_method): New.  Used to create
10506         the MonoGenericContext-equivalent of a MonoGenericContainer.
10507         (mono_get_method_from_token): Initialize the 'context' field of
10508         the created MonoGenericContainer.
10509         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
10510         * metadata.c (get_constraints): Add sanity check.
10511         * class-internals.h: Add new internal methods.
10512
10513         * reflection.c (verify_safe_for_managed_space): New sanity check.
10514         Currently checks that owner-less generic parameters aren't allowed
10515         in managed space.
10516         (mono_type_get_object): Use it.
10517         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
10518         that are now in mono_type_get_object.
10519         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
10520
10521 2006-02-19  Raja R Harinath  <harinath@gmail.com>
10522
10523         * metadata.c (mono_type_create_from_typespec): Rename from
10524         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
10525         argument and caching of types in the generic container.
10526         (unwrap_arrays, find_generic_param): Remove.
10527         * metadata-internals.h: Update.
10528         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
10529
10530 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
10531
10532         * class.c (mono_class_get_exception_for_failure): Fix a warning.
10533
10534         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
10535         return values. Fixes #77581.
10536
10537         * class.c (mono_fnptr_class_get): Switch name and name_space.
10538
10539         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
10540         classes and add support for [In, Out] attributes.
10541         (mono_marshal_free_asany): Ditto. Fixes #77524.
10542
10543 2006-02-18  Raja R Harinath  <harinath@gmail.com>
10544
10545         * class.c (mono_class_from_generic_parameter): Make more robust to
10546         incomplete MonoGenericContainers from monodis.
10547
10548 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
10549
10550         * class-internals.h: added some more exception types.
10551         * class.c, metadata.c: added a few checks to handle missing
10552         types.
10553
10554 2006-02-17  Raja R Harinath  <rharinath@novell.com>
10555
10556         Use owner-less generic-params some more.
10557         * class.c (my_mono_class_from_generic_parameter): Remove.
10558         (mono_class_from_generic_parameter): Handle null image,
10559         param->name and param->owner.
10560         (mono_class_from_mono_type): Update.
10561         (mono_class_create_from_typespec): Remove 'container' parameter.
10562         If that parameter is non-null, the result is always inflated by
10563         'mono_class_get_full' anyway.
10564         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
10565         parameter.
10566         (mono_class_get_full): Update.
10567
10568         * class.c (inflate_generic_type) [GENERICINST]: If the generic
10569         instance is not open, don't bother inflating.
10570         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
10571         parse metadata for inflated classes.
10572         (_mono_class_get): Change GenericContext* parameter to
10573         GenericContainer*.
10574         (mono_class_create_from_typespec): Likewise.  Simplify, and
10575         implement trivially.  All the cases are handled in
10576         mono_class_from_mono_type.  Don't inflate returned class.
10577         (mono_class_get_full): Delegate GENERICINST optimization to
10578         inflate_generic_type.
10579         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
10580
10581 2006-02-16  Dick Porter  <dick@ximian.com>
10582
10583         * socket-io.c (create_object_from_sockaddr): Fix typo.
10584         (create_sockaddr_from_object): Check array lengths before
10585         potentially accessing items off the end.
10586         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
10587         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
10588         (ves_icall_System_Net_Sockets_Socket_Send_internal)
10589         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
10590         length checks to avoid wraparound overflows.
10591         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
10592         contents of the array of sockets
10593         (hostent_to_IPHostEntry2)
10594         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
10595         Check return value of inet_ntop ().
10596         (addrinfo_to_IPHostEntry): Fix typo
10597
10598 2006-02-16  Raja R Harinath  <rharinath@novell.com>
10599
10600         Type metadata parsing doesn't use generic-instantiation information.
10601         * metadata.c (mono_metadata_parse_array_full): Change
10602         MonoGenericContext* parameter to MonoGenericContainer*.
10603         (mono_metadata_parse_type_full): Likewise.
10604         (mono_type_create_from_typespec_full): Likewise.
10605         (mono_metadata_parse_mh_full): Likewise.
10606         (mono_metadata_parse_generic_inst): Likewise.
10607         (do_mono_metadata_parse_generic_class): Likewise.
10608         (do_mono_metadata_parse_type): Likewise.
10609         * metadata-internals.h: Update to changes.
10610         * class.c (mono_class_find_enum_basetype): Likewise.
10611         (mono_class_setup_fields): Likewise.
10612         (mono_class_create_from_typespec): Likewise.
10613         * loader.c (method_from_methodspec): Likewise.
10614         (mono_get_method_from_token): Likewise.
10615         (mono_method_get_header): Likewise.
10616
10617 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10618
10619         * marshal.c: handle additional GENERICINST case (patch from
10620         Thong Nguyen <tum@veridicus.com>).
10621         Fix a few cases where LDIND_I/STIND_I was used for references.
10622
10623 2006-02-16  Raja R Harinath  <rharinath@novell.com>
10624
10625         * reflection.c (mono_reflection_get_token): Remove unused variable.
10626
10627 2006-02-16  Martin Baulig  <martin@ximian.com>
10628
10629         * reflection.c (mono_reflection_get_token): Add support for fields
10630         in instantiated generic types.
10631
10632         * icall.c
10633         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
10634
10635 2006-02-15  Martin Baulig  <martin@ximian.com>
10636
10637         * icall.c
10638         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
10639         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
10640         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
10641         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
10642
10643 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
10644
10645         * class.c, metadata.c, metadata.h, object.c, icall.c,
10646         marshal.c: changed mono_type_get_underlying_type () to do
10647         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
10648         Fixed handling of instantiated generic valuetypes (bug #75479).
10649
10650 2006-02-15  Raja R Harinath  <rharinath@novell.com>
10651
10652         * metadata.c (mono_metadata_decode_signed_value): Simplify.
10653         Delegate to mono_metadata_decode_value, and work on the returned value.
10654
10655         * icall.c (ves_icall_MonoType_GetGenericArguments):
10656         Add consistency check here too.
10657         
10658 2006-02-15  Ankit Jain  <jankit@novell.com>
10659
10660         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
10661         char/short etc.
10662
10663 2006-02-15  Ankit Jain  <jankit@novell.com>
10664
10665         * metadata.c (mono_metadata_decode_signed_value): New function to decode
10666         signed values, used only for representing lower bounds of arrays.
10667         (mono_metadata_parse_array_full): Use new
10668         mono_metadata_decode_signed_value to decode lower bounds.
10669
10670 2006-02-14  Martin Baulig  <martin@ximian.com>
10671
10672         * reflection.c
10673         (mono_reflection_get_token): Support "MonoGenericMethod" and
10674         "MonoGenericCMethod" and allow generic instances / methods.
10675
10676 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
10677
10678         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
10679         to obtain the terminal size using an ioctl.
10680
10681         * object.c (mono_nullable_init): Revert this as nullable reference
10682         types are not valid.
10683         (mono_nullable_box): Ditto.
10684
10685 2006-02-09  Dick Porter  <dick@ximian.com>
10686
10687         * threads.c (mono_thread_detach): Drop a reference to the thread
10688         we're detaching.
10689
10690 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
10691
10692         * object.c (mono_nullable_init): Handle nullable reference types.
10693         (mono_nullable_box): Ditto. Fixes #77446.
10694
10695 2006-02-07  Martin Baulig  <martin@ximian.com>
10696
10697         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
10698
10699 2006-02-07  Ankit Jain  <jankit@novell.com>
10700
10701         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
10702         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
10703         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
10704         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
10705         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
10706         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
10707
10708 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
10709
10710         * class.c (mono_class_create_generic): Set type_token as well.
10711
10712         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
10713         compatible with MS.
10714
10715 2006-02-02  Martin Baulig  <martin@ximian.com>
10716
10717         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
10718         has never been used so far.
10719
10720 2006-02-02  Martin Baulig  <martin@ximian.com>
10721
10722         * mono-debug-debugger.h: Changed comment at the top of this file;
10723         the header is not installed, but it's safe to #include it from
10724         within the JIT.
10725
10726         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
10727         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
10728
10729 2006-02-02  Martin Baulig  <martin@ximian.com>
10730
10731         * mono-debug.h
10732         (MonoSymbolTable): Removed the `metadata_info' field.
10733
10734         * mono-debug.c
10735         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
10736
10737         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
10738         (mono_debugger_add_builtin_types): Removed.
10739         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
10740         (mono_debugger_create_notification_function): We now operate on a
10741         pre-allocated area; take a `gpointer' and return `void'.
10742
10743         * mono-debug-debugger.c
10744         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
10745         (mono_debugger_add_builtin_types): Removed.
10746
10747 2006-02-02  Martin Baulig  <martin@ximian.com>
10748
10749         * threads.c (mono_debugger_create_all_threads): New public method.
10750
10751 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
10752
10753         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
10754         breaks on several platforms.
10755
10756 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
10757
10758         * assembly.c: the VS.NET build doesn't supply default values for
10759         MONO_ASSEMBLIES and MONO_CFG_DIR.
10760
10761 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
10762
10763         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
10764         helper function.
10765
10766         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
10767
10768         * loader.c (method_from_memberref): Fix a warning.
10769
10770         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
10771
10772         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
10773         with explicit layout. Fixes #77433.
10774
10775 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
10776
10777         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
10778         max_interface_id is initialized before using it. Fixes #77398.
10779         (ves_icall_Type_GetInterfaces): Ditto.
10780
10781 2006-01-30  Raja R Harinath  <rharinath@novell.com>
10782
10783         * metadata.c (mono_metadata_parse_method_signature_full): Don't
10784         allocate memory for parameter attributes when parsing memberref
10785         signatures.
10786         * loader.c (mono_loader_set_error_method_load): Don't warn.
10787         (method_from_memberref): Ensure MissingMethodException gets thrown
10788         if method is not found.  Make warning more informative.
10789
10790 2006-01-29  Raja R Harinath  <harinath@gmail.com>
10791
10792         Fix #77397
10793         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
10794         return true if is byref.
10795         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
10796         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
10797         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
10798
10799 2006-01-27  Raja R Harinath  <rharinath@novell.com>
10800
10801         Fix tests/find-method.2.il
10802         * loader.c (find_method, find_method_in_class): Remove is_inflated
10803         argument.  Revert 2006-01-18 change.
10804         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
10805         is generic, search for method in its generic definition.
10806         * class.c (mono_class_setup_vtable_general): Print generic
10807         arguments of generic types in debugging printf.
10808
10809 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
10810
10811         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
10812
10813         * threads.c (mono_threads_request_thread_dump): New helper function.
10814
10815 2006-01-25  Raja R Harinath  <rharinath@novell.com>
10816
10817         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
10818
10819 2006-01-25  Ankit Jain  <jankit@novell.com>
10820
10821         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
10822         move definition to ..
10823         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
10824         
10825 2006-01-25  Ankit Jain  <jankit@novell.com>
10826             Raja R Harinath  <rharinath@novell.com>
10827
10828         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
10829         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
10830         as necessary.
10831
10832 2006-01-25  Martin Baulig  <martin@ximian.com>
10833
10834         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
10835         `MonoDebuggerThread' into debug-debugger.c.
10836
10837 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
10838
10839         * profiler.c: fix printing of data.
10840
10841 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
10842
10843         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
10844           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
10845
10846 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
10847
10848         * object.c: fix deadlock related to string interning.
10849
10850 2006-01-23  Martin Baulig  <martin@ximian.com>
10851
10852         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
10853
10854         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
10855
10856 2006-01-23  Martin Baulig  <martin@ximian.com>
10857
10858         * mono-debug.h: Moved the prototypes of some functions which are
10859         used by the JIT here from mono-debug-debugger.h.
10860
10861 2006-01-21  Martin Baulig  <martin@ximian.com>
10862
10863         * Makefile.am: Don't install mono-debug-debugger.h.
10864
10865 2006-01-21  Martin Baulig  <martin@ximian.com>
10866
10867         * mono-debug-debugger.h: Enforce the private status of this header
10868         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
10869         Moved some stuff from mono-debugger-jit-wrapper.h here.
10870
10871 2006-01-20  Raja R Harinath  <rharinath@novell.com>
10872
10873         * class.c (mono_class_from_typeref): Add a sanity test to help
10874         catch lack of assembly load/search hooks.
10875
10876 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
10877
10878         * marshal.c (emit_struct_conv): Relax the fields with same offset
10879         check even more. Fixes #77230.
10880
10881 2006-01-18  Martin Baulig  <martin@ximian.com>
10882
10883         * loader.c (find_method_in_class): Added `gboolean is_inflated'
10884         argument; if false, we compare the uninstantiated signatures.
10885         (method_from_memberref): Compare the uninstantiated signatures;
10886         fixes #76417.
10887
10888 2006-01-18  Robert Jordan  <robertj@gmx.net>
10889
10890         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
10891         Clear the weak link. Fixes bug #77170.
10892
10893         * gc.c (mono_gchandle_free):
10894         Reflect *-gc.c changes (tiny optimization).
10895
10896 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
10897
10898         * metadata.c (mono_metadata_signature_dup): Applied patch from
10899         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
10900         Fixes #77288.
10901
10902 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
10903
10904         * marshal.c (emit_struct_conv): Allow fields with the same offset when
10905         marshalling from native to managed code. Fixes #77230.
10906
10907 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10908
10909         * threadpool.c: fix problem (Mac only) when more than one asynchronous
10910         connect. Fixes bug #77020.
10911
10912 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
10913
10914         * class.c: fixed id assignement for nested interfaces (bug #77275).
10915         Added also better info for --print-vtable debugging.
10916
10917 2006-01-12  Martin Baulig  <martin@ximian.com>
10918
10919         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
10920         interfaces on-the-fly; fixes #76625.
10921
10922         * class-internals.h
10923         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
10924         don't need that anymore.
10925
10926 2006-01-12  Miguel de Icaza  <miguel@novell.com>
10927
10928         * socket-io.c
10929         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
10930         To avoid initing the nested_classes when not needed I turned the
10931         PeerCredData as a toplevel internal class, as it has to be shared
10932         anyways. 
10933
10934         Fixes the CASA issue.
10935
10936 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
10937
10938         * domain.c: Accessors for MonoJitInfo
10939
10940         * profiler-private.h: Add jitinfo to the end jit hook
10941
10942         * profiler.[ch]: Define new hooks, called after jitting which give
10943         the MonoJitInfo that was compiled
10944
10945 2006-01-10  Martin Baulig  <martin@ximian.com>
10946
10947         * class.c (mono_class_setup_events): Add support for generic
10948         classes; fixes #76440.
10949
10950 2006-01-06  Raja R Harinath  <rharinath@novell.com>
10951
10952         Fix #77160.
10953         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
10954         on passed-in method.
10955
10956 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
10957
10958         * object.c (mono_runtime_invoke_array): Add Nullable support.
10959
10960         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
10961
10962 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
10963
10964         * file-io.c: Don't consider sockets as directory and avoid an endless
10965         loop. Fix bug #76966.
10966
10967 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
10968
10969         * object.c (mono_nullable_init): New helper function.
10970         (mono_nullable_box): Ditto.
10971
10972         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
10973
10974         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
10975
10976         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
10977         
10978 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
10979
10980         * class.c (mono_class_is_assignable_from): Make T assignable to 
10981         Nullable<T>.
10982
10983 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
10984
10985         * appdomain.c: Bump corlib version to 46.
10986         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
10987         serialization purpose) and changed ves_icall_System_Reflection_
10988         Assembly_get_code_base signature to accept a boolean (to escape, or 
10989         not, the assembly code base).
10990
10991 2005-12-23  Dick Porter  <dick@ximian.com>
10992
10993         * icall.c: 
10994         * threads-types.h: 
10995         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
10996         CreateEvent icall now returns "created" boolean parameter.
10997
10998 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
10999
11000         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
11001         #76967.
11002
11003         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
11004         when attr_klass is an interface. Fixes #77045.
11005
11006 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
11007
11008         * marshal.c (emit_struct_conv): Fix previous patch.
11009         
11010         * marshal.c (emit_struct_conv): Add a check for fields with the same
11011         offset.
11012
11013 2005-12-20  Raja R Harinath  <rharinath@novell.com>
11014
11015         Fix regression in Mono.C5.
11016         * class.c (mono_class_create_generic): If 'klass' is an interface
11017         set up the interface offsets.
11018         (mono_class_is_assignable_from): Don't throw away generic arguments.
11019
11020 2005-12-19  Raja R Harinath  <rharinath@novell.com>
11021
11022         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
11023         type parameters.
11024
11025 2005-12-15  Raja R Harinath  <rharinath@novell.com>
11026
11027         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
11028         dead store.
11029         (do_mono_metadata_parse_generic_class): Don't pass the current
11030         generic context when parsing the type being instantiated: it
11031         cannot use it, anyway.
11032
11033         * loader.c (method_from_memberref): Don't inflate a signature if
11034         it doesn't contain any type parameters.
11035
11036 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
11037
11038         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
11039
11040 2005-12-14  Martin Baulig  <martin@ximian.com>
11041
11042         * class.c
11043         (mono_type_get_name_recurse): Don't return null for type
11044         parameters and open generic classes.
11045         (mono_class_setup_methods): Don't exclude generic instances.
11046         (mono_get_unique_iid): Use different IDs for different
11047         instantiations of the same generic type.
11048         (mono_class_setup_vtable): Only use setup_generic_vtable() for
11049         open generic instances; create a normal vtable for closed generic
11050         instances.
11051         (mono_class_setup_vtable_general): We're now also called for
11052         closed generic instances.
11053
11054         * reflection.c
11055         (mono_reflection_bind_generic_parameters): Correctly use
11056         mono_metadata_lookup_generic_inst() everywhere.
11057
11058 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
11059
11060         * object.c (mono_class_create_runtime_vtable): Call 
11061         mono_class_setup_vtable ().
11062
11063         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
11064         function.
11065         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
11066         #76959.
11067
11068         * loader.c (mono_loader_set_error_type_load): Print the type load
11069         warnings to the console so they are more visible to the user.
11070         (mono_loader_set_error_method_load): Ditto.
11071
11072         * reflection.c (ensure_runtime_vtable): Revert the last change as it
11073         is still broken.
11074         
11075         * reflection.c (ensure_runtime_vtable): Fix build.
11076
11077         * reflection.c (ensure_runtime_vtable): Disable an optimization which
11078         doesn't work in all cases.
11079
11080 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
11081
11082         * object.c (mono_array_new_full): Treat a single dimensional array
11083         with 0 lower bounds as an szarray. Fixes #76973.
11084
11085         * reflection.c (custom_attr_visible): Really fix this.
11086
11087 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
11088
11089         * reflection.c (custom_attr_visible): Allow nested public attributes
11090         as well.
11091
11092         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
11093         interface check.
11094
11095 2005-12-12  Raja R Harinath  <harinath@gmail.com>
11096
11097         * class.c (set_generic_param_owner): Delete.
11098         (mono_class_create_from_typedef): Don't set ->owner field of
11099         generic parameters to "param containers" of enclosing classes.
11100         * reflection.c (mono_reflection_initialize_generic_parameter):
11101         Likewise.
11102
11103 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
11104
11105         * reflection.c (custom_attr_visible): Fix build.
11106
11107 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
11108
11109         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
11110         private attributes.
11111         
11112         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
11113         handling of null parameter defaults.
11114
11115 2005-12-09  Raja R Harinath  <rharinath@novell.com>
11116
11117         * class.c (mono_class_from_generic_parameter): Don't set
11118         klass->generic_container.
11119         (my_mono_class_from_generic_parameter): Likewise.
11120
11121 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
11122
11123         * reflection.c (load_public_key): Fix a warning.
11124         (method_encode_code): Fix unaligned accesses.
11125
11126 2005-12-07  Martin Baulig  <martin@ximian.com>
11127
11128         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
11129
11130         * reflection.c
11131         (write_generic_param_entry): Encode our custom attrs.
11132
11133         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
11134
11135 2005-12-07  Martin Baulig  <martin@ximian.com>
11136
11137         * reflection.c (encode_new_constraint): Removed; we don't use the
11138         `NewConstraintAttribute' anymore.
11139
11140 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
11141
11142         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
11143         not fire a TypeResolve event when Assembly.GetType () is called.
11144
11145 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
11146
11147         Beginning of support for nullable types in the runtime. Parts of
11148         this patch are from Martin.
11149
11150         * appdomain.c (MONO_CORLIB_VERSION): Bump
11151
11152         * domain.c (mono_init_internal): get the nullable type
11153
11154         * class.c (mono_class_is_nullable): New method
11155         (mono_class_get_nullable_param): New mehod
11156         (mono_class_create_generic): In types T? set cast_class to T
11157
11158         * class-internals.h (MonoDefaults): new nullable default class
11159         (mono_class_get_nullable_param, mono_class_get_nullable_param):
11160         new methods.
11161
11162 2005-12-05  Raja R Harinath  <rharinath@novell.com>
11163
11164         * metadata.c (select_container): New.  Refactor code to select the
11165         appropriate GenericContainer given the type of generic parameter
11166         we are looking for.
11167         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
11168         not a MonoGenericContext.  Use select_container.  Update parameters.
11169         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
11170         and MONO_TYPE_MVAR.
11171         (unwrap_arrays): Remove duplicate tests.
11172         (find_generic_param): Rename from 'has_same_context'.  Now walks a
11173         generic instantiated class to find any arguments that are generic
11174         parameters.
11175         (mono_type_create_from_typespec_full): Use find_generic_param to
11176         avoid evicting some generic instantiations from the typespec
11177         cache.
11178
11179 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
11180
11181         * reflection.c: fixed writing of doubles on ARM FPA.
11182
11183 2005-12-02  Robert Jordan  <robertj@gmx.net>
11184
11185         * icall.c: Fixed EventInfo.ReflectedType (#76829).
11186
11187 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11188
11189         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
11190         least on SUSE 10 they are not the same (on debian, they are just the
11191         same thing).
11192
11193 2005-12-01  Raja R Harinath  <rharinath@novell.com>
11194
11195         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
11196         DeclaringType for VARs and MVARs.
11197         * class.c (set_generic_param_owner): Fix initialization of owner
11198         fields.
11199
11200 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
11201
11202         * icall.c: fixed Enum.ToObject() to correctly convert the values.
11203
11204 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11205
11206         * threadpool.c: workaround for a bug that shows up on the Mac:
11207         select()+connect() on a blocking socket is not like it should
11208         be, so we proceed to connect() in that case, wasting the I/O
11209         threadpool thread until connect succeedes. Fixes bug #75436.
11210
11211 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11212
11213         * threadpool.c: fix typo when setting file descriptor states.
11214
11215 2005-11-28  Raja R Harinath  <rharinath@novell.com>
11216
11217         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
11218         * metadata.c (mono_metadata_parse_method_signature_full): Don't
11219         create a temporary signature container.
11220         (mono_metadata_parse_generic_param): Update to changes.
11221         (mono_type_create_from_typespec_full): Update to changes.
11222         * loader.c (method_from_memberref): Don't use a
11223         MonoGenericContainer while parsing a memberref signature.
11224         (method_from_methodspec): Remove dead-store of the 'container'
11225         variable.  It's overwritten before use.
11226
11227         * metadata.c (mono_type_create_from_typespec_full): Make debugging
11228         checks tighter.
11229         (mono_metadata_parse_generic_param): Likewise.
11230         * loader.c (find_method_in_class): Does not need a
11231         MonoGenericContainer.  Use 'mono_method_signature' rather than
11232         'mono_method_signature_full'.
11233         (find_method, mono_get_method_constrained, method_from_memberref):
11234         Update to changes.
11235
11236         * metadata.c (mono_type_create_from_typespec_full): Ensure that
11237         owner-less generic-parameters are never evicted from the typespec
11238         cache.
11239
11240         * loader.c (method_from_memberref): Don't use the current context
11241         when parsing signatures.
11242         (method_from_methodspec, mono_get_method_from_token): Update to changes.
11243
11244         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
11245         side-effects in g_assert.
11246         * loader.c (mono_get_method_from_token): Resolve klass earlier so
11247         that we don't potentially lose information.
11248
11249 2005-11-26  Dick Porter  <dick@ximian.com>
11250
11251         * icall.c:
11252         * threads.c: icalls to implement basic (ie, not named)
11253         System.Threading.Semaphore.
11254
11255 2005-11-24  Dick Porter  <dick@ximian.com>
11256
11257         * process.c
11258         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
11259         Use GetProcessId() if it's available.
11260
11261 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
11262
11263         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
11264
11265 2005-11-23  Raja R Harinath  <rharinath@novell.com>
11266             Ankit Jain  <jankit@novell.com>
11267
11268         * loader.c (mono_get_method_from_token): Initialize 'method' field
11269         of all generic parameters before parsing the signature.  Remove
11270         code that "fixed"-up MVAR references.
11271
11272 2005-11-23  Ankit Jain  <jankit@novell.com>
11273
11274         * metadata.c (mono_metadata_has_generic_params):
11275         (mono_metadata_load_generic_param_constraints):
11276         (mono_metadata_load_generic_params): Move duplicate code ...
11277         (mono_metadata_get_generic_param_row): ... here. Returns the
11278         first row-id in GenericParam table for a given owner (token).
11279         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
11280         prototype.
11281
11282 2005-11-23  Raja R Harinath  <rharinath@novell.com>
11283             Ankit Jain  <jankit@novell.com>
11284
11285         * metadata.c (mono_metadata_class_equal): Pass signature_only when
11286         comparing VARs too.
11287         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
11288         type->data.generic_param only if the type is an MVAR.
11289         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
11290         leak owner-less VARs and MVARs into managed space.
11291
11292 2005-11-21  Martin Baulig  <martin@ximian.com>
11293
11294         * class-internals.h
11295         (MonoMethod): Moved the `generic_container' here from
11296         `MonoMethodNormal' since we now also need it for
11297         `MonoMethodPInvoke';
11298         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
11299         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
11300         an union containing both `MonoMethodNormal' and
11301         `MonoMethodPInvoke'.
11302
11303         * loader.c
11304         (mono_get_method_from_token): Allow implementing generic methods
11305         as interncalls.
11306
11307         * threads.c
11308         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
11309         icall.
11310
11311 2005-11-17  Dick Porter  <dick@ximian.com>
11312
11313         * icall.c: 
11314         * process.h: 
11315         * process.c: Split the Process Start_internal icall into
11316         ShellExecuteEx_internal and CreateProcess_internal, which are
11317         called depending on whether UseShellExecute is true.  Fixes bug
11318         76670.
11319
11320         * appdomain.c (MONO_CORLIB_VERSION): Incremented
11321
11322 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
11323
11324         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
11325         'msize' parameters, use the information in 'mspec' instead.
11326         (emit_object_to_ptr_conv): Ditto.
11327
11328         * marshal.c (emit_struct_conv): Handle explicit layout structs with
11329         fields out of order. Fixes #76733.
11330
11331 2005-11-17  Ankit Jain  <jankit@novell.com>
11332
11333         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
11334
11335 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
11336
11337         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
11338           bug #76575.
11339
11340 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
11341
11342         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
11343         for types with non-auto layout. Fixes #76717.
11344
11345 2005-11-16  Ankit Jain  <jankit@novell.com>
11346
11347         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
11348         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
11349         if generic_context is null.
11350           (mono_metadata_generic_param_equal): param->owner can be null.
11351           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
11352         null.
11353
11354 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
11355
11356         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
11357         the correct value.
11358
11359 2005-11-15  Martin Baulig  <martin@ximian.com>
11360
11361         * object.c (set_value): Use mono_class_from_mono_type() instead of
11362         the hack for generic instances; fixes #76136.
11363
11364 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
11365
11366         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
11367         fields.
11368
11369         * image.c (load_metadata_ptrs): Initialize the new fields.
11370
11371         * reflection.c (create_dynamic_mono_image): Ditto.
11372
11373         * reflection.c (build_compressed_metadata): Use the new fields.
11374
11375         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
11376         icall.
11377
11378         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
11379         icall.
11380         
11381 2005-11-15  Ankit Jain  <jankit@novell.com>
11382             Raja R Harinath  <harinath@gmail.com>
11383
11384         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
11385         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
11386         new per-generic_container cache if the cached MonoType's context matches
11387         the current context.
11388           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
11389         to the expected context.
11390           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
11391
11392 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11393
11394         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
11395         we changed the signature of an icall.
11396         * icall.c: Modify to mono_double_ParseImpl return true/false 
11397         depending on the success, instead of throwing the exception. This will
11398         help us in Double.TryParse methods.
11399         
11400 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
11401
11402         * marshal.c (emit_marshal_object): Throw an exception when
11403         marshalling 'object' instead of crashing. Fixes #76696.
11404
11405 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
11406
11407         * class-internals.h: Add prototype for mono_type_get_full_name ().
11408
11409 2005-11-11  Dick Porter  <dick@ximian.com>
11410
11411         * threads.c (mono_thread_manage): Make sure the main thread has
11412         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
11413
11414 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
11415
11416         * loader.c (mono_loader_set_error_type_load): Log a warning to the
11417         console about the missing type.
11418         (mono_loader_set_error_method_load): Ditto.
11419
11420 2005-11-09  Miguel de Icaza  <miguel@novell.com>
11421
11422         * mono-config.c (mono_get_config_dir): Set the system defaults if
11423         none is specified.
11424
11425         * assembly.c (mono_set_dirs): New API entry point to set the
11426         assembly and the config directory in one call
11427
11428 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
11429
11430         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
11431         the ftnptr was created from a delegate in a domain other than the
11432         current domain. Fixes #75377.
11433
11434         * exception.h exception.c: Add mono_get_exception_not_supported ().
11435
11436 2005-11-08  Martin Baulig  <martin@ximian.com>
11437
11438         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
11439
11440 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
11441
11442         * security-manager.h: Added definitions to deal with strongname key 
11443         pairs bigger (and smaller) than 1024 bits.
11444         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
11445         adjust wrt the public key length being used.
11446
11447 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
11448
11449         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
11450           Windows build (r51396-51397).
11451
11452 2005-11-03  Martin Baulig  <martin@ximian.com>
11453
11454         * class.c (mono_class_setup_vtable_general): Also add generic
11455         methods to the vtable; fixes #76581.
11456
11457 2005-11-01  Miguel de Icaza  <miguel@novell.com>
11458
11459         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
11460         sure that we lookup GetString method from the System.Text.Encoding
11461         class, not the derived class or we get an empty method.
11462
11463         Fixed class #76612.
11464
11465 2005-10-25  Miguel de Icaza  <miguel@novell.com>
11466
11467         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
11468         if it has been previously set (embedders). 
11469
11470         Make mono_set_rootdir available also on Unix.
11471
11472 005-10-24  Robert Jordan  <robertj@gmx.net>
11473
11474         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
11475
11476 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
11477
11478         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
11479         only calls which are made to native code use this flag.
11480
11481         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
11482
11483 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
11484
11485         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
11486         Add support for FieldBuilders.
11487
11488 2005-10-29  Martin Baulig  <martin@ximian.com>
11489
11490         * mono-debug.c
11491         (mono_debug_using_mono_debugger): New public method; returns
11492         whether we're running inside the debugger.
11493
11494 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
11495
11496         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
11497         for Method/Constructor/FieldBuilders.
11498
11499 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
11500
11501         * reflection.c (module_add_cattrs): Save custom attributes for global methods
11502         and fields as well.
11503
11504 2005-10-26  Martin Baulig  <martin@ximian.com>
11505
11506         * mono-debug-debugger.c
11507         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
11508
11509 2005-10-24  Raja R Harinath  <harinath@gmail.com>
11510
11511         * icall.c (base64_to_byte_array): Don't pass an out-of-range
11512         integer to isspace.
11513
11514 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
11515
11516         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
11517         when passing valuetypes byref. Fixes #76502.
11518
11519 2005-10-19  Jackson Harper  <jackson@ximian.com>
11520
11521         * profiler.c: Don't put a . in front of types that are not in a
11522         namespace.
11523
11524 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
11525
11526         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
11527
11528 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
11529
11530         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
11531         #76436.
11532         (mono_marshal_get_ldflda_wrapper): Fix a warning.
11533
11534 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11535
11536         * assembly.c metadata-internals.h icall.c: Define an additional
11537         parameter for mono_assembly_name_parse_full, so we can avoid creating
11538         S.R.AssemblyName.Version when no version info wasn't passed.
11539         
11540 2005-10-09  Miguel de Icaza  <miguel@novell.com>
11541
11542         * class.c (mono_type_get_full_name): Reimplement method that was
11543         removed. 
11544
11545         * image.c: Some docs
11546
11547 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
11548
11549         * profiler.c (output_newobj_profile): Fix printing of Total memory
11550         on x86.
11551
11552 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
11553
11554         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
11555
11556 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
11557
11558         * threads.c: remove debug output.
11559
11560 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
11561
11562         * threads.c (mono_thread_manage): Fix crashes if more than 64
11563         threads need to be aborted. Hopefully fixes #75899.
11564
11565         * assembly.c (mono_stringify_assembly_name): New helper function.
11566
11567         * class.c: Use mono_stringify_assembly_name instead of the similar
11568         static function.
11569
11570         * assembly.h assembly.c: Add support for calling a postload search 
11571         hook if an assembly cannot be loaded.
11572
11573         * appdomain.c: Register new search hooks which call the AssemblyResolve
11574         events in AppDomain. Fixes #75231
11575
11576 2005-10-07  Martin Baulig  <martin@ximian.com>
11577
11578         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
11579         methods without debug info.
11580
11581 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
11582
11583         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
11584         wrappers.
11585
11586 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11587
11588         * file-io.c: now that we return symlinks, use lstat and, when the file
11589         is a symbolic link, stat, to get the file attributes. Also avoid the
11590         conversion to/from utf16/external.
11591
11592 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
11593
11594         * class.c (mono_class_layout_fields): Compute klass->has_references
11595         correctly if an embedded valuetype is not yet initialized. Fixes
11596         #76331.
11597
11598 2005-10-04  Martin Baulig  <martin@ximian.com>
11599
11600         * metadata.c
11601         (mono_metadata_load_generic_param_constraints): New public
11602         function; splitted the constraints loading out from
11603         mono_metadata_load_generic_params().
11604
11605         * class.c (mono_class_create_from_typedef): Call
11606         mono_metadata_load_generic_param_constraints() after setting up
11607         the type and creating our parent; fixes #75329.
11608
11609 2005-10-04  Martin Baulig  <martin@ximian.com>
11610
11611         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
11612         non-dynamic parent classes.
11613
11614 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
11615
11616         * file-io.c : win32 build fix (ETXTBSY seems not found).
11617
11618 2005-10-04  Martin Baulig  <martin@ximian.com>
11619
11620         * reflection.c
11621         (mono_image_get_methodspec_token): Make the cache actually work;
11622         fixes #75974.
11623
11624 2005-10-04  Martin Baulig  <martin@ximian.com>
11625
11626         * class.c (mono_class_name_from_token): Removed the unneccessary
11627         `MonoGenericContext *' argument.
11628
11629 2005-10-04  Martin Baulig  <martin@ximian.com>
11630
11631         * loader.c
11632         (method_from_methodspec): Make the caching work again; fixes the
11633         performance regression from #76262.
11634
11635 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11636
11637         * file-io.c:
11638         * file-io.h:
11639         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
11640         GetFileSystemEntries that performs the same work but without going
11641         into io-layer, locking, etc.
11642
11643 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
11644
11645         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
11646         ThreadState_Stopped as well. Fixes #76047.
11647
11648 2005-09-29  Martin Baulig  <martin@ximian.com>
11649
11650         * class.c
11651         (inflate_generic_context): If the new context has a `gmethod', set
11652         its `container' that that gmethod's `container'.
11653
11654         * metadata.c
11655         (mono_metadata_parse_generic_param): Simplify things;
11656         `generic_container = generic_context->container;' is just fine.
11657
11658         * loader.c (method_from_methodspec): Code cleanups.
11659
11660 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
11661
11662         * decimal.c: fix warning (and let gcc generate correct
11663         code on ARM with optimizations).
11664
11665 2005-09-28  Martin Baulig  <martin@ximian.com>
11666
11667         * loader.c
11668         (method_from_memberref): Added `MonoGenericContext *class_context'
11669         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
11670         (method_from_methodspec): If we're a memberref, use the enclosing
11671         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
11672
11673 2005-09-28  Martin Baulig  <martin@ximian.com>
11674
11675         * object.c (mono_runtime_invoke_array): Added support for
11676         MONO_TYPE_GENERICINST; fixes #75917.
11677
11678 2005-09-27  Martin Baulig  <martin@ximian.com>
11679
11680         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
11681         `k->byval_arg.type' to determine the actual type.
11682
11683         * loader.c (method_from_methodspec): Removed some hacks.
11684
11685 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
11686
11687         * class-internals.h (mono_field_is_deleted): Do the test for
11688         rtspecialname before we check the actual name of the field. This
11689         prevents us from dereferencing a pointer into the string table,
11690         saving us from accessing a few pages
11691
11692         * *.c: Replace the use of {Enter,Leave}CriticalSection with
11693         macros. This will allow a deadlock debugger to easily be plugged
11694         in.
11695
11696 2005-09-27  Martin Baulig  <martin@ximian.com>
11697
11698         * loader.c (method_from_methodspec): Create a "signature"
11699         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
11700
11701 2005-09-27  Martin Baulig  <martin@ximian.com>
11702
11703         * class.c
11704         (inflate_generic_class): Correctly set the new context's
11705         container.
11706
11707         * loader.c
11708         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
11709         instead of a `MonoGenericContext *'.
11710         (mono_method_signature_full): Take a `MonoGenericContainer *'
11711         instead of a `MonoGenericContext *'.
11712
11713         * metadata.c
11714         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
11715         instead of a `MonoGenericContext *'.
11716         (mono_metadata_parse_method_signature_full): Likewise.
11717
11718 2005-09-26  Martin Baulig  <martin@ximian.com>
11719
11720         * class.c
11721         (mono_class_from_generic_parameter): Set `klass->generic_container'
11722         (mono_class_from_generic_parameter): Likewise.
11723         (mono_bounded_array_class_get): We inherit the generic container
11724         from the element class.
11725
11726         * loader.c
11727         (find_method, find_method_in_class): Take a `MonoGenericContext *'
11728         argument rather than computing it here.
11729         (method_from_memberref): Correctly set the generic context before
11730         parsing the signature.  Fixes #75681.
11731
11732 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
11733
11734         * object.c (mono_class_has_special_static_fields): Fix warnings.
11735
11736 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11737
11738         * assembly.c: Add parse_public_key function, to
11739         par the public keys. Also added mono_assembly_name_parse_full,
11740         to define it the parsed key should be freed or not.
11741         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
11742         to parse a long format assembly name.
11743         * metadata-internals.h: Keep mono_assembly_name_parse_full as
11744         private, since calling it to preserve the key requires
11745         freeing it manually.
11746         
11747 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
11748
11749         * locales.c : removed HAVE_ICU part.
11750
11751 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
11752
11753         * object.c (mono_class_create_runtime_vtable): Avoid calling 
11754         field_is_special_static if the klass has no special static fields.
11755
11756         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
11757         (MonoCachedClassInfo): Likewise.
11758
11759         * object.c (mono_class_has_special_static_fields): New helper function.
11760
11761 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
11762
11763         * class.c (mono_class_create_from_typedef): Don't call 
11764         interfaces_from_typedef_full for enums.
11765         (mono_class_create_from_typedef): Compute the base types of enums directly
11766         without calling mono_class_setup_fields ().
11767         (mono_class_find_enum_basetype): New helper function.
11768
11769         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
11770         one place inside the string heap.
11771         
11772 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
11773
11774         * class.c: locking fixes, code cleanups, some docs added.
11775         Allocate some data structures in the image mempool.
11776
11777 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
11778
11779         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
11780         the example code.
11781         
11782 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
11783
11784         * class-internals.h, class.c, reflection.c: reduce memory taken by
11785         MonoClass.
11786
11787 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
11788
11789         * metadata.c, metadata.h, loader.h: documentation updates, code and
11790         API cleanups.
11791
11792 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
11793
11794         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
11795         the example code.
11796
11797         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
11798         page faults caused by the runtime while reading metadata.
11799
11800 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11801
11802         * socket-io.c: the field names were changed 3 months ago and no one
11803         realized until bug #76077 got filed!
11804
11805 2005-09-20  Martin Baulig  <martin@ximian.com>
11806
11807         * icall.c (assembly_icalls): Removed some unused debugger icalls.
11808
11809 2005-09-20  Martin Baulig  <martin@ximian.com>
11810
11811         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
11812         write the rank into the class entry.
11813
11814 2005-09-20  Martin Baulig  <martin@ximian.com>
11815
11816         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
11817
11818 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
11819
11820         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11821
11822         * icall.c (custom_attrs_defined_internal): New icall.
11823
11824         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
11825         function.
11826         (mono_custom_attrs_construct_by_type): New helper function.
11827
11828 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
11829
11830         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
11831         terminate the resulting string. Fixes #76123.
11832
11833 2005-09-16  Martin Baulig  <martin@ximian.com>
11834
11835         * mono-debug.c
11836         (mono_debug_add_method): Ignore inflated methods for the moment.
11837
11838 2005-09-14  Martin Baulig  <martin@ximian.com>
11839
11840         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
11841
11842 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
11843
11844         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
11845         return a success/failure indication.
11846         (mono_metadata_interfaces_from_typedef_full): Ditto.
11847         (get_constraints): Ditto.
11848
11849 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
11850
11851         * marshal.c (emit_marshal_array): Fix handling of null arrays.
11852         
11853         * marshal.c (emit_marshal_array): Add support for returning string
11854         arrays from delegates. Fixes #76063.
11855
11856         * marshal.c: Use the emit_ldloc/stloc macros where possible.
11857
11858 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
11859
11860         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
11861         icall.
11862
11863 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
11864
11865         * reflection.c icall.c: Fix after mono_get_exception_type_load
11866         signature change.
11867
11868         * assembly.c (mono_assembly_get_assemblyref): New helper function.
11869         (mono_assembly_load_reference): Use the new helper.
11870
11871         * class-internals.h (MonoLoaderError): New structure containing 
11872         information about type loading errors.
11873
11874         * class-internals.h loader.c: Add APIs to store per-thread loader
11875         error information.
11876
11877         * loader.c class.c: Set the loader error if needed.
11878
11879         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
11880
11881 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
11882
11883         * decimal.c: fixed to handle the broken ARM fp format.
11884
11885 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
11886
11887         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
11888         broken.
11889
11890 2005-09-06  Martin Baulig  <martin@ximian.com>
11891
11892         * domain.c (supported_runtimes): Added v2.0.50727.
11893
11894 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
11895
11896         * culture-info.h: reduce the size of some structures.
11897
11898 2005-09-05  Martin Baulig  <martin@ximian.com>
11899
11900         Reflect latest API changes in the August CTP.
11901
11902         * icall.c
11903         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
11904         ("MonoType.HasGenericArguments"): Removed.
11905         ("MonoMethod.BindGenericParameters"): Renamed to
11906         "MakeGenericMethod".
11907         ("MethodBuilder.BindGenericParameters"): Renamed to
11908         "MakeGenericMethod".    
11909
11910 2005-09-05  Martin Baulig  <martin@ximian.com>
11911
11912         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
11913
11914 2005-09-05  Martin Baulig  <martin@ximian.com>
11915
11916         Applying a patch from Michal Moskal <malekith@nemerle.org>.
11917
11918         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
11919         generic_container is non-NULL.
11920
11921 2005-09-05  Martin Baulig  <martin@ximian.com>
11922
11923         Applying a patch from Michal Moskal <malekith@nemerle.org>.
11924
11925         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
11926
11927 2005-08-29  Michal Moskal  <malekith@nemerle.org>
11928
11929         * reflection.c (encode_locals,
11930         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
11931         for large generic types.
11932
11933 2005-09-05  Martin Baulig  <martin@ximian.com>
11934
11935         Applying a patch from Michal Moskal <malekith@nemerle.org>.
11936
11937         * class.c (mono_dup_array_type): New public method.
11938         (mono_metadata_signature_deep_dup): New public method.
11939         (dup_type): Correctly duplicate array and function types.
11940
11941 2005-09-05  Martin Baulig  <martin@ximian.com>
11942
11943         Applying a patch from Michal Moskal <malekith@nemerle.org>.
11944
11945         * reflection.c (get_default_param_value_blobs): Handle generic types
11946         and generic methods.
11947
11948 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
11949
11950         * class.c: Fixed error reporting (method/class were inversed) for 
11951         inheritance demands.
11952         * security-manager.c|h: Added the AppDomain when calling the managed
11953         System.Security.SecurityManager.InheritanceDemand method.
11954
11955 2005-09-01  Raja R Harinath  <rharinath@novell.com>
11956
11957         * reflection.c (encode_marshal_blob): 'marshaltype' and
11958         'marshaltyperef' are alternate sources for the custom marshaler
11959         name.
11960
11961 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
11962
11963         * class.c: fix creation of array classes with rank == 1
11964         (patch by Ankit Jain <jankit@novell.com>).
11965
11966 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
11967
11968         * object.c: fix check for creating the bound data for arrays vs
11969         szarrays.
11970
11971 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11972
11973         * object.c: configuration file name is now based on the executable name,
11974         not the image name. Fixes bug #75931.
11975
11976 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
11977
11978         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
11979         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
11980
11981 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
11982
11983         * rand.c: Use wincrypt.h instead of WinCrypt.h.
11984
11985 2005-08-24  Ankit Jain  <jankit@novell.com>
11986             Raja R Harinath  <rharinath@novell.com>
11987
11988         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
11989           called by it recursively.
11990           (mono_class_init): Remove special case in pending_init handling, since it's
11991           superseded by the fix to mono_class_from_typeref.
11992
11993 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
11994
11995         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
11996         BROKEN_THREAD_START stuff.
11997
11998 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
11999
12000         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
12001         trampoline.
12002
12003         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
12004         
12005         * object.c (mono_delegate_ctor): Replace the original function address with
12006         a delegate trampoline.
12007
12008 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
12009
12010         * icall.c: add boolean argument to base64_to_byte_array and 
12011         InternalFromBase64String to control whether a whitespace-only string
12012         is allowed (or should casue a FormatException to be thrown). We need
12013         this as the behavior has changed between MS.NET 1.x and 2.0, and we
12014         to match the MS behaviour in both profiles.
12015         * appdomain.c: Bump corlib version.
12016
12017 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12018
12019         This patch implements a big portion of publisher policy
12020         support, used to bind assembly versions and redirect
12021         one assembly from version A to version B.
12022
12023         * assembly.c:
12024         New GSList loaded_assembly_bindings, for storing the cached
12025         assembly bindings.
12026         (assembly_binding_maps_name): New static function for checking if a 
12027         assembly binding information maps an assembly name.
12028         (mono_assembly_binding_info_free): New function for freeing
12029         assembly binding information resources.
12030         (get_publisher_policy_info): New static function for retrieving 
12031         assembly binding information from a MonoImage.
12032         (compare_versions): New static function for comparing an assembly
12033         binding information data and the version of an assembly name.
12034         (check_policy_versions): New static function for checking if an
12035         assembly binding info mapping an assembly name is valid for it.
12036         (mono_assembly_load_publisher_policy): New static function for
12037         loading the 'policy.major.minor.MyAssembly' image for an assembly
12038         with an assembly name 'aname'.
12039         (mono_assembly_bind_version): New static function for updating
12040         assembly redirection.
12041         (mono_assembly_apply_binding): New static function for applying
12042         assembly binding.
12043         (search_binding_loaded): New static function for searching 
12044         loaded assembly binding infos in the cache domain.
12045         (mono_assembly_load_full): Don't apply assembly binding for
12046         reflection only assemblies.
12047
12048         * metadata-internals.h: Add MonoAssemblyBindingInfo,
12049         which contains information about assembly binding. Also
12050         declare signature for mono_config_parse_publisher_policy ()
12051         function, used to retrieve pub policy info.
12052         
12053         * mono-config.c:
12054         (publisher_policy_start): New static function used to parse publisher 
12055         policy config files.
12056         (publisher_policy_parser): New static MonoParseHandler containing 
12057         the functions used when parsing config files.
12058         (mono_config_parse_publisher_policy): New function for parsing
12059         publisher policy files.
12060         
12061 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
12062
12063         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
12064
12065         * marshal.c (mono_delegate_free_ftnptr): Ditto.
12066
12067         * object.c (mono_get_addr_from_ftnptr): New helper function.
12068
12069         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
12070
12071         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12072
12073 2005-08-19  Dick Porter  <dick@ximian.com>
12074
12075         * threads.c, threads.h, appdomain.c, appdomain.h,
12076         profiler-private.h, monitor.c, object.c, object-internals.h,
12077         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
12078         store the thread ID, so it can hold a 64 bit value if needed.
12079
12080 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
12081
12082         * reflection.c (mono_reflection_create_dynamic_method): Store the
12083         handle class into the method references as well so ldtoken works in
12084         dynamic methods.
12085
12086         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
12087         types.
12088
12089 2005-08-19  Ankit Jain <jankit@novell.com>
12090
12091         Fix #75847.
12092         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
12093           here rather than using the method signature of a arbitrary function
12094           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
12095           two arguments.
12096           Hack done with Harinath.
12097
12098 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12099
12100         * threadpool.c: disable printing stack traces when we get a exception
12101         in a threadpool thread. I need to do more testing to figure out which
12102         cases actually print this. Fixes bug #75828.
12103
12104 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12105
12106         * icall.c: there might be ignored whitespace after the last '='. This
12107         fixes length computation and bug #75840.
12108
12109 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
12110
12111         * assembly.c (mono_assembly_load_full): Consider .exe extension as
12112         well. Fixes #75809.
12113
12114         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
12115         #75784.
12116         
12117         * reflection.c (create_custom_attr_data): Ditto.
12118
12119 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
12120
12121         * locales.c, culture-info.h : removed RegionLCIDMap.
12122         * culture-info-tables.h : regenerated.
12123
12124 2005-08-16  Martin Baulig  <martin@ximian.com>
12125
12126         * class.c (mono_type_get_name_recurse): Small fix.
12127
12128 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
12129
12130         * locales.c : indentation fixie.
12131
12132 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
12133
12134         * object-internals.h,
12135           locales.h,
12136           locales.c,
12137           culture-info.h,
12138           icall.c : added RegionInfo table support.
12139         * culture-info-table.h : regenerated for region support.
12140
12141 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
12142
12143         * reflection.c (resolve_object): handle all kinds of MonoMethod
12144         including generic ones
12145
12146 2005-08-12  Ankit Jain <jankit@novell.com>
12147
12148         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
12149           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
12150
12151 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
12152
12153         * process.c: Don't close a thread handle when it's NULL. This is a
12154         workaround for bug #75733.
12155
12156 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
12157
12158         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
12159
12160 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
12161
12162         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
12163
12164 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12165
12166         * threadpool.c: if a work item in the thread pool has a callback that
12167         catches a exception, don't propagate it after invoking the callback.
12168         Fixes bug #75336.
12169
12170 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
12171
12172         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
12173
12174         * class-internals.h (MonoCachedClassInfo): Add some new fields.
12175
12176         * class.c (mono_class_init): Load field info lazily in the AOT case.    
12177
12178         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
12179
12180 2005-08-03  Ankit Jain  <jankit@novell.com>
12181
12182         Fix #75683.
12183         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
12184           PInvoke calling convention is 0.
12185
12186 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
12187
12188         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
12189         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
12190
12191 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
12192
12193         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
12194         to handle threads not started by the GC (patch by Michael Meeks
12195         <michael.meeks@novell.com>).
12196
12197 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
12198
12199         * reflection.c: Make buffer used in emitting types larger for some
12200         big generic types (patch by Michal Moskal).
12201
12202 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
12203
12204         * mono-debug.c: Fix some (not all) alignment problems.
12205
12206 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12207
12208         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
12209         Invoke mono_image_load_from_data_full passing the refonly
12210         parameter.
12211
12212         * assembly.c
12213         (mono_assembly_open_from_bundle): Add the refonly argument, 
12214         in order to pass it to other methods it calls to.
12215         (do_mono_assembly_open): Add the refonly argument, in order 
12216         to pass it to other methods it calls to.
12217         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
12218         the refonly parameter to it.
12219
12220         * image.c: Add loaded_images_refonly_hash and
12221         loaded_images_refonly_guid_hash to cache the reflection
12222         only loaded images.
12223         (mono_images_init): Initialize the hash tables used for
12224         caching the reflection only images.
12225         (load_modules): Invoke mono_image_open_full passing the refonly
12226         parameter to load the modules the correct way.
12227         (build_guid_table): Add the refonly argument, to re-build the 
12228         correct hash table.
12229         (do_mono_image_open): Added the refonly argument, in order to
12230         define it for the loaded image.
12231         (mono_image_loaded_full): New function, which receives an
12232         additional parameter to look for the image in the refonly or
12233         non-refonly section.
12234         (mono_image_loaded): Updated, using mono_image_loaded_full.
12235         (mono_image_loaded_by_guid_full): The same case that happens
12236         with mono_image_loaded_full.
12237         (mono_image_loaded_by_guid): Likewise.
12238         (register_image): Use the ref_only variable inside MonoImage
12239         to decide in which hash table store the current image.
12240         (mono_image_open_from_data_full): Rename
12241         mono_image_open_from_data to mono_image_open_from_data_full,
12242         adding the refonly argument, to define the ref_only variable 
12243         inside MonoImage.
12244         (mono_image_open_from_data): Return 
12245         mono_image_open_from_data_full.
12246         (mono_image_open_full): Rename mono_image_open to
12247         mono_image_open_full, receiving the new refonly argument,
12248         to pass it to inner methods.
12249         (mono_pe_file_open): Update this function, to open
12250         a MonoImage as a non-refonly image.
12251         (mono_image_close): Use the refonly variable inside
12252         MonoImage to remove the image from the correct caches.
12253
12254         * image.h: Add the signatures of mono_image_open_full,
12255         mono_image_open_from_data_full, mono_image_loaded_full,
12256         mono_image_loaded_by_guid_full.
12257
12258         * metadata-internals.h: Add the ref_only field to 
12259         MonoImage.
12260         
12261 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12262
12263         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
12264         Fix the last behavior, which used to load the assemblies and
12265         extract MonoReflectionAssemblyName information, instead of
12266         extract it from the metadata tables. Needed for Reflection
12267         Only assemblies.
12268         
12269 2005-07-29  Martin Baulig  <martin@ximian.com>
12270
12271         * mono-debug-debugger.c
12272         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
12273         not initialized.
12274
12275         * mono-debug.c
12276         (mono_debug_address_from_il_offset): Check whether we have
12277         debugging support before attempting to take the lock.
12278         (mono_debug_source_location_from_address): Likewise.
12279         (mono_debug_source_location_from_il_offset): Likewise.
12280         (mono_debug_il_offset_from_address): Likewise.
12281         (mono_debug_address_from_il_offset): Likewise.
12282
12283 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
12284
12285         * class.c (mono_class_from_name_case): Add support for dynamic images.
12286         Fixes #75650.
12287
12288         * object.c (mono_class_compute_gc_descriptor): Add a workaround
12289         for #75479.
12290
12291 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
12292         
12293         * reflection.c (mono_method_get_object): Fix warning.
12294
12295 2005-07-28  Martin Baulig  <martin@ximian.com>
12296
12297         * mono-debug.c
12298         (mono_debug_add_wrapper): Also write the wrapper type.
12299
12300 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
12301
12302         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
12303         
12304         * class.c (mono_class_init): Avoid reading nested classes if the AOT
12305         data indicates the class has none.
12306
12307 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
12308
12309         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
12310         loader lock with the debugger lock. Prevents deadlocks for beagle.
12311
12312         Beagle can now run on an smp box for a weekend without any
12313         issues. Woohoo!
12314
12315 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
12316
12317         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
12318         in a module. Fixes #75629.
12319
12320 2005-07-26  Martin Baulig  <martin@ximian.com>
12321
12322         * mono-debug.c (mono_debug_add_wrapper): New static method.
12323         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
12324         interncall or a wrapper.
12325
12326         * mono-debug.h (MonoDebugWrapperData): New public typedef.
12327         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
12328         (MONO_DEBUGGER_VERSION): Bump to 51.
12329
12330         * mono-debug-debugger.c
12331         (mono_debugger_add_type): Removed this empty function.
12332         (mono_debugger_add_method): Likewise.
12333
12334 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
12335
12336         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
12337         before accessing method->slot.
12338
12339 2005-07-21  Jb Evain  <jbevain@gmail.com>
12340
12341         * reflection.c (method_encode_clauses/class): Handle filters clauses.
12342         Fixes #75010.
12343
12344 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
12345
12346         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
12347         #75587.
12348
12349 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
12350
12351         * image.h image.c: Add mono_image_get_guid () API function.
12352
12353 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
12354
12355         There were issues when multiple threads tried to load
12356         assemblies. A deadlock was created between assemblies_mutex and
12357         mono_domain_assemblies_lock. This fixes the issue by making the
12358         assembly ref counting be lock free. See bug 75586.
12359         
12360         * image.c (mono_image_close): The add ref function here was using
12361         Interlocked operations while the unref was using a mutex and a
12362         --. I don't think this was ever a bug that would be exposed in a
12363         non-pendantic way (ie, by an embedder doing a ref on one thread
12364         and an unref on another), but for the sake of correctness, this is
12365         now Interlocked.
12366
12367         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
12368         (mono_assembly_load_reference): Call mono_assembly_addref rather
12369         than touching the refcount ourselves.
12370         (mono_assembly_close): Use InterlockedDecrement to unref the
12371         assembly. Don't acquire the lock unless it is actually needed.
12372
12373 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
12374
12375         * class.c (mono_class_layout_fields): Fix calculation of has_references
12376         for generic types.
12377
12378 2005-07-12  Martin Baulig  <martin@ximian.com>
12379
12380         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12381
12382         * metadata.c
12383         (mono_type_hash): Provide better hashing for generic instances.
12384         (mono_generic_inst_hash): Improve hashing.
12385         (mono_generic_class_hash): Likewise.
12386
12387         * reflection.c (mymono_metadata_type_hash): Improve hashing for
12388         generic instances.
12389
12390 2005-07-12  Martin Baulig  <martin@ximian.com>
12391
12392         * reflection.c (mono_reflection_create_runtime_class): Remove the
12393         hack for generic type definitions and non-`Run' assemblies.
12394         (mono_reflection_bind_generic_parameters): Also use
12395         `klass->wastypebuilder' to check for TypeBuilders.
12396
12397 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
12398
12399         * class.c (mono_class_layout_fields): Fix calculation of has_references
12400         for generic types.
12401
12402         * class.c (inflate_generic_class): Fix a leak.
12403         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
12404         for generic types.
12405
12406 2005-07-11  Martin Baulig  <martin@ximian.com>
12407
12408         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
12409         on error.
12410
12411 2005-07-11  Martin Baulig  <martin@ximian.com>
12412
12413         * loader.c (find_method): Also lookup in
12414         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
12415
12416 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
12417
12418         * appdomain.c (mono_domain_unload): Don't free the error message
12419         before passing it to mono_get_exception_...
12420
12421         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
12422         
12423 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
12424
12425         * threads.c: try to better guess an available RT signal (bug #75387).
12426
12427 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
12428
12429         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
12430         and CACHE_OBJECT.
12431
12432 2005-07-07  Martin Baulig  <martin@ximian.com>
12433
12434         * class.c (mono_type_get_name_full): Return NULL for
12435         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
12436         fixes #75408.
12437
12438 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
12439
12440         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
12441         exit the appdomain as well being aborted.
12442
12443         * threadpool.c: Create all threadpool threads inside the root appdomain, and
12444         change back to the root domain after calling managed code. This enables
12445         appdomains using threadpools to be unloaded.
12446
12447 2005-07-07  Martin Baulig  <martin@ximian.com>
12448
12449         * class-internals.h
12450         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
12451         into `MonoDynamicGenericClass' since we only need it for dynamic
12452         types.
12453
12454         * reflection.c (mono_class_bind_generic_parameters): We don't need
12455         to compute the `parent' here.
12456
12457 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
12458
12459         * culture-info-table.h : regenerated.
12460
12461 2005-07-06  Martin Baulig  <martin@ximian.com>
12462
12463         * icall.c
12464         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
12465
12466         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
12467
12468 2005-07-06  Martin Baulig  <martin@ximian.com>
12469
12470         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
12471         we're doing a signature-only comparision; fixes #74945.
12472
12473 2005-07-06  Martin Baulig  <martin@ximian.com>
12474
12475         * class-internals.h (MonoGenericClass): Moved some things out into
12476         a new `MonoInflatedGenericClass' type.  
12477         (MonoInflatedGenericClass): New type; the `klass' of a
12478         `MonoGenericClass' is now computed lazyly in
12479         mono_get_inflated_generic_class().      
12480
12481         * class.c (mono_get_inflated_generic_class): New public function.
12482         (mono_class_inflate_generic_method): Removed the unused
12483         `MonoClass *' argument.
12484         (setup_generic_vtable): Don't call mono_get_inflated_method() on
12485         all the methods.
12486         (mono_class_create_generic): Make this static and merge it with
12487         mono_class_create_generic_2(); we're now called automatically from
12488         mono_get_inflated_generic_class().
12489
12490         * loader.c (mono_method_signature): Call
12491         mono_get_inflated_method() here.
12492
12493 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
12494
12495         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
12496         type of fields with RVA.
12497
12498         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
12499         for this pseudo class.
12500         (my_mono_class_from_generic_parameter): Likewise.
12501         (mono_class_init): Allow interfaces to have cctors.
12502
12503 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
12504
12505         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
12506         lazily for AOT methods.
12507
12508 2005-07-05  Martin Baulig  <martin@ximian.com>
12509
12510         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
12511         returns FALSE for a successful match, not TRUE.
12512
12513 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
12514
12515         * loader.c (mono_method_get_index): Optimize this a bit.
12516
12517 2005-07-04  Martin Baulig  <martin@ximian.com>
12518
12519         * class.c
12520         (class_compute_field_layout): Move the check for generic type
12521         definitions into mono_class_layout_fields().  Fixes #74684.
12522         (mono_class_from_generic_parameter): Correctly compute
12523         `klass->parent'; fixes #75457.
12524
12525         * reflection.c (register_assembly, register_module): Make sure
12526         `domain->rejobject_hash' is already created.
12527
12528 2005-07-02  Martin Baulig  <martin@ximian.com>
12529
12530         * class-internals.h
12531         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
12532         `MonoDynamicGenericClass'.      
12533
12534 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
12535
12536         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
12537         returned by a field getter is null, since null is a valid value.
12538
12539 2005-07-01  Martin Baulig  <martin@ximian.com>
12540
12541         * reflection.c (mono_reflection_generic_class_initialize): Update
12542         the `dgclass->fields [i].parent' to the correct class.
12543         (mono_image_get_fieldref_token): Use the declaring type, not the
12544         reflected type.
12545
12546 2005-07-01  Martin Baulig  <martin@ximian.com>
12547
12548         * loader.c (find_method): Also look in the interfaces; fixes #75429.
12549
12550 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
12551
12552         * threads.c (thread_cleanup): assert that thread != NULL
12553         (wait_for_tids_or_state_change): We were using the wrong variable
12554         when accessing wait->threads. `i' was always out of the bounds of
12555         the array.
12556
12557 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12558
12559         * loader.c: map user32 and kernel32 to libMonoSupportW
12560
12561 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
12562
12563         * appdomain.c (unload_thread_main): Mark this as WINAPI.
12564
12565 2005-06-28  Martin Baulig  <martin@ximian.com>
12566
12567         * loader.c (method_from_methodspec): Fix #75334.
12568
12569 2005-06-28  Martin Baulig  <martin@ximian.com>
12570
12571         Fix #74953 - Arrays now implement the generic IList<T> interface
12572         on the 2.0 platform.
12573
12574         * class-internals.h (MonoDefaults): Added `generic_array_class'.
12575
12576         * reflection.c (mono_class_bind_generic_parameters): New public
12577         function; similar to mono_reflection_bind_generic_parameters(),
12578         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
12579
12580         * domain.c (mono_init_internal): Try to initialize.
12581         `mono_defaults.generic_array_class' here; this'll only succeed if
12582         we're using the 2.0 corlib.
12583
12584         * icall.c
12585         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
12586         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
12587         (mono_lookup_internal_call): Added support for nested classes.
12588
12589         * loader.c
12590         (mono_get_method_from_token): Set `result->signature->pinvoke' if
12591         we're an interncall and have generic arguments.
12592
12593         * class.c
12594         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
12595         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
12596         instance of System.Array.InternalArray<T> for arrays, so they
12597         implement the generic IList<T> interface.
12598
12599 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
12600
12601         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
12602         (chastamar@yahoo.com). Fixes #75374.    
12603
12604 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
12605
12606         * culture-info-table.h: regenerated.
12607
12608 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12609
12610         * icall.c: handle spaces correctly for base64 strings.
12611
12612 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
12613
12614         * *.c: Kill some warnings.
12615
12616 2005-06-23  Duncan Mak  <duncan@novell.com>
12617
12618         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
12619         that this builds on Solaris 10 (x86).
12620
12621 2005-06-23  Martin Baulig  <martin@ximian.com>
12622
12623         * class.c
12624         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
12625         generic type definitions.
12626
12627 2005-06-23  Martin Baulig  <martin@ximian.com>
12628
12629         Fix #75331.
12630
12631         * metadata.c (mono_class_get_overrides): Renamed to
12632         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
12633         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
12634         pass it to mono_get_method_full().
12635
12636 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
12637
12638         * reflection.c (mono_reflection_create_runtime_class): take the
12639         mono_domain_lock in this method. Prevents deadlocks
12640
12641 2005-06-22  Martin Baulig  <martin@ximian.com>
12642
12643         * loader.c (method_from_methodspec): Fix #75330.
12644
12645 2005-06-22  Martin Baulig  <martin@ximian.com>
12646
12647         * reflection.c (type_get_qualified_name): Use
12648         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
12649         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
12650         argument; use it if we don't have an assembly name.
12651
12652 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
12653
12654         * object.c: In mono_message_init, set "copy out" flag for in
12655         parameters with the [Out] flag.
12656
12657 2005-06-21  Martin Baulig  <martin@ximian.com>
12658
12659         * class.c
12660         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
12661         and MONO_TYPE_PTR.
12662
12663 2005-06-21  Martin Baulig  <martin@ximian.com>
12664
12665         * class.c (mono_class_init): Don't initialize `class->fields' for
12666         generic instances since they're initialized again in
12667         compute_field_layout(). 
12668         (compute_field_layout): Set the field's `generic_info' here; fix
12669         #75320. 
12670
12671 2005-06-21  Martin Baulig  <martin@ximian.com>
12672
12673         * class-internals.h
12674         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
12675
12676         * metadata.c (mono_metadata_generic_method_equal): Also
12677         distinguish the `generic_class'; fixes #75334.
12678
12679 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12680
12681         * domain.c:
12682         * appdomain.c:
12683         * domain-internals.h:
12684         * reflection.c: 'domain_assemblies' field is now protected by its own
12685         lock. Don't call into managed code to run the AssemblyLoad event if we
12686         now there are no registered delegates for it.
12687
12688 2005-06-20  Martin Baulig  <martin@ximian.com>
12689
12690         * class.c (mono_class_is_assignable_from): Use a custom version of
12691         mono_class_has_parent() to make things work for generic instances;
12692         fix #75300.
12693
12694 2005-06-20  Martin Baulig  <martin@ximian.com>
12695
12696         * loader.c (method_from_methodspec): Apply a patch from
12697         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
12698
12699 2005-06-20  Martin Baulig  <martin@ximian.com>
12700
12701         * class.c (mono_class_init): Reverted Zoltan's last change; it
12702         breaks generics.
12703
12704 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
12705
12706         * threads.c (wait_for_tids_or_state_change): Add missing locking.
12707
12708 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12709
12710         * socket-io.c: fix the index in the socket array for writable/error
12711         sockets. Fixes bug #75306.
12712
12713 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
12714
12715         * class.c (mono_class_init): Allow interfaces to have static ctors.
12716
12717 2005-06-17  Martin Baulig  <martin@ximian.com>
12718
12719         * loader.c (method_from_methodspec): Use `context->container' when
12720         parsing the `gmethod->inst'.
12721
12722 2005-06-17  Martin Baulig  <martin@ximian.com>
12723
12724         * class.c (mono_type_get_name_recurse): Don't add the assembly
12725         name for type arguments.
12726
12727 2005-06-15  Martin Baulig  <martin@ximian.com>
12728
12729         * reflection.c (mono_image_get_inflated_method_token): Encode
12730         correct klass; fixes #75260.
12731
12732 2005-06-13 Michal Moskal <malekith@nemerle.org>
12733
12734         * icall.c: Make GetCorrespondingMethod/Constructor take
12735         MonoReflectionMethod method not MonoMethod. Removed
12736         MonoType.GetCorrespondingField, and make
12737         MonoGenericType.GetCorrespondingField take name not
12738         MonoClassField.
12739
12740 2005-06-13  Michal Moskal <malekith@nemerle.org>
12741
12742         * reflection.c (field_encode_signature, encode_locals):
12743          Make sizes of buffers for types larger (for big generic types).
12744          (create_generic_typespec,
12745          mono_reflection_sighelper_get_signature_local,
12746          mono_reflection_sighelper_get_signature_field):
12747          Add asserts for too small buffers.
12748
12749 2005-06-15  Martin Baulig  <martin@ximian.com>
12750
12751         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
12752         if our parent is not a dynamic type.
12753
12754 2005-06-15  Martin Baulig  <martin@ximian.com>
12755
12756         * class-internals.h (MonoTypeNameFormat): New enum.
12757
12758         * class.c
12759         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
12760         (mono_type_get_full_name): Removed.
12761         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
12762         argument instead of the boolean's.
12763
12764         * icall.c (ves_icall_System_MonoType_getFullName):
12765         Added `gboolean assembly_qualified'.    
12766
12767         * reflection.h
12768         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
12769
12770         * reflection.c (mono_reflection_parse_type): Parse the new type
12771         name format.
12772
12773 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12774
12775         * icall.c: no need to convert from utf16 to utf8 and then back again
12776         after the call to GetLogicalDrives.
12777
12778 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12779
12780         * icall.c: frombase64. Fix problems exposed by new tests.
12781
12782 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12783
12784         * icall.c: added internal calls for converting char [] and strings in
12785         base64 into byte [].
12786
12787 2005-06-10  Martin Baulig  <martin@ximian.com>
12788
12789         * class.c (mono_class_create_generic_2): Read the nested classes
12790         from the metadata rather than from `gklass->nested_classes' since
12791         `gklass' might not be initialized yet.
12792
12793 2005-06-09  Duncan Mak  <duncan@novell.com>
12794
12795         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
12796         all public headers. Fixes #74919.
12797
12798 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
12799
12800         * domain.c: The key for proxy_vtable_hash is now a pointer
12801         array. Added new GHashFunc and GCompareFunc functions for this.
12802
12803         * class.h: The list of interfaces in MonoRemoteClass is known in
12804         advance and can't grow (we create a new MonoRemoteClass if needed),
12805         so now the interface array can be allocated together with
12806         MonoRemoteClass.
12807         
12808         * object.c: Added a new method create_remote_class_key.
12809         Fixed mono_remote_class so it does not depend on
12810         mono_upgrade_remote_class.
12811         Removed extend_interface_array.
12812         Added new method clone_remote_class(), which makes a copy of a remote
12813         class and adds a new interface or class to it.
12814         mono_upgrade_remote_class() now creates a new remote class (or gets
12815         it from the cache) if an vtable upgrade is needed. In this way
12816         we make sure that other objects sharing the same remote class
12817         don't get the new vtable with unwanted interfaces.
12818         
12819         * object-internals.h:
12820         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
12821         
12822         * marshal.c: Track changes in mono_upgrade_remote_class().
12823
12824 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
12825         * icall.c: Add runtime methods for obtaining members of inflated
12826         class, which were created from supplied non-inflated members. It
12827         is used in internal Get{Method,Constructor,Field} methods in
12828         System.Type
12829
12830 2005-06-09  Martin Baulig  <martin@ximian.com>
12831
12832         * reflection.c
12833         (mono_reflection_bind_generic_method_parameters): Fix #75169.
12834
12835 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12836         * reflection.c (mono_image_basic_init): Define
12837         Version in MonoDynamicAssembly. 
12838         
12839 2005-06-08  Martin Baulig  <martin@ximian.com>
12840
12841         Fix #75136.
12842
12843         * loader.c
12844         (mono_method_signature_full): New public method; takes a
12845         `MonoGenericContext *'.
12846         (find_method): Use mono_method_signature_full() and pass the
12847         klass'es context to it.
12848
12849         * class.c (mono_class_is_inflated_method): Use
12850         mono_method_signature_full() and pass the context to it.
12851
12852 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
12853
12854         * object.c: add proper locking in mono_remote_class_vtable(),
12855         fixes possible memory corruption.
12856
12857 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
12858
12859         * marshal.c (mono_remoting_marshal_init): set
12860         initialized after initialization.
12861
12862 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12863
12864         * locales.c : hush.
12865
12866 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
12867
12868         * object.c (extend_interface_array): fix really silly
12869         memory corrupting / comparison bug.
12870
12871 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12872
12873         * reflection.c: Functions added to support the creation
12874         of CustomAttributeData, which includes Attribute data
12875         used by ReflectionOnly methods.
12876
12877         * reflection.h:  mono_reflection_get_custom_attrs_data and
12878          mono_custom_attrs_data_construct added (functions exposed).
12879
12880          * icall.c: Added mono_reflection_get_custom_attrs_data
12881          as icall.
12882         
12883 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
12884
12885         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
12886         lupus's request.
12887
12888 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
12889
12890         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
12891
12892         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
12893         dynamic DllImportAttribute.
12894
12895         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
12896         dynamic DllImportAttribute.
12897
12898         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
12899         Fixes #75162.
12900
12901 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12902
12903         * threads.c: avoid segfault when an unstarted thread is aborted.
12904
12905 2005-06-05  KornĂ©l Pál <kornelpal@hotmail.com>
12906
12907         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
12908         Returns the name and version of the runtime for reporting.
12909
12910 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12911
12912         * appdomain.c: bump corlib version.
12913         * object-internals.h: new field in MonoReflectionAssembly.
12914
12915 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12916
12917         * object-internals.h: Carlos forgot to add this field.
12918
12919 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12920
12921         * icall.c: Added create_version to create instances
12922         of Version of MonoReflectionAssemblyName. This change helps
12923         the AssemblyName tests to keep running fine.
12924         
12925 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
12926   
12927         * object.c (mono_method_return_message_restore): A somehow less
12928         intrusive fix for #75138.
12929
12930 2005-06-03  Raja R Harinath  <rharinath@novell.com>
12931
12932         * object.c (mono_method_return_message_restore): Fix computation
12933         of expected number of out args.
12934
12935 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
12936
12937         * reflection.c (mono_image_get_method_info): Fix the case when the
12938         charset is empty.
12939
12940 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
12941
12942         * object.c: Added missing null check in
12943           mono_method_return_message_restore.
12944
12945 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
12946
12947         * reflection.c (mono_image_get_method_info): Handle the case when
12948         dllentry is empty.
12949
12950 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
12951
12952         * object.c: When creating the vtable for a proxy, take into account
12953         all inherited interfaces, not only the ones registered in
12954         iclass->interfaces. This fixs bug #74996.
12955         Also, in mono_method_return_message_restore, verify that the array
12956         of out args has the expected lengh.
12957
12958 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12959
12960         * socket-io.c: update the timeout in Poll when the call is interrupte.
12961
12962 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12963
12964         * socket-io.c: support abort/suspend in Select_internal after last
12965         change.
12966
12967 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12968
12969         * threadpool.c: remove warning.
12970
12971 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12972
12973         * icall.c:
12974         * socket-io.[ch]: Select_internal uses poll() now when available, thus
12975         removing the 1024 limit from select(). Runtime part of the fix for
12976         bug #71203.
12977
12978 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12979
12980         * socket-io.c: when resolving the addresses for the same
12981         host returned by gethostname(), get the local IPs from the interface
12982         list. Loopback addresses are discarded if the are interfaces up with
12983         non-loopback ones. Fixes bug #63265.
12984
12985 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
12986
12987         * appdomain.c, verify.c, object-internals.h, reflection.c:
12988         bumped corlib number to 36, and added new extra_flags field
12989         to ReflectionMethodBuilder and friends.  Fixes #75060.
12990
12991 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
12992
12993         * gc.c: register a new weak link only if the object is non-null
12994         (fixes bug#75047).
12995
12996 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12997
12998         * culture-info.h : short time pattern too.
12999
13000 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
13001
13002         * culture-info.h : expand long time pattern string length.
13003
13004 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
13005
13006         * culture-info-table.h : update (more French date format; #72788).
13007
13008 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
13009
13010         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
13011         the method is static. Fixes #75029.
13012
13013 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
13014
13015         * reflection.c: Update the table_idx field of method builders after
13016         saving the module, since it can change. This is a workaround for
13017         bug #74914. 
13018
13019 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
13020
13021         * culture-info-table.h : update (additional French date format).
13022
13023 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
13024
13025         * icall.c (ves_icall_type_Equals): Revert last change.
13026         
13027         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
13028
13029         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
13030
13031 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
13032
13033         * class-internals.h: Added executioncontext_class field to 
13034         MonoDefaults structure.
13035         * domain.c: Cache System.Threading.ExecutionContext class in 
13036         mono_defaults.
13037         * object.c: Capture the ExecutionContext for asynchroneous calls in
13038          mono_async_result_new.
13039         * object-internals.h: Added execution_context and original_context 
13040         fields to MonoAsyncResult. Added execution_context to MonoThread.
13041         * security-manager.c|.h: Added mono_get_context_capture_method to 
13042         return the capture method (if required by the security manager or by
13043         the framework version used).
13044         * threadpool.c: Apply capture (if present) ExecutionContext in 
13045         mono_async_invoke and revert to original context after it completes.
13046
13047 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
13048
13049         * culture-info-table.h : updated (real hacky solution for zh-CHT).
13050
13051 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
13052
13053         * culture-info-table.h : zh-CHT related workaround.
13054
13055 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
13056
13057         * marshal.c (emit_marshal_custom): Add some error checking and call the
13058         methods in the ICustomMarshaler interface. Fixes #74875.
13059         
13060         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
13061         native->managed wrappers.
13062
13063 2005-05-12  Martin Baulig  <martin@ximian.com>
13064
13065         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
13066         here and use the loader lock.
13067
13068         * mono-debug.c: Properly lock when the debugger is not attached.
13069         (mono_debug_init): Release the initial lock if we're not running
13070         in the debugger.
13071
13072 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
13073
13074         * marshal.c (emit_marshal_custom): Pass through NULL values without
13075         calling the custom marshalling routines.
13076
13077         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
13078         conversion in structures. Fixes #74882.
13079
13080 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
13081
13082         * culture-info-table.h : zh-* cultures were missing.
13083
13084 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
13085
13086         * threads.c: Added a new event background_change_event which is signaled
13087         when a thread changes its background mode.
13088         Moved here several checks previously done in managed code. The checks
13089         require the thread lock, and using the thread lock in managed code
13090         can result in deadlocks.
13091         Merged Start_internal and Thread_internal into a single method. Now 
13092         Thread_internal does all work of creating and starting a thread.
13093         Added icalls for setting and getting the state of the object. Moved from
13094         managed code to avoid locking there.
13095         Added wait_for_tids_or_state_change() which is called instad of
13096         wait_for_tids when waiting for non-backround threads to end. This method
13097         will return if one of the threads ends or the background_change_event
13098         is signaled.
13099         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
13100         the background mode. This method signals the background_change_event
13101         event.
13102         * icall.c:
13103         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
13104         removed Start_internal.
13105         
13106 2005-05-11  Martin Baulig  <martin@ximian.com>
13107
13108         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
13109         to order of some fields to get proper alignment on 64-bit machines.
13110
13111 2005-05-11  Martin Baulig  <martin@ximian.com>
13112
13113         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
13114         changes as they're broken and completely fuck up the debugger.
13115
13116         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
13117
13118 2005-05-10  Martin Baulig  <martin@ximian.com>
13119
13120         * reflection.c (mono_reflection_generic_class_initialize): Don't
13121         call mono_class_setup_parent() here.
13122
13123 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13124
13125         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
13126         send/receive timeout use an integer in milliseconds. We were using a
13127         struct timeval.
13128
13129 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13130
13131         * locales.c:
13132         (internal_get_cultures): reserve the first slot of the array for the
13133         InvariantCulture, which will be filled in managed code.
13134
13135 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
13136
13137         * reflection.c (mono_image_fill_module_table): Initialize the
13138         GENERATION field as well.
13139
13140 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13141
13142         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
13143         Monitor.Enter on the object.
13144
13145 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
13146
13147         * threads.c: Enable the wait for running threads when exiting.
13148         * icall.c: Suspend all threads before exiting.
13149
13150 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
13151
13152         * assembly.c (mono_assembly_load_reference): Fix warning.
13153
13154 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13155
13156         * threadpool.c: changed the default number of threads per cpu. From now
13157         on, the default will be 20 + (5 * number of cpus) instead of 50.
13158
13159 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
13160
13161         * loader.c (mono_method_get_signature_full): Add locking here.
13162
13163 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
13164
13165         * appdomain.c: Moved methods for parsing and freeing assembly
13166         names to assembly.c.
13167         * assembly.c, domain-internals.h: Created public methods for parsing
13168         assembly names. Fixed mono_assembly_load_with_partial_name:
13169         it now finds the best match, taking into account the version,
13170         token and culture specified in the partial name. Also return
13171         the latest version if no version information is specified.
13172
13173 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
13174
13175         * threadpool.c: replace check for SocketAsyncCall class.
13176
13177 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13178
13179         * threadpool-internals.h:
13180         * Makefile.am: added threadpool-internals.h
13181
13182         * threadpool.c: call mono_unhandled_exception on exceptions not handled
13183         that happen in threadpool threads (tested on MS).
13184         (mono_thread_pool_remove_socket): new function that dispatch any pending
13185         AIO call on a socket that is closing. By now only epoll really needs it,
13186         as select/poll wake up when the socket closes.
13187
13188
13189         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
13190
13191 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
13192
13193         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
13194
13195 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
13196
13197         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
13198
13199 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
13200
13201         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
13202         has an abort request, convert it into a suspend request.
13203
13204 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
13205
13206         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
13207         warning for the usage of `UnmanagedFunctionPointerAttribute' which
13208         is not supported yet.
13209
13210 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13211
13212         * image.c: register assemblies loaded from data (bundles) in the loaded
13213         assemblies hash. Fixes bug #74772.
13214
13215 2005-04-29  Martin Baulig  <martin@ximian.com>
13216
13217         * class.c (mono_type_get_name_recurse): Update to the new naming
13218         schema from the latest .NET 2.x beta2.
13219         (mono_class_setup_vtable_general): If we're a generic instance,
13220         copy the vtable from our generic type definition and inflate all
13221         the methods in it.
13222
13223         * loader.c (find_method): Update to the new naming schema from the
13224         latest .NET 2.x beta2.
13225
13226 2005-04-29  Raja R Harinath  <harinath@gmail.com>
13227
13228         * class.c (mono_class_init): Add a mono_loader_unlock to the
13229         #74734 fix.
13230
13231 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
13232
13233         * icall.c (ves_icall_System_Environment_Exit): Remove the 
13234         suspend_all_other_threads () call for the time being, since it can hang.
13235
13236         * threads.c (mono_thread_manage): Similarly, disable the waiting for
13237         the background threads to exit, since it can also hang.
13238
13239         * class.c (mono_class_init): Applied patch from Ankit Jain 
13240         (radical@gmail.com). Avoid pending init errors when a field refers
13241         to a nested class using a typeref. Fixes #74734.
13242
13243         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
13244         this for dynamic modules.
13245
13246 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13247
13248         * threads.c: don't wait for threads that are in the process of aborting
13249         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
13250         and waiting for background threads to finish. This makes xsp and
13251         mod-mono-server exit without random length delays and/or hangs.
13252
13253 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13254
13255         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
13256
13257 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
13258
13259         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
13260         dynamic types to prevent infinite loops. Fixes #74727.
13261
13262         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
13263         ..._is_assignable_to.
13264
13265 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
13266
13267         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
13268
13269 2005-04-25  Martin Baulig  <martin@ximian.com>
13270
13271         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
13272
13273         * domain.c
13274         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
13275
13276         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
13277
13278         * reflection.c (build_compressed_metadata): Set metadata header
13279         version to 2.0.
13280
13281 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
13282
13283         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
13284         number into an integral and a decimal part. Fixes #70473.
13285
13286         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
13287
13288 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
13289
13290         * culture-info-table.h : reflected the latest locale-builder output.
13291
13292 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13293
13294         * threadpool.c: check for SuspendRequested too when deciding if
13295         mono_thread_interruption_checkpoint should be called.
13296
13297 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13298
13299         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
13300         * threads.c: remove interruption_mutex and use Interlocked instead. When
13301         suspending all the threads, wait for all the suspended events at once.
13302         If we're shutting down and get an APC that is going to be queued,
13303         call mono_thread_execute_interruption immediately, as the thread might
13304         be sleeping on a pthread condition or mutex.
13305
13306         * icall.c: call mono_runtime_set_shutting_down before suspending the
13307         threads.
13308
13309         Fixes bug #74693. And now xsp is happier when exiting.
13310
13311 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
13312
13313         * loader.c (mono_stack_walk): Fix #74690.
13314
13315 2005-04-22  Martin Baulig  <martin@ximian.com>
13316
13317         * mono-debug.h (MonoDebugMethodJitInfo): Added
13318         `MonoDebugMethodJitInfo *jit'.
13319
13320         * mono-debug.c (mono_debug_read_method): Cache the
13321         MonoDebugMethodJitInfo in `address->jit'.
13322         (mono_debug_free_method_jit_info): New public method.
13323
13324 2005-04-22  Martin Baulig  <martin@ximian.com>
13325
13326         * class.c (mono_class_is_assignable_from): Disallow
13327         type parameter -> interface.
13328
13329 2005-04-21  Dick Porter  <dick@ximian.com>
13330
13331         * threads.c (mono_thread_create): Turn an assertion into an error.
13332
13333 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
13334
13335         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
13336         
13337         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
13338         Fix some gcc 4.0 warnings.
13339
13340 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
13341
13342         * file-io.c: fix alt dir separator char on unix systems
13343         and cleanup (fixes bug #71214).
13344
13345 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
13346
13347         * marshal.c: Use CALLVIRT instead of CALL when dispatching
13348         a call to a remote domain, since the method may be an
13349         interface method in the client domain. This fixes bug #74192.
13350
13351 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13352
13353         * threadpool.c: recv/send are now performed before going back to managed
13354         code to save one transition.
13355
13356 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13357
13358         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
13359
13360         * metadata/threadpool.c: removed hack to workaround the bug above.
13361
13362         Fixes bug #74618.
13363
13364 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
13365
13366         * reflection.c reflection.h: Fix handling of parameter defaults in
13367         dynamic methods. Also fixes handling of parameter attributes.
13368         Fixes #74609.
13369
13370         * mono-debug.c (mono_debug_close_image): Fix warning.
13371
13372 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13373
13374         * socket-io.h: replaced old unused field with new 'blocking'.
13375         * threadpool.c: restore socket blocking state on windows(tm).
13376
13377 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
13378
13379         * icall.c: don't return the codebase in the AssemblyName[] returned by
13380         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
13381         * object-internals.h: Removed FIXME (fields were presents) and fixed
13382         versioncompat declaration.
13383
13384 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13385
13386         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
13387         not closed, so don't cleanup when it happens.
13388
13389 2005-04-13  Chris Toshok  <toshok@ximian.com>
13390
13391         * mono-debug-debugger.h: change prototype for
13392         mono_debugger_lookup_type.
13393
13394         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
13395         this function, although it should probably be named
13396         mono_debugger_init_type.
13397
13398 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13399
13400         * threadpool.c: fix non-AIO case.
13401
13402 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
13403
13404         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
13405         the built-in profiler to measure just JIT compilation times.
13406
13407 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13408
13409         * threadpool.c: the epollfd might be closed by another thread at
13410         any time, so ignore EBADF at treat it as a "we're closing" sign.
13411
13412 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13413
13414         * threadpool.c: release the semaphores with a count equals to the number
13415         of working threads in both IO and regular pools. Fixed typo that messed
13416         up the count of IO pool threads. Don't initialize the pipe handles if
13417         we're using epoll.
13418
13419 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13420
13421         * threadpool.c: some systems don't like a NULL when deleting the socket
13422         from epoll.
13423
13424 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13425
13426         * threadpool.c: fix semaphore allocation.
13427
13428 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13429
13430         * threadpool.c: added epoll() based implementation for asynchronous IO
13431         that is used instead of the default poll() when available.
13432         It can be disabled by setting MONO_DISABLE_AIO.
13433
13434 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13435
13436         * threadpool.c: windows needs 'closesocket' and instead of returning
13437         0 when the stream is closed while in select, it returns -1. Fixes bug
13438         #74573.
13439
13440 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
13441
13442         * class.c (class_compute_field_layout): Fix the regression caused by
13443         the previous try.
13444
13445 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13446
13447         * threadpool.c: separate pool for socket async. IO.
13448         * threadpool.h: mono_max_worker_threads is not a global any more.
13449
13450 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
13451
13452         * class.c (class_compute_field_layout): Fix #74549.
13453
13454 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13455
13456         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
13457         use 2 connected sockets instead.
13458
13459 2005-04-08  Miguel de Icaza  <miguel@novell.com>
13460
13461         * mono-config.c: Add new entry point for mkbundle
13462         mono_config_parse_memory. 
13463
13464 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13465
13466         * threadpool.c: removed another unused function.
13467
13468 2005-04-08  Ankit Jain  <radical@corewars.org>
13469
13470         * reflection.c (get_default_param_value_blobs): Add 'types'
13471         parameter to get the types encoded in the constant table.
13472         (mono_param_get_objects): Use the type from the constant table,
13473         not the type of the parameter, when creating default values.
13474         Handle null default values correctly.
13475
13476 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13477
13478         * file-io.c:
13479         * file-io.h:
13480         * threadpool.c:
13481         * threadpool.h:
13482         * icall.c:
13483         * socket-io.c: removed dead code for async IO.
13484
13485 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13486
13487         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
13488
13489         * threadpool.c: intercept socket async. calls and pass them to a thread
13490         that is polling and dispatching the job items to the threadpool as
13491         socket become ready. Fixes bugs #71217, #71933.
13492
13493         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
13494         between char and short/ushort arrays.
13495
13496         * socket-io.c: remove dead code.
13497
13498 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
13499
13500         * locales.c,
13501           icall.c : removed InternalToUpper_Comp() and
13502           InternalToLower_Comp().
13503
13504 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
13505
13506         * char-conversions.h : The tables were incorrectly generated. Should
13507           be generated against invariant culture.
13508
13509 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
13510
13511         * object.c (mono_runtime_invoke_array): Fix return value when 
13512         passing pre-created valuetype objects to ctors.
13513
13514         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
13515         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
13516         Fixes #74338.
13517
13518 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
13519
13520         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
13521         only used with --security and hides the wrong corlib version error.
13522
13523 2005-03-30  Joshua Tauberer  <tauberer@for.net>
13524
13525         * class.c: Changed mono_class_name_from_token so that types
13526         outside of a namespace don't have an initial period.  Improved
13527         the g_warning message used in _mono_class_get when loading
13528         fails.
13529         * assembly.c: In mono_assembly_load_reference, when an assembly
13530         can't be found, "No such file or directory" is misleading and
13531         unhelpful because a few paths were checked for the presence of
13532         the assembly.  When that happens (ENOENT), display a nicer
13533         message indicating the directories that were searched.  In all
13534         cases, the warning is made easier to read for non-hackers.
13535
13536 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
13537
13538         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
13539         project/solution.
13540         * appdomain.h|domain.c: Removed inline from functions.
13541         * appdomain.c: Reduced warnings when compiling on windows.
13542         * icall.c: Fixed output_debug declaration to gunichar2*.
13543         * mono-config.c: Reduced warnings when compiling on windows.
13544         * rand.c: Added missing "windows.h". Added missing return value.
13545         * rawbuffer.c: Added missing winsock2.h for windows.
13546         * sysmath.h: Added mono-compiler.h header to allow/ease 
13547         compilation with non-GCC compilers.
13548         * threads.c: Fixed declarations to compile with VS.NET C compiler.
13549         Removed cast warnings.
13550
13551         Adapted from the work of J Lothian (for VC6).
13552
13553 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
13554
13555         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
13556         from default_path.
13557
13558 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
13559
13560         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
13561         the 2.0 profile.
13562
13563 2005-03-27  Raja R Harinath  <harinath@gmail.com>
13564
13565         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
13566         has to be in $(exec_prefix).  $(prefix) is for arch-independent
13567         stuff, and it would probably use $(prefix)/share rather than
13568         $(prefix)/lib.
13569
13570 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13571
13572         * console-io.c: added 2 includes that might be missing.
13573
13574 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
13575
13576         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
13577         profile.
13578
13579         * reflection.c (create_custom_attr): Allocate the params array using
13580         alloca so it gets GC tracking.
13581
13582 2005-03-23  Chris Toshok  <toshok@ximian.com>
13583
13584         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
13585         out some spew.
13586
13587 2005-03-24  Raja R Harinath  <rharinath@novell.com>
13588
13589         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
13590         changes to pick up any changes in prefix, etc.
13591
13592 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
13593
13594         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
13595         
13596         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
13597         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
13598
13599 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
13600
13601         * class-internals.h object-internals.h class.c reflection.c: Extend the
13602         mono_lookup_dynamic_token () function to return the class of the
13603         token as well. 
13604
13605         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
13606         well. Fixes #73848.
13607
13608 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
13609
13610         * security-manager.c: Skip inheritance checks for intra-corlib
13611         class inheritance and method overrides. This skips a lot of checks
13612         and (anyway) permissions cannot work until corlib is loaded.
13613
13614 2005-03-23  Martin Baulig  <martin@ximian.com>
13615
13616         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
13617         MONO_TYPE_GENERICINST.  
13618
13619 2005-03-23  Martin Baulig  <martin@ximian.com>
13620
13621         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
13622
13623 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
13624
13625         * class.c: added locking comments to some functions.
13626         Cache the interface offsets arrays (saves about 20 KB
13627         of runtime memory in a typical app).
13628         Reduce the time overhead in mono_class_setup_supertypes ().
13629
13630 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
13631
13632         * icall.c: speedup and fix leaks in GetMethodsByName and
13633         GetPropertiesByName.
13634
13635 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
13636
13637         * reflection.c: some locking fixes.
13638
13639 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
13640
13641         * metadata.c: added missing break in case statement.
13642
13643 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
13644
13645         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
13646         typedbyref return values. Fixes #73941.
13647
13648 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
13649
13650         * security-manager.c|h: Added demandunmanaged method and 
13651         suppressunmanagedcodesecurity class to MonoSecurityManager.
13652         Renamed aptc class to allowpartiallytrustedcallers.
13653
13654 2005-03-17  Martin Baulig  <martin@ximian.com>
13655
13656         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
13657
13658 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13659
13660         * file-io.c: disabled file async. IO using aio_*. It uses the
13661         threadpool now. Workaround for bug #73718.
13662
13663 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
13664
13665         * assembly.h, mono-config.c: added code to deal with bundled configs
13666         for bundled assemblies.
13667
13668 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
13669
13670         * *.c, private.h: cleanup, removing old private.h header file.
13671
13672 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
13673
13674         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
13675         and throw_on_unmappable_char attributes.
13676
13677 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
13678
13679         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
13680         _ProcessName_internal.
13681
13682 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
13683
13684         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
13685         #73631.
13686
13687         * icall.c threads.c threads-types.h: Remove slothash icalls as they
13688         are no longer used.
13689
13690 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
13691
13692         * object.c (compute_class_bitmap): Add support for generics. Fixes
13693         #73527.
13694
13695 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
13696
13697         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
13698
13699 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13700
13701         * filewatcher.c: commented out the code for windows watcher, as we don't
13702         use it (we use the managed implementation instead).
13703
13704 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
13705
13706         * object-internals.h (MonoThread): Remove 'unused1' field.
13707
13708         * appdomain.c: Bump corlib version.
13709
13710         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
13711
13712         * reflection.c (mono_reflection_create_runtime_class): Remove the
13713         AssemblyBuilder.Save optimization since it causes too many problems.
13714
13715 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
13716
13717         * exception.c|h: Added mono_get_exception_reflection_type_load to
13718         create a ReflectionTypeLoadException object.
13719         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
13720         to return NULL is a InheritanceDemand fails during reflection. Updated
13721         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
13722         ReflectionTypeLoadException if an InheritanceDemand fails during 
13723         reflection. Added icall mapping for GetLinkDemandSecurity.
13724         * security-manager.c|h: Added ves_icall_System_Security_
13725         SecurityManager_GetLinkDemandSecurity internal call to return the
13726         class and methods permissions set for a LinkDemand. Removed unused
13727         fields in MonoSecurityManager.
13728
13729 2005-03-10  Martin Baulig  <martin@ximian.com>
13730
13731         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
13732         it's a generic instance.
13733
13734 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
13735
13736         * reflection.c (mono_get_object_from_blob): Applied patch from
13737         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
13738
13739         * class.c (mono_class_is_assignable_from): Another try at fixing 
13740         #73469 without breaking anything.
13741
13742 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
13743
13744         * class.c: (mono_class_is_assignable_from): Revert the last changes
13745         since they don't work with generics.
13746         
13747         * class.c (mono_class_is_assignable_from): Fix build bustage.
13748
13749         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
13750         the managed IsAssignableFrom method. Fixes #73469.
13751
13752         * reflection.c (mono_reflection_call_is_assignable_from): New helper
13753         function.
13754
13755 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
13756
13757         * object.c (mono_load_remote_field_new): Fix returning uninitialized
13758         memory when the remoting callback does not sets the out arguments.
13759         Fixes #73007.
13760
13761         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
13762         by mistake.
13763
13764         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
13765
13766         * object-internals.h (MonoStackFrame): Sync with managed object layout.
13767
13768         * appdomain.c: Bump corlib version.
13769
13770 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
13771
13772         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
13773         function.
13774
13775         * threads.c (mono_thread_attach): Detect threads which are not started
13776         by the GC pthread wrappers.
13777
13778 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
13779
13780         * icall.c: Added new icall for RNG.
13781         * rand.c|h: Added new icall to open the RNG. This allows to share a 
13782         single handle on Linux to access /dev/urandom and fix #73183.
13783
13784 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
13785
13786         * object.c: setting the new vtable in a transparent proxy object must
13787         not change the GC descriptor.
13788
13789 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
13790
13791         * object.c: fixed compilation without GCJ support.
13792         * reflection.c: for runtime-created types ensure klass->has_references
13793         is correct (bug #73215).
13794
13795 2005-03-02  Martin Baulig  <martin@ximian.com>
13796
13797         * class.c (mono_class_is_assignable_from): Make this work if
13798         `oklass' is a generic instance; fixes #72831.
13799
13800 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
13801
13802         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
13803         with hasthis set.
13804         
13805         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
13806
13807         * marshal.c: Reorganize native->managed marshalling code to also use
13808         the emit_marshal_... functions.
13809
13810 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
13811
13812         * object.c: typed allocs have issues with bitmap sizes > 30,
13813         so check for max_set >= 30.
13814
13815 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
13816
13817         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
13818         managed code. Fixes #73012.
13819
13820         * metadata.h (MonoMarshalSpec): Add elem_mult field.
13821
13822         * metadata.c reflection.c: Load/Emit elem_mult as well.
13823         
13824         * metadata.h (MonoMarshalSpec): Add comment.
13825
13826         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
13827
13828         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
13829         num_elem to -1 if not given.
13830
13831         * object-internals.h (MonoReflectionMarshal): Add has_size field.
13832
13833         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
13834         given values.
13835
13836 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
13837
13838         * null-gc.c (mono_gc_free_fixed): Was not compilable.
13839
13840 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
13841
13842         * reflection.c (encode_marshal_blob): Encode param_num field as well.
13843
13844         * object-internals.h (MonoReflectionMarshal): Add param_num field.
13845
13846 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
13847
13848         * object.c: generalized the reference bitmap creation
13849         and added hooks for the new GC.
13850         * class-internals.c: removed the gc_bitmap field from MonoClass.
13851
13852 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
13853
13854         * domain.c: help the compiler to produce better code
13855         in mono_jit_info_table_find ().
13856
13857 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
13858
13859         * object.c: make all allocations look typed.
13860
13861 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
13862
13863         * socket-io.c: load Mono.Posix if it's not loaded already
13864         (fixes bug#73033).
13865
13866 2005-02-24  Martin Baulig  <martin@ximian.com>
13867
13868         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
13869         * reflection.c (dup_type): Likewise.
13870
13871 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
13872
13873         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
13874         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
13875
13876 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
13877
13878         * domain.c, threads.c, object-internals.h: make the critical thread
13879         local vars use the fast access mode (even when we're compiled in
13880         a lib). Provide accessors to be used by the jit during codegen.
13881
13882 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13883
13884         * appdomain.c: Changed hook functios behavior to include
13885         support for the reflection only assemblies. Some icalls were changed
13886         to support the mentioned assemblies too. Signatures of static methods
13887         try_assembly_resolve and real_load now have an additional parameter:
13888         refonly.
13889
13890         * assembly.c: General changes to mono_assembly_ methods to support
13891         reflection only api. Functions mono_assembly_open, mono_assembly_load,
13892         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
13893         suffix, to support an additional gbool parameter to specify whether
13894         the assembli is reflection only or not. Created some new hook functions 
13895         to add support for reflection only assemblies. Signatures of static 
13896         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
13897         have now an additional parameter: refonly.
13898
13899         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
13900         indicating whether the assembly is reflection only or not.
13901
13902         * exception.c: Add mono_get_exception_invalid_operation.
13903
13904         * icall.c: Throw an InvalidOperationException when trying to invoke
13905         a property/method/event, or trying to set/get the value of a field.
13906         Also add an icall to retrieve the ref_only flag to the
13907         MonoReflectionAssembly.
13908
13909 2005-02-23  Chris Toshok  <toshok@ximian.com>
13910
13911         Part of fix for #72827.
13912         * mono-debug.c (mono_debug_add_method): add lexical block data to
13913         the info we write.  Kind of a hack at the moment - we copy the
13914         lexical block info from the MonoDebugMethodInfo to the
13915         MonoDebugMethodJitInfo here, before writing it.
13916         (mono_debug_read_method): read the lexical block info.
13917
13918         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
13919
13920         * debug-mono-symfile.h: add lexical block support.
13921
13922         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
13923         support.
13924
13925 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
13926
13927         * loader.c (mono_lookup_pinvoke_call): Fix warning.
13928
13929         * object.c (mono_runtime_free_method): Call mono_free_method () and
13930         put the TODOs there.
13931
13932         * loader.c (mono_free_method): Free up most memory allocated for 
13933         dynamic methods.
13934
13935 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
13936
13937         * reflection.c: properly flag a Type argument to a
13938         named custom attr value (bug #72248).
13939
13940 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
13941
13942         * reflection.c: reduce code duplication in named custom
13943         attribute encoding.
13944
13945 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
13946
13947         * reflection.c: properly encode custom attrs of type object
13948         (bug #72649).
13949
13950 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
13951
13952         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
13953
13954 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
13955
13956         * socket-io.c: load System.dll if it's not loaded already
13957         (bug #72850 and #70477).
13958
13959 2005-02-21  Martin Baulig  <martin@ximian.com>
13960
13961         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
13962         generic instances.
13963
13964 2005-02-21  Martin Baulig  <martin@ximian.com>
13965
13966         * reflection.c (mono_image_build_metadata): We also need to
13967         "fixup" the MethodImpl table after we computed the final method
13968         indices.  Call fixup_methodimpl() to do that.
13969         (fixup_methodimpl): New private method.
13970
13971 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
13972
13973         * assembly.c: special case mscorlib.dll (bug#72536),
13974         patch from Carlos Alberto Cortez.
13975
13976 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
13977
13978         * threads-types.h threads.c: Fix build bustage.
13979
13980         * threads.c: Use a union for long<->double conversions.
13981
13982         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
13983         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
13984
13985         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
13986         containing the checkpoint call with NOT_TAKEN.
13987         
13988         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
13989         checkpoint before pushing the arguments, so they won't have to be
13990         spilled to stack.
13991
13992 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
13993
13994         * domain.c, assembly.c, domain-internals.h: make some data
13995         const and relocation-free.
13996
13997 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
13998
13999         * object.c, appdomain.c, class-internals.h: introduce the
14000         MonoClassRuntimeInfo structure to hold the info needed to
14001         use a class at runtime. Made mono_class_vtable() lock-free
14002         for all the appdomains.
14003
14004 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
14005
14006         * metadata-internals.h, image.c: introduce a per-image mempool to
14007         be used for memory that has the same lifetime as the image.
14008
14009 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
14010
14011         * domain.c: In mono_init_internal(), instead of selecting the first
14012         runtime version supported by an executable, get a list of all
14013         supported versions and select the one for which an mscorlib exists
14014         (since even if the runtime supports a given version, it doesn't mean
14015         that the framework for that version is installed).
14016         Modified get_runtimes_from_exe to support this behavior.
14017         In supported_runtimes, added information about additional system
14018         assembly versions.
14019         
14020         * assembly.c: Added support for more than one system assembly version
14021         per runtime version. Updated the assembly list.
14022         In mono_assembly_remap_version, removed the initial version check,
14023         since we don't know to which version we need to compare until we
14024         get the version set on which the assembly is based.
14025         Moved the code for loading corlib into the new method
14026         mono_assembly_load_corlib(), so it can be used by the initialization
14027         code.
14028         
14029         * domain-internals.h: Updated data structures and added declaration
14030         for mono_assembly_load_corlib.
14031
14032 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14033
14034         * reflection.c (resolve_object): Fix the creation of the signature in 
14035         the SignatureHelper case.
14036
14037         * assembly.c (mono_assembly_remap_version): Fix binary search.
14038         
14039 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
14040  
14041         * class.c: Added inheritance check when a method is overloaded (from a
14042         virtual method or when implementing an interface) and when a class is
14043         inherited. Added functions to set a failure for a class and to 
14044         retreive the exception from a failure.
14045         * class-internals.h: Added fields to MonoClass to keep the exception
14046         information status for inheritance (or other exceptions) to be thrown
14047         later (i.e. not at load time).
14048         * object.c: Throw the inheritance SecurityException when a type is to 
14049         be created with either class or method inheritance violations.
14050         * reflection.c|h: Fix when getting declsec from a class. Removed 
14051         unrequired code for class. Improved sanity in parameter naming.
14052         * security-manager.c|h: Added functions to check for class and method
14053         inheritance.
14054
14055 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14056
14057         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
14058         and has_finalize in dynamic types as well.
14059
14060 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
14061
14062         * culture-info-table.h : fixed currency format for en-GB (and so on).
14063
14064 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
14065
14066         * gc.c: ensure the GC handles never have 0 as a value.
14067
14068 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
14069
14070         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
14071         a pointer to a struct to unmanaged code. Fixes #72625.
14072
14073 2005-02-16  Martin Baulig  <martin@ximian.com>
14074
14075         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
14076
14077 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
14078
14079         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
14080
14081 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
14082
14083         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
14084
14085         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
14086         UnmanagedFunctionPointerAttribute, use it for determining calling convention
14087         etc. Fixes #71471.
14088
14089         * reflection.c (mono_custom_attrs_get_attr): New helper function.
14090
14091         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
14092
14093 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
14094
14095         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
14096         changes to make the current context a field in MonoThread.
14097
14098 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
14099
14100         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
14101         the last change.
14102         
14103         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
14104         extracted from mono_marshal_get_native_wrapper.
14105
14106         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
14107         to create wrappers around native functions.
14108
14109         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
14110         delegates for arbitrary function pointers. Fixes #71472.
14111
14112 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
14113
14114         * threads.c: cleaned up the code a little.
14115
14116 2005-02-15  Martin Baulig  <martin@ximian.com>
14117
14118         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
14119         the data table.
14120
14121         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
14122         allocate larger chunks if needed.
14123
14124 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14125
14126         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
14127         in by mistake.
14128
14129 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
14130
14131         * domain.c: keep the domains in an array and ensure the domain ids
14132         are kept small, so they can be used as indexes to domain-specific data
14133         with a small memory overhead.
14134
14135 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14136
14137         * icall.c: Handle byref types in Type icalls. Fixes #72544.
14138
14139 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
14140
14141         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
14142
14143 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
14144
14145         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
14146
14147         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
14148         values.
14149
14150         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
14151         
14152 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
14153
14154         * domain-internals.h: add the hashtable here.
14155
14156         * class-internals.h: Remove `info' from MonoMethod
14157
14158         * domain.c: Add a new hashtable, jit_trampoline_hash
14159
14160 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
14161
14162         * object.c: don't set the value of static fields
14163         (fixes bug#72494).
14164
14165 2005-02-11  Martin Baulig  <martin@ximian.com>
14166
14167         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
14168         (mono_debug_add_method): Silently ignore the method if it's too big.
14169         (mono_debug_add_type): Likewise.
14170
14171 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
14172
14173         * threads.c, appdomain.c: remove #ifdefs from the code.
14174
14175 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
14176
14177         * metadata-internals.h: Added flags to MonoAssembly to cache the most
14178         common security informations. This allows us to stay in unmanaged code
14179         when doing LinkDemand and it's special cases (except for the first 
14180         time for initialization). The flags a very much used with --security.
14181         * reflection.c|h: Added code to get declarative security attributes 
14182         for LinkDemand and InheritanceDemand. This required to refactor the
14183         existing code for Demand.
14184         * security-manager.c|h: Added new method fields for the special cases
14185         of LinkDemand.
14186
14187 2005-02-10  Martin Baulig  <martin@ximian.com>
14188
14189         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
14190         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
14191
14192 2005-02-10  Martin Baulig  <martin@ximian.com>
14193
14194         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
14195         debugging code; this is almost a complete rewrite.
14196
14197         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
14198
14199 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14200
14201         * domain.c, object.h: expose mono_string_equal () and 
14202         mono_string_hash ().
14203         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
14204         it's implemented in managed code.
14205
14206 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14207
14208         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
14209         lo leak objects between appdomains.
14210
14211 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14212
14213         * assembly.c: old compilers compilation fix from 
14214         robertj@gmx.net (Robert Jordan).
14215
14216 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
14217
14218         * class-internals.h: Little reminder for the future.
14219
14220         * debug-helpers.c: Fix up wrapper_type_names
14221
14222 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14223
14224         * image.c, metadata-internals.h: when loading an image from a file,
14225         mmap all of it and use the same codepaths as when using a
14226         in-memory image: the code is simpler and we use less memory
14227         (both writable and readonly).
14228
14229 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
14230
14231         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
14232         API to alloc runtime data structures that need to be tracked by the
14233         GC and contain pointers.
14234         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
14235         make the code more readable and eventually use a different GC.
14236
14237 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
14238
14239         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
14240         for out arguments.
14241         
14242 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
14243
14244         * object.c: In release_type_locks(), don't release the cctor lock
14245         if it has already been released. This fixes a crash in the
14246         thread5 test.
14247
14248 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14249
14250         * gc.c, marshal.c, icall.c: register a delegate for finalization
14251         only when the native function pointer has been allocated for it.
14252
14253 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14254
14255         * object.c: cleaned up some code, allocate objects that are
14256         pointer free with the atomic malloc variant. Allocate memory
14257         for static data from the mempool if it's pointer-free.
14258         Allocate the bounds array at the end of the array data, when needed.
14259         * object-internals.h, object.h: move a private function in a private
14260         header.
14261         * class.c: handle missing case in tracking references in fields.
14262
14263 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
14264
14265         * class.c, class-internals.h: keep track if a type has
14266         reference fields in either the instance or static fields.
14267
14268 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
14269
14270         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
14271         and renamed to MonoRuntimeInfo. Added fields to store the expected
14272         framework assembly version. Changed mono_get_framework_version and
14273         mono_get_runtime_version for a single mono_get_runtime_info method.
14274         
14275         * assembly.c: Added method to remap system assembly versions to the
14276         current executing runtime version. Removed old mapping code.
14277         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
14278         
14279         * icall.c, reflection.c: Track api changes.
14280
14281 2005-02-06  Miguel de Icaza  <miguel@novell.com>
14282
14283         * loader.c (method_from_memberref): Improve error reporting,
14284         produce the class name instead of the typeref/typedef index. 
14285
14286 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
14287
14288         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
14289
14290 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14291
14292         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
14293         stdcall and charset name mangling.  Reorganize the code and add
14294         some tracing stuff.
14295
14296 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
14297
14298         * monodiet.c: More iters!
14299
14300         * marshal.c: Iter usage.
14301
14302         * icall.c: Iter usage.
14303
14304         * object.c: Use iters.
14305
14306         * debug-helpers.c: More iters
14307
14308 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14309
14310         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
14311         under win32.
14312
14313 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
14314
14315         * mono-debug-debugger.c: use iters
14316
14317         * class.c, class-internals.h: mono_class_setup_events is static
14318         now
14319
14320         * All callers: use iters
14321
14322 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14323
14324         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
14325         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
14326
14327 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
14328
14329         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
14330
14331         * marshal.h: Add prototypes for ldfld/stfld_remote.
14332
14333         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
14334         this is called during startup.
14335         
14336 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
14337
14338         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
14339         MonoThreadsSync struct private in monitor.c. Changed the way
14340         MonoThreadsSync is allocated so it's faster and there is no
14341         need to keep track of it with a finalizer and it uses less memory.
14342         This also finally allows us to allocate mono objects as ptrfree when
14343         there are no reference fields.
14344
14345 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
14346
14347         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
14348         disappearing link to the GC interface and use them to simplify
14349         the gchandles code.
14350
14351 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
14352
14353         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
14354         stfld_remote which call mono_load/store_field_new. This allows methods
14355         calling ldfld/stfld wrappers to be AOTed.
14356
14357         * console-io.c: Include sys/filio.h under solaris.
14358         
14359         * console-io.c: Include curses.h if needed correctly.
14360
14361 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
14362         
14363         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
14364         method->klass as well.
14365
14366         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
14367
14368         * class.c (mono_class_init): Switch on lazy initialization of 
14369         methods.
14370
14371         * class.c (mono_class_get_finalizer): Handle the case when the 
14372         finalizer is inherited.
14373
14374 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14375
14376         * console-io.c: <curses.h> is needed by term.h on solaris.
14377
14378 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
14379
14380         * icall.c, class-internals.h, monodiet.c, class.c: Remove
14381         mono_class_setup_properties where possible. Remove this ftn from
14382         the header file, and make it static.
14383
14384 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
14385
14386         * loader.c: Add missing setup_... call.
14387
14388         * class.c: Add missing setup_... calls.
14389
14390         * class.c (mono_class_init): Switch on lazy initialization of 
14391         the generic vtable.
14392         
14393         * class.c (mono_class_init): Fix generics broken by the recent changes.
14394
14395         * monodiet.c (handle_type): Add missing setup_... calls.
14396
14397         * class.c: Back out garbage in previous patch.
14398         
14399         * class.c: Add missing setup_... calls.
14400
14401         * class.c (mono_class_get_method_from_name_flags): Avoid calling
14402         mono_class_setup_methods () if possible.
14403
14404         * class-internals.h (MonoClass): Add 'has_cctor' flag.
14405
14406         * class-internals.h (MonoCachedClassInfo): New structure.
14407
14408         * class.c: Initialize properties and events fields of MonoClass lazily.
14409
14410         * class.c: Add infrastructure for lazily initializing the methods and
14411         vtable fields of MonoClass. Not yet used.
14412
14413         * class.c (mono_class_get_finalizer): New helper function.
14414
14415         * class.c: Add infrastructure for loading some class related data from
14416         an AOT file.
14417
14418         * object.c: Add infrastructure for initializing the vtable from data
14419         in the AOT file.
14420
14421         * gc.c (run_finalize): Use mono_class_get_finalizer ().
14422
14423         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
14424         appropriate initialization function before accessing parts of the
14425         MonoClass structure.
14426
14427         * marshal.c: Fix warnings.
14428         
14429         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
14430
14431         * mono-debug-debugger.c (get_exception_message): Use 
14432         mono_class_get_method_from_name_flags ().
14433
14434 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
14435
14436         * reflection.c, appdomain.c: Replace a few manual searches that
14437         Zoltan missed. (Paolo approved this part of my initial patch).
14438
14439 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
14440
14441         * profiler.c: disable recording statistical events at report time.
14442
14443 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14444
14445         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
14446         to byteswap arrays of enum values, too (bug #72080).
14447
14448 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
14449
14450         * appdomain.c (set_domain_search_path): Allow this to be called if
14451         domain->setup is not yet set.
14452
14453         * loader.c (mono_method_get_index): New helper function.
14454
14455         * loader.c reflection.c: Use mono_method_get_index ().
14456
14457         * class.c (mono_class_get_method_from_name_flags): New helper method.
14458
14459         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
14460         this.
14461
14462         * class.c (mono_class_get_cctor): New helper method.
14463
14464         * string-icalls.c object.c class.c marshal.c reflection.c: Use
14465         mono_class_get_method () to look up methods.
14466
14467 2005-02-01  Miguel de Icaza  <miguel@novell.com>
14468
14469         * console-io.c: Fix the build, this should work on Windows.
14470
14471 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
14472
14473         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
14474         be set to null to keep things valid
14475
14476 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14477
14478         * icall.c: added Console 2.0 icalls.
14479         * Makefile.am: added console-io.[ch]
14480         * console-io.[ch]: internal calls for Console 2.0 API.
14481
14482 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14483
14484         * class.c: make sure we consider all the interfaces
14485         when calculating max_interface_id (bug found by
14486         Jeroen Frijters running ikvm).
14487
14488 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
14489
14490         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
14491         valuetype fields to null.
14492
14493         * object.c (set_value): Ditto. Fixes #71669.    
14494
14495 2005-01-31  Martin Baulig  <martin@ximian.com>
14496
14497         * metadata.c (mono_metadata_has_generic_params): New public
14498         function; checks whether something is a generic method.
14499
14500 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
14501
14502         * appdomain.c: fix infinite recursion when adding assemblies.
14503
14504 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
14505
14506         * object.c: Fix small typo to return all items for Environment.
14507         GetCommandLineArgs.
14508
14509 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14510
14511         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
14512         reflection.c: more domain and assembly-unload related fixes
14513         and memory leaks plugs.
14514
14515 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
14516
14517         * 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.
14518
14519 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
14520
14521         * loader.c (mono_method_signature): Make this method lazy
14522         (mono_get_method_from_token): Don't computate the signature here.
14523
14524         Doing this saves quite a bit of memory. I got 90 kb on starting up
14525         monodoc. It should also save some disk reads on startup.
14526
14527         * *: MonoMethod->signature might be NULL now. You *MUST* use
14528         mono_method_signature.
14529
14530 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
14531
14532         * object.c (mono_runtime_get_main_args): Return an array from the
14533         current domain here. Fixes #71938.
14534
14535 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
14536
14537         * monitor.c: formatting changes to comply with the
14538         mono coding style and remove #ifdefs from the code.
14539
14540 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
14541
14542         * metadata.c, private.h: remove some unneeded data
14543         and use a more compact representation for table schemas.
14544
14545 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
14546
14547         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
14548         to get a better distribution in hash tables.
14549         * *.c: use mono_aligned_addr_hash() where appropriate.
14550         * assembly.c: make var static.
14551
14552 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
14553
14554         * domain-internals.h: Put MonoJitInfo on a diet.
14555
14556         * domain.c: Fix a warning.
14557
14558 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14559
14560         * gc.c: rework the gc handles code to reuse handles
14561         when freed.
14562
14563 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
14564
14565         * domain.c: fixed long standing bug in mono_string_equal() which
14566         was brought to light with the ldstr changes.
14567
14568 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
14569
14570         * reflection.c: Remove warning by adding missing include for marshal.h
14571
14572 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14573
14574         * domain.c, object.c: change the ldstr_table to hold
14575         MonoString* as keys: makes the runtime isinterned lookup
14576         faster and simplifies memory management.
14577
14578 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
14579  
14580         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
14581         possible to add imperative security checks before calling the icall.
14582         * reflection.c: Return security attributes on the original MonoMethod
14583         (and not the wrapped one). This fix permissions on icalls.
14584
14585 2005-01-25  Dick Porter  <dick@ximian.com>
14586
14587         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
14588         the check for mktime() support actually test the mktime() return
14589         value.  "Fixes" bug 71682, though the output is still different to
14590         MS.
14591
14592 2005-01-25  Martin Baulig  <martin@ximian.com>
14593
14594         * class.c (mono_class_is_assignable_from): Make this work for
14595         generic instances.
14596
14597 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
14598
14599         * marshal.c (mono_string_utf8_to_builder)
14600         (mono_string_builder_to_utf16): We might not have ownership of the
14601         string. In thise case, we need to create a new buffer.
14602
14603         * object-internals.h (mono_stringbuilder_capacity): sb->str might
14604         be null, in which case, use the default capacity.
14605
14606 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14607
14608         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
14609         GC events to the profiler.
14610
14611 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
14612
14613         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
14614         if you don't want the GC to run.
14615
14616 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
14617
14618         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
14619         start providing a GC API and keeping different implementations in
14620         their own file.
14621         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
14622
14623 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
14624
14625         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
14626         mmap rather than allocating a huge buffer.
14627         (mono_debug_close_mono_symbol_file): Free the buffer allocated
14628         above.
14629
14630 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
14631
14632         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
14633         and CheckExecutionRights.
14634         * reflection.c|h: Keep the index of the declarative security to be 
14635         used, instead of the pointer, when AOT compiler is used. Also add 
14636         class initialization when requesting demands.
14637         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
14638         CheckExecutionRights. Both properties are now FALSE by default, and
14639         unmodifiable, unless the --security option is used.
14640
14641 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14642
14643         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
14644         reflection.c: properly refcount images and assemblies, many leaks fixed.
14645
14646 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14647
14648         * threadpool.c: increase the timeout for threads in the thread pool to
14649         10s.  Fixes bug #67159.
14650
14651 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
14652
14653         * class-internals.h: Sun's compiler insists on explicit
14654         signed on bit fields to handle then correctly.
14655
14656 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
14657
14658         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
14659         Make the size of the array fit only the number of invalid path
14660         chars that we have.
14661
14662         * class.c (_mono_class_get): Improve the error reporting when a
14663         class referenced is not found, to assist debugging. 
14664
14665 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
14666
14667         * threads.c: fix off-by-one error.
14668         * domain.c: free data allocated in the domain.
14669
14670 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
14671
14672         * reflection.c (mono_method_body_get_object): Fill out exception info
14673         as well.
14674
14675         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
14676         structure.
14677         
14678 2005-01-19  Martin Baulig  <martin@ximian.com>
14679
14680         * loader.c (mono_get_method_constrained): Make this work again.
14681
14682 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
14683
14684         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
14685         guint16 to match the managed side.
14686
14687         * reflection.c (mono_reflection_body_get_object): Fill out local
14688         variables array.
14689
14690         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
14691         as well.
14692
14693         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
14694         'local_var_sig_token'.
14695
14696 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
14697
14698         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
14699         System.Drawing.
14700
14701         * reflection.c (mono_method_body_get_object): Handle abstract and
14702         runtime methods.
14703
14704 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
14705
14706         * marshal.c, loader.c, class-internals.h, reflection.c:
14707         store the emthod data for a wrapper in an array instead of a list.
14708
14709 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
14710
14711         * marshal.c: change the code to allocate memory more
14712         conservatively for method wrappers.
14713
14714 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
14715
14716         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
14717         fields from MonoClass to the marshal info structure where they belong.
14718
14719 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14720
14721         * class.c, object.c, class-internals.h, marshal.c: rearrange
14722         some fields and tweak some types to lower memory usage.
14723
14724 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
14725
14726         * threads.c (signal_thread_state_change): Handle the case when the
14727         target thread is the current thread.
14728
14729         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
14730
14731         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
14732         emit_ptr_to_object_conv. 
14733
14734         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
14735         marshalling. Fixes #71352.
14736
14737 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
14738
14739         * metadata.h, blob.h: move table enum to blob.h so it can be included
14740         in any header.
14741         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
14742         cut the size of MonoImage/MonoDynamicImage.
14743
14744 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
14745
14746         * profiler.c (mono_profiler_install_simple): Fix default arguments.
14747
14748 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
14749
14750         * reflection.c, reflection.h, icall.c: add a function to check
14751         if an attribute type is defined for a metadata object.
14752
14753 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
14754
14755         * object-internals.h: Added some needed fields from StringBuilder class.
14756         * marshal.c: Set the maxCapacity when creating a StringBuilder.
14757
14758 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
14759
14760         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
14761         threads before shutting down the runtime.
14762
14763         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
14764
14765 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14766
14767         * object-internal.h, threads.c: implement stacksize and 
14768         parameterized thread start functionality (requires
14769         matching corlib). Marked broken code for later removal.
14770
14771 2005-01-12  Martin Baulig  <martin@ximian.com>
14772
14773         * class-internals.h (MonoGenericClass): Moved the `initialized'
14774         flag to MonoDynamicGenericClass, removed `init_pending'.
14775         (MonoGenericInst): Added `is_reference' flag.
14776
14777 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
14778
14779         * reflection.c (mono_image_create_pefile): Only set the pe_offset
14780         inside the MSDOS header. Fixes #71201.
14781
14782         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
14783         gc thread.
14784         (mono_domain_finalize): Ditto.
14785
14786 2005-01-12  Martin Baulig  <martin@ximian.com>
14787
14788         * class.c (mono_get_shared_generic_class): Use the cache for
14789         non-dynamic generic classes.
14790
14791         * class-internals.h (mono_class_create_generic_2): Removed
14792         function prototype, this function is now static inside class.c.
14793
14794         * class.c (mono_class_create_generic_2): Made this static, only
14795         call it from mono_class_init() and mono_class_setup_parent().
14796         (collect_implemented_interfaces_aux): Call mono_class_init() on
14797         the interfaces we collect.
14798         (mono_class_setup_vtable): Call mono_class_init (class->parent).
14799
14800 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
14801
14802         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
14803         it a real thread handle.
14804
14805         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
14806         MonoJitExceptionInfo, since each catch clause needs its own variable.
14807         
14808 2005-01-11  Dick Porter  <dick@ximian.com>
14809
14810         * image.c (mono_pe_file_open): New variant on mono_image_open()
14811         that does not set up the CLI metadata; used for FileVersionInfo so
14812         it can get the data for windows binaries too.
14813         
14814         * process.c (process_read_string_block): Don't read off the end of
14815         the StringTable block.
14816
14817         These both fix bug 70766.
14818
14819 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
14820
14821         * gc.c: set some fields to NULL at GC cleanup time.
14822         * threads.c: if we quit the main thread, call exit ().
14823
14824 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
14825
14826         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
14827
14828 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
14829
14830         * threads.h, threads.c, object.c: added accessor and settor for
14831         main_thread. Handle it specially when exiting from it: wait
14832         for other foreground threads to exit.
14833
14834 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
14835
14836         * process.c, verify.c: remove some bloat.
14837
14838 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
14839
14840         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
14841         the calling convention to cdecl under win32.
14842
14843 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
14844
14845         * object.c (mono_object_get_size): New function to get the size of
14846         an object instance.
14847
14848         * profiler.c (simple_allocation): Use above.
14849
14850 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
14851
14852         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
14853         ves_icall_System_AppDomain_getRootDomain (as it's not required to
14854         get an appdomain by it's id and we can't assume the root's id is 0).
14855         * domain-internals.h: Change the function prototype to match.
14856         * icall.c: Change the icall table for AppDomain.
14857
14858 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
14859
14860         * locales.c (string_invariant_compare_char): Only compute
14861         GUnicodeTypes in the case where we need them.  Test for ordinality
14862         first and return if so.
14863
14864         From the commit:
14865
14866                 /*
14867                  * FIXME: here we must use the information from c1type and c2type
14868                  * to find out the proper collation, even on the InvariantCulture, the
14869                  * sorting is not done by computing the unicode values, but their
14870                  * actual sort order.
14871                  */
14872
14873 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14874
14875         * loader.c: for P/Invoke methods, allow the "Internal" shared
14876         library name to refer to the calling process symbol namespace.
14877
14878 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
14879
14880         * Makefile.am: Add the security manager to the build.
14881         * security-manager.c|h: New. Initialization of the security manager.
14882
14883 2005-01-07  Dick Porter  <dick@ximian.com>
14884
14885         * threads.c: 
14886         * monitor.c: Update thread state during Monitor and WaitHandle
14887         waits.  Fixes bug 71031.
14888
14889 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
14890
14891         * reflection.c (property_encode_signature): Correctly handle when the
14892         property has no methods.
14893
14894 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
14895
14896         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
14897         
14898         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
14899         fields from mb, not rmb. Fixes #71017.
14900
14901         * marshal.c (emit_ptr_to_str_conv): Add support for 
14902         ByValTStr -> string conversion. Fixes #71015.
14903
14904         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
14905
14906         * mempool.c (mono_mempool_contains_addr): New helper function.
14907
14908 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
14909
14910         * metadata.c (mono_metadata_compute_size): Fix size calculation of
14911         HasSematics encoded fields.
14912         
14913         * metadata.c (mono_type_to_unmanaged): Improve error message for 
14914         invalid string marshalling.
14915
14916         * metadata.c: Fix warnings.
14917         
14918 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14919
14920         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
14921         profiler support.
14922
14923 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
14924
14925         * domain.c object.c domain-internals.h: Revert part of r38077 since the
14926         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
14927         tests.
14928
14929 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
14930
14931         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
14932         so methods containing these can be AOTed.
14933
14934 2005-01-03  Martin Baulig  <martin@ximian.com>
14935
14936         * loader.c (find_method): Removed the hack for generic instances.
14937         (method_from_memberref): If our parent is a generic instance, pass
14938         its generic type definition to find_method() and then inflate the
14939         method.
14940         (mono_get_method_constrained): Pass the generic type definition to
14941         find_method() and inflate the method later.
14942
14943         * class-internals.h (MonoStats): Added `generic_class_count'.
14944
14945         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
14946         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
14947
14948         * reflection.c (mono_custom_attrs_from_params): Don't ignore
14949         generic type definitions.
14950
14951 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
14952
14953         * loader.c icall.c: Fix warnings.
14954
14955 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
14956
14957         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
14958         blittable types. Fixes #70864.
14959
14960 2004-12-29  Martin Baulig  <martin@ximian.com>
14961
14962         * icall.c
14963         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
14964
14965         * reflection.c (mono_method_get_object): Create a
14966         "System.Reflection.MonoGenericMethod" for inflated methods; don't
14967         call mono_get_inflated_method().
14968
14969         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
14970
14971 2004-12-27  Martin Baulig  <martin@ximian.com>
14972
14973         * class-internals.h (MonoMethod): Added `is_inflated' flag.
14974         (MonoMethodInflated): Added `inflated' field.
14975
14976         * class.c (mono_class_inflate_generic_method): Don't really
14977         inflate the method here; just set the `is_inflated' flag in the
14978         MonoMethod.
14979         (mono_class_get_inflated_method): Actually inflate the method here
14980         if it's not already inflated; we use the MonoMethodInflated's new
14981         `inflated' field as a cache.
14982
14983 2004-12-26  Martin Baulig  <martin@ximian.com>
14984
14985         * class.c
14986         (inflate_generic_class): Moved some code out of inflate_generic_type().
14987         (mono_class_inflate_generic_method): If we're already inflated,
14988         inflate the context and use the declaring method; ie. make sure
14989         the declaring method of an inflated method is always the generic
14990         method definition.
14991         (mono_class_create_from_typedef): Create
14992         `class->generic_container->context->gclass'.
14993
14994 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
14995
14996         * metadata-internals.h, marshal.c, reflection.c: More
14997         MonoGHashTable->GHashTable.
14998
14999         * domain-internals.h, class.c: Change MonoGHashTable's into
15000         GHashTables for some cases where no gc stuff is used
15001
15002         All users: update apis
15003
15004 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
15005
15006         * metadata.c (builtin_types): Make this `const'. Makes this get
15007         put into the shareable section.
15008         (mono_metadata_init): Casts to make gcc happy.
15009
15010 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
15011
15012         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
15013
15014 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
15015
15016         * icall.c: Added an internal call to retrieve the position and length
15017         of assembly-level declarative security attributes (RequestMinimum, 
15018         RequestOptional and RequestRefuse). This is used by the Assembly class
15019         to re-create the corresponding permission sets.
15020
15021 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
15022
15023         * marshal.c: fix the stelemref wrapper to be type correct
15024         (and faster).
15025
15026 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
15027
15028         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
15029         to do key & 0x7fffffff. Hashtable already does this. It just
15030         results in longer code.
15031
15032 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
15033
15034         * appdomain.c: Bump corlib version.
15035         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
15036         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
15037         * reflection.c|h: Add functions to get declarative security infos
15038         (blob position and length) for assemblies, classes and methods.
15039
15040 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
15041
15042         * reflection.c: sort the constant table (bug #70693).
15043
15044 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
15045
15046         * object-internals.h, threads.c, domain.c: add accessors for
15047         the MonoThread and MonoDomain tls keys.
15048
15049 2004-12-18  Martin Baulig  <martin@ximian.com>
15050
15051         * class.c (inflate_generic_type): If we're inflating a generic
15052         instance, set `ngclass->context->container = context->container';
15053         ie. the container we inflated into.
15054
15055         * metadata.c (mono_metadata_parse_generic_param): Reflect above
15056         inflate_generic_type() changes.
15057
15058 2004-12-17  Martin Baulig  <martin@ximian.com>
15059
15060         * class-internals.h
15061         (MonoGenericClass): Replaced `MonoType *generic_type' with
15062         `MonoClass *generic_class'.  Removed `dynamic_info'; if
15063         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
15064         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
15065
15066 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
15067
15068         * exception.c (mono_exception_from_token): New helper function.
15069
15070 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
15071
15072         * assembly.c (mono_assembly_load_with_partial_name): Call 
15073         mono_assembly_loaded before invoking the preload hooks. Fixes
15074         #70564.
15075
15076         * object-internals.h (MonoThread): Change culture_info and 
15077         ui_culture_info into an array.
15078
15079         * threads.c: Cache culture info objects from more than one appdomain.
15080
15081         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
15082         current UI culture.
15083
15084 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
15085
15086         * threads.h threads.c appdomain.c: Clear the culture_info field of
15087         all threads during unloading if they point to an object in the dying
15088         appdomain.
15089
15090 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
15091
15092         * culture-info.h (TextInfoEntry): New struct
15093         * object-internals.h: sync with managed
15094         * locales.c: fill the `text_info_data' field
15095         * culture-info-tables.h: update
15096
15097 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
15098
15099         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
15100         collector.
15101
15102 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
15103
15104         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
15105         (ves_icall_ModuleBuilder_getMethodToken): Ditto
15106
15107 2004-12-12  Martin Baulig  <martin@ximian.com>
15108
15109         * mono-debug-debugger.c (write_type): If we're an enum and the
15110         builtin types have already been initialized, call mono_class_init().
15111
15112 2004-12-11  Martin Baulig  <martin@ximian.com>
15113
15114         * metadata.c (mono_metadata_load_generic_params): Added
15115         `MonoGenericContainer *parent_container' argument; automatically
15116         compute `container->is_method'; pass the correct owner to
15117         get_constraints().      
15118
15119         * reflection.c (compare_genericparam): Sort the GenericParam table
15120         according to increasing owners. 
15121
15122 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
15123
15124         * profiler.c: allow disabling the default profiler.
15125
15126 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
15127
15128         * decimal.c, icall.c: allow disabling System.Decimal support.
15129
15130 2004-12-09  Marek Safar <marek.safar@seznam.cz>
15131
15132         * reflection.c: Add support for null attribute arguments.
15133
15134 2004-12-09  Martin Baulig  <martin@ximian.com>
15135
15136         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
15137         names to get rid of compiler warnings.
15138
15139 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15140
15141         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
15142         mono_marshal_load_type_info (). Fixes #69625.
15143         (mono_marshal_get_ptr_to_struct): Likewise.
15144
15145 2004-12-08  Martin Baulig  <martin@ximian.com>
15146
15147         * mono-debug.h: Bumped version number to 47.
15148
15149         * mono-debug-debugger.c
15150         (mono_debugger_event_handler, mono_debugger_event): Take two
15151         guint64 arguments insteed of a gpointer and a guint32.  
15152
15153 2004-12-08  Martin Baulig  <martin@ximian.com>
15154
15155         * debug-mono-symfile.h
15156         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
15157         `address' to `native_offset'.
15158
15159 2004-12-08  Martin Baulig  <martin@ximian.com>
15160
15161         * class.c (mono_class_create_from_typespec): Only inflate if we
15162         either have `context->gclass' or `context->gmethod'.
15163
15164 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15165
15166         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
15167
15168         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
15169
15170         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
15171
15172         * reflection.c (mono_assembly_get_object): Remove the workaround put
15173         in for the release.
15174         
15175         * appdomain.c: Use the corlib_internal field from MonoAssembly.
15176
15177         * appdomain.c: Bump corlib version.
15178
15179         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
15180         be visible in other appdomains.
15181
15182 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
15183
15184         * threads.c: Interlocked inc and dec for longs were messed up,
15185         use a KISS based impl for this. Fixes 70234
15186
15187 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
15188
15189         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
15190
15191 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
15192
15193         * icall.c: fix to follow policy not to allow struct
15194         arguments in icalls.
15195
15196 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15197
15198         * process.c: make the patch that handles spaces in file paths work
15199         on mono/windows too.
15200
15201 2004-12-06  Martin Baulig  <martin@ximian.com>
15202
15203         * class.c (mono_class_create_generic): Call
15204         mono_class_setup_supertypes() if we're dynamic.
15205         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
15206
15207 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
15208
15209         * object-internals.h: Add new fields to MonoThread.
15210
15211         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15212
15213         * icall.c threads-types.h threads.c: Add new icalls.
15214
15215         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
15216
15217         * object-internals.h (MonoReflectionAssembly): Sync object layout with
15218         managed side.
15219
15220         * appdomain.c: Bump corlib version.
15221
15222         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
15223         internal assemblies. Fixes #69181.
15224
15225 2004-12-05  Martin Baulig  <martin@ximian.com>
15226
15227         * class.c (mono_class_inflate_generic_signature): Make this a
15228         no-op if `context' is NULL or we don't have any type parameters;
15229         also copy `sentinelpos'.        
15230
15231 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
15232
15233         * image.c: Add unbox_wrapper_cache.
15234
15235         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
15236
15237         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
15238         function generator.
15239         
15240         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
15241         Fixes #70173.
15242
15243         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
15244         
15245 2004-12-04  Martin Baulig  <martin@ximian.com>
15246
15247         * loader.c (mono_method_get_signature_full): New public function;
15248         like mono_method_get_signature(), but with an additional
15249         `MonoGenericContext *' argument.
15250
15251         * class.c (mono_class_inflate_generic_signature): Formerly known
15252         as inflate_generic_signature(); make this public.
15253
15254 2004-12-04  Martin Baulig  <martin@ximian.com>
15255
15256         * metadata.c
15257         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
15258         instead of a `MonoGenericContainer *'.  
15259         (mono_metadata_parse_array_full): Likewise.
15260         (mono_metadata_parse_signature_full): Likewise.
15261         (mono_metadata_parse_method_signature_full): Likewise.
15262         (mono_metadata_parse_generic_inst): Likewise.
15263         (mono_metadata_parse_generic_param): Likewise.
15264         (mono_metadata_parse_mh_full): Likewise.
15265         (mono_type_create_from_typespec_full): Likewise.
15266
15267 2004-12-03  Martin Baulig  <martin@ximian.com>
15268
15269         * class-internals.h (MonoGenericContainer): Replaced the
15270         `MonoGenericContext * pointer with a `MonoGenericContext'
15271         structure and made it the first element.
15272
15273 2004-12-03  Martin Baulig  <martin@ximian.com>
15274
15275         * class.c
15276         (inflate_generic_type): Set the `context->container' when creating
15277         a new MonoGenericContext.
15278         (mono_class_inflate_generic_method): Likewise.
15279         (mono_class_create_from_typespec): Just use `context->container'
15280         to get the container.
15281
15282         * loader.c (method_from_methodspec): Set `context->parent' from
15283         `context->container' - and if that's a method container, use its
15284         parent.  Also set the `context->container' when creating a new
15285         MonoGenericContext.
15286         (mono_get_method_from_token): Use just `context->container' to get
15287         the container.
15288
15289         * metadata.c (do_mono_metadata_parse_generic_class): Also set
15290         `gclass->context->container'.
15291
15292         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
15293         the `context->container' when creating a new MonoGenericContext.
15294
15295 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
15296
15297         * reflection.c (compare_genericparam): Sort params with identical
15298         owner by their number. Fixes gen-111 on sparc.
15299
15300 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
15301
15302         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
15303         around the domain changes.
15304
15305         * appdomain.c (mono_domain_unload): Handle the case when the thread
15306         calling Unload is itself being aborted during unloading. Fixes #70022.
15307
15308         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
15309
15310         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
15311         checkpoint_func as an icall so it gets a wrapper.
15312         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
15313         in the cross-appdomain wrappers too.
15314
15315         * threads.c (mono_thread_has_appdomain_ref): Make this public.
15316
15317         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
15318
15319         * reflection.c: Fix some memory leaks.
15320         
15321 2004-12-02  Martin Baulig  <martin@ximian.com>
15322
15323         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
15324
15325         * metadata.c (generic_class_cache): New static hashtable.
15326         (mono_metadata_lookup_generic_class): New public method.
15327
15328 2004-12-02  Martin Baulig  <martin@ximian.com>
15329
15330         * class.c (mono_class_create_from_typedef): Call
15331         mono_class_setup_parent() and mono_class_create_mono_type() before
15332         parsing the interfaces.
15333
15334 2004-12-02  Martin Baulig  <martin@ximian.com>
15335
15336         * metadata.c (generic_inst_cache): New static hashtable.
15337         (mono_metadata_lookup_generic_inst): New public function.
15338         (mono_metadata_inflate_generic_inst): New public function.
15339         (mono_metadata_parse_generic_inst): New public function.
15340         (do_mono_metadata_parse_generic_class): Use the new
15341         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
15342         since this'll also use the cache.
15343
15344         * reflection.c (mono_reflection_bind_generic_method_parameters):
15345         Use mono_metadata_lookup_generic_inst() to use the new cache.
15346
15347         * class.c (inflate_mono_type): Use
15348         mono_metadata_inflate_generic_inst() to inflate a generic
15349         instance; this'll also use the new cache.
15350
15351         * loader.c (method_from_methodspec): Use
15352         mono_metadata_parse_generic_inst() and
15353         mono_metadata_inflate_generic_inst() rather than parsing it
15354         manually, so we can use the new cache.
15355
15356 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
15357
15358         * threads.c (wait_for_tids): Do not incorrectly free threads when 
15359         the wait times out.
15360
15361 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15362
15363         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
15364         iter->args based on whether parameters are passed in registers (i.e.
15365         MONO_ARCH_REGPARMS is defined)
15366
15367 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
15368
15369         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
15370         the exception message. Fixes #70070.
15371         (method_from_methodspec): Fix warnings.
15372
15373 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15374
15375         * process.c: (complete_path) return the path quoted
15376
15377 2004-12-01  Martin Baulig  <martin@ximian.com>
15378
15379         * class-internals.h (MonoGenericInst): New structure.
15380         (MonoGenericClass): Replaced `type_argc', `type_argv' and
15381         `is_open' with `MonoGenericInst *inst'.
15382         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
15383         `is_open' with `MonoGenericInst *inst'.
15384
15385 2004-11-30  Martin Baulig  <martin@ximian.com>
15386
15387         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
15388
15389         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
15390         to `generic_class_cache'.
15391
15392         * metadata.c
15393         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
15394         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
15395         (mono_generic_inst_is_valuetype): Renamed to
15396         mono_generic_class_is_valuetype().
15397
15398         * class-internals.h
15399         (MonoGenericInst): Renamed to MonoGenericClass.
15400         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
15401         (MonoClass): Renamed `generic_inst' to `generic_class'.
15402         (MonoGenericContext): Renamed `ginst' to `gclass'.
15403
15404         * object-internals.h
15405         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
15406
15407         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
15408         mono_reflection_generic_class_initialize().
15409
15410         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
15411         now known as "System.Reflection.MonoGenericClass".
15412         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
15413
15414 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
15415
15416         * class-internals.h: Added a flag field to MonoClass to cache the
15417         declarative security attributes actions associated with the class.
15418         * domain-internals.h: Added booleans to MonoJitInfo to cache the
15419         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
15420         applicable to the JITted method.
15421         * reflection.c|h: Added functions to extract (as flags) which security
15422         actions are available (declaratively) for a method, class or assembly.
15423         * metadata.c|h: Added functions to search the declarative security
15424         table in the metadata.
15425         
15426 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
15427
15428         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
15429         EXPORTEDTYPES are already in the class name cache, so there is no
15430         need to add extra code here to look at them. Just removes a bit of
15431         cruft.
15432
15433         (ves_icall_System_Environment_get_TickCount): No need for #if
15434         WINDOWS. We already have the code in io-layer.
15435
15436 2004-11-28  Martin Baulig  <martin@ximian.com>
15437
15438         * loader.c
15439         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
15440         Fixes gen-112.cs.
15441
15442 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
15443
15444         * assembly.c (do_mono_assembly_open): Instead of having a
15445         conditional WITH_BUNDLE, incorporate support for bundles here, by
15446         having a global `bundles' variable holding a pointer to the actual
15447         bundles. 
15448
15449         (mono_register_bundled_assemblies): New API call used by the
15450         bundle code. 
15451
15452         See mkbundle.1 for details.
15453         
15454 2004-11-27  Martin Baulig  <martin@ximian.com>
15455
15456         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
15457         the vtable for generic methods.
15458
15459 2004-11-26  Martin Baulig  <martin@ximian.com>
15460
15461         * metadata.c
15462         (mono_metadata_generic_method_hash): New public function.
15463         (mono_metadata_generic_method_equal): Likewise.
15464
15465         * class-internals.h
15466         (MonoGenericContainer): Added `GHashTable *method_hash'.
15467
15468         * reflection.c (ReflectionMethodBuilder): Added
15469         `MonoGenericContainer *generic_container'.
15470         (reflection_methodbuilder_to_mono_method): Don't create a new
15471         MonoGenericContainer each time we're called.
15472         (mono_reflection_bind_generic_method_parameters): Use
15473         `container->method_hash' to cache the results so we don't create a
15474         different method if we're called several times with the same
15475         arguments.
15476
15477         * loader.c (method_from_methodspec): Use the new
15478         `container->method_hash' here, too.
15479
15480 2004-11-26  Martin Baulig  <martin@ximian.com>
15481
15482         * class.c (inflate_generic_signature): Correctly compute
15483         `res->has_type_parameters'.
15484         (mono_class_vtable): Use the `has_type_parameters' flag to
15485         determine whether we're a generic method.
15486
15487         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
15488
15489 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
15490
15491         * object.c (mono_runtime_run_main): Fix a small memory leak.
15492
15493 2004-11-25  Martin Baulig  <martin@ximian.com>
15494
15495         * class.c (set_generic_param_owner): Fixed the loop.
15496
15497 2004-11-25  Martin Baulig  <martin@ximian.com>
15498
15499         * object.c (mono_class_vtable): Don't create any JIT wrappers for
15500         generic methods.
15501
15502 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
15503
15504         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
15505         names. Fixes #69787.
15506
15507 2004-11-24  Martin Baulig  <martin@ximian.com>
15508
15509         * class.c (mono_class_create_generic_2): If we don't have a
15510         `ginst->parent', inflate `gklass->parent' to get our parent.
15511
15512 2004-11-24  Martin Baulig  <martin@ximian.com>
15513
15514         * reflection.c (compare_genericparam): Correctly sort the
15515         GenericParam table; fixes #69779.
15516
15517 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
15518
15519         * reflection.c: When writing a PE file, don't create a huge
15520         buffer in memory. Just write the arrays we have to the file.
15521         This reduces memory usage.
15522
15523         * metadata-internals.h: MonoDynamicStream pefile is no longer used
15524         globally.
15525
15526 2004-11-17  Martin Baulig  <martin@ximian.com>
15527
15528         * class.c (mono_class_init): Don't setup `class->parent' for
15529         dynamic instances; moved this to mono_class_generic_2().
15530         (mono_class_create_generic): Also set `klass->inited' for dynamic
15531         generic instances.
15532         (mono_class_create_generic_2): Don't do anything for dynamic
15533         generic instances.  Set `klass->parent' here and also call
15534         mono_class_setup_parent() here. 
15535
15536         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
15537         `MonoType *parent' argument; set `ginst->parent' before calling
15538         mono_class_create_generic_2(), so we set the correct parent.
15539
15540 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
15541
15542         * reflection.c: allow getting attributes from ModuleBuilder
15543         (used by ikvm).
15544
15545 2004-11-17  Martin Baulig  <martin@ximian.com>
15546
15547         * class.c (mono_class_create_from_typedef): If a type parameter is
15548         inherited from an outer class, set its owner to that class.
15549
15550 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
15551
15552         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
15553           for (int*) written size. This fixes bug #69592.
15554
15555 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
15556
15557         * icall.c: Added IsAuthenticodePresnet internal call.
15558         * image.c|h: New function that check a MonoImage for an Authenticode
15559         signature in the certificate PE data directory.
15560         * security.c|h: New internal call to ask the runtime if an 
15561         Authenticode signature seems referenced in the PE header.
15562
15563 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
15564
15565         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
15566
15567         * reflection.c (mono_image_create_pefile): Free the assembly streams
15568         after writing out the assembly file.
15569
15570         * object.c (mono_runtime_run_main): Fix small memory leak.
15571
15572         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
15573         property access modifiers. Fixes #69389.
15574
15575 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
15576
15577         * domain.c, object.c, object-internals.h, domain-internals.h,
15578         object.h, marshal.c: keep dynamic code info per domain.
15579
15580 2004-11-15  Martin Baulig  <martin@ximian.com>
15581
15582         * class.c (mono_type_get_name_recurse): Put type arguments in
15583         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
15584         see bug #68387.
15585
15586 2004-11-15  Martin Baulig  <martin@ximian.com>
15587
15588         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
15589         (mono_class_setup_vtable): When computing `the_cname' for a
15590         generic instance, don't include the namespace since we'd otherwise
15591         add it twice.
15592
15593 2004-11-15  Martin Baulig  <martin@ximian.com>
15594
15595         * class.c (mono_class_create_generic): Changed return type to void.
15596         (mono_class_create_generic_2): New public function; setup
15597         `class->method', `class->field' and `class->interfaces' here
15598         instead of in mono_class_init().
15599
15600         * class.h (mono_class_create_generic): Moved to class-internals.h.
15601
15602 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
15603
15604         * reflection.c (mono_image_create_pefile): take a file HANDLE.
15605         rather than writing to memory, write to this file. Right now,
15606         we are just writting into a buffer, and copying that. However
15607         we can avoid the buffer later.
15608
15609         (mono_dynamic_stream_reset): new function
15610
15611         * icall.c, object-internals.h: update for the above.
15612
15613 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
15614
15615         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
15616         have been using gc'd memory. First it is slower, unlikely
15617         the comment in the source code said, secondly, it increases
15618         our footprint to do it in the gc.
15619
15620         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
15621         the method so that it does not have to copy to managed code.
15622
15623 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
15624
15625         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
15626
15627 2004-11-12  Martin Baulig  <martin@localhost>
15628
15629         * reflection.c (mono_image_create_token): Allow generic method
15630         definitions here, since they may appear in an `.override'; see
15631         gen-98/gen-99 for an example.
15632
15633 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
15634
15635         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
15636         #69365.
15637
15638         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
15639         descriptive.
15640
15641 2004-11-11  Martin Baulig  <martin@ximian.com>
15642
15643         * class.c (mono_class_setup_vtable): In an explicit interface
15644         implementation, the method name now includes the arity.
15645
15646 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
15647
15648         * object.c (mono_array_full_copy): Fix warning.
15649
15650 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
15651
15652         * appdomain.c: Removed look_for_method_by_name(). Use the new method
15653         mono_class_get_method_from_name() instead.
15654         
15655         * class-internals.h: Added two new types of wrappers. 
15656         Added MonoRemotingTarget enum. Added new trampoline function type, which
15657         takes an additional MonoRemotingTarget value as parameter, so it is
15658         possible to request a trampoline for a specific target.
15659         
15660         * class.c: Added new mono_class_get_method_from_name() method.
15661         
15662         * class.h: In MonoRemoteClass, we can have now to vtables, one for
15663         general remoting sinks and one specific for cross domain calls.
15664         
15665         * debug-helpers.c: Added new wrapper names.
15666         
15667         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
15668         of a remote class.
15669         
15670         * image.c: Porperly delete value objects form the remoting invoke hashtable.
15671         
15672         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
15673         with several other methods (mono_marshal_get_xappdomain_dispatch,
15674         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
15675         and others) can generate a fast remoting wrapper for cross domain calls.
15676         More information can be found in docs/remoting.
15677         Other changes: Removed mono_find_method_by_name, and used
15678         mono_class_get_method_from_name instead.
15679         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
15680         is stored in the remoting invoke hashtable.
15681         
15682         * marshal.h: published the new method for getting the xdomain wrapper,
15683         and also added a method for getting the adequate wrapper for a given
15684         method and target.
15685         
15686         * object-internals.h, object.c: Added a couple of methods for capying and
15687         cloning arrays.
15688         Modified mono_install_remoting_trampoline, which takes the new remoting
15689         trampoline that has a remoting target as parameter.
15690         mono_class_proxy_vtable now also takes a remoting target as parameter, and
15691         will return the most suitable vtable for the target.
15692         Added mono_remote_class_vtable, which returns the vtable of a remote class
15693         (which can be the normal remoting vtable or the xdomain vtable).
15694         
15695         * threads.c: the xdomain invoke and dispatch wrappers must also be
15696         protected against interruptions.
15697
15698 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15699
15700         * icall.c: use memmove in BlockCopyInternal when the source and
15701         destination arrays are the same.
15702
15703 2004-11-09  Martin Baulig  <martin@ximian.com>
15704
15705         * class-internals.h (MonoGenericContainer): Removed `method' and
15706         `signature', replaced them with `is_method' and `is_signature'
15707         flags.  Added `context'.
15708
15709         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
15710         instead of a `MonoGenericContainer *'.
15711
15712         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
15713         for dynamic type parameters.
15714         (mono_metadata_load_generic_params): Setup `container->context'.
15715
15716         * reflection.c (mono_reflection_setup_generic_class): Setup
15717         `tb->generic_container->context'.
15718         (do_mono_reflection_bind_generic_parameters): Use
15719         mono_class_inflate_generic_type() to correctly inflate types,
15720         rather than using our own hack just for MONO_TYPE_VAR.
15721
15722 2004-11-09  Martin Baulig  <martin@ximian.com>
15723
15724         * class.c (mono_class_inflate_generic_method): Small fix; don't
15725         crash here.
15726
15727         * icall.c
15728         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
15729         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
15730         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
15731         (ves_icall_Type_BindGenericParameters): Likewise.
15732         (ves_icall_Type_get_IsGenericInstance): Likewise.
15733         (ves_icall_Type_GetGenericParameterPosition): Likewise.
15734         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
15735         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
15736         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
15737
15738 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
15739
15740         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
15741         assembly versions and public key tokens. Fixes #69113.
15742
15743 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
15744
15745         * metadata.c: fix bug introduced with the type cache changes
15746         on 2004-11-06.
15747
15748 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
15749
15750         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
15751         the MonoClass pointer instead of the token in exception clauses.
15752         * reflection.c: updates for the above and make the code not depend
15753         on the structure of MonoExceptionClause.
15754
15755 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
15756
15757         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
15758         Add support for dynamic assemblies. Fixes #69114.
15759
15760         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
15761
15762 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
15763
15764         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
15765         since most only those methods use it. the code member of
15766         MonoMethodPInvoke was dead, so that can be removed too. Also,
15767         remove inline_count (again, not used), and move slot so that it
15768         can share bits with some other flags. This saves 8 bytes in the
15769         structure and gives us about 50 kb back for mcs helloworld.cs
15770
15771         * *.[ch]: Do naming changes for the above.
15772
15773         * loader.c (mono_method_get_header): Lazily init the header
15774         on first access.
15775         (mono_get_method_from_token): don't init the header here
15776         (mono_free_method): the header may never be allocated
15777
15778         Overall, this saves 150 kb of unmanaged allocations
15779         for mcs helloworld.cs. That accounts for 10% of the unmanaged
15780         memory at runtime.
15781         
15782         * loader.c, loader.h (mono_method_get_header): new accessor.
15783
15784         * *.[ch]: use the above method. Prepares us to lazily load
15785         the header.
15786
15787         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
15788         three warnings, which are actual bugs (see 69206).
15789
15790         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
15791         unused. Saves a cool 4 bytes / method.
15792
15793 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
15794
15795         * metadata.c (builtin_types): Add types for System.Object here.
15796         (mono_metadata_parse_type_full): Cache MonoType*'s that are
15797         for a class or valuetype from klass->this_arg or klass->byval_arg.
15798
15799         On mcs for a hello world, this gets us down from 21836 MonoType's
15800         to 14560.
15801
15802         (mono_metadata_free_type): Account for the above change.
15803
15804 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
15805
15806         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
15807         exception instead of asserting if name is null.
15808         (ves_icall_System_AppDomain_GetData): Ditto.
15809
15810 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
15811
15812         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
15813         EnumBuilder.
15814
15815         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
15816         Return NULL when the domain does not have entry_assembly set.
15817
15818         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
15819         Add a 'resource_modules' argument.
15820         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
15821
15822         * reflection.c (mono_reflection_create_runtime_class): Move setting
15823         of wastypebuilder here, so mono_get_type_object () returns a MonoType
15824         for enums too.
15825
15826         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
15827         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
15828         Throw an ArgumentNullException if 'ptr' is null.
15829
15830         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
15831         assemblies here. Fixes #69020.
15832
15833 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
15834
15835         * reflection.c (build_compressed_metadata): Fix the previous patch for
15836         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
15837         the stack.
15838
15839 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
15840
15841         * assembly.c (mono_assembly_names_equal): Allow a match if one of
15842         the cultures is false. Fixes #69090.
15843
15844         * reflection.c (build_compressed_metadata): Fix invalid memory read 
15845         detected by valgrind.
15846         
15847         * reflection.c (mono_reflection_get_type): Avoid triggering a 
15848         TypeResolve multiple times for the same type. Fixes #65577.
15849
15850 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
15851
15852         * marshal.c: Avoid using ldftn to call managed functions. It is
15853         much slower than just a call.
15854
15855         * reflection.c (mono_module_get_object): free the basename we
15856         allocate here from glib.
15857         
15858         * reflection.c (ensure_runtime_vtable): make sure to free
15859         overrides.  Also, we were allocating an array of MonoMethod not an
15860         array of MonoMethod*.
15861
15862         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
15863
15864         * image.c (mono_image_close): free image->guid here.
15865
15866 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
15867
15868         * reflection.c: Fix some spec conformance issues with the PE file
15869         structures so mcs compiled apps run on the Net 2.0 beta.
15870
15871 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
15872
15873         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
15874         Implement this. Fixes #67264.
15875
15876         * debug-helpers.h debug-helpers.c marshal.c: Move 
15877         mono_find_method_by_name to debug-helpers.c.
15878
15879 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
15880
15881         * object.c (mono_release_type_locks): type_initialization_hash is
15882         a GHashTable.
15883
15884         * reflection.c object.c object-internals.h: Fix warnings.
15885
15886         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
15887         without accessors. Fixes #61561.
15888
15889         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
15890         application base from the root domain if not set. Fixes #65641.
15891         (mono_runtime_init): Fix warning.
15892
15893 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15894
15895         * appdomain.c: call mono_thread_pool_init.
15896         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
15897         of worker threads based on the number of CPUs and the environment
15898         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
15899         for non-windows (windows) systems.
15900
15901 2004-10-27  Chris Toshok  <toshok@ximian.com>
15902
15903         * mono-debug-debugger.c (write_class): don't call mono_class_init
15904         here, as even with the check for (!klass->init_pending), we get
15905         into a situation where we're hitting cycles in class
15906         initialization.  Fixes #68816.
15907
15908 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
15909
15910         * image.c: Avoid overwriting values in the loaded_images_hash when an
15911         assembly is loaded multiple times. Fixes #61152.
15912
15913         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
15914         so multiple satellite assemblies for the same name can be loaded.
15915         Fixes #68259.
15916
15917         * mono_domain_assembly_preload: Actually return the loaded assembly, 
15918         not NULL.
15919
15920         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
15921         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
15922
15923         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
15924         pending finalizers are not invoked after the appdomain has been 
15925         unloaded. Fixes #67862.
15926
15927 2004-10-22  Martin Baulig  <martin@ximian.com>
15928
15929         * mono-debug-debugger.c
15930         (mono_debugger_runtime_invoke): Don't box valuetypes.
15931
15932 2004-10-22  Chris Toshok  <toshok@ximian.com>
15933
15934         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
15935         don't hide private methods.
15936
15937 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
15938
15939         * icall.c: Allows the runtime to "share" (when known) the public key
15940         token of an assembly. This avoid the need to recalculate the token 
15941         (from the public key) in managed code.
15942
15943 2004-10-21  Chris Toshok  <toshok@ximian.com>
15944
15945         * debug-helpers.c (append_class_name): argh, revert last patch.
15946         
15947 2004-10-21  Chris Toshok  <toshok@ximian.com>
15948
15949         * debug-helpers.c (append_class_name): use '+' as the delimiter,
15950         not '/', so that it matches what the debugger uses to look up
15951         methods.
15952
15953 2004-10-21  Martin Baulig  <martin@ximian.com>
15954
15955         * mono-debug-debugger.c (mono_debugger_throw_exception): New
15956         public method; this is called each time an exception is thrown and
15957         allows the debugger to use exception catch points.
15958
15959 2004-10-21  Martin Baulig  <martin@ximian.com>
15960
15961         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
15962         the stack pointer and the exception object in some struct and pass
15963         that to the debugger.
15964
15965 2004-10-21  Chris Toshok  <toshok@ximian.com>
15966
15967         * mono-debug-debugger.c (do_write_class): add instance/static
15968         event support.  We don't expose "raise" or "other" yet.
15969         (event_is_static): new method.
15970
15971 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
15972
15973         * mono-debug-debugger.c
15974         (mono_debugger_handle_exception): Remove
15975         bogus return value for fussy compilers.
15976
15977 2004-10-20  Martin Baulig  <martin@ximian.com>
15978
15979         * mono-debug-debugger.c
15980         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
15981         (mono_debugger_handled_exception): Likewise.
15982
15983 2004-10-20  Martin Baulig  <martin@ximian.com>
15984
15985         * mono-debug-debugger.h (MonoDebuggerEvent): Added
15986         MONO_DEBUGGER_EVENT_EXCEPTION.
15987
15988         * mono-debug-debugger.c (mono_debugger_handle_exception): New
15989         public function to send the debugger a notification for an
15990         exception and inform it about a catch/finally clause.
15991
15992 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
15993
15994         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
15995         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
15996         fix 2.95 build. 
15997
15998         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
15999
16000 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
16001
16002         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
16003         marshalled as [In,Out]. Fixes #58325.
16004
16005 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
16006
16007         * reflection.c (mono_method_body_get_object): Implement some fields.
16008
16009 2004-10-12  Martin Baulig  <martin@ximian.com>
16010
16011         * reflection.c (mono_reflection_bind_generic_parameters): Small
16012         fix, correctly retrieve our parent from a generic instance.
16013
16014 2004-10-12  Martin Baulig  <martin@ximian.com>
16015
16016         * metadata.c (mono_metadata_generic_param_equal): We always have
16017         an owner.
16018
16019         * class.c
16020         (mono_class_from_generic_parameter): We need to have an owner.
16021         (my_mono_class_from_generic_parameter): Likewise.
16022
16023         * reflection.c (mono_reflection_setup_generic_class): Renamed to
16024         mono_reflection_create_generic_class() and added a new
16025         mono_reflection_setup_generic_class().  
16026         (mono_reflection_initialize_generic_param): If we're a nested
16027         generic type and inherited from the containing class, set our
16028         owner to the outer class.
16029
16030 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
16031
16032         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
16033
16034         * reflection.c (mono_method_body_get_object): New function to create
16035         a MethodBody object.
16036
16037         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
16038
16039 2004-10-11  Martin Baulig  <martin@ximian.com>
16040
16041         * metadata.c (_mono_metadata_type_equal): Renamed to
16042         do_mono_metadata_type_equal() and made static.
16043
16044 2004-10-11  Martin Baulig  <martin@ximian.com>
16045
16046         * appdomain.c: Bump corlib version number to 28.
16047
16048 2004-10-10  Martin Baulig  <martin@ximian.com>
16049
16050         * class-internals.h
16051         (MonoGenericInst): Added `MonoGenericContainer *container'.
16052         (MonoGenericMethod): Likewise.
16053         (MonoGenericContext): Likewise.
16054         (MonoGenericParam): Added `MonoGenericContainer *owner'.
16055
16056         * metadata.c
16057         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
16058         (do_mono_metadata_parse_generic_inst): Likewise.
16059         (mono_metadata_parse_type_full): New public method.  This is the actual
16060         mono_metadata_parse_type() implementation - with an additional
16061         `MonoGenericContainer *' argument.
16062         (mono_metadata_parse_array_full): Likewise.
16063         (mono_metadata_parse_signature_full): Likewise.
16064         (mono_metadata_parse_method_signature_full): Likewise.
16065         (mono_metadata_parse_mh_full): Likewise.
16066         (mono_type_create_from_typespec): Likewise.
16067         (mono_metadata_interfaces_from_typedef_full): New public method;
16068         this is similar to the other _full() methods, but we take a
16069         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
16070         (mono_metadata_parse_generic_param): Take an additional
16071         `MonoGenericContainer *' argument and lookup the MonoGenericParam
16072         from that container.
16073         (mono_metadata_generic_param_equal): New static method to compare
16074         two type parameters.
16075         (_mono_metadata_type_equal): New static method; takes an
16076         additional `gboolean signature_only' argument - if true, we don't
16077         compare the owners of generic parameters.
16078         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
16079         with a TRUE argument - do a signature-only comparision.
16080
16081         * loader.c: Use the new _full() methods and pass the
16082         MonoGenericContainer to them.
16083
16084         * object-internals.h (MonoReflectionTypeBuilder): Added
16085         `MonoGenericContainer *generic_container' field.
16086         (MonoReflectionMethodBuilder): Likewise.
16087
16088 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
16089
16090         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
16091         case initial images of dynamic assemblies.
16092
16093         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
16094
16095         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
16096
16097         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
16098         length of event->other array.
16099         (typebuilder_setup_events): Ditto.
16100
16101         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
16102         'assembly_by_name' and add an 'assemblies' list.
16103
16104         * assembly.h assembly.c: Add a new search hook for determining whenever
16105         an assembly is already loaded. Use this instead of searching in the
16106         loaded_assemblies list.
16107
16108         * domain.c appdomain.c: Implement the new search hook so loaded 
16109         assemblies are now scoped by appdomain. Fixes #67727.
16110
16111 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
16112
16113         * threads.c (mono_thread_attach): Initialize synch_lock field so
16114         mono_thread_detach works again.
16115
16116         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
16117         'lib' too. Fixes #63130.
16118
16119 2004-10-06  Jackson Harper  <jackson@ximian.com>
16120
16121         * culture-info-tables.h: regenerated.
16122
16123 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
16124
16125         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
16126         implemented by other interfaces in the result. Fixes #65764.
16127         
16128         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16129         Handle unloadable modules without crashing.
16130
16131         * image.c (load_modules): Revert the previous patch since modules must
16132         have a fixed index inside the array.
16133         
16134         * image.c (load_modules): Don't include native modules in the modules
16135         array.
16136
16137 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
16138
16139         * reflection.h: Add param_defaults field.
16140
16141         * reflection.c: Add support for parameter defaults in dynamic methods.
16142         Fixes #64595.
16143
16144         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
16145         an empty string when a type has no namespace. Fixes #64230.
16146
16147 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
16148
16149         * tabledefs.h: Added "internal" security actions to support non-CAS
16150         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
16151         Note: they do not seems to be used anymore in 2.0 (new metadata format)
16152
16153 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
16154
16155         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
16156         constructor of abstract class. Fixes #61689.
16157
16158 2004-10-04  Martin Baulig  <martin@ximian.com>
16159
16160         * class-internals.h (MonoGenericContainer): New type.
16161         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
16162         `MonoGenericContainer *generic_container'.
16163         (MonoClass): Replaced `gen_params' and `num_gen_params' with
16164         `MonoGenericContainer *generic_container'.
16165
16166         * metadata.c (mono_metadata_load_generic_params): Return a
16167         `MonoGenericContainer *' instead of a `MonoGenericParam *';
16168         removed the `num' argument.
16169
16170 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
16171
16172         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
16173         for dynamic images.
16174
16175         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
16176         machine fields.
16177
16178         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
16179
16180         * reflection.c: Save pe_kind and machine values into the generated
16181         image file.
16182
16183         * appdomain.c: Bump corlib version number.
16184
16185         * object-internals.h: Reorganize layout of LocalBuilder.
16186
16187         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
16188         New helper function.
16189
16190         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
16191         created MonoType for dynamic types. Fixes #66180.
16192
16193 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
16194
16195         * threadpool.c: the ares hashtable needs a critical section around it.
16196         this prevents some nasty segfaults
16197
16198 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
16199
16200         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
16201         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
16202         bug 67324).
16203         
16204 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
16205
16206         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
16207         
16208 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
16209
16210         * image.c: Always canonicalize image file names, to avoid loading
16211         the same assembly twice when referenced using a relative path.
16212
16213 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
16214
16215         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
16216
16217         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
16218
16219         * marshal.c: Fix warnings.
16220
16221 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
16222
16223         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
16224         attempting to marshal the delegate_trampoline as the method_addr.
16225         This patch has a static hashtable of marshalled delegates so that 
16226         we can map delegate_trampoline addresses back to delegates.  This
16227         allows a delegate passed to managed code to be passed back into native
16228         code.  Fixes #67039
16229
16230 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
16231
16232         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
16233
16234         * reflection.c (method_encode_code): Align method headers properly.
16235         Fixes #66025.
16236
16237 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
16238
16239         * marshal.c: In the runtime invoke wrapper, reset the abort
16240         exception if it is cached. This avoids the automatic rethrowal of 
16241         the exception after the catch of the wrapper. Also check for pending
16242         interruptions before calling the managed method. This is done using
16243         the new method emit_thread_force_interrupt_checkpoint, since the
16244         normal checkpoint method is ignored when running the invoke wrapper.
16245         * object.c: If the abort exception is rethrown, set the abort_exc
16246         field of the thread, so it will be rethrown aftere every catch.
16247         * threadpool.c: Only run an interruption checkpoint if what has been
16248         requested is a stop of the thread (aborts will be ignored).
16249         * threads.c: By default, a thread will now never be interrumped while
16250         running the runtime invoke wrapper (this ensures that runtime_invoke
16251         will always return to the caller if an exception pointer is provided).
16252         There is a new special method mono_thread_force_interruption_checkpoint()
16253         to force an interruption checkpoint even if running a protected
16254         wrapper, which is used by the same runtime invoke wrapper to do a check
16255         at a safe point.
16256
16257 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
16258
16259         * object.c, object-internals.h: Implemented mono_release_type_locks,
16260         which releases the cctor locks held by a thread.
16261         * threads.c, threads.h: In thread_cleanup, release cctor locks held
16262         by a thread. Added mono_thread_exit() method to be used to safely stop
16263         a thread.
16264
16265 2004-09-28  Raja R Harinath  <rharinath@novell.com>
16266
16267         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16268         Move null check before dereference.  Avoid indexing beyond the end
16269         of the 'modules' array.
16270
16271 2004-09-28  Raja R Harinath  <rharinath@novell.com>
16272
16273         * metadata-internals.h (MonoImage): Add module_count field.
16274         * image.c (load_modules): Set image->module_count.
16275         (mono_image_load_file_for_image): Use image->module_count.
16276         * reflection.c (mono_image_load_module): Append to image->modules array 
16277         of dynamic assembly.
16278         (mono_module_get_object): Fix loop to actually increment index.
16279         Use image->module_count.
16280         * assembly.c (mono_assembly_load_references): Use image->module_count.
16281         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
16282         Likewise.
16283
16284 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
16285
16286         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
16287         Avoid assert on generic types.
16288
16289 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
16290
16291         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
16292
16293         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
16294
16295         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
16296         function to convert a MarshalSpec structure to its managed counterpart.
16297
16298         * reflection.c: Fix warnings.
16299         
16300         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
16301         field.
16302
16303         * icall.c (mono_create_icall_signature): Fix build.
16304
16305 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
16306
16307         * icall.c: Add MakePointType icall.
16308
16309         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
16310         warnings.
16311
16312 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16313
16314         * threadpool.c: reuse allocated slots in the queue.
16315
16316 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
16317
16318         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
16319
16320         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
16321
16322         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
16323         previous change.
16324
16325         * tabledefs.h: Add constants for pinvoke attributes BestFit and
16326         ThrowOnUnmappableChar.
16327
16328         * icall.c (ves_icall_Type_GetPacking): New icall.
16329
16330 2004-09-24  Martin Baulig  <martin@ximian.com>
16331
16332         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
16333
16334 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16335
16336         * appdomain.c:
16337         (mono_domain_set): allow setting a domain that is being unloaded.
16338         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
16339         being unloaded.
16340
16341 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
16342
16343         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
16344         the GetCustomAttributes icall.
16345
16346 2004-09-23  Martin Baulig  <martin@ximian.com>
16347
16348         * object-internals.h (MonoReflectionGenericParam): Replaced
16349         'has_ctor_constraint', `has_reference_type' and `has_value_type'
16350         with `guint32 attrs'.
16351
16352 2004-09-23  Martin Baulig  <martin@ximian.com>
16353
16354         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
16355
16356 2004-09-23  Martin Baulig  <martin@ximian.com>
16357
16358         * object-internals.h (GenericParameterAttributes): New enum.
16359
16360 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
16361
16362         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
16363         
16364         * class.c (init_events): Fill out event->other field.
16365
16366         * class.c: Fix warnings.
16367
16368         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
16369
16370 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
16371
16372         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
16373         walk which doesn't supply the IL offset.
16374
16375 2004-09-22  Martin Baulig  <martin@ximian.com>
16376
16377         * reflection.c (mono_reflection_setup_internal_class): If we're
16378         System.ValueType, System.Object or System.Enum, set
16379         `klass->instance_size' and create the vtable.
16380         (mono_reflection_create_internal_class): If we're an enum type,
16381         get the base class from our current corlib.
16382
16383 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
16384
16385         * reflection.h (MonoResolveTokenError): New type.
16386
16387         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
16388         icall.
16389
16390         * icall.c: Add an 'error' argument to the ResolveToken icalls.
16391
16392 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
16393
16394         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
16395         Support also calling constructors, but only for already allocated objects.
16396
16397 2004-09-17  Geoff Norton <gnorton@customerdna.com>
16398
16399         * reflection.c (type_get_qualified_name): If the klass is null
16400         return the typename to avoid a NullRefEx.
16401         (encode_cattr_value): Get the qualified name of the boxed type,
16402         not the underlying enumtype.  Fixes #62984.
16403
16404 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
16405
16406         * marshal.c: Fix problems with previous checkin.
16407
16408 2004-09-21    <vargaz@freemail.hu>
16409
16410         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
16411         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
16412
16413         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
16414
16415 2004-09-21  Geoff Norton <gnorton@customerdna.com>
16416
16417         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
16418         should only return a type for pointers, arrays, and passbyref types.
16419         Fixes bug #63841.
16420
16421 2004-09-21  Martin Baulig  <martin@ximian.com>
16422
16423         * domain.c (mono_debugger_check_runtime_version): New public
16424         function.
16425
16426         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
16427
16428 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
16429
16430         * reflection.c: Added missing sort to the declarative security 
16431         attributes table. MS implementation stops seeing the attributes if the
16432         token number regress in the table (as shown by ildasm and permview).
16433
16434 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
16435
16436         * object-internals.h (MonoReflectionModule): Add 'token' field.
16437         
16438         * reflection.c (mono_reflection_get_token): Add support for Module
16439         and Assembly.
16440         (mono_module_get_object): Set 'token' field.
16441         (mono_module_file_get_object): Set 'token' field.
16442
16443         * icall.c: Add new Assembly and Module icalls.
16444
16445         * appdomain.c: Bump corlib version.
16446
16447 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
16448
16449         * loader.h loader.c class.h class.c: Add helper functions for obtaining
16450         tokens of metadata objects.
16451
16452         * reflection.h reflection.c (mono_reflection_get_token): New function
16453         to obtain the token of a metadata object.
16454
16455         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
16456
16457 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
16458
16459         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
16460         
16461         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
16462
16463 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
16464
16465         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
16466         * object-internals.h: Added 3 MonoArray* members to MonoReflection
16467         AssemblyBuilder to access the permissions set in the class lib.
16468         * reflection.c: Added security attributes encoding step in 
16469         mono_image_build_metadata.
16470         * tabledefs.h: Added new security actions defined in 2.0:
16471         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
16472
16473 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
16474
16475         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
16476         macro parameter.
16477
16478 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
16479  
16480         * locales.c: nullify the ICU_collator member of CompareInfo when it is
16481           finalized. There where random SIGSEVs at program termination, when
16482           an object being finalized was trying to do a string comparison and
16483           the current culture was already finalized.
16484  
16485 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16486
16487         * threads.c: call thread_cleanup before finishing the thread if we get
16488         there.
16489
16490 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
16491
16492         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
16493         assemblies from the parent. Fixes #65665.
16494
16495 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
16496
16497         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
16498         modifiers.
16499
16500 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
16501
16502         * reflection.h: add prototype for mono_get_dbnull_object
16503         * reflection.c: add prototypes for get_default_param_value_blobs 
16504         and mono_get_object_from_blob for fussier compilers
16505
16506 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
16507  
16508         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
16509         false deadlock checks in class initialization.
16510  
16511 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
16512
16513         * image.c (mono_image_addref): Fix comment.
16514
16515         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
16516         possible.
16517
16518 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
16519
16520         * reflection.c (mono_param_get_objects): Modified to return
16521         ParameterInfo.DefaultValue object.
16522
16523         (get_default_param_value_blobs):
16524         (mono_get_object_from_blob):
16525         (mono_get_dbnull_object): New helper routines. 
16526
16527         * object.c (mono_get_constant_value_from_blob): New helper routine
16528         carved out from get_default_field_value ()
16529
16530         * object-internals.h (mono_get_constant_value_from_blob): Added
16531         function declaration.
16532
16533 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
16534
16535         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
16536         referenced assemblies. Fixes #62135.
16537
16538         * exception.h exception.c (mono_get_exception_file_not_found2): New
16539         helper function.
16540
16541 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
16542
16543         * class.h class.c: Add mono_type_get_underlying_type ().
16544
16545 2004-09-09  Geoff Norton <gnorton@customerndna.com>
16546
16547         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
16548         Fix GetTypes() to support dynamically created assemblies.
16549
16550 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
16551
16552         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
16553         
16554         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
16555         previous patch.
16556
16557         * reflection.h reflection.c loader.c: Allow dynamic construction of
16558         pinvoke methods. Fixes #65571.
16559         
16560         * reflection.c (mono_reflection_get_type): Revert previous change since
16561         it causes regressions.
16562
16563 2004-09-08  Martin Baulig  <martin@ximian.com>
16564
16565         * class.c (class_compute_field_layout): Don't call
16566         mono_class_layout_fields() for open generic instances.
16567
16568 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
16569         * threads.c appdomain.c: fix typo in GC macro
16570
16571 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16572
16573         * threads.c: don't call mono_thread_detach() in start_wrapper(),
16574         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
16575
16576 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
16577
16578         * image.c (mono_image_close): Applied patch from 
16579         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
16580         assembly is loaded multiple times from data.
16581         
16582         * image.c (mono_image_open): Fix warning.
16583
16584 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
16585
16586         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
16587         once. Fixes #58334.
16588         
16589         * reflection.c (mono_reflection_create_runtime_class): Initialize
16590         klass->nested_classes. Fixes #61224.
16591
16592 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
16593
16594         * threads.c: sched_yield() on exit, to allow threads to quit.
16595
16596 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
16597
16598         * object.c (mono_unhandled_exception): Remove leftover debug code.
16599
16600 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
16601
16602         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
16603
16604 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
16605
16606         * marshal.c (emit_marshal_array): Really null terminate string arrays.
16607         
16608         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
16609
16610 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
16611
16612         * marshal.c (emit_marshal_array): Null terminate string arrays.
16613         
16614         * marshal.c (raise_auto_layout_exception): Fix warning.
16615
16616         * reflection.c (mono_param_get_objects): Initialize the default value
16617         with DBNull.Value, not null. Fixes #62123.
16618
16619 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
16620
16621         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
16622         throw an exception with a cute explanation.
16623
16624 2004-09-06  Dick Porter  <dick@ximian.com>
16625
16626         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
16627         Close the new process's thread handle, as we don't use it.  The
16628         handle stays around forever otherwise.
16629
16630 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
16631
16632         * object.c (arith_overflow): Fix warning.
16633
16634         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
16635         calling conventions in method refs. Fixes #65352.
16636
16637         * reflection.c: Fix warnings.
16638
16639 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
16640
16641         * icall.c: Add a new icall for Array.Clear
16642
16643 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
16644
16645         * object.c: When allocating an array, we have to throw
16646         an overflow exception if any of the lengths are < 0.
16647
16648 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
16649
16650         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
16651         properly. Also move implementation of string array marshalling to 
16652         managed code. Fixes #42316.
16653
16654 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16655
16656         * assembly.c: provide more information when loading an assembly fails.
16657
16658 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16659
16660         * filewatcher.c: don't expect the development fam package to be
16661         installed.
16662
16663 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
16664
16665         * marshal.c: Make a copy of the signature cookie since it will be
16666         freed by the caller.
16667         
16668         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
16669
16670         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
16671
16672         * metadata.c (mono_metadata_free_marshal_spec): New function to free
16673         marshal specs.
16674
16675         * marshal.c: More refactoring.
16676         
16677         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
16678         smaller functions.
16679
16680 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
16681
16682         * object.c: In mono_message_invoke, fill the output parameter array after
16683           calling the managed method (it was done before the call). This fixes
16684           bug #59299.
16685
16686 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
16687
16688         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
16689         as well.
16690
16691 2004-09-02  Martin Baulig  <martin@ximian.com>
16692
16693         * class.c (mono_class_instance_size): Don't allow generic type
16694         definitions or open generic instances.
16695         (mono_class_array_element_size): If we're a value type, call
16696         mono_class_instance_size() on the original class.
16697
16698         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
16699         handle generic instances.
16700
16701         * mono-debug-debugger.c (write_type): Handle generic instances
16702         like classes.
16703
16704 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
16705
16706         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
16707         the allocation request fails. Fixes #65089.
16708
16709         * object.c (mono_runtime_free_method): Do not call mono_free_method.
16710         
16711         * object.c (mono_runtime_free_method): New function to free a dynamic
16712         method.
16713
16714         * marshal.c (mono_delegate_free_ftnptr): New function to free the
16715         delegate trampoline.
16716
16717         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
16718         with hasthis as dynamic,
16719
16720         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
16721
16722         * domain.c (mono_jit_info_table_remove): New function to remove an
16723         entry from the jit info table.
16724
16725         * class-internals.h (MonoMethod): Add 'dynamic' field.
16726
16727         * loader.c: Fix warnings.
16728
16729 2004-09-01  Martin Baulig  <martin@ximian.com>
16730
16731         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
16732         instead of mono_debugger_lock() because the latter one is a no-op
16733         unless running in the debugger.
16734
16735 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
16736
16737         * class.c (class_compute_field_layout): Classes with auto-layout or
16738         reference fields are not blittable.
16739         
16740 2004-09-01  Dick Porter  <dick@ximian.com>
16741
16742         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
16743         mono_image_get_filename() to get the assembly location.
16744
16745         * icall.c:
16746         * metadata.h: Fix compile warnings
16747
16748 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
16749
16750         * class.c (class_compute_field_layout): System.Object is blittable.
16751
16752         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
16753         as in/out. Fixes #59909.
16754
16755 2004-09-01  Martin Baulig  <martin@ximian.com>
16756
16757         * metadata.h (MONO_TYPE_ISREFERENCE): Call
16758         mono_metadata_generic_inst_is_valuetype() if we're a generic
16759         instance to check whether our underlying type is a reference type.
16760
16761 2004-09-01  Martin Baulig  <martin@ximian.com>
16762
16763         * metadata.c (mono_type_size): If we're a generic instance, call
16764         mono_class_value_size() for value types.
16765
16766 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
16767
16768         * marshal.c: Implement more custom marshalling functionality. Fixes
16769         #64915.
16770
16771 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
16772
16773         * mono-debug.c, debug-mono-symfile.c: add some locking love.
16774
16775 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
16776
16777         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
16778
16779         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
16780
16781         * icall.c: Fix some warnings.
16782
16783         * threads.c (abort_appdomain_thread): Fix unref errors.
16784         (mono_thread_current): Fix THREAD_DEBUG define.
16785
16786 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
16787
16788         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
16789
16790         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
16791
16792 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
16793
16794         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
16795         string arrays.
16796
16797 2004-08-28  Martin Baulig  <martin@ximian.com>
16798
16799         * metadata.c
16800         (mono_metadata_generic_inst_is_valuetype): New public function.
16801
16802         * metadata.h (MONO_TYPE_ISSTRUCT): Call
16803         mono_metadata_generic_inst_is_valuetype() if we're a generic
16804         instance to check whether our underlying type is a valuetype.
16805
16806 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
16807
16808         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
16809         #63768.
16810
16811 2004-08-25  Martin Baulig  <martin@ximian.com>
16812
16813         * loader.c (mono_get_method_from_token): Abstract methods can also
16814         be generic and thus have type parameters.
16815
16816         * metadata-internals.h
16817         (MonoDynamicImage): Added `GPtrArray *gen_params'.
16818
16819         * reflection.c (mono_image_get_generic_param_info): Don't create a
16820         metadata row, just add an entry to the `gen_params' array.
16821         (build_compressed_metadata): Sort the `gen_params' array and then
16822         actually create the metadata.
16823
16824 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16825
16826         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
16827
16828 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
16829
16830         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
16831
16832 2004-08-24  Martin Baulig  <martin@ximian.com>
16833
16834         * class.cs (mono_class_is_subclass_of): Like an interface, a
16835         generic instance also derives from System.Object.
16836
16837 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
16838
16839         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
16840         custom modifiers to be in any order. Fixes #61990.
16841
16842 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
16843
16844         * object.c: Register mono_object_new_fast icall.
16845         
16846         * object.c (mono_class_get_allocation_ftn): Return to calling
16847         mono_object_new_fast, since it seems faster to compute the object 
16848         size in unmanaged code than passing it as a parameter.
16849
16850         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
16851
16852         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
16853         this function with Boehm as the oom handler, so we don't have to check
16854         the result of GC_malloc.
16855
16856         * object.c: Remove checks for oom.
16857
16858         * object.h object.c (mono_class_get_allocation_ftn): New function to
16859         return the icall which can be used to allocate an instance of a given
16860         class. 
16861
16862         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
16863
16864         * class-internals.h: Add 'enabled' field.
16865
16866 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
16867
16868         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
16869
16870 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
16871         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
16872         value 0x0010.
16873
16874 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
16875
16876         * appdomain.c: use the Tls function for appdomain too,
16877         at Zoltan's request. Actually return in mono_context_get
16878
16879         * appdomain.c, profiler.c, threads.c: use __thread
16880
16881 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
16882
16883         * appdomain.c threads.c: Call GC_CreateThread on windows.
16884
16885         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
16886         multiple libraries since this don't work on windows.
16887
16888 2004-08-18  Martin Baulig  <martin@ximian.com>
16889
16890         * class-internals.h
16891         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
16892         MonoMethodHeader.
16893
16894         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
16895         MonoMethodNormal since we also need it for abstract and interface
16896         methods.
16897
16898         * reflection.c
16899         (build_compressed_metadata): Sort the GenericParam table.
16900         (mono_image_create_token): Added `gboolean create_methodspec'
16901         argument; this is false when generating a MethodImpl token.
16902         (reflection_methodbuilder_to_mono_method): Abstract and interface
16903         methods may also have generic parameters.
16904
16905 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
16906
16907         * appdomain.c: thread local alloc
16908
16909 2004-08-17  Martin Baulig  <martin@ximian.com>
16910
16911         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
16912
16913         * icall.c
16914         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
16915         argument.
16916
16917         * class.c (mono_type_get_full_name): New public function.
16918         (mono_type_get_name): Don't include the type arguments.
16919
16920 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
16921
16922         * Makefile.am: Build static versions of libmetadata and libmonoruntime
16923         for inclusion into the mono executable.
16924
16925 2004-08-16  Martin Baulig  <martin@ximian.com>
16926
16927         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
16928         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
16929
16930 2004-08-14  Martin Baulig  <martin@ximian.com>
16931
16932         * class.c (dup_type): Also copy the `byref' field.
16933
16934 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
16935
16936         * reflection.c (create_dynamic_mono_image): Revert the last change 
16937         since it breaks bootstrap.
16938
16939 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
16940
16941         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
16942
16943         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
16944         not free them with g_free.
16945
16946 2004-08-11  Martin Baulig  <martin@ximian.com>
16947
16948         * reflection.c (mono_reflection_setup_internal_class): Also call
16949         mono_class_setup_mono_type() if we already have a `tb->type.type'.
16950
16951 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
16952
16953         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
16954         called during default (first) AppDomain creation. Keep track of
16955         Evidence when loading assemblies.
16956
16957 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
16958
16959         * opcodes.c, opcodes.h: reduce runtime relocations.
16960
16961 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
16962
16963         * culture-info.h, locales.c: fixes and chages to sue the new
16964         optimized format of the locale data.
16965         * culture-info-tables.h: regenerated.
16966
16967 2004-08-06  Geoff Norton <gnorton@customerdna.com>
16968         
16969         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
16970
16971 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
16972
16973         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
16974         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
16975         * domain-internals.h: icall declaration.
16976         * icall.c: icall registration.
16977         * object-internals.h: New fields in MonoAssembly for CAS.
16978
16979 2004-08-05  Duncan Mak  <duncan@ximian.com>
16980
16981         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
16982         CEE_LDELEM_ANY.
16983
16984 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
16985
16986         * reflection.c: fix to deal with object[] arrays in custom ctors
16987         (bug #62550).
16988
16989 2004-08-05  Martin Baulig  <martin@ximian.com>
16990
16991         * class.c (mono_class_array_element_size): Added support for
16992         generic instances and correctly handle "recursive" types.
16993
16994 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
16995
16996         * assembly.c: Fix warnings.
16997
16998 2004-08-04  Martin Baulig  <martin@ximian.com>
16999
17000         * class.c
17001         (mono_type_get_name_recurse): Added `gboolean include_arity'
17002         argument specifying whether or not we should include the generic
17003         arity in the type name.
17004         (_mono_type_get_name): New static function.
17005         (mono_class_setup_vtable): If we're a generic instance, don't
17006         include the generic arity in the names of explicit method
17007         implementations.        
17008
17009 2004-08-03  Martin Baulig  <martin@ximian.com>
17010
17011         * class.c (mono_type_get_name_recurse): Enclose the generic type
17012         arguments in `<', '>'.
17013
17014 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
17015
17016         * gc.c: make GC warning messages use the trace API, they are just
17017         noise to most of the users.
17018
17019 2004-08-03  Martin Baulig  <martin@ximian.com>
17020
17021         * debug-mono-symfile.c (read_string): Correctly read the string.
17022
17023 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
17024
17025         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
17026         
17027         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
17028         icalls.
17029         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
17030
17031 2004-07-30  Martin Baulig  <martin@ximian.com>
17032
17033         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
17034         Reflect latest symbol writer changes.   
17035
17036 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
17037
17038         * object.c: always create an object if null is passed
17039         to Invoke() where a valuetype is expected.
17040
17041 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
17042
17043         * marshal.c (mono_marshal_init): make managed
17044         signatures match native ones better for 64bits.
17045
17046 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17047
17048         * appdomain.c: hack to build correctly the private bin path on windows.
17049         Fixes bug #61991.
17050
17051 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
17052
17053         * assembly.c: Load mscorlib from the correct framework directory
17054           (mono/<version>/mscorlib.dll).
17055         * appdomain.h: Added prototypes for new functions.
17056         * internals.h: Added some prototypes.
17057         * domain.c: When initializing the runtime, get from the executable and
17058           the configuration files the runtime version that the app supports.
17059           Added support methods for reading app.exe.config. Added list of versions
17060           supported by the JIT. Added two new methods: mono_init_from_assembly,
17061           which initializes the runtime and determines the required version from
17062           the provided exe file, and mono_init_version, which initializes
17063           the runtime using the provided version.
17064         * icall.c: Get machine.config from version-specific directory.
17065         * reflection.c: When generating an image, embed the version number
17066           of the current runtime.
17067
17068 2004-07-28  Dick Porter  <dick@ximian.com>
17069
17070         * socket-io.c
17071         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
17072         returned sockaddr size before creating the remote address object.
17073         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
17074         61608.
17075
17076 2004-07-28  Dick Porter  <dick@ximian.com>
17077
17078         * locales.c (string_invariant_compare_char): Fix invariant char
17079         compares between upper and lower cases.  Fixes bug 61458.
17080
17081 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
17082         
17083         * marshal.c: actually cache stelem.ref wrappers.
17084         
17085 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
17086
17087         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
17088         sections and remove the mono_cli_rva_map () function.
17089
17090 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
17091
17092         * debug-mono-symfile.c: fix one more endianess issue, from a patch
17093         by Geoff Norton (<gnorton@customerdna.com>).
17094
17095 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
17096
17097         * class.c: fix class loads for pointer types (typeof(int) !=
17098         typeof(int*)).
17099
17100 2004-07-27  Martin Baulig  <martin@ximian.com>
17101
17102         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
17103         reading the debugging information from an external ".mdb" file.
17104
17105 2004-07-24  Martin Baulig  <martin@ximian.com>
17106
17107         * reflection.c (mono_image_get_type_info): Only write a class
17108         layout entry if we actually have a size or a packing size.
17109
17110 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
17111
17112         * reflection.c (type_get_fully_qualified_name): 
17113         insert cast to get type checking of ?: with non-gcc compilers
17114
17115 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
17116
17117         * rand.c: use g_getenv for both lookups of
17118         MONO_EGD_SOCKET
17119
17120 2004-07-17  Martin Baulig  <martin@ximian.com>
17121
17122         * reflection.c (mono_reflection_bind_generic_method_parameters):
17123         Set `gmethod->reflection_info'.
17124
17125 2004-07-17  Martin Baulig  <martin@ximian.com>
17126
17127         * class.c (mono_class_create_from_typedef): Insert the newly
17128         created class into the hash table before computing the interfaces
17129         since we could be called recursively.
17130
17131 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
17132
17133         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
17134         function to implement stelem.ref in managed code
17135         * class-internals.h, debug-helpers.c: a new wrapper type
17136         for the above.
17137
17138 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
17139
17140         * gc.c: allow GC handles to work even when no GC is compiled in.
17141         Fix part of bug #61134 (GetAddrOfPinnedObject).
17142
17143 2004-07-13  Peter Williams  <peter@newton.cx>
17144  
17145         * process.c (complete_path): Make sure we don't attempt to execute
17146         directories.
17147  
17148 2004-07-12  Geoff Norton <gnorton@customerdna.com>
17149
17150         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
17151           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
17152           and will add/subtract the hour if needed
17153
17154 2004-07-12  Martin Baulig  <martin@ximian.com>
17155
17156         * reflection.c (mono_field_get_object): If we have
17157         `field->generic_info', take the attributes from
17158         `field->generic_info->generic_type'.    
17159
17160 2004-07-12  Martin Baulig  <martin@ximian.com>
17161
17162         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
17163         This function must be called before initializing the runtime.
17164         (mono_debug_init_1): New function; call this after initializing
17165         the runtime, but before loading the assembly.  It tells the
17166         debugger to load corlib and the builtin types.
17167
17168         * mono-debug-debugger.c: Did some larger changes in the debugging
17169         code; support recursive class declarations, make sure we actually
17170         add all classes.
17171
17172 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17173
17174         * debug-helpers.c: undo my previous patch and fixed the real issue in
17175         ../mini/exceptions-x86.c
17176
17177 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17178
17179         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
17180         when no HOME env. variable was set and a NullRef was thrown in a .cctor
17181         called from other .cctors.
17182
17183 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
17184
17185         * loader.c: Removed the mono_loader_wine_init hack now that we are
17186         doing a managed version of Windows.Forms.
17187
17188 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
17189
17190         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
17191         threadpool.c, threads.c: remove static data from rootset.
17192
17193 2004-07-09  Dick Porter  <dick@ximian.com>
17194
17195         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
17196         Don't do any more processing if the matched length was 0.  It was
17197         increasing the size of the string before.  Fixes bug 61167.
17198
17199 2004-07-09  Dick Porter  <dick@ximian.com>
17200
17201         * socket-io.h:
17202         * socket-io.c
17203         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17204         Add support for SO_PEERCRED if its available.
17205
17206 2004-07-09  Peter Bartok <pbartok@novell.com>
17207         * loader.c: winelib.exe.so error message is now only displayed if
17208         MONO_DEBUG is set. To help us avoid questions when people are trying
17209         out the new Managed.Windows.Forms.
17210
17211 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
17212
17213         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
17214         for isinst and castclass wrappers.
17215
17216         * class-internals.h icall.c: Move registration and lookup of JIT icalls
17217         to libmetadata from the JIT, so they could be used by the marshalling
17218         code and the interpreter.
17219
17220         * marshal.c: Register marshalling related JIT icalls here instead of
17221         in mini.c. Use CEE_MONO_ICALL instead of the family of 
17222         CEE_MONO_PROC<x> opcodes to call marshalling functions.
17223
17224         * metadata.h: Remove unneeded marshalling conversions.
17225
17226         * opcodes.c: Update for new opcodes.
17227         
17228 2004-07-08  Martin Baulig  <martin@ximian.com>
17229
17230         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
17231         (mono_debug_get_domain_data): Make this function static.
17232
17233 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
17234
17235         * gc.c, object.h: add nice GC handle API for embedders.
17236
17237 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
17238
17239         * reflection.c: more changes for the new api
17240
17241         * object.c: When we reflect on a field w/ a constant value, it
17242         will not have a memory location, so we must access metadata. Also,
17243         allow easier reading of strings so that we can read them from
17244         the constant data.
17245
17246         * class.c (mono_class_layout_fields): no need for literal fields here.
17247
17248         * class-internals.h: api changes for const fields
17249
17250         * icall.c (ves_icall_get_enum_info): use new apis for const fields
17251
17252 2004-07-06  Martin Baulig  <martin@ximian.com>
17253
17254         * mono-debug.h: Increment version number to 44.
17255
17256         * mono-debug.c (mono_debug_add_wrapper): The second argument is
17257         now a gpointer, rewrote this whole method.
17258
17259         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
17260         function.  Add information about the wrapper in a new "misc table".
17261
17262         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
17263         for the new misc table.
17264
17265 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
17266
17267         * metadata-internals.h image.c: Add a cache for helper signatures.
17268
17269         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
17270
17271 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
17272
17273         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
17274         delegates from a delegate. Fixes #61033.
17275         
17276         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
17277         marshalling of stringbuilder arrays. Fixes #59900.
17278
17279 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
17280
17281         * icall.c: Add EnumBuilder:setup_enum_type icall.
17282
17283 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
17284
17285         * icall.c: Added a new icall for the property version of
17286         OffsetOfStringData.
17287
17288 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
17289
17290         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
17291         it has a constant size across platforms.
17292
17293         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
17294         stack trace.
17295
17296 2004-06-29  Martin Baulig  <martin@ximian.com>
17297
17298         * mono-debug.c (mono_debug_add_method): Protect the whole function
17299         in mono_debugger_lock(), not just parts of it.
17300
17301 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
17302
17303         * reflection.c: make sure padding bytes in heaps are zeroed.
17304
17305 2004-06-24  David Waite  <mass@akuma.org>
17306
17307         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
17308         image.c, loader.c, locales.c, marshal.c, metadata.c,
17309         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
17310         string-icalls.c, threads.c: change to C90-style comments from C99 /
17311         C++ -style
17312
17313 2004-06-24  Dick Porter  <dick@ximian.com>
17314
17315         * threads.c
17316         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
17317         return createdNew.  Fixes bug 60412.
17318
17319         * threads-types.h: 
17320         * icall.c: Add createdNew parameter to CreateMutex icall
17321
17322 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
17323
17324         * reflection.c, object-internals.h: save default value in params.
17325
17326 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17327
17328         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
17329         no need to build a new path combining that with the application base.
17330         Fixes bug #60442.
17331
17332 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
17333
17334         * reflection.c: fixed minor standard compliance issues.
17335
17336 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
17337
17338         * reflection.c: fixed issue with encoding some custom attributes
17339         (arrays in properties and fields, bug #60411).
17340
17341 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17342
17343         * reflection.c: fix start address when copying the public key token.
17344
17345 2004-06-23  Martin Baulig  <martin@ximian.com>
17346
17347         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
17348         the `exc' object in a static object to put it into the GC's root set.
17349
17350 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
17351
17352         * reflection.c: make mono_reflection_setup_internal_class ()
17353         callable a second time to setup a new parent class.
17354
17355 2004-06-23  Dick Porter  <dick@ximian.com>
17356
17357         * threads.c: Check for WAIT_IO_COMPLETION return values.
17358
17359 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
17360
17361         * appdomain.c: Removed the g_free on the public key token. Now copy 
17362         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
17363         * assembly.c: Added public key token string value when loading 
17364         assemblies. Fix bug #60439.
17365         * icall.c: Added missing informations (like public key) in 
17366         GetReferencedAssemblies. Fix #60519.
17367         * image.h: Changed definition for public key token from const char*
17368         public_tok_value to guchar public_key_token [17];
17369         * reflection.c: Updated for changes to public key token.
17370
17371 2004-06-22  Lluis Sanchez Gual
17372
17373         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
17374         for the field in base classes.
17375
17376 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
17377
17378         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
17379         mark headers as not supported, they are installed only for use by the
17380         debugger.
17381
17382 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
17383
17384         * *.c, *.h: avoid namespace pollution in public headers.
17385
17386 2004-06-21  Martin Baulig  <martin@ximian.com>
17387
17388         * exception.c (mono_get_exception_security): It's in
17389         "System.Security", not in "System".
17390
17391         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
17392         the exception classes.
17393
17394 2004-06-21  Martin Baulig  <martin@ximian.com>
17395
17396         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
17397         Protect the exception object from being finalized.
17398
17399 2004-06-21  Martin Baulig  <martin@ximian.com>
17400
17401         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
17402         public function.
17403
17404 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
17405
17406         * reflection.c: Load the assembly in mono_reflection_type_from_name,
17407         if it was not loaded before. Fix parts of #60439.
17408
17409 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
17410
17411         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
17412         code that was broken since Ben's change: wrappers are now
17413         dependent on the method signature only again.
17414
17415 2004-06-21  Martin Baulig  <martin@ximian.com>
17416
17417         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
17418         added interface support.
17419
17420 2004-06-21  Martin Baulig  <martin@ximian.com>
17421
17422         * class.c (mono_vtable_get_static_field_data): New public method.
17423
17424 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
17425
17426         * filewatcher.c : Windows build fix to be compliant with API changes.
17427
17428 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
17429
17430         * class.h, class.c: more accessors.
17431         * metadata.h, metadata.c: prepare for hiding MonoType and
17432         MonoMethodSignature: people should use the accessors from now on
17433         outside of the tree.
17434
17435 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
17436
17437         * *.c, *.h: more API cleanups.
17438
17439 2004-06-18  Jackson Harper  <jackson@ximian.com>
17440
17441         * assembly.c: Trace loading assemblies.
17442         * loader.c: Trace loading native libraries.
17443         * mono-config.c: Trace loading config files.
17444         
17445 2004-06-18  Dick Porter  <dick@ximian.com>
17446
17447         * locales.c: Tell ICU the lengths of strings, it can cope with
17448         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
17449
17450 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
17451
17452         * image.c: swapped name/filename;
17453
17454 2004-06-18  Martin Baulig  <martin@ximian.com>
17455
17456         * mono-debug-debugger.c (write_class): Write the parent class at
17457         the end of the header.
17458
17459 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
17460
17461         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
17462
17463 2004-06-17  Raja R Harinath  <rharinath@novell.com>
17464
17465         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
17466         (bundle_obj): New conditional define.
17467         (BUILT_SOURCES): Remove.
17468         ($(bundle_srcs)): Make parallel-make safe.
17469         (libmonoruntime_la_LIBADD): Make unconditional.
17470         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
17471         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
17472
17473 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
17474
17475         * culture-info-tables.h: It was inconsistent with the latest
17476           supp info files.
17477
17478 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
17479
17480         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
17481         be loaded.
17482
17483         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
17484         with gcc 2.95.
17485
17486 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
17487
17488         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
17489         cleaned up public header threads.h.
17490
17491 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
17492
17493         * Makefile.am, *.c, *.h: more API cleanups.
17494
17495 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17496
17497         * Makefile.am: removed monosn from compilation.
17498         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
17499         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
17500         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
17501         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
17502         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
17503         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
17504
17505 2004-06-15  Jackson Harper  <jackson@ximian.com>
17506
17507         * assembly.c: Make locales lower case when searching the GAC for
17508         assemblies. gacutil will always make locales lowercase when
17509         installing so this effectively makes them case insensitive.
17510         
17511 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
17512
17513         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
17514         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
17515           parameter which allows to choose whether the wait can be interrupted or 
17516           not. Also added the method mono_monitor_enter(), which locks the monitor
17517           using an infinite wait and without allowing interruption.
17518           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
17519           interrupted.
17520         * object.h: Added new fields in MonoThread. suspend_event holds the event
17521           used to susped/resume the thread. synch_lock is the lock object to use for
17522           modifying the thread state.
17523         * threads.c: Use the new synch_lock object for locking, instead of "this",
17524           which can generate deadlocks.
17525           Moved thread state change in Thread.Sleep and Thread.Join from managed
17526           to unmanaged code. This avoids a deadlock when the thread was suspended
17527           just after acquiring the thread lock.
17528           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
17529           Implemented Thread.Suspend using an event instead of ThreadSuspend,
17530           which is not fully implemented in the io-layer.
17531         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
17532
17533 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
17534
17535         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
17536         threads-types.h: more API cleanups.
17537
17538 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
17539
17540         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
17541         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
17542         threadpool.c, threads.c: first pass at the exported API cleanup.
17543
17544 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
17545
17546         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
17547
17548 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17549
17550         * icall.c: added internalGetHome.
17551
17552 2004-06-14  Dick Porter  <dick@ximian.com>
17553
17554         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
17555         possible to return successfully when '.' or '..' were the only
17556         entries in a directory, but were skipped.  The MonoIOStat was not
17557         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
17558         Fixes bug 59574.
17559
17560 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
17561
17562         * reflection.c: make binaries run on .Net 1.1 by default.
17563
17564 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
17565
17566         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
17567
17568 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
17569
17570         * marshal.c: keep track of struct size with explicit layout
17571         (bug #59979).
17572
17573 2004-06-12  Martin Baulig  <martin@ximian.com>
17574
17575         * mono-debug-debugger.c: Comment out a debugging g_message().
17576
17577 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
17578
17579         * reflection.c, reflection.h: do not free custom attrs that are cached.
17580         * icall.c: use braces to make code clearer.
17581
17582 2004-06-11  Martin Baulig  <martin@ximian.com>
17583
17584         * class.h (MonoInflatedField): New type.
17585         (MonoClassField): Replaced `MonoType *generic_type' with
17586         `MonoInflatedField *generic_info'.
17587
17588         * icall.c
17589         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
17590
17591 2004-06-11  Martin Baulig  <martin@ximian.com>
17592
17593         * reflection.c (mono_image_create_method_token): Correctly encode
17594         varargs methods.
17595
17596 2004-06-11  Martin Baulig  <martin@ximian.com>
17597
17598         * metadata.c (mono_metadata_parse_method_signature): When parsing
17599         a MethodDef which has VarArgs, also set sentinelpos if we don't
17600         have any parameters.
17601
17602 2004-06-11  Martin Baulig  <martin@ximian.com>
17603
17604         * verify.c (mono_method_verify): In CEE_CALL, use
17605         mono_method_get_signature() to get the method's signature, unless
17606         we're a PInvoke method.
17607
17608 2004-06-10  Jackson Harper  <jackson@ximian.com>
17609
17610         * assembly.c: Use <path>/lib/mono/gac for the extra paths
17611         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
17612         logical name as the supplied path is just a prefix to the gac not
17613         the direct path to it.
17614         
17615 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
17616
17617         * reflection.c: make the token for a created method match
17618         the token of the MethodBuilder it was created from
17619         (IKVM requires this behaviour now).
17620
17621 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
17622
17623         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
17624         reflection.c, socket-io.c: leak fixes.
17625
17626 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
17627
17628         * icall.c: handle sentinel pos in vararg methods in position different
17629         from 0.
17630
17631 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17632
17633         * culture-info-tables.h: freshly generated.
17634
17635 2004-06-09  Martin Baulig  <martin@ximian.com>
17636
17637         * loader.c (mono_get_method_constrained): Call `mono_class_init
17638         (constrained_class)'.   
17639
17640 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
17641
17642         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
17643         any methods. Fixes #59629.
17644
17645 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
17646
17647         * culture-info-tables.h: reflecting locale-builder updates.
17648
17649 2004-06-08  Dick Porter  <dick@ximian.com>
17650
17651         * object.h:
17652         * locales.c: Fixed compile warnings, including a real bug in
17653         CompareInfo_internal_compare.
17654         
17655 2004-06-08  Dick Porter  <dick@ximian.com>
17656
17657         * locales.c
17658         (ves_icall_System_Globalization_CompareInfo_internal_index):
17659         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
17660         Double-check the resuls of usearches, because ICU currently
17661         ignores most of the collator settings here.  Fixes bug 59720.
17662         
17663 2004-06-08  Dick Porter  <dick@ximian.com>
17664
17665         * locales.c
17666         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
17667         Fix memory leak and segfault-causing typo.  No idea how this one
17668         lasted so long without being noticed.
17669
17670 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
17671
17672         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
17673         any methods. Fixes #59629.
17674
17675 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17676
17677         * assembly.c:
17678         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
17679         own the critical section before). Removed dead code (that's done
17680         in the preload hook).
17681
17682         (mono_assembly_load_with_partial_name): call the preload hook.
17683
17684 2004-06-08  Martin Baulig  <martin@ximian.com>
17685
17686         * metadata.c (mono_metadata_signature_alloc): Default
17687         `sentinelpos' to -1.
17688
17689         * reflection.c (mono_image_get_array_token): Likewise.
17690
17691 2004-06-08  Martin Baulig  <martin@ximian.com>
17692
17693         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
17694
17695         * metadata.c (mono_metadata_parse_method_signature): When parsing
17696         a MethodDef which has VarArgs, set sentinelpos.
17697
17698         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
17699         `gint16' since we're using -1 for non-varargs methods.
17700
17701         * reflection.c
17702         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
17703         (method_encode_signature): Added varargs support.
17704         (method_builder_encode_signature): Likewise.
17705         (mono_image_get_varargs_method_token): New static method.
17706         (mono_image_create_method_token): New public method; this is
17707         called via an icall instead of mono_image_create_token() when
17708         calling a varargs method.       
17709
17710 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
17711
17712         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
17713
17714 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
17715
17716         * culture-info-tables.h : Reflecting the latest locale-builder that
17717           fixed empty array representation ({} to {0}).
17718
17719 2004-06-07  Jackson Harper  <jackson@ximian.com>
17720
17721         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
17722         looking up extra gac paths. This allows MONO_GAC_PATH to act
17723         exactly like a prefix.
17724         
17725 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
17726
17727         * reflection.c (mono_reflection_type_from_name): Make a copy of the
17728         type name before modifying it. Fixes #59405.
17729
17730 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
17731
17732         * culture-info.h: added fields for "all datetime patterns".
17733         * locales.c: (  ves_icall_System_Globalization_CultureInfo
17734           _construct_datetime_format ()): fill xxx_patterns fields.
17735         * object.h: added fields for "all datetime patterns" to
17736           MonoDateTimeFormatInfo.
17737         * culture-info-tables.h: reflecting locale-builder updates.
17738
17739 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
17740
17741         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
17742         the event has no add and remove methods. Fixes #59629.
17743
17744 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
17745
17746         * object.c: Fixed possible integer overflow when allocating large
17747         strings.
17748
17749 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
17750
17751         * culture-info-tables.h: reflecting locale-builder updates.
17752
17753 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
17754
17755         * culture-info-tables.h: reflecting locale-builder updates.
17756
17757 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
17758
17759         * culture-info-tables.h: reflecting locale-builder updates.
17760
17761 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
17762
17763         * threads.c: Made Thread.Sleep abortable.
17764
17765 2004-06-02  Martin Baulig  <martin@ximian.com>
17766
17767         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
17768
17769         * debug-mono-symfile.h: Bumped symbol file version number to 37.
17770
17771 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
17772
17773         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
17774
17775 2004-05-30  Jackson Harper  <jackson@ximian.com>
17776
17777         * reflection.c: Do not hardcode assembly versions or public key
17778         tokens anymore. All of this except the corlib section was dead
17779         code anyways.
17780         
17781 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
17782
17783         * object.c (mono_runtime_invoke_array): Automatically create boxed
17784         objects for byref valuetypes if needed. Fixes #59300.
17785         
17786         * object.c (mono_method_return_message_restore): Handle 
17787         MONO_TYPE_OBJECT as well.
17788
17789 2004-05-28  Jackson Harper  <jackson@ximian.com>
17790
17791         * reflection.c: The modified type encoding was causing build
17792         problems. Reverted for now.
17793         
17794 2004-05-28  Jackson Harper  <jackson@ximian.com>
17795
17796         * reflection.c/h: Take an assembly ref so that we dont create
17797         fully qualified names when encoding types in the same assembly as
17798         the custom attribute being emitted.
17799         * appdomain.c: Increment version number.
17800         
17801 2004-05-26  Duncan Mak  <duncan@ximian.com>
17802
17803         * icall.c
17804         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17805         Set the full version number (major, minor, build, revision).
17806
17807 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
17808
17809         * marshal.c (emit_struct_conv): increment src/dst after blit
17810         (mono_marshal_get_managed_wrapper,
17811         mono_marshal_get_native_wrapper): make sure we have marshalling
17812         info before marshalling params (info computation affects
17813         blittable)
17814
17815         * class.c (class_compute_field_layout): correctly deal with
17816         blittable
17817         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
17818         value types (as per what windows dows by default)
17819         (mono_class_setup_mono_type): System.ValueType is blittable
17820         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
17821         blittable
17822
17823         * marshal.c (mono_marshal_load_type_info): flag types  as
17824         non-blittable if the native layout doesn't match the managed
17825         layout
17826
17827 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17828
17829         * appdomain.c: don't add stuff in the private search path that is
17830         above the application base. If application base is not set, there's
17831         no private search path.
17832
17833 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
17834
17835         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
17836         byref struct arguments in native->managed marshalling.
17837
17838 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
17839
17840         * marshal.c (mono_marshal_get_runtime_invoke): correctly
17841         cache methods using signature (special case for methods
17842         that are value type or string class)
17843         
17844         * image.c (mono_image_close): clean up allocated GSList's
17845         in runtime_invoke_cache.
17846
17847 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17848
17849         * mono-config.c: set the correct path for mono_cfg_dir on windows when
17850         there's no MONO_CFG_DIR environment variable defined.
17851
17852 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17853
17854         * threads.c: windows version must be >= 0x0500 to include OpenThread.
17855
17856 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
17857
17858         * threadpool.c: Really wait for 500ms after the async call, even if the wait
17859           is interrumped.
17860         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
17861           before waiting for it, and call CloseHandle after the wait to unref it.
17862           This will make sure that handles are not disposed too early.
17863
17864 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17865
17866         * appdomain.c:
17867         * appdomain.h:
17868         * icall.c: removed
17869         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
17870         needed now.
17871
17872         * object.c: se the application_base only for the domain that runs
17873         Main. Fixes bug #59216,
17874
17875 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17876
17877         * appdomain.c:
17878         * object.c: only the domain in which Main is run have
17879         SetupInformation.ConfigurationFile set, so moved a few lines from
17880         appdomain.c to object.c.
17881
17882 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17883
17884         * appdomain.c: we tried to load [name].(dll|exe), but according
17885         to bug #57710, we must also try [culture]/[name].(dll|exe) and
17886         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
17887         There's a test case attached to bug #58922.
17888
17889 2004-05-27  Dick Porter  <dick@ximian.com>
17890
17891         * icall.c:
17892         * file-io.c: Implemented icalls for locking and unlocking regions
17893         in a file.
17894         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
17895         FALSE on error (fixes both compiler warning and real bug.)
17896
17897 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
17898
17899         * culture-info-tables.h: reflecting locale-builder updates.
17900
17901           (Added missing ChangeLog entry for 05/26)
17902
17903 2004-05-27  Jackson Harper  <jackson@ximian.com>
17904
17905         * locales.c: Fix some cut and paste errors.
17906         
17907 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17908
17909         * mono-config.c: set the correct path for config. directory on windows.
17910
17911 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
17912
17913         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
17914           on win32.
17915
17916 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
17917
17918         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
17919         from pinvoke functions.
17920         
17921         * marshal.c (mono_ftnptr_to_delegate): Implement this.
17922
17923 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
17924
17925         * culture-info-tables.h: reflecting locale-builder updates.
17926
17927 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
17928
17929         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
17930         #59086.
17931
17932 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
17933
17934         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
17935         * icall.c: Modified icalls for RNG.
17936         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
17937         Windows (CryptoAPI).
17938
17939 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
17940
17941         * locales.c: Fix build.
17942
17943 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
17944
17945         * culture-info-tables.h: reflecting locale-builder updates.
17946
17947 2004-05-25  Jackson Harper  <jackson@ximian.com>
17948
17949         * locales.c: When creating the current culture use the $LANGs
17950         specific culture. So DateTimeFormat and NumberFormat entries are created.
17951         
17952 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
17953
17954         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
17955         a char array as parameter.
17956
17957 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
17958
17959         * image.c: In mono_image_open(), always use an absolute path name to
17960           look for already loaded images.
17961
17962 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
17963
17964         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
17965         missing in the windows build (like older cygwin include files).
17966
17967 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
17968
17969         * icall.c: Fixed check for possible integer overflow in Buffer_
17970         BlockCopy icall. Replaced comments style // by /* */.
17971
17972 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
17973
17974         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
17975         
17976         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
17977         check after MONO_VTADDR. Fixes pinvoke2.exe.
17978
17979         * marshal.h marshal.c metadata.h: Add beginnings of support for
17980         ftnptr -> delegate marshalling.
17981
17982 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
17983
17984         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
17985         * threads.c: Fix warnings.
17986
17987 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
17988
17989         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
17990         * icall.c: Registered icalls for Suspend and Resume.
17991         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
17992           Thread.Abort.
17993         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
17994         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
17995         * process.c: Use WaitForSingleObjectEx.
17996         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
17997           checkpoints.
17998         * threads.c, threads.h: Make use of new Ex wait methods. Improved
17999           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
18000           for Suspend and Resume. Added new mono_thread_stop, used for stoping
18001           background threads. Added basic support for Abort in Windows.
18002           Start new threads using a managed delegate invoke wrapper. This wrapper
18003           has an interruption checkpoint that is needed since an interruption
18004           can be requested before the thread leaves the unmanaged code that starts 
18005           the thread.
18006         * marshal.c: Added interruption checkpoint after every native call, and
18007           also before managed calls for wrappers called from unmanaged code to
18008           go into managed code.
18009         * object.h: Added new field in MonoThread to keep track of interruption
18010           requests.
18011
18012 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
18013
18014         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
18015         calls.
18016
18017 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18018
18019         * appdomain.c:
18020         * assembly.c:
18021         * gc.c:
18022         * locales.c:
18023         * mono-config.c:
18024         * rand.c: getenv -> g_getenv (windows!)
18025
18026         * process.c: complete_path is also used on non-windows platforms.
18027
18028 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18029
18030         * icall.c: new signature for Process_Start.
18031
18032         * process.[ch]: new signature for Process_Start. If we're on windows
18033         and UseShellExecute is false, we have to search for the program by
18034         ourselves if we don't get a full path.
18035
18036 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
18037
18038         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
18039         marshalling and call CleanUpNativeData if needed. Fixes #58646.
18040
18041 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18042
18043         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
18044         Fixes bug #58373.
18045
18046 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18047
18048         * process.c: use double quotes to quote program name and arguments on
18049         windows. Fixes bug #58575.
18050
18051 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18052
18053         * file-io.c: don't return "." and ".." when using windows Find*File.
18054
18055 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
18056
18057         * marshal.c: Don't pass wrappers to message init because method 
18058         addressed used to lookup metadata. part of remoting[2|3] fix.
18059
18060 2004-05-15  Jackson Harper  <jackson@ximian.com>
18061
18062         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
18063         path is essentially the same as MONO_PATH except that it points to
18064         GACs instead of lib directories.
18065         * loader.h: The user gac is gone so we dont need function to
18066         enable/disable it.
18067         * mono-config.c: user gac option is now gone.
18068         
18069 2004-05-15  Jackson Harper  <jackson@ximian.com>
18070
18071         * culture-info.h: Make defines more consistent, add calendar data
18072         to the culture info table.
18073         * culture-info-tables.h: Add basic calendar data. Basically
18074         everyone gets default gregorian until all the data is
18075         updated.
18076         * locales.c: Use the new consistent defines. Set calendar data for
18077         culture info objects.
18078         * object.h: add a field for calendar data to CultureInfo
18079         
18080 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
18081
18082         * image.c: image->runtime_invoke_cache is keyed on signatures now.
18083         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
18084         a signature.
18085         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
18086         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
18087         an extra param that is the pointer of the method to invoke. The IL for
18088         the invoke method is no longer specific to the method, but to the
18089         signature of the method. Thus, we can share the same code for multiple
18090         methods. This reduces the number of methods that have to be compiled.
18091
18092 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
18093
18094         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
18095
18096         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18097
18098         * icall.c: Optimize Buffer.BlockCopy.
18099
18100 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18101
18102         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
18103         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
18104         quote). Changed them to "MMMM yyyy".
18105
18106 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
18107
18108         * rand.c
18109         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
18110
18111 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
18112
18113         * reflection.h: Updated after changes to managed structures.
18114
18115         * appdomain.c: Bump corlib version.
18116
18117 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18118
18119         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
18120         windows.
18121
18122 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18123
18124         * Makefile.am: link to ../os/libmonoos.la on windows.
18125
18126         * assembly.c:
18127                 -If MONO_DEBUG, warn about non-existing directories in
18128                 MONO_PATH.
18129                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
18130                 compile time variable.
18131                 -Removed init_default_path and call mono_set_rootdir from
18132                 libmonoos.a instead (windows only).
18133
18134         * assembly.h: declare mono_assembly_getrootdir().
18135
18136         * domain.c:
18137         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
18138
18139         * loader.c: s/getenv/g_getenv/
18140
18141 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
18142
18143         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
18144
18145         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
18146
18147         * metadata.h: Add new marshalling conversions.
18148
18149         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
18150         function.
18151
18152         * reflection.c (mono_reflection_get_type): Lookup the type in all
18153         modules of a multi-module assembly. Fixes #58291.
18154
18155 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
18156
18157         * threads.c: Before aborting a background, set the StopRequested
18158         state.  This avoids throwing the Abort exception.
18159         In mono_thread_manage, don't continue with the shutdown until all
18160         aborted threads have actually stopped.
18161
18162 2004-05-10  Jackson Harper  <jackson@ximian.com>
18163
18164         * locales.c: Remove the modifier from culture names.
18165         
18166 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18167
18168         * Makefile.am: monosn is not installed any more. It has been deprecated
18169         in favor of sn.
18170
18171 2004-05-07  Jackson Harper  <jackson@ximian.com>
18172
18173         * locales.c
18174         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
18175         Fix array construction, add bailout if the length is 0.
18176
18177 2004-05-07  Dick Porter  <dick@ximian.com>
18178
18179         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
18180         machine doesn't have a DNS entry.  Patch by Urs Muff
18181         (umuff@quark.com), fixes bug 57928.
18182
18183 2004-05-06  Jackson Harper  <jackson@ximian.com>
18184
18185         * reflection.c: Handle null PublicTokens properly. alloc mem for
18186         assembly names culture so we dont crash when freeing it.
18187         
18188 2004-05-06  Jackson Harper  <jackson@ximian.com>
18189
18190         * assembly.c: Check the usergac when loading with partial names.
18191         
18192 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
18193
18194         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
18195         does nothing for now (not required for Linux/Windows) but the class
18196         library can call it (and a newer or modified runtime could need it).
18197         * icall.c: Registred icall.
18198
18199 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18200
18201         * loader.c: prints a message on module loading error we set MONO_DEBUG
18202         environment variable.
18203
18204 2004-05-05  Jackson Harper  <jackson@ximian.com>
18205
18206         * appdomain.c: Handle PublicKeyToken=null properly.
18207         
18208 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
18209
18210         * environment.c|h: Added icall ves_icall_System_Environment_
18211         GetOSVersionString to get the current OS version as a string.
18212         * icall.c: Registred icall.
18213
18214 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
18215
18216         * object.c: in mono_object_get_virtual_method(), take into account that
18217         non-virtual methods don't have a slot in the vtable. Check needed when
18218         the object is a proxy.
18219
18220 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
18221
18222         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
18223         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
18224
18225         * object.c (mono_class_compute_gc_descriptor): Fix warning.
18226
18227         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
18228         passed when a valuetype is expected.
18229
18230         * object.c (mono_unhandled_exception): Only set the exit code if the
18231         exception happens in the main thread. Fixes thread5.exe.
18232
18233         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
18234         invalid names. Fixes #58047.
18235
18236 2004-05-03  Jackson Harper  <jackson@ximian.com>
18237
18238         * assembly.c: This line was committed accidently and is unneeded.
18239         
18240 2004-05-03  Jackson Harper  <jackson@ximian.com>
18241
18242         * icall.c: Add new icall for Assembly::LoadWithPartialName
18243         * assembly.c/.h: new function that probes the GAC to load partial
18244         assembly names by Paolo Molaro.
18245         
18246 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18247
18248         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
18249         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
18250         (type_get_fully_qualified_name): Added PublicKeyToken when building a
18251         full type name.
18252
18253 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18254
18255         * appdomain.c: fixed check for 'neutral' culture and removed warning.
18256         * reflection.c: fix bug when parsing a full type name and Version is not
18257         the last thing in the string.
18258
18259 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
18260
18261         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
18262         crashes when it is freed.
18263
18264 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18265
18266         * assembly.c: print the compat warning to stderr.
18267
18268 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
18269
18270         * assembly.c (mono_assembly_load_references): Add a compatibility
18271         hack to run old applications that might be still referencing the
18272         3300-based assemblies, only do this for System.xxx.
18273
18274 2004-05-01  Jackson Harper  <jackson@ximian.com>
18275
18276         * appdomain.c: If the culture is neutral we set it to "".
18277         
18278 2004-04-29  Jackson Harper  <jackson@ximian.com>
18279
18280         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
18281
18282 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
18283  
18284         * string-icalls.c: added low overhead function for copying chars
18285         * icall.c: added needed icall for the above function
18286  
18287 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18288
18289         * icall.c: fix return value of get_global_assembly_cache.  Implemented
18290         Environment.GetLogicalDrives.
18291
18292 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
18293
18294         * rand.c: try and talk to egd or prngd
18295         for random bytes if opening devices fail.
18296
18297 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
18298
18299         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
18300         alignment for the type using the native alignment of its members 
18301         instead of using klass->min_align.
18302
18303         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
18304
18305 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18306
18307         * file-io.c:
18308         * socket-io.c: added check for sys/aio.h.
18309
18310 2004-04-28  Dick Porter  <dick@ximian.com>
18311
18312         * threads.c: Don't abort a thread thats already aborting, when
18313         terminating everything.
18314
18315 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18316
18317         * icall.c: added 2 new async calls for Socket.
18318
18319         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
18320         IO on *nix systems.
18321
18322         * threadpool.c: removed unused variable.
18323
18324 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
18325
18326         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
18327
18328 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18329
18330         * locales.c: put back string_invariant_tolower () and
18331         string_invariant_toupper ().
18332
18333 2004-04-26 David Waite <mass@akuma.org>
18334
18335         * file-io.h:
18336         * socket-io.h:
18337         * threads.h:
18338         * unicode.h: remove comma from end of enumeration declarations
18339
18340 2004-04-26 David Waite <mass@akuma.org>
18341
18342         * debug-mono-symfile.h:
18343         * decimal.c:
18344         * mono_debug.h:
18345         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
18346
18347
18348 2004-04-26  Jackson Harper  <jackson@ximian.com>
18349
18350         * appdomain.c: Increment version number.
18351         
18352 2004-04-26  Jackson Harper  <jackson@ximian.com>
18353
18354         * appdomain.c: Set assembly references public token value when
18355         PublicKeyToken is specified, not the hash_value. Free public token
18356         values when free assembly name data. Previously the public key
18357         token was hex decoded, however we are using hex encoded public key
18358         tokens, so this is not neccasary.
18359         * assembly.c: Lookup assemblies in the gac if their public token
18360         value is set. Add function to allow enabling user gac
18361         lookups. Specify whether or not the assembly was loaded from the
18362         GAC. Compare full assembly names when checking the cache for
18363         assemblies (Temporarily disabled see comment in code). Remove
18364         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
18365         specifies trace-loader they get extra info to stdout on the
18366         loading of assemblies.
18367         * image.h: Add a field for an assembly references public token
18368         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
18369         whether an assembly has been loaded from the GAC.
18370         * image.c: Remove a corlib -> mscorlib name mapping.
18371         * loader.h: Add function to enable/disable the user gac.
18372         * mono-config.c: Check if the usergac is enabled in the config
18373         file.
18374         * icall.c: New icall to determine whether or not an assembly has
18375         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
18376         * tabldefs.h: Add constant for assemblyref flag that specifies a
18377         full public key is used instead of a public token.
18378         * reflection.c: Remove mscorlib -> corlib mappings. Set
18379         PublicTokenValue instead of hash value. This value is a hex
18380         string so it does not need to be expanded.
18381
18382 2004-04-26  Martin Baulig  <martin@ximian.com>
18383
18384         * mono-debug-debugger.c (mono_debugger_initialize): Set
18385         `mono_debugger_initialized' before calling mono_debug_lock().
18386
18387 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
18388
18389         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
18390           InternalToUpper/InternalToLower.
18391         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
18392           removed invariant culture shortcut.  This is now done in managed code.
18393         * locales.c: (string_invariant_toupper/tolower) removed.
18394
18395 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18396
18397         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
18398         Added Poll internal call.
18399
18400         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
18401         call for Poll. Select was too heavy for polling a single socket.
18402
18403         * threadpool.[ch]: added mono_threadpool_cleanup.
18404         * threads.c: use it. Don't use Thread_Abort on windows.
18405
18406 2004-04-23  Martin Baulig  <martin@ximian.com>
18407
18408         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
18409
18410 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
18411
18412         * icall.c: Registred new icalls for key pair protection and added an
18413         icall for Environment.GetFolderPath on Windows.
18414         * security.c|h: Added new icalls for key pair protection.
18415
18416 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18417
18418         * socket-io.c: don't display the non-supported family warning for known
18419         families. Now this is not displayed on windows when checking support
18420         for IPv4/IPv6.
18421
18422 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18423
18424         * class.c: don't display the layout warning for static fields.
18425
18426 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
18427
18428         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
18429         * locales.c, locales.h: Added new icalls for culture-specific
18430         Char.ToLower and Char.ToUpper.
18431
18432 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18433
18434         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
18435         by David Waite.
18436
18437 2004-04-20  Martin Baulig  <martin@ximian.com>
18438
18439         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
18440         of the type name before passing it to mono_reflection_type_from_name().
18441
18442 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
18443
18444         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
18445         encodings here. Fixes #56965.
18446
18447 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
18448
18449         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
18450         fix test on strstr result not that I can see anything that
18451         relies on the result.
18452
18453 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
18454
18455         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
18456         Fixes #57081.
18457
18458         * marshal.c (mono_marshal_get_string_encoding): New helper function.
18459
18460         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
18461         function to determine which marshalling to use for strings. Fixes
18462         #56965.
18463
18464         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
18465
18466         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
18467
18468 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
18469
18470         * icall.c: #include mono-config.h
18471
18472 2004-04-15  Jackson Harper  <jackson@ximian.com>
18473
18474         * culture-info-tables.h: Fix date formats for en-US culture.
18475         
18476 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
18477
18478         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
18479         ThreadPool.SetMinThreads.
18480         * threadpool.c: Implemented ThreadPool.GetMinThreads and
18481         ThreadPool.SetMinThreads.
18482
18483 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
18484
18485         * mono-config.c: also load the .config file in the directory
18486         where the assembly was found.
18487
18488 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
18489
18490         * assembly.c: load per-assembly config files.
18491         * icall.c: decrapified code to get the config dir and moved to
18492         mono-config.c.
18493         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
18494         per-assembly config files. When doing a dll map lookup give precedence
18495         to the per-assembly data.
18496
18497 2004-04-14  Martin Baulig  <martin@ximian.com>
18498
18499         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
18500         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
18501         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
18502
18503         * mono-debugger-debugger.c: While the debugger is locked, remember
18504         whether the symbol tables have changes and send one single
18505         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
18506
18507 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
18508
18509         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
18510
18511         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
18512         function.
18513
18514         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
18515         account when marshalling string arrays. Fixes #56965.
18516
18517 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
18518
18519         * icall.c: Add new icalls mapping for security.
18520         * security.c|h: Add internal calls for WindowsIdentity,
18521         WindowsImpersonationContext and WindowsPrincipal.
18522
18523 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
18524
18525         * class.c: Added comment to ensure the System.MonoDummy class
18526         is removed when no longer necessary
18527
18528 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
18529
18530         * appdomain.c: Pass arguments to the bootstraping exceptions to
18531         minimize JITed methods at boot
18532
18533         * metadata.c (mono_exception_from_name_two_strings): Allow for the
18534         second string to be null.
18535
18536         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
18537         Change the protocol to minimize the JIT methods at startup.  Now
18538         it Returns the internal codepage, if the value of "int_code_page"
18539         is 1 at entry, and we can not compute a suitable code page
18540         number, returns the code page as a string.
18541
18542 2004-04-13  Jackson Harper  <jackson@ximian.com>
18543
18544         * culture-info-tables.h: Fix number of decimal digits for all
18545         english locales.
18546
18547 2004-04-13  Jackson Harper  <jackson@ximian.com>
18548
18549         * icall.c: Clairfy out of sync error message. It is not always
18550         your corlib that is out of sync.
18551
18552 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
18553
18554         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
18555         properties when only the set accessor is overriden. Fixes #55874.
18556
18557 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
18558
18559         * assembly.c (mono_assembly_load_references): Make this thread safe.
18560         Fixes #56327.
18561
18562 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
18563
18564         * monosn.c: Add missing initialization calls.
18565
18566 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
18567
18568         * locales.c:
18569         ves_icall_System_Globalization_CultureInfo_construct_number_format
18570         Fix g_assert so it compiles on fussier compilers re int/ptr
18571         mismatch
18572
18573 2004-04-08  Dick Porter  <dick@ximian.com>
18574
18575         * socket-io.h:
18576         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
18577         53992.  Also rearrange the code so that the internal calls return
18578         an error value and exceptions are thrown from managed code.
18579
18580         * icall.c: Add type info to the socket icalls.
18581
18582 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18583
18584         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
18585         owes me a beer.
18586
18587 2004-04-07  Martin Baulig  <martin@ximian.com>
18588
18589         * class.c (mono_class_from_generic_parameter): Don't default
18590         `klass->parent' to `mono_defaults.object_type'.
18591
18592 2004-04-07  Martin Baulig  <martin@ximian.com>
18593
18594         * reflection.c (mono_reflection_initialize_generic_parameter): Set
18595         `param->pklass->reflection_info'.       
18596
18597 2004-04-07  Jackson Harper  <jackson@ximian.com>
18598
18599         * culture-info-tables.h: Fix date separator symbol.
18600         
18601 2004-04-07  Martin Baulig  <martin@ximian.com>
18602
18603         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
18604         from System.Type to System.MonoType.
18605
18606 2004-04-07  Martin Baulig  <martin@ximian.com>
18607
18608         * reflection.h
18609         (MonoReflectionGenericParam): Added `has_reference_type' and
18610         `has_value_type' fields.
18611
18612         * reflection.c (mono_image_get_generic_param_info): Encode the
18613         correct flags if we have the `class' or `struct' constraint.
18614
18615 2004-04-07  Martin Baulig  <martin@ximian.com>
18616
18617         * reflection.h
18618         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
18619
18620 2004-04-07  Jackson Harper  <jackson@ximian.com>
18621
18622         * appdomain.c: Revert extra patches, just wanted to bump the
18623         version number.
18624         
18625 2004-04-07  Jackson Harper  <jackson@ximian.com>
18626
18627         * Makefile.am: Add culture-info private headers.
18628         * icall.c: Add new icalls for contructing locales.
18629         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
18630         * locales.h: Declare new culture info construction methods.
18631         * object.h: Add new fields used to avoid the CultureMap to
18632         MonoCultureInfo.
18633         * culture-info.h: Definition of structs used in the culture info
18634         tables.
18635         * culture-info-tables.h: Autogenerated tables that contain culture
18636         info data. This file was generated with the locale-builder tool.
18637         * appdomain.c: Incement corlib version number.
18638         
18639 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
18640
18641         * appdomain.c: (mono_runtime_init) move mono_thread_init
18642         to before mono_object_new calls so critical sections
18643         are initialized before use.
18644
18645 2004-04-07  Martin Baulig  <martin@ximian.com>
18646
18647         * icall.c
18648         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
18649         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
18650         (ves_icall_MonoGenericParam_initialize): Removed.
18651         (monogenericparam_icalls): Removed.
18652         (generictypeparambuilder_icalls): Added new table for
18653         System.Reflection.Emit.GenericTypeParameterBuilder.
18654
18655         * reflection.c
18656         (mono_reflection_define_generic_parameter): Removed.
18657         (mono_reflection_initialize_generic_parameter): This is now called
18658         from GenericTypeParameterBuilder's .ctor.
18659
18660 2004-04-06  Martin Baulig  <martin@ximian.com>
18661
18662         * class.c (mono_class_init): Don't inflate nested classes in a
18663         generic instance.
18664         (mono_type_get_name_recurse): Include the generic arguments for
18665         generic instances and generic type declarations.
18666         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
18667         (_mono_class_get_instantiation_name): Removed.
18668         (mono_class_create_generic): Always use `gklass->name' as our name.
18669
18670         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
18671
18672         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
18673         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
18674         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
18675         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
18676         closed generic methods here.
18677
18678         * reflection.c
18679         (mono_reflection_generic_inst_get_nested_types): Removed.
18680         (inflate_mono_method): Copy the generic parameters from the
18681         MonoMethodHeader into out MonoGenericMethod.
18682
18683 2004-04-06  Martin Baulig  <martin@ximian.com>
18684
18685         * row-indexes.h
18686         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
18687
18688         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
18689
18690         * reflection.c (build_compressed_metadata): If we have any entries
18691         in the GenericParam, MethodSpec or GenericParamConstraint tables,
18692         set the header version to 1.1.
18693
18694 2004-04-06  Martin Baulig  <martin@ximian.com>
18695
18696         * class.c (mono_class_init): If we're a generic instance,
18697         initialize our nested classes, too.
18698         (_mono_class_get_instantiation_name): Deal with the new `!%d'
18699         suffix. 
18700
18701 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18702
18703         * process.c: quote the argument passed to the shell on windows.
18704
18705 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
18706
18707         * threads.c (mono_alloc_special_static_data): Allow this to be
18708         called during startup.
18709
18710 2004-04-02  Martin Baulig  <martin@ximian.com>
18711
18712         * icall.c
18713         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
18714
18715 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
18716
18717         * icall.c: Fix build.
18718
18719 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
18720
18721         * Makefile.am: Added security.c|h.
18722         * icall.c: Added icall for get_UserName;
18723         * security.c: New file for security related icalls. Added function
18724         get_UserName for System.Environment (fix #56144).
18725         * security.h: New. Header file for security.c
18726
18727 2004-04-02  Dick Porter  <dick@ximian.com>
18728
18729         * icall.c: Deleted the icalls that were obsoleted some time ago
18730         by the ICU string code, and which were mixed into the icall
18731         rearranging.  Fixes bug 55969.
18732
18733         * string-icalls.h: 
18734         * string-icalls.c: Deleted the code that those icalls reference.
18735
18736 2004-04-01  Martin Baulig  <martin@ximian.com>
18737
18738         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
18739
18740         * class.c (mono_class_from_generic_parameter): Don't set 
18741         TYPE_ATTRIBUTE_INTERFACE.
18742         (my_mono_class_from_generic_parameter): Likewise.
18743
18744 2004-04-01  Martin Baulig  <martin@ximian.com>
18745
18746         * loader.c (find_method): Added an optional `MonoClass *ic'
18747         argument to search in a specific interface.
18748         (mono_get_method_constrained): New public function.
18749
18750 2004-04-01  Martin Baulig  <martin@ximian.com>
18751
18752         * reflection.c (mono_image_get_generic_field_token): Use the
18753         `handleref' cache here.
18754
18755 2004-04-01  Martin Baulig  <martin@ximian.com>
18756
18757         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
18758
18759         * reflection.c (create_generic_typespec): Use the `typespec' hash
18760         here, not the `typeref' one.    
18761
18762 2004-04-01  Martin Baulig  <martin@ximian.com>
18763
18764         * class.c (mono_class_inflate_generic_type): Moved the
18765         functionality into a new static inflate_generic_type() which
18766         returns NULL if it didn't do anything.  Only increment the
18767         `mono_stats.inflated_type_count' if we actually inflated
18768         something.
18769         (mono_class_get_full): Check the classes type to see whether we
18770         need to inflate it; also inflate MONO_TYPE_(M)VAR.
18771
18772 2004-04-01  Jackson Harper  <jackson@ximian.com>
18773
18774         * reflection.c: Set culture for assembly references.
18775         
18776 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
18777
18778         * reflection.[ch], icall.[ch], Fix support for pinning variables.
18779
18780 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18781
18782         * assembly.c:
18783         (do_mono_assembly_open): the critical section also covers
18784         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
18785
18786 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18787
18788         * threads.c:
18789         (mono_manage_threads): abort the background threads when finishing.
18790         Fixes bug #47232.
18791
18792 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18793
18794         * gc.c: only close the done_event handle if there was no timeout.
18795         C-ified comments.
18796
18797 2004-03-30  Martin Baulig  <martin@ximian.com>
18798
18799         * icall.c (icall_entries): It's called "System.Activator", not
18800         "System.Activation".    
18801
18802 2004-03-30  Martin Baulig  <martin@ximian.com>
18803
18804         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
18805         (mono_class_create_from_typespec): Likewise.
18806
18807 2004-03-30  Martin Baulig  <martin@ximian.com>
18808
18809         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
18810         `has_ctor_constraint' and `initialized'.
18811
18812 2004-03-30  Martin Baulig  <martin@ximian.com>
18813
18814         * reflection.c (encode_new_constraint): New static function to add
18815         the constructor constraint attribute to a type parameter.
18816         (encode_constraints): Call encode_new_constraint() if necessary.
18817
18818         * reflection.h
18819         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
18820
18821         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
18822         
18823 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
18824
18825         * reflection.c, icall.c: add support for pinning variables. 
18826
18827 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
18828
18829         * marshal.c (mono_marshal_get_managed_wrapper):
18830         init bool local with zero rather than null.
18831
18832 2004-03-29  Martin Baulig  <martin@ximian.com>
18833
18834         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
18835         the "official" behavior here.
18836         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
18837
18838 2004-03-29  Martin Baulig  <martin@ximian.com>
18839
18840         * icall.c: Reflect latest API changes.
18841
18842 2004-03-29  Martin Baulig  <martin@ximian.com>
18843
18844         * loader.c (mono_get_method_from_token): Also call
18845         mono_metadata_load_generic_params () for abstract and interface
18846         methods; replace the type arguments in the method signature with
18847         the ones which are loaded from the metadata.
18848
18849 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
18850
18851         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
18852         of the lock is not the current thread. MS.NET don't do it, in spite of
18853         what the documentation says. See bug #56157.
18854
18855 2004-03-28  Martin Baulig  <martin@ximian.com>
18856
18857         * class.c (mono_class_init): Don't call init_properties() and
18858         init_events() for generic instances; set `prop->parent' when
18859         inflating properties.
18860
18861         * reflection.c (mono_generic_inst_get_object): Call
18862         `mono_class_init (ginst->klass)'.
18863         (mono_type_get_object): Only create a MonoGenericInst if your
18864         generic type is a TypeBuilder.
18865         (do_mono_reflection_bind_generic_parameters): Only set
18866         `ginst->is_dynamic' if our generic type is a TypeBuilder.
18867
18868 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
18869
18870         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
18871         Fixes #56091.
18872
18873 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18874
18875         * icall.c: added Kill_internal icall.
18876         * process.[ch]: added Kill_internal icall.
18877
18878 2004-03-25  Martin Baulig  <martin@ximian.com>
18879
18880         * class.h (MonoStats): Added `generic_instance_count',
18881         `inflated_method_count', `inflated_type_count' and
18882         `generics_metadata_size'.       
18883
18884 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18885
18886         * reflection.c: no warnings now.
18887
18888 2004-03-25  Martin Baulig  <martin@ximian.com>
18889
18890         * class.c (mono_class_get_full): New public function; does a
18891         mono_class_get(), but also takes a `MonoGenericContext *'.
18892
18893         * loader.c (mono_field_from_memberref): Renamed to
18894         `field_from_memberref', made static and added `MonoGenericContext *'
18895         argument.
18896         (mono_field_from_token): Added `MonoGenericInst *' argument.
18897         (method_from_memberef): Likewise.
18898         (mono_get_method_from_token): Likewise.
18899         (mono_get_method_full): New public function; does a
18900         mono_get_method(), but also takes a `MonoGenericContext *'.
18901
18902         * verify.c (mono_method_verify): Get the method's generic context
18903         and pass it to mono_field_from_token(), mono_get_method_full() and
18904         mono_class_get_full().
18905
18906 2004-03-25  Martin Baulig  <martin@ximian.com>
18907
18908         * class.c (mono_class_inflate_generic_type): Take a
18909         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
18910         `MonoGenericMethod *'.
18911
18912 2004-03-25  Martin Baulig  <martin@ximian.com>
18913
18914         * loader.h (MonoMethodInflated): Store the MonoGenericContext
18915         instead of the MonoGenericMethod here.
18916
18917 2004-03-25  Martin Baulig  <martin@ximian.com>
18918
18919         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
18920         each time we create a new MonoGenericInst, we also create a new
18921         context which points back to us.
18922
18923         * class.c (inflate_method): Use `ginst->context' instead of
18924         creating a new context.
18925
18926         * loader.c (method_from_memberref): Use
18927         `klass->generic_inst->context' instead of creating a new context.
18928
18929 2004-03-25  Martin Baulig  <martin@ximian.com>
18930
18931         * class.h (MonoGenericContext): New struct.
18932         (MonoGenericMethod): Removed `generic_inst'.
18933
18934         * class.c (mono_class_inflate_generic_method): Take a
18935         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
18936
18937 2004-03-25  Martin Baulig  <martin@ximian.com>
18938
18939         * loader.h (MonoMethodInflated): New typedef.
18940
18941         * metadata.h (MonoMethodSignature): Removed `gen_method', make
18942         `generic_param_count' consume just 30 bits, added `is_inflated'
18943         and `has_type_parameters' flags (one bit each).
18944
18945         * class.c (mono_class_inflate_generic_method): Create a
18946         MonoMethodInflated instead of a MonoMethodNormal and set
18947         `is_inflated' in the method signature.
18948
18949         * class.h (MonoGenericMethod): Removed `generic_method'.
18950
18951 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
18952
18953         * image.c: Make sure the name of a MonoImage is always an absolute path.
18954           This fixes bug #54415.
18955
18956 2004-03-24  Martin Baulig  <martin@ximian.com>
18957
18958         * class.c (mono_class_setup_vtable): If we're a generic instance,
18959         use our generic type's vtable size.
18960
18961 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
18962
18963         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
18964         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
18965         problems.
18966
18967 2004-03-23  Martin Baulig  <martin@ximian.com>
18968
18969         * class.h (MonoDynamicGenericInst): Added `int count_events' and
18970         `MonoEvent *events'.
18971
18972         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
18973         (typebuilder_icalls): Added "get_event_info"; calls
18974         mono_reflection_event_builder_get_event_info(). 
18975
18976         * reflection.c (mono_reflection_generic_inst_initialize): Added
18977         `MonoArray *events'.
18978         (mono_reflection_event_builder_get_event_info): New function.
18979
18980 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
18981
18982         * object.h: add mono_type_initialization_init
18983
18984         * object.c (mono_runtime_class_init): 
18985         implement class constructor synchronization rules
18986         to cope with threading issues.  
18987         add mono_type_initialization_init
18988
18989         * appdomain.c (mono_runtime_init): call 
18990         mono_type_initialization_init
18991
18992         * class.h: removing initializing field from MonoVTable
18993
18994 2004-03-23  Martin Baulig  <martin@ximian.com>
18995
18996         * class.c (my_mono_class_from_generic_parameter): Use
18997         `param->name' if it's not NULL. 
18998
18999 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
19000
19001         * class.c: do not insert non-virtual methods in the vtable.
19002         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
19003         that means the method is non-virtual. This never would have
19004         happened before.
19005
19006 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
19007
19008         * profiler.c: Added lock for accessing coverage_hash.
19009
19010 2004-03-22  Martin Baulig  <martin@ximian.com>
19011
19012         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
19013         `method->method->signature->generic_param_count != 0' to make it
19014         work for interface methods.
19015
19016 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19017
19018         * process.c: quote the string passed to the shell using g_shell_quote.
19019
19020 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19021
19022         * threads.c:
19023         (mono_threads_manage): don't remove the finalizer thread and self
19024         from the threads hash table so that mono_thread_manage can be called
19025         more than once.
19026
19027 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19028
19029         * process.c: quote the arguments when UseShellExecute is true. Fixes
19030         bug #55790.
19031
19032 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19033
19034         * threads.c: set mono_thread_detach as a cleanup routine for every
19035         thread. This way it's always executed upon thread termination, either
19036         aborted or finished normally. No more xsp hangs!
19037
19038 2004-03-17  Martin Baulig  <martin@ximian.com>
19039
19040         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
19041         `int count_nested' and a `MonoType **nested'.
19042
19043         * reflection.c (mono_reflection_bind_generic_parameters): Moved
19044         most of the functionality into a new static
19045         do_mono_reflection_bind_generic_parameters() and don't take a
19046         `MonoType *nested_in' argument any more.  Don't compute nested
19047         types here.
19048         (mono_reflection_generic_inst_get_nested_types): New public method
19049         to get nested types.
19050
19051         * class.c (mono_class_create_generic): Set `klass->nested_in' if
19052         we're a nested class.
19053
19054         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
19055         mono_reflection_generic_inst_get_nested_types() to compute the
19056         nested types.
19057
19058 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
19059
19060         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
19061         descriptive error message under windows.
19062         
19063 2004-03-17  Martin Baulig  <martin@ximian.com>
19064
19065         * class.c (dup_type): Added `const MonoType *original' argument;
19066         copy the attrs from the original type.
19067
19068 2004-03-17  Martin Baulig  <martin@ximian.com>
19069
19070         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
19071         `m->generic_inst_cache' here.
19072
19073 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
19074
19075         * exception.h exception.c: Add stack_overflow_exception.
19076
19077 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19078
19079         * threadpool.c:
19080         (overlapped_callback): call SetEvent *after* invoking the callback.
19081         No need to call CloseHandle.
19082
19083 2004-03-16  Martin Baulig  <martin@ximian.com>
19084
19085         * reflection.c (mono_image_get_fieldref_token): Take a
19086         `MonoReflectionField *' instead of a `MonoClassField *' and a
19087         `MonoClass *'; store the `MonoReflectionField *' in the hash.
19088
19089 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19090
19091         * appdomain.c: don't add the culture to the filename we're looking for
19092         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
19093
19094 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19095
19096         * locales.c: don't ignore symbols when doing case insensitive compares.
19097         Thanks Dick! Fixes bug #54046.
19098
19099         * threads.c: surround 'threads' usage with enter/leave in
19100         mono_thread_manage.
19101
19102 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
19103
19104         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
19105         implicitly marshalled as [Out]. Fixes #55450.
19106
19107         (mono_marshal_get_runtime_invoke): Zero out the result if there is
19108         an exception.
19109
19110 2004-03-16  Martin Baulig  <martin@ximian.com>
19111
19112         * class.c (mono_class_from_generic_parameter): Use the actual
19113         parameter name. 
19114
19115 2004-03-16  Martin Baulig  <martin@ximian.com>
19116
19117         * reflection.c (type_get_signature_size): New static function.
19118         Compues the size of the type in a method signature.
19119         (method_get_signature_size): New static function; calls
19120         type_get_signature_size() to compute the actual size of the
19121         method's signature.
19122         (method_encode_signature): Use method_get_signature_size() to get
19123         the signature's size rather than using `nparams * 10'.
19124
19125 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19126
19127         * file-io.h: define here WapiOverlapped on windows. I don't want the
19128         regular OVERLAPPED one.
19129
19130         * file-io.c:
19131         * threadpool.c: somehow, BindIoCompletionCallback is not found.
19132         Disabling AIO on windows.
19133
19134 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19135
19136         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
19137         bug #55385.
19138
19139 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19140
19141         * appdomain.c: upgraded corlib version.
19142
19143         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
19144         and BeginWrite. Allow opening files for asynchrnous operations.
19145
19146         * file-io.h: new struct that maps FileStreamAsyncResult.
19147         * icall.c: added new icalls.
19148         * process.[ch]: support setting child process environment variables
19149         and use the SHELL or COMSPEC when UseShellExecute is true.
19150
19151         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
19152         callback for async. IO is here and also BindHandle.
19153
19154         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
19155         from here.
19156
19157 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
19158
19159         * reflection.c (create_custom_attr): Allow len == 0.
19160
19161         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
19162         computation on big-endian machines.
19163
19164 2004-03-13  Martin Baulig  <martin@ximian.com>
19165
19166         * class.h (MonoGenericInst): Added `int count_ifaces'.
19167
19168         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
19169         `ginst->count_ifaces' instead `klass->interface_count' since we
19170         may get called before the vtable is created.
19171
19172         * loader.c (mono_method_get_param_names): If we're a generic
19173         instance, return and don't initialize the class.
19174
19175         * reflection.c (mono_reflection_setup_generic_class): Don't call
19176         ensure_runtime_vtable().
19177         (mono_reflection_bind_generic_parameters): Set
19178         `ginst->count_ifaces'.
19179
19180 2004-03-11  Jackson Harper <jackson@ximian.com>
19181
19182         * icall.c:
19183         * unicode.c:
19184         * unicode.h: Remove unused System.Char icalls.
19185         
19186 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
19187
19188         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
19189         code when we P/Invoke the first library in Windows.Forms, instead
19190         of when we first open the assembly.
19191
19192         * assembly.c: Drop the lookup from here.
19193
19194 2004-03-10  Martin Baulig  <martin@ximian.com>
19195
19196         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
19197         class for properties, fields and events.  Finally fixes #54945.
19198
19199 2004-03-10  Martin Baulig  <martin@ximian.com>
19200
19201         * metadata.c (mono_metadata_class_equal): New static function;
19202         checks whether two generic instances or two generic parameters are
19203         equal.
19204         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
19205         compare classes.        
19206
19207 2004-03-10  Martin Baulig  <martin@ximian.com>
19208
19209         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
19210
19211         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
19212         argument and write it into the `reflection_info' field.
19213
19214         * icall.c
19215         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
19216         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
19217
19218 2004-03-09  Jackson Harper  <jackson@ximian.com>
19219
19220         * char-conversions.h: use 8 bits for numeric data its all we need
19221         * icall.c: numeric data is only 8 bits now.
19222
19223 2004-03-09  Martin Baulig  <martin@ximian.com>
19224
19225         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
19226
19227         * class.c (init_properties, init_events): Initialize the new
19228         `parent' field.
19229
19230         * reflection.c (typebuilder_setup_properties): Likewise.
19231         (typebuilder_setup_events): Likewise.
19232
19233         * reflection.h (MonoEventInfo): Replaced `parent with
19234         `declaring_type' and `reflected_type'.
19235
19236         * icall.c (ves_icall_get_property_info): Distinguish between
19237         declaring and reflected type.
19238         (ves_icall_get_event_info): Likewise.
19239
19240 2004-03-09  Martin Baulig  <martin@ximian.com>
19241
19242         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
19243         (ves_icall_Type_GetField): Correctly set field->klass.
19244
19245 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
19246
19247         * loader.h: Fix warning.
19248
19249 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
19250
19251         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
19252         library routine if present.  Notice that it will still continue
19253         executing even if its missing, for those working on the Gtk#
19254         edition of Windows.Forms.
19255
19256         * assembly.c (do_mono_assembly_open): If loading the
19257         System.Windows.Forms call mono_loader_wini_init.
19258
19259 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
19260
19261         * class.h: Added MonoRemoteClass struct.
19262         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
19263         function for MonoStrings.
19264         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
19265         Added internal call for getting the proxy type.
19266         * marshal.c: Get the type of transparent proxies from its remote_class.
19267         Added methods that generate the IL for type checks and casts:
19268         mono_marshal_get_isinst, mono_marshal_get_castclass, 
19269         mono_marshal_get_proxy_cancast.
19270         * marshal.h: Declaration of the previous new methods.
19271         * object.c: Added new moethods for creating and updating MonoRemoteClass
19272         instances: mono_remote_class, mono_upgrade_remote_class, 
19273         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
19274         * verify.c: FIx transparent_proxy_fields layout.
19275         * appdomain.c: Bump corlib version.
19276
19277 2004-03-04  Jackson Harper  <jackson@ximian.com>
19278
19279         * icall.c: Add icall to access char conversion tables.
19280         * char-conversions.h: Character conversion tables.
19281         * Makefile.am: Add char-conversions.h private header file.
19282         
19283 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
19284
19285         * appdomain.c (unload_thread_main): Increase unloading timeout to
19286         10 sec as a temporary workaround for Nant problems.
19287
19288 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
19289
19290         * gc.c: Add checks for GC_enable and GC_disable.
19291
19292         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
19293         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
19294         (bug #54988).
19295         
19296 2004-02-27  Martin Baulig  <martin@ximian.com>
19297
19298         * reflection.c (mono_reflection_bind_generic_parameters): Take a
19299         `MonoReflectionType *' instead of a `MonoType *'.
19300
19301 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
19302
19303         * gc.c (run_finalize): Avoid finalizing the object representing the
19304         finalizer thread.
19305         (finalizer_thread): Fix warning.
19306
19307 2004-02-25  Martin Baulig  <martin@ximian.com>
19308
19309         * class.c (_mono_class_get_instantiation_name): Added `int offset'
19310         argument for nested types.
19311         (mono_class_create_generic): Added support for nested generictypes.
19312
19313         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
19314         `GList *nested'.
19315
19316         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
19317
19318         * reflection.c (method_encode_signature): Increase the minimum
19319         value of `size' from 10 to 11.
19320         (mono_reflection_bind_generic_parameters): Take `int type_argc'
19321         and `MonoType **types' arguments instead of the `MonoArray
19322         *types'; added `MonoType *nested_in'.  Recursively instantiate
19323         nested classes. 
19324
19325 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
19326
19327         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
19328         stack_overflow_ex members which are used by exception handling.
19329
19330         * appdomain.c (mono_runtime_init): Initialize the new members.
19331
19332         * gc.c (mono_gc_enable): New helper function.
19333         * gc.c (mono_gc_disable): New helper function.
19334
19335 2004-02-23  Martin Baulig  <martin@ximian.com>
19336
19337         * icall.c: I must have been really stupid - make it actually work
19338         this time ;-)
19339
19340 2004-02-23  Martin Baulig  <martin@ximian.com>
19341
19342         * loader.c (method_from_memberref): Only inflate the method if
19343         it's in another klass.
19344
19345 2004-02-23  Martin Baulig  <martin@ximian.com>
19346
19347         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
19348         (mono_class_init): If we're a generic instance and an interface,
19349         compute `class->interface_id'; also create `class->interfaces'
19350         here and inflate them.
19351
19352         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
19353         `ginst->is_open'.
19354         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
19355
19356         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
19357
19358 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
19359
19360         * reflection.c (method_encode_code): Improved the error message
19361         generated by the exception.
19362
19363 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19364
19365         * icall.c: Martin did not do what he said in the ChangeLog for
19366         2004-02-18, but put back the changes for properties and events.
19367         Commenting those changes out again and adding comment to bug #54518.
19368         
19369         * process.c: removed warning.
19370
19371 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
19372
19373         * marshal.c (emit_struct_conv): Print an error message instead of
19374         asserting when a type does not have the StructLayout attribute.
19375
19376 2004-02-20  Martin Baulig  <martin@ximian.com>
19377
19378         * reflection.c (mono_type_get_object): Also use the cache for
19379         generic instances.
19380         (mono_reflection_bind_generic_parameters): Always compute
19381         `ginst->ifaces'.        
19382
19383 2004-02-20  Martin Baulig  <martin@ximian.com>
19384
19385         * class.h (MonoGenericMethod): Removed `klass'.
19386
19387         * class.c (mono_class_inflate_generic_method): Added `MonoClass
19388         *klass' argument.
19389
19390 2004-02-20  Martin Baulig  <martin@ximian.com>
19391
19392         * reflection.c (method_encode_methodspec): Actually use the
19393         uninflated signature for the memberref.
19394
19395 2004-02-20  Martin Baulig  <martin@ximian.com>
19396
19397         * class.h (MonoGenericMethod): Removed `declaring'.
19398
19399         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
19400         is NULL, compute it here.
19401
19402 2004-02-20  Martin Baulig  <martin@ximian.com>
19403
19404         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
19405
19406         * metadata.c (mono_metadata_generic_inst_hash): New method.
19407         (mono_metadata_generic_inst_equal): New method.
19408
19409         * reflection.c (mono_reflection_bind_generic_parameters): Use the
19410         `klass->image->generic_inst_cache' cache to avoid creating
19411         duplicate MonoGenericInst's.
19412
19413         * class.c (mono_class_inflate_generic_type): Use the cache.
19414
19415 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
19416
19417         * object.c: fixed gc descriptor calculation for embedded valuetypes.
19418
19419 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19420
19421         * icall.c: added Socket.WSAIoctl icall.
19422
19423         * socket-io.[ch]: implemented
19424         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
19425
19426 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
19427
19428         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
19429
19430 2004-02-18  Urs C Muff  <umuff@quark.com>
19431
19432         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
19433         this work on PPC and other big-endian architectures.
19434
19435         * debug-mono-symfile.h: Prepended the names of all the `guint32'
19436         fields with an underscore to make sure they're only accessed by
19437         the read32() macro.
19438
19439 2004-02-18  Martin Baulig  <martin@ximian.com>
19440
19441         * icall.c: Put the klass->refclass changes back for methods and
19442         fields, but not for properties and events.  We're currently not
19443         distinguishing between DeclaringType and ReflectedType for
19444         properties and events, that's what caused the regressions.
19445
19446 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19447
19448         * object.c:
19449         (mono_async_result_new): the handle can be NULL.
19450
19451         * threadpool.c: Use an event instead of a semaphore, don't initialize
19452         it until needed. This saves quite a few semaphores from being created
19453         when using the threadpool.
19454
19455 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
19456
19457         * object.c (mono_string_is_interned_lookup): Fix interning of long
19458         strings. Fixes #54473.
19459
19460         * domain.c (ldstr_equal): Optimize if the two strings are equal.
19461
19462         * icall.c: Revert the klass->refclass changes since they introduce
19463         regressions (bug #54518).
19464
19465 2004-02-18  Martin Baulig  <martin@ximian.com>
19466
19467         * class.c (mono_class_init): If we're a generic instance and don't
19468         come from a TypeBuilder, inflate our members here.
19469         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
19470         (mono_class_create_generic): New public method.
19471         (mono_class_initialize_generic): Removed.
19472         (get_instantiation_name): Renamed to
19473         _mono_class_get_instantiation_name() and made it public.
19474
19475 2004-02-18  Martin Baulig  <martin@ximian.com>
19476
19477         * class.c (mono_class_inflate_generic_type): Clear the new
19478         instance's `nginst->klass' when inflating a generic instance.
19479         (mono_class_is_subclass_of): Added (basic) support for generic
19480         instances.
19481
19482 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
19483
19484         * appdomain.h, domain.c: use a MonoCodeManager instead of a
19485         MonoMempool to hold compiled native code.
19486
19487 2004-02-17  Martin Baulig  <martin@ximian.com>
19488
19489         * class.h (MonoDynamicGenericInst): Added `count_properties' and
19490         `properties'.
19491
19492         * reflection.c (mono_reflection_generic_inst_initialize): Added
19493         `MonoArray *properties' argument.
19494
19495         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
19496
19497 2004-02-17  Martin Baulig  <martin@ximian.com>
19498
19499         * icall.c (ves_icall_Type_GetFields): Renamed to
19500         ves_icall_Type_GetFields_internal() and added a
19501         `MonoReflectionType *rtype' argument; pass it to
19502         mono_field_get_object() to set the field's "reflected" type.
19503         (ves_icall_Type_GetConstructors): Likewise.
19504         (ves_icall_Type_GetEvents): Likewise.
19505         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
19506         argument; pass it to mono_method_get_object() to set the method's
19507         "reflected" type.       
19508
19509 2004-02-17  Martin Baulig  <martin@ximian.com>
19510
19511         * class.h (MonoDynamicGenericInst): New type.
19512         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
19513
19514         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
19515         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
19516         (ves_icall_MonoGenericInst_GetFields): New interncall.
19517
19518         * class.c (mono_class_from_generic): Don't call
19519         mono_class_initialize_generic() if this is a dynamic instance;
19520         ie. it's being created from a TypeBuilder.
19521         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
19522         `class->byval_arg.type'.
19523
19524         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
19525         to `inflate_method' and made static.
19526         (mono_reflection_inflate_field): Removed.
19527         (mono_reflection_generic_inst_initialize): New public method.
19528
19529         * reflection.h (MonoReflectionGenericInst): Removed `methods',
19530         `ctors' and `fields'; added `initialized'.
19531
19532 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
19533
19534         * debug-helpers.c (mono_method_full_name): Fix output for empty
19535         namespaces.
19536
19537 2004-02-12  Martin Baulig  <martin@ximian.com>
19538
19539         * class.h (MonoClassField): Added `MonoType *generic_type'.
19540
19541         * reflection.c (mono_image_get_fieldref_token): Added support for
19542         instantiated generic types.
19543         (field_encode_inflated_field): Removed.
19544         (mono_image_get_inflated_field_token): Removed.
19545         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
19546
19547         * reflection.h (MonoReflectionInflatedField): Removed.
19548
19549 2004-02-12  Martin Baulig  <martin@ximian.com>
19550
19551         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
19552         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
19553
19554         * reflection.c (mono_image_get_methodspec_token): Take a
19555         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
19556         (mono_image_create_token): Check whether we have a
19557         `method->signature->gen_method' and call
19558         mono_image_get_methodspec_token() if appropriate.
19559         (inflated_method_get_object): Removed.
19560         (mono_reflection_bind_generic_method_parameters): Return a
19561         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
19562         (mono_reflection_inflate_method_or_ctor): Likewise.
19563
19564         * reflection.h (MonoReflectionInflatedMethod): Removed.
19565
19566 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
19567
19568         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
19569         for custom valuetype marshalling.
19570
19571         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
19572
19573 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19574
19575         * icall.c: fixed WSAGetLastError_internal name.
19576
19577 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
19578
19579         * threads.c (mono_thread_attach): Allow this to be called multiple
19580         times for a thread.
19581         
19582         * threads.c (build_wait_tids): Do not wait for ourselves.
19583
19584         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
19585         appdomain list is empty.
19586
19587         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
19588         memory returned by mono_string_builder_to_utf16, since it points into
19589         managed memory. Thanks to Bernie Solomon for noticing this.
19590
19591         * icall.c: Add AppDomainSetup icalls.
19592
19593         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
19594
19595         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
19596         types.
19597
19598         * reflection.c (reflection_methodbuilder_to_mono_method): Save
19599         custom attributes to the method_aux struct. Also fix array indexes etc.
19600
19601         * loader.c (mono_method_get_param_names): Make dynamic case work again.
19602         
19603 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
19604
19605         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
19606         (both static and runtime) and reduce startup time.
19607
19608 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
19609
19610         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
19611         AsAny marshalling conversion instead of crashing.
19612
19613         * marshal.c: Fix warnings.
19614
19615 2004-02-09  Martin Baulig  <martin@ximian.com>
19616
19617         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
19618
19619         * reflection.h (MonoReflectionInflatedMethod): Removed the
19620         `declaring' field, it's now in the unmanaged MonoGenericMethod.
19621
19622         * reflection.c (method_encode_methodspec): Removed the `method'
19623         argument; we get it from `gmethod->declaring'.
19624         (inflated_method_get_object): Removed the `declaring' argument.
19625
19626 2004-02-09  Martin Baulig  <martin@ximian.com>
19627
19628         * class.h (MonoGenericMethod): New type.
19629         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
19630         `generic_method'.
19631
19632         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
19633         a `MonoGenericMethod *gen_method' one.
19634
19635         * class.c (mono_class_inflate_generic_type): Take an additional
19636         `MonoGenericMethod * argument.  This is only non-NULL if we're
19637         inflating types for a generic method.   
19638         (mono_class_inflate_generic_signature): Renamed to
19639         inflate_generic_signature() and made static; take a
19640         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
19641         (inflate_generic_header): Take a `MonoGenericMethod *' argument
19642         instead of a `MonoGenericInst *' one.
19643         (mono_class_inflate_generic_method): Likewise.
19644
19645         * reflection.c (encode_generic_method_sig): Take a
19646         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
19647         (method_encode_methodspec): Likewise.
19648         (inflated_method_get_object): Likewise. 
19649
19650         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
19651         field with a `MonoGenericMethod *gmethod' one.  
19652
19653 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
19654
19655         * class.h (mono_class_has_parent): add parens to expansion
19656         so you can ! this.
19657
19658 2004-02-08  Martin Baulig  <martin@ximian.com>
19659
19660         * image.h (MonoImage): Removed `generics_cache'.
19661
19662         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
19663         instead of a `MonoType *' argument; removed the `inflate_methods'
19664         argument.  Don't inflate methods here.
19665
19666         * loader.c (find_method): If it's a generic instance, call
19667         mono_class_init() on the `sclass->generic_inst->generic_type'.
19668
19669         * metadata.c (mono_type_size): Make this work on uninitialized
19670         generic instances; call it on the `ginst->generic_type's class.
19671
19672         * reflection.c (mono_reflection_bind_generic_parameters): Call
19673         mono_class_from_generic() to create the `ginst->klass'.
19674
19675 2004-02-08  Martin Baulig  <martin@ximian.com>
19676
19677         * class.h (MonoClass): Changed type of `generic_inst' from
19678         `MonoType *' to `MonoGenericInst *'.
19679
19680 2004-02-08  Martin Baulig  <martin@ximian.com>
19681
19682         * icall.c (ves_icall_Type_BindGenericParameters): Just call
19683         mono_type_get_object(), this is now creating a `MonoGenericInst'
19684         for MONO_TYPE_GENERICINST.
19685         (ves_icall_MonoGenericInst_GetParentType): Likewise.
19686         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
19687
19688         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
19689         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
19690         (inflated_method_get_object): Added `MonoClass *refclass' argument.
19691         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
19692         and reflected type.
19693
19694         * reflection.h (MonoReflectionInflatedMethod): Removed
19695         `declaring_type' and `reflected_type'.
19696
19697 2004-02-08  Martin Baulig  <martin@ximian.com>
19698
19699         * class.h (MonoGenericInst): Added `MonoType *parent' and
19700         `MonoType **ifaces'.
19701
19702         * reflection.h (MonoReflectionGenericInst): Removed `klass',
19703         `parent' and `interfaces'.
19704
19705         * reflection.c (mono_reflection_bind_generic_parameters): Take a
19706         `MonoType *' argument and return a `MonoType *'.
19707
19708         * icall.c
19709         (ves_icall_MonoGenericInst_GetParentType): New interncall.
19710         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
19711
19712 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
19713
19714         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
19715         valuetype marshalling.
19716
19717 2004-02-06  Martin Baulig  <martin@ximian.com>
19718
19719         * class.c
19720         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
19721         (my_mono_class_from_generic_parameter): Likewise.
19722
19723 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
19724
19725         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
19726         contents of the symbol files lazily.
19727
19728         * object.h (MonoThread): Add 'name' and 'name_len' fields.
19729
19730         * threads.h threads.c icall.c: New icalls for getting and setting the
19731         threads name.
19732
19733 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
19734
19735         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
19736         Raise an exception when the domain is not found.
19737
19738 2004-02-03  Martin Baulig  <martin@ximian.com>
19739
19740         * reflection.c (mono_image_get_methodspec_token): Use the
19741         uninflated signature; fixes gen-33.
19742
19743 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
19744
19745         * gc.c threads.c: Make the finalizer thread a normal managed thread so
19746         the finalizer code can use thread functionality.
19747
19748         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
19749         the finalizer thread.
19750
19751         * threads.c: Make some functions more robust.
19752
19753         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
19754
19755         * metadata.h: Add new marshalling conventions.
19756
19757         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
19758         stringbuilder marshalling. Fixes #53700.
19759
19760         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
19761
19762         * reflection.c (mono_image_get_type_info): Save declarative security
19763         info.
19764
19765         * reflection.c (mono_image_get_field_info): Handle uninitialized 
19766         unmanaged fields as well.
19767
19768         * appdomain.c: Bump corlib version.
19769
19770 2004-02-01  Martin Baulig  <martin@ximian.com>
19771
19772         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
19773         method type arguments.  
19774
19775 2004-01-30  Duncan Mak  <duncan@ximian.com>
19776
19777         * marshal.h: Add prototype for
19778         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
19779         and
19780         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
19781         fix the build.
19782
19783 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
19784
19785         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
19786         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
19787
19788 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
19789
19790         * marshal.c (mono_marshal_get_native_wrapper): Add support for
19791         custom marshalling of valuetypes.
19792
19793         * marshal.c: Fix some warnings.
19794
19795 2004-01-29  Martin Baulig  <martin@ximian.com>
19796
19797         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
19798         for generic method parameters.
19799
19800         * reflection.c (method_encode_methodspec): Write the uninflated
19801         signature into the methodspec table.
19802         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
19803         is always the uninflated method.
19804         (reflection_methodbuilder_to_mono_method): Copy the generic
19805         parameters from the MethodBuilder into `header->gen_params'.
19806
19807 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
19808
19809         * class.c (mono_class_from_generic_parameter): Fix warning.
19810
19811 2004-01-27  Martin Baulig  <martin@ximian.com>
19812
19813         * class.c (mono_class_from_generic_parameter): Don't create
19814         `klass->methods' here.  
19815
19816 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
19817
19818         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
19819         extension since it does not work with libraries named lib<FOO>.dll.so.
19820
19821 2004-01-25  Martin Baulig  <martin@ximian.com>
19822
19823         * class.c (mono_class_inflate_generic_type): Added support for
19824         MONO_TYPE_GENERICINST.
19825
19826         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
19827         inflate methods on open constructed types.      
19828
19829 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19830
19831         * object.c: fire ProcessExit event in the root AppDomain after running
19832         Main. Fixes bug #53299.
19833
19834 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
19835
19836         * socket-io.c: include the new socket-wrappers.h header.
19837         Use the wrappers instead of the unix socket functions to make the code
19838         more clear.
19839
19840 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
19841
19842         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
19843
19844         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
19845         Fixes #22532.
19846
19847 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
19848
19849         * reflection.c (mono_image_create_pefile): Handle the case when the
19850         entry point is not a MethodBuilder.
19851
19852         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
19853         field to ReflectionMethod since it is not allways a builder.
19854
19855         * reflection.c (type_get_fully_qualified_name): New helper function to
19856         return the fully qualified name of a type.
19857
19858         * reflection.c (encode_marshal_blob): Always emit the fully qualified
19859         type name for custom marshallers.
19860
19861         * reflection.c (mono_marshal_spec_from_builder): Ditto.
19862
19863         * class.c (mono_class_setup_vtable): If a parent class already 
19864         implements an interface, use the implementing methods from that class.
19865         Fixes #53148.
19866
19867 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19868
19869         * threadpool.c: just return instead of ExitThread to allow for thread
19870         clean up earlier.
19871
19872 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
19873
19874         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
19875         when closing resource modules.
19876
19877         * reflection.c (mono_image_create_pefile): Handle the case when the
19878         entry point is not a MethodBuilder.
19879
19880         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
19881         field to ReflectionMethod since it is not allways a builder.
19882
19883 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
19884
19885         * marshal.c (mono_marshal_get_managed_wrapper): 
19886         mono_marshal_alloc takes native int so CONV_I
19887         the arg for 64bits.
19888
19889 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
19890
19891         * reflection.c (fixup_cattrs): New function to fixup the methoddef
19892         tokens in the cattr table. Fixes #53108.
19893
19894 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19895
19896         * loader.c: don't trim ".dll" before looking up in the config file.
19897         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
19898
19899 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
19900
19901         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
19902         Return the module which contains the resource as well.
19903         (ves_icall_System_Reflection_Module_Close): New icall.
19904
19905         * appdomain.c: Bump corlib version number.
19906
19907         * image.c (mono_image_addref): New public function.
19908
19909         * assembly.c: Call mono_image_addref.
19910
19911         * reflection.c (mono_module_get_object): Increase reference count of 
19912         the image.
19913
19914         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
19915         Fixes #22532.
19916
19917         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
19918         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
19919         proper exceptions on DllImport problems.
19920
19921 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
19922
19923         * class.c, metadata.c: eliminate CSIZE macro.
19924
19925 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
19926
19927         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
19928         * object.h: Added async_callback field in MonoAsyncResult.
19929         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
19930         * verify.c: Added async_callback in MonoAsyncResult layout.
19931
19932 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
19933
19934         * reflection.c (mono_reflection_get_custom_attrs): Add support
19935         for Modules.
19936
19937 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
19938
19939         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
19940         marshalling.
19941         (mono_marshal_method_from_wrapper): Add null pointer check.
19942
19943 2004-01-16  Martin Baulig  <martin@ximian.com>
19944
19945         * debug-mono-symfile.h: Set version number to 36 and reflect
19946         latest symbol writer changes.
19947
19948 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
19949
19950         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
19951         multi-dimensional arrays.
19952         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
19953         (mono_class_from_mono_type): Use bounded_array_class_get.
19954         
19955         * class.c (mono_bounded_array_class_get): New function which takes
19956         a 'bounded' bool argument to distinguish vectors from one dimensional
19957         arrays.
19958
19959         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
19960         bounded_array_class_get if the array has bounds.
19961
19962         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
19963         Search modules loaded using AssemblyBuilder:AddModule as well.
19964
19965 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19966
19967         * appdomain.c: increased corlib version.
19968         * filewatcher.c: removed g_print.
19969         * icall.c:
19970         (get_property_info): only allocate what is actually requested.
19971         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
19972
19973 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19974
19975         * Makefile.am: added filewatcher.[ch]
19976         * filewatcher.[ch]: FileSystemWatcher runtime support.
19977         * icall.c: added new FSW icalls.
19978
19979 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
19980
19981         * string-icalls.c: fix stringbuilder regression as suggested by
19982         Iain McCoy <iain@mccoy.id.au>.
19983
19984 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
19985
19986         * process.c (process_read_stringtable_block): Recognize '007f' as
19987         a language neutral stringtable block.
19988
19989 2004-01-12  Patrik Torstensson
19990
19991         * object.h (MonoStringBuilder) : Changed layout to support our
19992         new stringbuilder class.
19993         * marshal.c: Change marshalling to support the new layout of 
19994         string builder.
19995         * appdomain.c: increased version number because new layout of
19996         string builder.
19997
19998 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
19999
20000         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
20001         assembly name as an string instead of an AssemblyName, since it is
20002         easier to extract info from it.
20003
20004         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
20005         the culture subdirectories too. Fixes #52231.
20006
20007 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20008
20009         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
20010         It takes 2 new parameters with an optional name for the method to look
20011         for and case ignoring info.
20012
20013         * threadpool.c: removed unused variable.
20014
20015 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20016
20017         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
20018         It takes 2 new parameters with an optional name for the property to look
20019         for and case ignoring info.
20020         Fixes bug #52753.
20021
20022 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
20023
20024         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
20025         Fix #52451.
20026
20027 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20028
20029         * appdomain.c:
20030         * assembly.c: escape the uri before passing it to g_filename_from_uri.
20031         Fixes bug #52630.
20032
20033 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
20034
20035         * reflection.c: Add support for more than one unmanaged resource.
20036
20037         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
20038         in field->def_value, as done in all other cases.
20039
20040         * reflection.c (mono_reflection_get_custom_attrs): Add support for
20041         TypeBuilders.
20042
20043         * reflection.c (mono_reflection_create_runtime_class): Remove 
20044         errorneous assignment to klass->element_class, since it is already
20045         done in mono_reflection_setup_internal_class.
20046
20047 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20048
20049         * gc.c: added missing LeaveCriticalSection.
20050         * icall.c: indented a couple of lines.
20051         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
20052         if we call EndInvoke inside a callback. Fixes bug #52601.
20053
20054 2004-01-07  Martin Baulig  <martin@ximian.com>
20055
20056         * mono-debug-debugger.h
20057         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
20058
20059 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
20060
20061         * appdomain.c: Use messages in NotImplementedException.
20062
20063         * exception.c (mono_get_exception_not_implemented): Now this takes
20064         a message argument.
20065
20066         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
20067         exception instead of g_asserting an aborting when something is not
20068         implemented.
20069
20070         Add some inline docs.
20071
20072 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
20073
20074         * reflection.h: Update after changes to object layout.
20075
20076         * reflection.c: Implement saving of unmanaged aka win32 resources.
20077
20078         * appdomain.c: Bump version number.
20079
20080         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
20081         Handle missing domains gracefully.
20082
20083 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
20084
20085         * file-io.c : On Windows, there are much more invalid_path_chars.
20086
20087 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
20088
20089         * class.h, object.c: prepare for GetType () speedup.
20090
20091 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
20092
20093         * profiler.c: workaround for --profile null reference exception on
20094           cygwin. Patch by Patrik Torstensson.
20095
20096 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
20097
20098         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
20099         make work for unaligned access.
20100
20101 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
20102
20103         * class.c: small cleanup (class->fields [i] -> field).
20104         * image.c: check address of metadata is valid.
20105
20106 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
20107
20108         * assembly.h assembly.c (mono_assembly_loaded): New public function to
20109         search the list of loaded assemblies.
20110
20111         * reflection.c (mono_reflection_type_from_name): Use 
20112         mono_assembly_loaded instead of mono_image_loaded.
20113
20114         * reflection.c: Fix warnings.
20115
20116 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
20117
20118         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
20119         is dynamic. This is needed since an assembly can contain both dynamic and
20120         non-dynamic images.
20121
20122         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
20123         assembly->dynamic.
20124
20125         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
20126
20127         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
20128         to store modules loaded using AddModule.
20129
20130         * reflection.c (mono_image_fill_file_table): Generalize this so it works
20131         on Modules.
20132
20133         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
20134
20135         * reflection.c (mono_image_fill_export_table_from_module): New function to
20136         fill out the EXPORTEDTYPES table from a module.
20137
20138         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
20139         into a separate function. Also handle loaded non-dynamic modules.
20140
20141         * reflection.c (mono_image_basic_init): Fix memory allocation.
20142
20143         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20144
20145         * assembly.c (mono_assembly_load_references): Make this public.
20146
20147 2003-12-19  Martin Baulig  <martin@ximian.com>
20148
20149         * class.c (mono_class_initialize_generic): Made this static, take
20150         a `MonoGenericInst *' instead of a `MonoClass *'.
20151         (mono_class_from_generic): Call mono_class_initialize_generic()
20152         unless we're already initialized or being called from
20153         do_mono_metadata_parse_generic_inst().
20154
20155         * class.h (MonoGenericInst): Added `initialized' and
20156         `init_pending' flags.
20157
20158         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
20159         `mono_class_init (gklass)' or mono_class_initialize_generic()
20160         here; set `generic_inst->init_pending' while parsing the
20161         `type_argv'.
20162
20163 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
20164
20165         * locales.c: include string.h for memxxx prototypes
20166
20167 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
20168
20169         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
20170         constructor when accessing literal fields.
20171
20172 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
20173
20174         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20175
20176         * reflection.c (assembly_add_resource_manifest): New function to fill
20177         the MANIFESTRESOURCE table.
20178
20179         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
20180
20181         * reflection.h: Update to changes in class layout.
20182
20183         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
20184         Reenable call to mono_runtime_is_shutting_down ().
20185
20186         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
20187         determine if the runtime is shutting down.
20188
20189 2003-12-16  Jackson Harper <jackson@ximian.com>
20190
20191         * icall.c: comment out call to mono_runtime_is_shutting_down to
20192         fix build.
20193         
20194 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
20195
20196         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
20197         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
20198
20199 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
20200
20201         * reflection.c: move definition of swap_with_size
20202         to before its first call
20203
20204 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
20205
20206         * appdomain.c (mono_runtime_is_shutting_down): New public function.
20207
20208         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
20209         icall.
20210
20211         * object.c: Fix warnings.
20212
20213         * icall.c (ves_icall_Type_Get...): Only consider inherited static
20214         members if FlattenHierarchy is set.
20215
20216         * reflection.c (mono_image_add_decl_security): New function to emit
20217         declarative security.
20218
20219         * reflection.h reflection.c: Add support for declarative security.
20220
20221         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
20222         
20223 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
20224
20225         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
20226         
20227         * appdomain.c verify.c: Moved corlib version checking into its own
20228         function in appdomain.c since it needs to create vtables etc.
20229
20230 2003-12-13  Patrik Torstensson <p@rxc.se>
20231
20232         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
20233         instead of unwrapped server.
20234
20235 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
20236
20237         * verify.c (check_corlib): Fix field index.
20238
20239 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
20240
20241         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
20242         GetGacPath icall.
20243
20244 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
20245
20246         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
20247         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
20248         cope with sizeof(size_t) != sizeof(guint32).
20249
20250 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20251
20252         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
20253         in case of failure.
20254
20255 2003-12-10  Mark Crichton <crichton@gimp.org>
20256
20257         * icall.c: removed the GetNonZeroBytes.  We now handle this case
20258         in managed code.
20259
20260         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
20261
20262 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
20263
20264         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
20265         marked as deleted.
20266
20267 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
20268
20269         * verify.c (check_corlib): Handle the case when the version field is 
20270         initialized by a static constructor.
20271
20272 2003-12-08  Patrik Torstensson  <p@rxc.se>
20273
20274     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
20275
20276 2003-12-08  Martin Baulig  <martin@ximian.com>
20277
20278         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
20279         a MonoReflectionGenericParameter, also take the parameter index
20280         and name as arguments.
20281         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
20282         (ves_icall_MonoGenericParam_initialize): New interncall.
20283         (ves_icall_Type_make_byref_type): New interncall.
20284
20285         * reflection.h (MonoReflectionGenericParam): Derive from
20286         MonoReflectionType, not just from MonoObject.  Added `refobj' and
20287         `index' fields.
20288
20289         * reflection.c (mono_reflection_define_generic_parameter): Create
20290         and return a new MonoReflectionGenericParam; don't initialize the
20291         constraints here.
20292         (mono_reflection_initialize_generic_parameter): New public method;
20293         initializes the constraints and creates the `param->pklass'.
20294
20295 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
20296
20297         * reflection.h reflection.c: Use the new fields 'num_types', 
20298         'num_fields' and 'num_methods' to track the number of types etc.
20299
20300         * verify.c (check_corlib): Check corlib version number.
20301
20302 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
20303
20304         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
20305         function works on all methods.
20306
20307 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
20308
20309         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
20310         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
20311         the custom_type_info flag of the transparent proxy.
20312         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
20313         objects that supports IRemotingTypeInfo.
20314         * object.h: Added custom_type_info field in transparent proxy.
20315
20316 2003-12-06  Martin Baulig  <martin@ximian.com>
20317
20318         * class.c (mono_class_create_from_generic): Removed.
20319         (mono_class_from_generic): Check `ginst->klass' before doing
20320         anything else.  This is important to fully support "recursive"
20321         generic types.
20322
20323         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
20324         empty `generic_inst->klass' before doing anything else.
20325
20326 2003-12-06  Dick Porter  <dick@ximian.com>
20327
20328         * verify.c: 
20329         * object.h:
20330         * icall.c:
20331         * locales.c: Use C structs to access class fields.  Don't do a
20332         conversion between MonoString and UChar because both are
20333         platform-endian UTF-16.  Compare now takes startindex and count
20334         parameters.  Add a char overload for IndexOf.  Speed up the
20335         invariant string IndexOf.
20336
20337 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
20338
20339         * Makefile.am (monosn_LDADD): Fix parallel build.
20340
20341 2003-12-04  Martin Baulig  <martin@ximian.com>
20342
20343         * icall.c
20344         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
20345         (ves_icall_Type_make_array_type): New interncall.       
20346
20347 2003-12-04  Martin Baulig  <martin@ximian.com>
20348
20349         * locales.c: also change it in the !HAVE_ICU case.
20350
20351 2003-12-04  Dick Porter  <dick@ximian.com>
20352
20353         * icall.c:
20354         * locales.c: construct_compareinfo is now in CompareInfo, not
20355         CultureInfo.
20356
20357 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
20358
20359         * image.c (mono_image_load_file_for_image): Cache loaded images in the
20360         image->files array.
20361
20362         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
20363         table as well.
20364
20365         * assembly.c (mono_assembly_load_references): Only load references
20366         once.
20367
20368         * class.c (mono_class_from_name): Avoid linear search of the 
20369         EXPORTEDTYPE table.
20370
20371         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
20372
20373 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
20374
20375         * image.h (MonoImage): Add 'field_cache' field.
20376
20377         * loader.c (mono_field_from_token): Cache field lookups.
20378         
20379         * reflection.c (mono_module_get_object): Fix name property.
20380
20381         * icall.c (ves_icall_get_enum_info): Update after changes to 
20382         mono_metadata_get_constant_index ().
20383
20384         * icall.c: Get rid of get_type_info icall, use a separate icall for
20385         each type property to avoid needless memory allocations. Fixes #51514.
20386
20387         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
20388         to avoid needless binary searches.
20389
20390         * class.c (class_compute_field_layout): Move the initialization of
20391         field->def_value to mono_class_vtable ().
20392
20393         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
20394         non-corlib types.
20395
20396         * object.c (mono_object_allocate): Make it inline.
20397
20398         * object.c (mono_object_allocate_spec): Make it inline.
20399         
20400 2003-12-02  Dick Porter  <dick@ximian.com>
20401
20402         * locales.c (create_NumberFormat): NumberFormatInfo construction.
20403         Patch by Mohammad DAMT (mdamt@cdl2000.com).
20404
20405 2003-12-01  Dick Porter  <dick@ximian.com>
20406
20407         * threads.c: Fix signature and call in CreateMutex and
20408         CreateEvent.
20409
20410 2003-12-01  Dick Porter  <dick@ximian.com>
20411
20412         * icall.c: 
20413         * locales.c: Implement string compares and searching
20414
20415         * object.h: Add extra Thread field
20416
20417 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
20418
20419         * reflection.c (fixup_method): Add support for MonoCMethod.
20420
20421 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
20422
20423         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
20424
20425         * reflection.c (assembly_name_to_aname): Allow extra characters in
20426         assembly names. Fixes #51468.
20427
20428 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
20429
20430         * exception.c (mono_exception_from_name_domain): New helper function.
20431
20432         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
20433         exception object in the correct domain.
20434
20435         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
20436         formatting + make a copy a the input data.
20437
20438         * loader.c (mono_get_method_from_token): Methods which contain
20439         native code do not have entries in the ImplMap.
20440
20441         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
20442         Thanks to Gonzalo for spotting this.
20443         
20444         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
20445         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
20446
20447         * assembly.h (mono_assembly_load_from): Split the second part of 
20448         assembly loading into a new public function.
20449
20450         * exception.h (mono_get_exception_bad_image_format): New function.
20451
20452 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
20453
20454         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
20455         Enumerate all modules inside a dynamic assembly. Fixes #51293.
20456         
20457         * icall.c: Add new icall for creating dynamic methods.
20458
20459         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
20460
20461         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
20462
20463         * reflection.c (mono_reflection_create_dynamic_method): New icall to
20464         create a dynamic method.
20465
20466         * reflection.c (resolve_object): New helper function.
20467
20468         * reflection.c: Generalize ReflectionMethodBuilder and the functions
20469         which manipulate it so they can also work on dynamic methods.
20470
20471         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
20472         creating the MonoReflectionMethodAux structure if it is not needed.
20473         
20474         * reflection.h verify.c: Update after changes to object layout.
20475
20476         * reflection.c (method_builder_encode_signature): Fix compilation on
20477         gcc 2.95.x.
20478
20479 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
20480
20481         * appdomain.h: Added support for context static fields. Added static_data
20482           field to MonoAppContext and renamed thread_static_fields to a more
20483           generic special_static_fields in MonoAppDomain, since it can now contain
20484           context static fields.
20485         * domain.c: Updated hashtable name.
20486         * object.c: Replaced field_is_thread_static() for a more generic
20487           field_is_special_static() which also checks for context static attribute.
20488           In mono_class_vtable(), added support for static context fields.
20489         * threads.c: Changed methods that manage thread static fields to more
20490           generic methods so they can be reused both for thread and context static
20491           data.
20492         * threads.h: Declared some new methods.
20493
20494 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
20495
20496         * reflection.h: Update after changes to the managed types.
20497
20498         * reflection.c (encode_custom_modifiers): New helper function.
20499
20500         * reflection.c (method_encode_signature): Emit custom modifiers.
20501
20502         * reflection.c (field_encode_signature): Emit custom modifiers.
20503
20504 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
20505
20506         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
20507
20508         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
20509         implementation.
20510
20511         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
20512         icall.
20513
20514         * object.c (mono_field_get_value_object): New function.
20515
20516         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
20517         specific.
20518
20519 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
20520
20521         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
20522         return a preallocated out-of-memory exception instance.
20523
20524         * object.c (out_of_memory): Use the new function.
20525
20526         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
20527         flag is before the custom modifiers. Fixes #49802.
20528
20529 2003-11-16  Martin Baulig  <martin@ximian.com>
20530
20531         * class.c (mono_class_is_open_constructed_type): Implemented the
20532         MONO_TYPE_GENERICINST case.
20533
20534 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
20535
20536         * assembly.c (mono_assembly_fill_assembly_name): New function to
20537         fill out the MonoAssemblyName structure.
20538         (mono_assembly_open): Use the new function.
20539
20540         * icall.c (fill_reflection_assembly_name): New helper function.
20541
20542         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
20543         new function.
20544
20545         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
20546
20547 2003-11-15  Martin Baulig  <martin@ximian.com>
20548
20549         * class.c (mono_class_is_open_constructed_type): New public
20550         function; checks whether a type is an open constructed type,
20551         ie. whether it still contains type parameters.
20552         (mono_class_inflate_generic_type): If we're a type parameter and
20553         the inflated type is also a MONO_TYPE_(M)VAR, return the original
20554         type.
20555
20556         * class.h (MonoGenericInst): Added `guint32 is_open'.
20557
20558         * loader.c (method_from_methodspec): Check whether we're an open
20559         or closed constructed type and set `ginst->is_open'.
20560
20561         * reflection.c (mono_reflection_bind_generic_parameters): Check
20562         whether we're an open or closed constructed type and set
20563         `ginst->is_open'.
20564         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
20565         from open constructed types.
20566
20567 2003-11-15  Martin Baulig  <martin@ximian.com>
20568
20569         * reflection.c (mono_reflection_bind_generic_parameters): If we're
20570         a generic instance (instead of a generic type declaration) with
20571         unbound generic parameters, bind them to our actual types.
20572
20573 2003-11-14  Martin Baulig  <martin@ximian.com>
20574
20575         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
20576
20577         * reflection.c (mono_reflection_bind_generic_parameters): If we're
20578         an interface type, populate `res->interfaces' with instantiated
20579         versions of all the interfaces we inherit.
20580
20581 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
20582
20583         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
20584         when MONO_PATH is set but doesn't contain the install dir.
20585
20586 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20587
20588         * icall.c:
20589         (ves_icall_Type_GetInterfaces): don't return an interface twice when
20590         it's also implemented in base classes. Fixes bug #50927.
20591
20592 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
20593
20594         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
20595         if this method is called from a finalizer. Fixes #50913.
20596
20597 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
20598
20599         * threads.c: Implement VolatileRead/VolatileWrite
20600
20601         * icall.c: Add new icalls for VolatileRead/VolatileWrite
20602
20603 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
20604
20605         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
20606         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
20607         2.95.3.
20608
20609         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
20610         from Peter Ross (pro@missioncriticalit.com).
20611         
20612 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
20613
20614         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
20615
20616 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
20617
20618         * assembly.c (mono_assembly_load_references): Disable check because it
20619         triggers on older corlibs which lots of people have.
20620
20621 2003-11-12  Jackson Harper  <jackson@ximian.com>
20622
20623         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
20624         load corlib.dll if mscorlib.dll is not found.
20625         * assembly.h: Remove corlib name define.
20626         * class.c:
20627         * domain.c:
20628         * image.c: Change corlib name to mscorlib.
20629         
20630 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
20631
20632         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
20633
20634 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
20635
20636         * appdomain.h: Added loader_optimization here to sync with the C#
20637         code, and add disallow_binding_redirects field.
20638
20639 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
20640
20641         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
20642
20643         * reflection.c (mono_image_build_metadata): Fix crash on modules
20644         with no types.
20645
20646         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
20647
20648         * icall.c (ves_icall_get_method_info): Return callingConvention as
20649         well.
20650
20651         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
20652         namespaces from the EXPORTEDTYPE table as well.
20653
20654         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
20655         from all modules inside the assembly.
20656         
20657 2003-11-11  Martin Baulig  <martin@ximian.com>
20658
20659         * reflection.c (mono_reflection_bind_generic_parameters): Make
20660         this work for interfaces.
20661
20662 2003-11-11  Martin Baulig  <martin@ximian.com>
20663
20664         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
20665
20666 2003-11-11  Martin Baulig  <martin@ximian.com>
20667
20668         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
20669         "MonoInflatedMethod" and "MonoInflatedCtor".
20670
20671 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
20672
20673         * reflection.c (resolution_scope_from_image): Use the assembly table
20674         from the manifest module, since other modules don't have it.
20675
20676         * debug-helpers.c (mono_type_full_name): New helper function.
20677
20678         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
20679
20680         * image.c (mono_image_load_file_for_image): New public function which
20681         is a replacement for the load_file_for_image in class.c.
20682
20683         * assembly.c (mono_assembly_load_module): A wrapper for the function
20684         above which does assembly association and reference loading too.
20685
20686         * class.c (mono_class_from_name): Call mono_assembly_load_module.
20687
20688 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20689
20690         * appdomain.c: not all of the attributes for the full assembly name
20691         are required and the order doesn't matter. Fixes bug #50787.
20692
20693 2003-11-10  Dick Porter  <dick@ximian.com>
20694
20695         * locales.c: Use platform-endian UTF16
20696
20697 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
20698
20699         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
20700         
20701 2003-11-10  Martin Baulig  <martin@ximian.com>
20702
20703         * metadata.c
20704         (mono_metadata_load_generic_params): Make this actually work.
20705
20706         * reflection.c (mono_reflection_bind_generic_parameters): If our
20707         parent is a generic instance, pass all the `types' to it, no
20708         matter whether it has the same number of type parameters or not.
20709
20710 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
20711
20712         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
20713
20714         * assembly.c (mono_assembly_load_references): Move the image<->assembly
20715         assignment code to this function so it gets called recursively for all
20716         modules.
20717
20718         * image.c (load_modules): Remove the assembly assignment since it is
20719         now done by mono_assembly_load_references.
20720         
20721         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
20722         Add 'module' argument.
20723         (mono_module_get_types): New helper function.
20724         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
20725
20726 2003-11-08  Martin Baulig  <martin@ximian.com>
20727
20728         * class.c (mono_class_inflate_generic_method): Interface method
20729         don't have a header.
20730
20731         * reflection.c (mono_image_get_methodspec_token): Take an
20732         additional `MonoGenericInst *' argument instead of reading it from
20733         the header; this is necessary to support interfaces.
20734         (mono_image_create_token): Pass the `MonoGenericInst *' from the
20735         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
20736         (inflated_method_get_object): Take an additional `MonoGenericInst *'
20737         argument.
20738
20739         * reflection.h (MonoReflectionInflatedMethod): Added
20740         `MonoGenericInst *ginst'.
20741
20742 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
20743
20744         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
20745
20746 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
20747
20748         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
20749
20750 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
20751
20752         * reflection.c 
20753         (reflection_methodbuilder_from_method_builder):
20754         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
20755         initialize a ReflectionMethodBuilder structure.
20756         (mono_image_get_methodbuilder_token):
20757         (mono_image_get_ctorbuilder_token): New functions to emit memberref
20758         tokens which point to types in another module inside the same assembly.
20759
20760         * reflection.c: Use the new helper functions.
20761         
20762         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
20763
20764         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
20765         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
20766
20767         * reflection.c (resolution_scope_from_image): Emit a moduleref if
20768         neccesary.
20769
20770         * reflection.c (mono_image_build_metadata): Emit metadata only for the
20771         current module. Emit the manifest only for the main module.
20772
20773         * reflection.c (mono_image_create_token): Add assertion when a 
20774         memberref needs to be created.
20775
20776         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
20777
20778         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
20779         larger buffer for the custom attribute blob. Fixes #50637.
20780         
20781 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20782
20783         * threadpool.c: notify listener on async processing handles after
20784         invoking the async callback. Thanks to Zoltan.
20785
20786 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
20787
20788         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
20789         avoid code duplication.
20790
20791         * reflection.h (MonoDynamicImage): New type which is currently unused,
20792         but will be used through the ref.emit code in place of 
20793         MonoDynamicAssembly.
20794
20795         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
20796         object layout.
20797
20798         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
20799         a MonoDynamicImage instead of just a MonoImage.
20800         
20801         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
20802         icalls to ModuleBuilder but keep their semantics, so they will work
20803         with moduleb->assemblyb. This will change later.
20804         
20805 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
20806
20807         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
20808         object layout.
20809
20810         * reflection.c (mono_image_build_metadata): Avoid creation of a default
20811         main module, since it is now done by the managed code.
20812
20813 2003-11-03  Martin Baulig  <martin@ximian.com>
20814
20815         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
20816         `ginst->klass' here.
20817         (method_encode_methodspec): Don't use the `ginst->generic_method's
20818         klass if it's a generic instance, use `ginst->klass' in this case.
20819
20820 2003-11-03  Martin Baulig  <martin@ximian.com>
20821
20822         * reflection.c (mono_image_get_generic_method_param_info):
20823         Removed, use mono_image_get_generic_param_info() instead.
20824         (mono_image_get_type_info): Write the GenericParam table before
20825         the Method table.  This is neccessary because in the GenericParam
20826         table, type parameters of the class (ie. '!0' etc.) must come
20827         before the ones from its generic methods (ie. '!!0' etc).
20828
20829 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
20830
20831         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
20832
20833 2003-11-02  Martin Baulig  <martin@ximian.com>
20834
20835         * reflection.c (create_generic_typespec): Take a
20836         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
20837         the generic parameters from it.
20838
20839 2003-11-02  Martin Baulig  <martin@ximian.com>
20840
20841         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
20842         instead of a `MonoClassField *' since we just need the type.
20843         (create_generic_typespec): New static function.  Creates a
20844         TypeSpec token for a generic type declaration.
20845         (mono_image_get_generic_field_token): New static function.
20846         (mono_image_create_token): If we're a FieldBuilder in a generic
20847         type declaration, call mono_image_get_generic_field_token() to get
20848         the token.
20849
20850 2003-11-02  Martin Baulig  <martin@ximian.com>
20851
20852         * reflection.h
20853         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
20854         `MonoReflectionGenericInst *declaring_type' and
20855         `MonoReflectionGenericInst *reflected_type' fields.
20856
20857         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
20858         `MonoReflectionGenericInst *declaring_type' and a
20859         `MonoReflectionGenericInst *reflected_type' argument instead of a
20860         single `MonoReflectionGenericInst *type' one.  Set
20861         `res->declaring_type' and `res->reflected_type' from them.
20862         (mono_reflection_inflate_field): Likewise.      
20863
20864 2003-11-02  Martin Baulig  <martin@ximian.com>
20865
20866         * class.c (mono_class_setup_vtable): Don't store generic methods
20867         in the vtable.  
20868
20869 2003-11-02  Martin Baulig  <martin@ximian.com>
20870
20871         * reflection.h (MonoReflectionGenericInst): Added
20872         `MonoReflectionType *declaring_type'.
20873
20874         * reflection.c (mono_reflection_bind_generic_parameters): Use
20875         `if (tb->parent)' instead of `klass->parent'.
20876
20877 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
20878
20879         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
20880         with an empty ASSEMBLY table.
20881
20882         * reflection.c (mono_image_build_metadata): Avoid using the same loop
20883         variable in the inner and outer loops.
20884
20885 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
20886
20887         * metadata.h (mono_metadata_make_token): Put parentheses around macro
20888         argument.
20889
20890         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
20891         
20892         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
20893         icalls. Instead, do everything in managed code. This is needed since
20894         it is hard to restore the original domain etc. in unmanaged code in the
20895         presence of undeniable exceptions.
20896
20897         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
20898         New icalls to push and pop appdomain refs.
20899
20900 2003-10-31  Martin Baulig  <martin@ximian.com>
20901
20902         * class.c (inflate_generic_type): Renamed to
20903         mono_class_inflate_generic_type() and made it public.
20904
20905         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
20906         New interncall.
20907
20908         * loader.c (mono_field_from_memberref): Also set the retklass for
20909         typespecs.
20910
20911         * fielder.c (mono_image_get_inflated_field_token): New static
20912         method; creates a metadata token for an inflated field.
20913         (mono_image_create_token, fixup_method): Added support for
20914         "MonoInflatedField".
20915         (fieldbuilder_to_mono_class_field): New static function.
20916         (mono_reflection_inflate_field): New public function.
20917
20918         * reflection.h
20919         (MonoReflectionGenericInst): Added `MonoArray *fields'.
20920         (MonoReflectionInflatedField): New typedef.     
20921
20922 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
20923
20924         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
20925         for Solaris and other platforms without s6_addr16
20926
20927 2003-10-30  Martin Baulig  <martin@ximian.com>
20928
20929         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
20930         argument instead of two.
20931         (mono_class_inflate_generic_signature): Likewise.
20932         (inflate_generic_header): Likewise.
20933         (mono_class_inflate_generic_method): Likewise.  In addition, if
20934         `ginst->klass' is set, it becomes the new `method->klass'.
20935
20936         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
20937         field.
20938
20939         * reflection.c (encode_generic_method_sig): Write a 0xa as the
20940         first byte. [FIXME]
20941         (method_encode_methodspec): If we have generic parameters, create
20942         a MethodSpec instead of a MethodRef.
20943         (fixup_method): Added support for "MonoInflatedMethod" and
20944         "MonoInflatedCtor".
20945         (mono_image_create_token): Added support for "MonoInflatedMethod"
20946         and "MonoInflatedCtor".
20947         (inflated_method_get_object): New static function; returns a
20948         managed "System.Reflection.MonoInflatedMethod" object.
20949         (mono_reflection_bind_generic_method_parameters): Return a
20950         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
20951         (mono_reflection_inflate_method_or_ctor): Likewise.
20952         (mono_image_get_generic_method_param_info): Initialize unused
20953         fields to zero.
20954         (mono_image_get_generic_param_info): Likewise.
20955
20956         * reflection.h (MonoReflectionInflatedMethod): New public
20957         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
20958         "S.R.MonoInflatedCtor" classes.
20959
20960         * loader.c (method_from_memberref): If we're a TypeSpec and it
20961         resolves to a generic instance, inflate the method.
20962
20963 2003-10-28  Dick Porter  <dick@ximian.com>
20964
20965         * object.c (mono_runtime_run_main): Convert command-line arguments
20966         into utf8, falling back to the user's locale encoding to do so.
20967
20968 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
20969
20970         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
20971         at this time.
20972
20973         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
20974
20975         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
20976         up icalls at method definition time. Partially fixes #33569.
20977
20978 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
20979
20980         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
20981         marshalling of arrays. Fixes #50116.
20982
20983         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
20984
20985         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
20986         points to a vtable in the dying appdomain.
20987
20988         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
20989         listeners into unmanaged code inside the lock.
20990
20991         * object.c (mono_class_vtable): Turn off typed allocation in non-root
20992         domains and add some comments.
20993
20994 2003-10-25  Martin Baulig  <martin@ximian.com>
20995
20996         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
20997
20998         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
20999
21000         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
21001         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
21002         currently parsing.  Create the generic class and store it in
21003         `generic_inst->klass' before parsing the type arguments.  This is
21004         required to support "recursive" definitions; see mcs/tests/gen-23.cs
21005         for an example.
21006         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
21007         to support recursive typespec entries.
21008
21009         * class.c (mono_class_setup_parent): If our parent is a generic
21010         instance, we may get called before it has its name set.
21011         (mono_class_from_generic): Splitted into
21012         mono_class_create_from_generic() and mono_class_initialize_generic().
21013
21014 2003-10-25  Martin Baulig  <martin@ximian.com>
21015
21016         * icall.c (ves_icall_Type_BindGenericParameters): Return a
21017         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
21018         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
21019         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
21020
21021         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
21022         (create_typespec): Likewise.
21023         (mono_reflection_bind_generic_parameters): Return a
21024         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
21025         (mono_reflection_inflate_method_or_ctor): New public function.
21026
21027         * reflection.h (MonoReflectionGenericInst): New typedef.        
21028
21029 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
21030
21031         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
21032         inside the domain lock. Fixes #49993.
21033         
21034         * object.c (mono_class_vtable): When typed allocation is used, 
21035         allocate vtables in the GC heap instead of in the mempool, since the
21036         vtables contain GC descriptors which are used by the collector even
21037         after the domain owning the mempool is unloaded.
21038
21039         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
21040
21041         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
21042         reflect what it does. Also invalidate mempools instead of freeing
21043         them if a define is set.
21044
21045         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
21046         of the appdomain.
21047         
21048         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
21049         hold the finalizable objects in this domain.
21050
21051         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
21052         appdomain.
21053
21054         * appdomain.c (mono_domain_set): New function to set the current
21055         appdomain, but only if it is not being unloaded.
21056
21057         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
21058         appdomain which is being unloaded.
21059         
21060         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
21061         unloading of the root appdomain.
21062
21063         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
21064         icall to execute a method in another appdomain. Intended as a 
21065         replacement for InternalSetDomain, which can confuse the code 
21066         generation in the JIT.
21067
21068         * appdomain.c (mono_domain_is_unloading): New function to determine
21069         whenever an appdomain is unloading.
21070
21071         * appdomain.c (mono_domain_unload): New function to correctly unload
21072         an appdomain.
21073
21074         * assembly.c (mono_assembly_load_references): Check that an assembly
21075         does not references itself.
21076
21077         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
21078         domain manually, it asks the finalizer thread to do it, then waits for
21079         the result. Also added a timeout.
21080
21081         * icall.c: Register the new icalls.
21082
21083         * threads.h threads.c: Export the mono_gc_stop_world and 
21084         mono_gc_start_world functions.
21085         
21086         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
21087         function to fill out the mempool with 0x2a.
21088
21089 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
21090
21091         * reflection.h (MonoReflectionMethodAux): New structure to store
21092         information which is rarely used, thus is not in the MonoMethod
21093         structure.
21094
21095         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
21096         store the aux info.
21097
21098         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
21099         and marshalling info into the aux structure.
21100
21101         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
21102         from the aux structure.
21103
21104         * loader.c (mono_method_get_param_names): Retrieve the param names from
21105         the aux structure.
21106         
21107 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
21108
21109         * exception.h exception.c: Add AppDomainUnloadedException && fix 
21110         warning.
21111
21112 2003-10-21  Dick Porter  <dick@ximian.com>
21113
21114         * socket-io.c
21115         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
21116         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
21117
21118 2003-10-21  Martin Baulig  <martin@ximian.com>
21119
21120         * reflection.c (mono_reflection_bind_generic_parameters):
21121         `klass->parent' is NULL for interfaces.
21122
21123 2003-10-21  Martin Baulig  <martin@ximian.com>
21124
21125         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
21126
21127 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
21128
21129         * exception.c (mono_exception_from_name_msg): New helper function for
21130         creating exceptions and initializing their message field.
21131
21132         * exception.c: Simplify functions using the new helper.
21133
21134         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
21135         New function.
21136
21137         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
21138         mono_raise_exception, since otherwise gcc doesn't generate the function
21139         epilog for raise_exception, confusing the stack unwinding in the JIT.
21140         Fixes #45043.
21141
21142         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
21143         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
21144         Fixes #49499.
21145
21146 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21147
21148         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
21149         utf8.
21150
21151 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
21152
21153         * icall.c: Removed GetUninitializedObject method because
21154           AllocateUninitializedClassInstance does the same.
21155
21156 2003-10-18  Martin Baulig  <martin@ximian.com>
21157
21158         * class.c (inflate_generic_signature): Renamed to
21159         mono_class_inflate_generic_signature() and made it public.
21160         (my_mono_class_from_generic_parameter): New static function; if we
21161         don't already have the generic parameter's MonoClass, create a
21162         very simple one which is just used internally in the runtime and
21163         not passed back to managed code.
21164
21165         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
21166
21167         * metadata.h (MonoMethodSignature): Moved the
21168         `MonoGenericParam *gen_params' to the MonoMethodHeader.
21169         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
21170
21171         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
21172         ves_icall_MonoMethod_GetGenericArguments(); this is now an
21173         interncall on the MonoMethod class, not on MethodInfo.
21174         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
21175         calling mono_reflection_bind_generic_method_parameters() directly.
21176
21177         * loader.c (mono_method_get_signature): If this is a MethodSpec;
21178         return the already computed `method->signature'.
21179         (method_from_methodspec): New static function to load a method
21180         from a MethodSpec entry.
21181         (mono_get_method_from_token): Call the new method_from_methodspec()
21182         for MethodSpec tokens.  
21183         (mono_get_method_from_token): If we're a generic method, load the
21184         type parameters.
21185
21186         * reflection.c (mono_image_get_memberref_token): Allow
21187         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
21188         table.
21189         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
21190         (mono_image_create_token): First check whether it's a generic
21191         method (so we'd need to create a MethodSpec), then do the other
21192         two alternatives.
21193         (mono_reflection_bind_generic_method_parameters): Return a
21194         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
21195         called directly from the interncall.
21196
21197 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
21198
21199         * reflection.c (load_public_key): Move loading of the public key
21200         into managed code.
21201
21202         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
21203
21204         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
21205         fields.
21206
21207         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
21208         culture, hash_alg and public_key. Fixes #49555.
21209
21210 2003-10-17  Martin Baulig  <martin@ximian.com>
21211
21212         * class.h (MonoGenericInst): Moved this declaration here and added
21213         `MonoMethod *generic_method'.
21214
21215         * icall.c
21216         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
21217         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
21218
21219         * metadata.c (mono_metadata_type_equal): Two types of
21220         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
21221         index; ie. don't compare the address of the `MonoGenericParam'
21222         structure.
21223         (mono_metadata_load_generic_params): Removed the `MonoMethod
21224         *method' argument.
21225
21226         * metadata.h (MonoGenericInst): Moved declaration to class.h.
21227         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
21228
21229         * reflection.c (method_encode_signature): Encode the number of
21230         generic parameters.
21231         (encode_generic_method_sig): New static function.
21232         (method_encode_methodspec): New static function; creates an entry
21233         in the MethodSpec table for a generic method.
21234         (mono_image_get_methodspec_token): New static function.
21235         (mono_image_create_token): Call mono_image_get_methodspec_token()
21236         for generic methods.
21237         (mono_reflection_bind_generic_method_parameters): New public
21238         function.  Instantiates a generic method.
21239
21240 2003-10-16  Martin Baulig  <martin@ximian.com>
21241
21242         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
21243         *gen_params' here from MonoMethodHeader.
21244
21245         * metadata.c (mono_metadata_parse_method_signature): If we have
21246         generic parameters, initialize `method->gen_params' and then set
21247         the correct `type->data.generic_param' in all the parameters.
21248
21249 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
21250
21251         * threads.c (mono_threads_get_default_stacksize): New function to 
21252         return the default stacksize.
21253
21254         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
21255         termination of the finalizer thread, since the previous method had
21256         race conditions. Fixes #49628.
21257
21258         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
21259         as for the other managed threads.
21260
21261 2003-10-16  Martin Baulig  <martin@ximian.com>
21262
21263         * class.c (inflate_generic_signature): Copy `generic_param_count'
21264         and `gen_params'.
21265
21266         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
21267         New interncall.
21268
21269         * metadata.c (mono_metadata_parse_method_signature): Actually set
21270         the `method->generic_param_count' here.
21271         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
21272
21273 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
21274
21275         * object.h: Add a new field to TypedRef to simplify the implementation
21276         of the REFANY opcodes in the JIT.
21277
21278         * icall.c: Make use of the new field.
21279
21280         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
21281         dynamically.
21282
21283 2003-10-15  Martin Baulig  <martin@ximian.com>
21284
21285         * class.c (mono_class_from_gen_param): Renamed to
21286         mono_class_from_generic_parameter() and moved most of the
21287         functionality from mono_reflection_define_generic_parameter()
21288         here; ie. we create a "real" class here.
21289         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
21290         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
21291         previously been called.
21292
21293         * class.h (MonoGenericParam): Moved the declaration of this struct
21294         here from metadata.h and added `MonoMethod *method'.
21295
21296         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
21297         interncall.
21298
21299         * loader.c (mono_get_method_from_token): If we have any generic
21300         parameters, call mono_metadata_load_generic_params() to read them
21301         from the MONO_TABLE_GENERICPAR.
21302
21303         * metadata.c (mono_metadata_load_generic_params): Added
21304         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
21305
21306         * metadata.h (MonoMethodSignature): Replaced
21307         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
21308         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
21309
21310         * reflection.c (mono_reflection_define_generic_parameter): Moved
21311         most of the functionality into the new
21312         mono_class_from_generic_parameter(); set the `method' field if
21313         we're a method parameter.       
21314
21315 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
21316
21317         * marshal.c (emit_struct_conv): if native size is 0
21318         emit no code.
21319
21320 2003-10-14  Martin Baulig  <martin@ximian.com>
21321
21322         * icall.c: The generics API has changed in the spec since it was
21323         added to System.Type; these modifications make it match the spec
21324         again.
21325         (ves_icall_Type_GetGenericParameters): Renamed to
21326         `ves_icall_Type_GetGenericArguments'.
21327         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
21328         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
21329         `ves_icall_MonoType_get_HasGenericArguments'.
21330         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
21331         `ves_icall_MonoType_get_IsGenericParameter'.
21332         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
21333         this is no interncall anymore.
21334         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
21335         `ves_icall_TypeBuilder_get_IsGenericParameter'.
21336
21337 2003-10-14  Martin Baulig  <martin@ximian.com>
21338
21339         * reflection.c (mono_reflection_bind_generic_parameters): Also
21340         inflate generic methods if we're reading the class from IL.
21341
21342 2003-10-13  Martin Baulig  <martin@ximian.com>
21343
21344         * reflection.c (mono_reflection_define_generic_parameter): This
21345         method isn't called directly from the icall anymore; take a
21346         `MonoReflectionAssemblyBuilder *' so we can use this for type and
21347         method generic parameters.
21348         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
21349         (method_builder_encode_signature): Encode generic parameters.
21350         (mono_image_get_method_info): Write generic params to the
21351         MONO_TABLE_GENERICPARAM table.
21352
21353         * reflection.h (MonoReflectionMethodBuilder): Added
21354         `MonoArray *generic_params'.
21355
21356         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
21357
21358         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
21359         wrapper for mono_reflection_define_generic_parameter().
21360         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
21361
21362 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
21363
21364         * marshal.h: Add missing function to fix build.
21365
21366         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
21367         the SetLastError pinvoke attribute.
21368
21369         * marshal.c (mono_marshal_set_last_error): New helper function called
21370         by the generated code.
21371         
21372         * marshal.c (mono_mb_emit_branch): New helper function.
21373
21374         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
21375
21376         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
21377         classes as parameters and return values of delegates. Fixes #29256. 
21378
21379 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
21380
21381         * locales.c: use gint32 in non HAVE_ICU case
21382
21383 2003-10-11  Martin Baulig  <martin@ximian.com>
21384
21385         * mono-debug.c (mono_debug_add_method): Added a workaround for
21386         bug #48591.
21387
21388 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
21389
21390         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
21391         delegates passed to native code must use the STDCALL calling 
21392         convention. Fixes #35987.
21393
21394 2003-10-10  Martin Baulig  <martin@ximian.com>
21395
21396         * class.c (inflate_generic_type): If we're inflating for a generic
21397         type instance (and not for a generic method), return
21398         MONO_TYPE_MVAR unchanged.
21399
21400 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21401
21402         * string-icalls.c: Join ignores null strings in the source array.
21403         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
21404         * threads.c: GetAvailableTheads is slightly more accurate.
21405
21406 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
21407
21408         * threads.h threads.c : add mono_threads_set_default_stacksize
21409         and pass default to CreateThread calls.
21410
21411 2003-10-09  Dick Porter  <dick@ximian.com>
21412
21413         * icall.c:
21414         * locales.h:
21415         * locales.c: Internal calls for constructing CultureInfo and
21416         related objects from libicu (if its available.)
21417
21418 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
21419
21420         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
21421
21422 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21423
21424         * threadpool.c: added an argument to async_invoke_thread that is the
21425         item to process, pass the MonoAsyncResult to the thread start function
21426         when creating a new thread. This way we don't need to acquire any lock
21427         when we're creating a new thread. Readded a semaphore for faster
21428         response times (instead of that Sleep i added).
21429
21430 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
21431
21432         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
21433         get daylight change dates better on Windows, fix handling
21434         of platforms without tm_gmtoff.
21435
21436 2003-10-06  Martin Baulig  <martin@ximian.com>
21437
21438         * class.c (inflate_generic_method): Renamed to
21439         mono_class_inflate_generic_method() and made public.
21440         (mono_class_init): Don't inflate the generic methods here.
21441         (mono_class_from_generic): Added `gboolean inflate_methods'
21442         argument.  Inflate the methods here.
21443
21444         * loader.c (mono_method_get_param_names): Ignore instances of
21445         generic types for the moment.
21446
21447         * reflection.c (fixup_method): Added support for inflated methods.
21448         (mono_image_create_token): Use mono_image_get_methodref_token()
21449         for inflated methods.
21450         (mono_custom_attrs_from_param): Ignore instances of generic types
21451         for the moment.
21452         (mono_reflection_bind_generic_parameters): New public function.
21453         Moved all the functionality from
21454         ves_icall_Type_BindGenericParameters() here and added support for
21455         dynamic types.
21456         (mono_reflection_define_generic_parameter): Initialize
21457         `klass->methods' here.
21458
21459         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
21460         functionality into mono_reflection_define_generic_parameter().
21461         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
21462         TypeBuilder, return that TypeBuilder.
21463
21464 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21465
21466         * appdomain.c: removed mono_delegate_semaphore.
21467
21468         * threadpool.c:
21469         (mono_thread_pool_add): moved hash table creation inside and the thread 
21470         creation outside of the critical region.
21471         (mono_thread_pool_finish): removed obsolete code.
21472         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
21473         continue or exit the thread depending on the queue.
21474
21475 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
21476
21477         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
21478         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
21479         handle more bool marshalling options
21480
21481 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
21482
21483         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
21484         arrays of structs. Also add a more descriptive error message when
21485         a structure member is marshalled as LPArray.
21486
21487 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
21488
21489         * marshal.c (mono_marshal_get_native_wrapper): Add support for
21490         marshalling arrays of complex types. Fixes #29098. Also remove an
21491         usused and incomplete function.
21492
21493 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
21494
21495         * gc.c: report heap_size - free_bytes as total memory allocated
21496         (bug#49362).
21497
21498 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
21499
21500         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
21501         fix timezone handling problems on Windows.
21502         
21503         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
21504         asserts when the year is outside the range handled by ms the functions.
21505
21506         * class.c (setup_interface_offsets): If the class is an interface,
21507         fill out its interface_offsets slot.
21508
21509 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21510
21511         * threadpool.c: mark threadpool threads as background.
21512
21513 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
21514
21515         * decimal.c - define DECINLINE to nothing if not using GCC
21516
21517 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
21518
21519         * assembly.c: More refcount fixes.
21520
21521 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21522
21523         * string-icalls.c: if we're not trimming, return the same string.
21524         When not splitting, don't create a new string.
21525
21526 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21527
21528         * image.c:
21529         (mono_image_open): increment the ref_count inside the critical section.
21530
21531 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
21532
21533         * image.c (mono_image_open): Fix reference counting bug.
21534
21535 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
21536
21537         * marshal.c (mono_marshal_type_size) struct alignment changed for 
21538         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
21539         64bits. Avoid leak in mono_marshal_get_native_wrapper when
21540         mono_lookup_pinvoke_call throws.        
21541
21542 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
21543
21544         * reflection.c (mono_reflection_parse_type): Fix #49114.
21545
21546         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
21547         temporary workaround for cygwin header problem.
21548
21549         * object.c (mono_object_isinst): Synchronize this with the code
21550         generated by the JIT for casts.
21551
21552 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
21553
21554         * reflection.c (encode_type): Fix #38332.
21555
21556 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
21557
21558         * marshal.c (mono_marshal_method_from_wrapper): New function to return
21559         the original method from the wrapper method.
21560
21561 2003-09-25  Martin Baulig  <martin@ximian.com>
21562
21563         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
21564         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
21565         (ves_icall_Type_get_IsGenericInstance): New interncall.
21566
21567 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
21568
21569         * object.c: fix cast warning in big endian code.
21570
21571 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
21572
21573         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
21574         
21575 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21576
21577         * assembly.c: don't call check_env from mono_assembly_load. It's
21578         already done once in mono_assemblies_init and may cause headaches when
21579         multiple threads are loading assemblies.
21580
21581 2003-09-19  Martin Baulig  <martin@ximian.com>
21582
21583         * reflection.c (mono_reflection_define_generic_parameter): Don't
21584         allocate `klass->methods', set `klass->flags' to
21585         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
21586
21587 2003-09-18  Martin Baulig  <martin@ximian.com>
21588
21589         * class.c (mono_class_init): Don't create `class->methods' if it's
21590         already initialized.
21591
21592         * metadata.c (mono_metadata_load_generic_params): Make this
21593         actually work.
21594
21595         * reflection.c (mono_reflection_define_generic_parameter): Set
21596         parent class and interfaces from the constraints.
21597
21598         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
21599         to keep this struct in sync with the declaration in TypeBuilder.cs.
21600
21601 2003-09-17  Martin Baulig  <martin@ximian.com>
21602
21603         * metadata.h (MonoType): Replaced the data's `int type_param'
21604         field with `MonoGenericParam *generic_param'.
21605         (MonoGenericParam): Added `MonoClass *klass'.
21606
21607         * class.c (mono_class_from_gen_param): Removed the
21608         `MonoImage *image' and `int type_num' arguments.
21609
21610         * metadata.c (mono_metadata_parse_generic_param): New static
21611         method; creates a MonoGenericParam which just contains the index.
21612         (do_mono_metadata_parse_type): Call
21613         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
21614         MONO_TYPE_MVAR.
21615
21616         * reflection.c (mono_image_typedef_or_ref): Generic type
21617         parameters may be in the same assembly, but never use a typedef
21618         for them.
21619         (mono_reflection_define_generic_parameter): We're now creating a
21620         "real" class for the type parameter; it's now safe to call
21621         mono_class_from_mono_type() on the class'es type, it'll do the
21622         right thing.
21623
21624 2003-09-16  Martin Baulig  <martin@ximian.com>
21625
21626         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
21627         `symfile->range_entry_size' and `symfile->class_entry_size' here;
21628         the `symfile' data structure must be fully initialized before it
21629         gets added to the table.
21630
21631 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
21632
21633         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
21634
21635         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
21636         class init trampolines.
21637
21638 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
21639
21640         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
21641         to the built-in profiler to turn off time and allocation profiling
21642         respectively.
21643
21644 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
21645
21646         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
21647         g_direct_equal.
21648
21649         * debug-helpers.c (mono_method_full_name): Print the wrapper type
21650         in human readable form.
21651
21652 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
21653
21654         * reflection.c icall.c: Fixed warnings.
21655
21656         * image.c (load_class_names): Use a temporary hash table to hold the
21657         namespaces in order to avoid doing many string comparisons.
21658
21659         * image.h: Fix typo.
21660
21661         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
21662         Pass NULL instead of g_direct_equal to the GHashTable constructor 
21663         since the NULL case is short-circuited inside g_hash_table_lookup, 
21664         leading to better performance.  
21665
21666         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
21667         obtain the first custom attribute for a given index. Depends on the
21668         CustomAttribute table being sorted by the parent field.
21669
21670         * reflection.c (mono_custom_attrs_from_index): Use the new function 
21671         for better performance.
21672
21673 2003-09-07  Martin Baulig  <martin@ximian.com>
21674
21675         * class.c (mono_class_init): If we're a generic instance, inflate
21676         all our methods instead of loading them from the image.
21677         (mono_class_from_generic): Set `class->methods = gklass->methods'.
21678
21679 2003-09-07  Martin Baulig  <martin@ximian.com>
21680
21681         * mono-debug-debugger.c: Added support for constructors.
21682
21683 2003-09-06  Martin Baulig  <martin@ximian.com>
21684
21685         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
21686         New interncall.
21687
21688         * reflection.c (mono_reflection_setup_generic_class): Call
21689         ensure_runtime_vtable() to create the vtable.
21690
21691 2003-09-05  Martin Baulig  <martin@ximian.com>
21692
21693         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
21694         MONO_TYPE_MVAR.
21695
21696 2003-09-04  Martin Baulig  <martin@ximian.com>
21697
21698         * reflection.c (mono_reflection_define_generic_parameter): Generic
21699         parameters start with zero.
21700
21701 2003-09-04  Martin Baulig  <martin@ximian.com>
21702
21703         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
21704
21705         * reflection.h (MonoReflectionGenericParam): New typedef.
21706         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
21707         the generic parameters from the managed TypeBuilder.
21708
21709         * reflection.c (mono_reflection_define_generic_parameter): New function.
21710         (mono_reflection_create_runtime_class): Encode generic parameters.
21711         (mono_reflection_setup_generic_class): New function; this is
21712         called after adding adding all generic params to the TypeBuilder.
21713         (encode_type): Added MONO_TYPE_VAR.
21714
21715 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
21716
21717         * class.h class.c (mono_class_needs_cctor_run): Moved this method
21718         here from the JIT.
21719
21720         * assembly.h assembly.c: Moved the AOT loading code into an assembly
21721         load hook.
21722
21723 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
21724
21725         * reflection.h reflection.c class.h class.c: Delete duplicate 
21726         definition of mono_type_get_name () from reflection.c and export the
21727         one in class.c.
21728
21729         * class.c: Class loading fixes from Bernie Solomon 
21730         (bernard@ugsolutions.com).
21731
21732         * reflection.c: Endianness fixes from Bernie Solomon 
21733         (bernard@ugsolutions.com).
21734         
21735 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
21736
21737         * assembly.h assembly.c: Define a file format version for AOT
21738         libraries.
21739         
21740         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
21741
21742         * appdomain.h (MonoJitInfo): New field to determine whenever the
21743         code is domain neutral.
21744         
21745 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
21746
21747         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
21748
21749 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
21750
21751         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
21752         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
21753         Avoid caching the result since strings must be domain specific. Fixes
21754         #48050.
21755
21756 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
21757
21758         * marshal.c (mono_marshal_init): Make this callable multiple times
21759         since it is hard to find a correct place to call it.
21760
21761         * object.c (mono_runtime_class_init): Execute static constructors in
21762         the correct appdomain.
21763
21764         * image.c (build_guid_table): Handle the case when multiple images have
21765         the same GUID.
21766
21767 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21768
21769         * icall.c: added a couple of icalls for System.Web.
21770
21771 2003-08-28  Martin Baulig  <martin@ximian.com>
21772
21773         * icall.c (ves_icall_Type_BindGenericParameters): Use
21774         `klass->generic_inst' instead of `&klass->byval_arg' in the
21775         mono_type_get_object() call.  The returned type must be
21776         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
21777
21778 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
21779
21780         * NOTES: New file.
21781
21782         * object.c (mono_class_proxy_vtable): Make it thread safe.
21783
21784         * pedump.c: Fix warning.
21785
21786         * object.c appdomain.h: Get rid of metadata_section. 
21787         It is no longer needed and it was causing deadlocks with domain->lock.
21788
21789         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
21790
21791 2003-08-26  Martin Baulig  <martin@ximian.com>
21792
21793         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
21794
21795 2003-08-26  Martin Baulig  <martin@ximian.com>
21796
21797         * pedump.c (main): Call mono_metadata_init(),
21798         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
21799         and mono_loader_init().
21800
21801 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
21802
21803         * loader.h: Add missing include to fix build.
21804
21805         * image.h: mono_image_load_references is no more.
21806
21807         * assembly.c: Reworked assembly loading to make it really thread safe.
21808         After these changes, the assembly returned by mono_assembly_open is
21809         fully initialized, i.e. all its references assemblies are loaded.
21810
21811         * assembly.c (mono_image_load_references): Renamed to 
21812         mono_assembly_load_references, and made private, since clients no
21813         longer need to call it.
21814
21815         * class.c: Removed calls to mono_assembly_load_references, since it was
21816         a source of deadlocks.
21817
21818         * loader.h loader.c class.h class.c: Protect data structures using a 
21819         new lock, the loader lock.
21820
21821         * class.c (mono_class_setup_vtable): Create temporary hash tables and
21822         GPtrArrays only when needed.
21823
21824         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
21825         into empty structures by mcs. Fixes pinvoke7.cs.
21826         
21827         * domain.c (mono_init): Call a new initialization function.
21828
21829         * appdomain.c (mono_runtime_init): Call the new initializer function
21830         of the marshal module.
21831
21832         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
21833         inserted into empty structures by mcs. Fixes pinvoke7.cs.
21834
21835         * marshal.h marshal.c: Added locks around the wrapper caches to make
21836         this module thread safe.
21837
21838         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
21839         this argument. Fixes pinvoke1.exe.
21840
21841 2003-08-25  Lluis Sanchez <lluis@ximian.com>
21842
21843         * object.h: Added call_type field to MonoMethodMessage and the corresponding
21844         enumeration of values. Removed fields to store remote call output values in
21845         MonoAsyncResult. Not needed any more.
21846         * object.c: Initialize call_type and async_result fields in mono_message_init.
21847         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
21848         dispatching the message.
21849         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
21850         async call to finish. To do it use a message with EndInvoke call type.
21851
21852 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
21853
21854         * loader.h loader.c (mono_method_hash_marhal_info): New function which
21855         determines whenever a method has marshalling info.
21856
21857 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21858
21859         * assembly.c: fix the build on windows.
21860
21861 2003-08-22 Lluis Sanchez <lluis@ximian.com>
21862
21863         * object.cs: Fixed bug #47785.
21864
21865 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
21866
21867         * string-icalls.c (StringReplace): If their are no occurances of
21868         the old string found return a reference to the supplied
21869         string. This saves some memory and matches MS behavoir.
21870         
21871 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21872
21873         * socket-io.c: fixed compilation for systems that define AF_INET6
21874         and don't define SOL_IP/SOL_IPV6.
21875
21876 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
21877
21878         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
21879         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
21880
21881         * rawbuffer.c rawbuffer.h: Make this module thread safe.
21882
21883         * domain.c: Make this module thread safe.
21884
21885         * domain.c (mono_init): Call new initialization function.
21886
21887         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
21888         reference types too. Fixes #38812.
21889
21890         * image.c (mono_image_init): Fixed warnings.
21891
21892         * class.c (mono_class_from_typeref): Handle assembly load failure
21893         correctly.
21894
21895         * appdomain.c (add_assemblies_to_domain): Handle the case when
21896         the references of an assembly are not yet loaded.
21897
21898         * metadata.c image.c assembly.c: Moved initialization of global
21899         variables to a separate function called at startup since lazy 
21900         initialization of these variables is not thread safe.
21901         
21902         * image.c assembly.c: Made this module thread safe by adding locks in 
21903         the appropriate places.
21904
21905         * domain.c (mono_init): Call the new initialization functions of the
21906         three modules.
21907
21908 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
21909
21910         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
21911           make a direct call. It is proxy's work to make the call asynchronous.
21912           mono_delegate_end_invoke(): If the targe is a proxy, just collect
21913           the return values.
21914         * object.cs: mono_method_call_message_new(): read AsyncResult and
21915           state object from parameters list, if this info is requested.
21916         * object.h: Added fields to store remote call output values in
21917           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
21918
21919 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
21920
21921         * object.h: add needed fields to MonoThread.
21922         * threads.c, threads.h: allow registering a function to cleanup data
21923         allocated per thread by the JIT.
21924
21925 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
21926
21927         * loader.h: portability fix by Bernie Solomon
21928         * <bernard@ugsolutions.com>.
21929
21930 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
21931
21932         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
21933         return a MonoArray. This simplifies the code and also ensures that
21934         the cache allways contains an object reference as a value.
21935
21936         * icall.c (ves_icall_get_parameter_info): Simplified using the new
21937         function.
21938
21939 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21940
21941         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
21942         fixes a problem with byte ordering when getting the address family for
21943         a socket.
21944
21945 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
21946
21947         * .cvsignore: Added monosn.
21948
21949         * reflection.h reflection.c loader.c: Added support for parameter
21950         marshalling to dynamically created types. Fixes #47295.
21951
21952 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
21953
21954         * rand.c: remove useless warnings.
21955
21956 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
21957
21958         * class.c: implemented ldtoken for methods and fieldrefs.
21959
21960 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21961
21962         * threadpool.c: when mono_async_invoke was called, no one took care of
21963         monitoring the queue. So if the method invoked took some time and we
21964         got new async invoke requests after 500 ms (the thread created waited
21965         that long in WaitForSingleObject), the new async invoke was not called
21966         until the previous one finished.
21967
21968         This is fixed now. Thanks to Totte for helping with it.
21969
21970 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21971
21972         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
21973
21974 2003-08-11  Martin Baulig  <martin@ximian.com>
21975
21976         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
21977
21978 2003-08-06  Martin Baulig  <martin@ximian.com>
21979
21980         * mono-debug-debugger.c: Added support for static fields,
21981         properties and methods.
21982
21983 2003-08-06  Martin Baulig  <martin@ximian.com>
21984
21985         * mono-debug-debugger.c: Don't store the MonoString's vtable to
21986         make this work for applications with multiple application domains.
21987
21988 2003-08-04  Martin Baulig  <martin@ximian.com>
21989
21990         * mono-debug-debugger.c: Completely reworked the type support; the
21991         most important thing is that we're now just using one single
21992         `MonoType' instance per type.
21993
21994 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
21995
21996         * mono-endian.h, mono-endian.c, icall.c: Added icall
21997         ves_icall_System_Double_AssertEndianity to assert double word endianity
21998         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
21999
22000 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22001
22002         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
22003         support, icalls and fixes.
22004
22005 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
22006
22007         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
22008         classes that are a punctuation character in .NET is not the same a
22009         g_unichar_ispunct.
22010
22011 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22012
22013         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
22014
22015 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
22016
22017         * icall.c: Add new MemCopy internalcall.
22018         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
22019         Simplified code; It is not necessary to handle all the cases here,
22020         as the C# code takes care of it.  Only handle the case of the name
22021         resource embedded into the assembly.
22022
22023         Changed signature to return the data pointer and the size of the
22024         data. 
22025
22026 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
22027
22028         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
22029         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
22030
22031 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
22032
22033         * socket-io.c: ignore EINTR error in select.
22034
22035 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
22036
22037         * class.h, class.c: removed unused subclasses field in MonoClass.
22038
22039 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
22040
22041         * icall.c: improve fix of get_base_definition(). If the parent class
22042           doesn't have the mehod, look at the parent of the parent.
22043         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
22044           to check if a parameter is an in or out parameter
22045           (PARAM_ATTRIBUTE_IN is not set by default).
22046           mono_method_return_message_restore(): Use mono_class_value_size to
22047           get the size of a value type. mono_type_stack_size (parameterType)
22048           does not return the correct value if parameterType is byRef.
22049           mono_load_remote_field(), mono_load_remote_field_new(),
22050           mono_store_remote_field(), mono_store_remote_field_new():
22051           raise exception if the remote call returns an exception.
22052
22053 2003-07-28  Martin Baulig  <martin@ximian.com>
22054
22055         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
22056         method.  This is a wrapper around mono_runtime_invoke() which
22057         boxes the instance object if neccessary.
22058
22059 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22060
22061         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
22062         metadata.h, row-indexes.h, verify.c: first cut of generics support.
22063
22064 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22065
22066         * icall.c: disable mcs bug workaround.
22067
22068 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
22069
22070         * object.c (mono_runtime_class_init): Take the metadata_section
22071         mutex before obtaining the domain mutex.
22072
22073         * appdomain.h: Added definition of metadata_section mutex here. 
22074
22075         * object.c: define metadata_mutex here.
22076
22077 2003-07-24  Ravi Pratap  <ravi@ximian.com>
22078
22079         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
22080         fixed.
22081
22082 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
22083
22084         * reflection.c: Fix bug #46669
22085
22086 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22087
22088         * exception.c:
22089         * exception.h:
22090         * icall.c:
22091         * object.h: fill in the type name for TypeLoadException.
22092
22093 2003-07-23  Ravi Pratap  <ravi@ximian.com>
22094
22095         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
22096         relationship between TypeBuilders while compiling corlib) and bug
22097         45993 (Array types returned from the runtime while compiling
22098         corlib were from the loaded corlib).
22099
22100 2003-07-22  Martin Baulig  <martin@ximian.com>
22101
22102         * mono-debug-debugger.c: Reworked the type support a bit more;
22103         distinguish between types and classes.
22104
22105 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
22106
22107         * icall.c: add IsArrayImpl icall.
22108
22109 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
22110
22111         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
22112         initializing real_size only once. Also fix bug #46602.
22113
22114 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
22115
22116         * object.c: Renamed mono_metadata_section to metadata_section.
22117
22118 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
22119
22120         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
22121           empty array if the type is an array. Fixed.
22122           ves_icall_MonoMethod_get_base_definition: if the base method
22123           is abstract, get the MethodInfo from the list of methods of
22124           the class.
22125         * reflection.c: ParameterInfo.PositionImpl should be zero-based
22126           and it was 1-based. Fixed in mono_param_get_objects.
22127
22128 2003-07-20  Martin Baulig  <martin@ximian.com>
22129
22130         * mono-debug.h: Set version number to 31.
22131         (mono_debug_init): Added `MonoDomain *' argument.
22132
22133         * mono-debug-debugger.c: Reworked the type support; explicitly
22134         tell the debugger about builtin types; pass the `klass' address to
22135         the debugger.
22136
22137 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
22138
22139         * image.c: Allow new metadata tables to be loaded without a
22140         warning. Also update the warning message to give the new constant value.
22141                 
22142 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
22143
22144         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
22145         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
22146         array type representation changes.
22147
22148 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
22149
22150         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
22151         on Environment.Exit () call.
22152
22153 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
22154
22155         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
22156         requires a matching corlib.
22157
22158 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
22159
22160         * Changelog: My editor decided to add a CR to each line. Sorry about that.
22161           Committed again without the CRs.
22162         
22163 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
22164
22165         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
22166           getting it from the "this" socket instance. Did not work
22167           if the socket is a subclass of Socket.
22168           Also fixed bug #35371.
22169
22170 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
22171
22172         * metadata.c: fixed size for TypedByRef.
22173         * loader.c: when searching for a method, consider the vararg amrker.
22174         * unicode.c, decimal.c: constify some arrays.
22175
22176 2003-07-15  Dick Porter  <dick@ximian.com>
22177
22178         * socket-io.c: Fixed compilation for gcc < 3.2.
22179
22180         Fixed compilation for machines that don't have AF_INET6 (thanks to
22181         Bernie Solomon <bernard@ugsolutions.com> for that part.)
22182
22183         Fixed compile warnings.
22184         
22185         Fixed formatting and line endings.
22186
22187 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
22188
22189         * socket-io.h:
22190         * socket-io.c: Added IPv6 support.
22191
22192 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
22193
22194         * class.c (mono_class_is_assignable_from): New function to implement
22195         the is_assignable_from logic. Used by mono_object_isinst, 
22196         Type::IsAssignableFrom () and the interpreter.
22197
22198         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
22199         Object, even interfaces.
22200         
22201         * object.c (mono_object_isinst): Implement in terms of 
22202         is_assignable_from.
22203
22204         * icall.c (ves_icall_type_is_assignable_from): New icall.
22205
22206 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
22207
22208         * domain.c (foreach_domain): fix compiler warning.
22209
22210 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
22211
22212         * image.c (load_metadata_ptrs): use g_strndup because strndup is
22213         not available on all plattforms
22214
22215 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
22216
22217         * image.h image.c: Store the metadata version string in MonoImage.
22218         * icall.c: New icall to retrieve the image version.
22219         * reflection.c (create_dynamic_image): Fill in the image version field
22220         * reflection.c (build_compressed_metadata): Use the image version
22221         from the image structure.
22222
22223 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22224
22225         * appdomain.c: modified comment.
22226         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
22227         That will be its last iteration when mono_gc_cleanup is called from
22228         mono_runtime_cleanup and before the domain is unloaded.
22229
22230         Fixes bug #45962.
22231
22232 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
22233
22234         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
22235         attributes.
22236
22237 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22238
22239         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
22240         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
22241         Bernie Solomon <bernard@ugsolutions.com>.
22242
22243 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
22244
22245         * object.c, object.h: provide mono_object_new_fast() for faster
22246         allocation in some special cases.
22247
22248 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
22249
22250         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
22251         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
22252
22253 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
22254
22255         * threadpool.c: fix leaks.
22256
22257 2003-07-01  Dick Porter  <dick@ximian.com>
22258
22259         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
22260         using MonoGHashTables.  Fixes threadpool bug posted to list.
22261
22262 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
22263
22264         * image.h, image.c: added support to load an assembly from a byte array.
22265         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
22266         assembly bundle support.
22267
22268 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
22269
22270         * threadpool.c (mono_thread_pool_add): keep a reference to the
22271         AsyncResult to prevent GC
22272
22273 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
22274
22275         * class.c: leak fix.
22276
22277 2003-06-25  Dick Porter  <dick@ximian.com>
22278
22279         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
22280         for the async object, the WaitHandle object will close the handle.
22281         Fixes bug 45321.
22282
22283 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
22284
22285         * class.c: in mono_array_class_get (), lookup from the hash with the
22286         same type we insert: this works around a bug in
22287         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
22288         lluis. The real fix will have to wait for after the release.
22289
22290 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
22291
22292         * icall.c: fix memory leak when getting type members.
22293
22294 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
22295
22296         * reflection.c: added more pubtoken special cases.
22297
22298 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
22299
22300         * class.c: handle field offset correctly when class size
22301         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
22302
22303 2003-06-20  Martin Baulig  <martin@ximian.com>
22304
22305         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
22306         *image' field.
22307
22308 2003-06-20  Martin Baulig  <martin@ximian.com>
22309
22310         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
22311
22312 2003-06-20  Martin Baulig  <martin@ximian.com>
22313
22314         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
22315         just distinguish between variables in registers and variables at
22316         an offset relative to a register.
22317
22318 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22319
22320         * icall.c: #ifdef out latest changes until mcs is fixed.
22321
22322 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
22323
22324         * icall.c: return members in metadata order.
22325
22326 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
22327
22328         * icall.c: avoid infinite loop in GetTimeZoneData.
22329
22330 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
22331
22332         * icall.c: added Marshal.Prelink/All icalls.
22333
22334 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
22335
22336         * object.c, object.h: fix warnings and do some overflow checking
22337         when creating arrays.
22338
22339 2003-06-17  Dick Porter  <dick@ximian.com>
22340
22341         * file-io.h:
22342         * file-io.c: File attributes need to be tweaked slightly when
22343         passed from the managed to the w32 world.
22344
22345 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
22346         * profiler.h profiler-private.h profiler.c: Rework last patch
22347         based on suggestion by Paolo.
22348         
22349 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
22350
22351         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
22352         instruction level coverage data collection.
22353         * profiler.h profiler.c (: Added new callback function which can be
22354         used by the profiler to limit which functions should have coverage
22355         instrumentation.
22356         * profiler.c (mono_profiler_load): Call g_module_build_path to
22357         generate the file name of the profiler library.
22358
22359 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22360
22361         * profiler.c, profiler.h, profiler-private.h: added basic block 
22362         coverage profiling API.
22363
22364 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
22365
22366         * reflection.c (mono_reflection_create_runtime_class): Add support
22367         for events in dynamically generated code.
22368
22369         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
22370         not allocated.
22371
22372 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
22373
22374         * icall.c: when getting timezone info, return reasonable values if we
22375         can't get the actual data.
22376
22377 2003-06-14  Dick Porter  <dick@ximian.com>
22378
22379         * threads.c (start_wrapper): Remove the reference to the thread
22380         object in the TLS data, so the thread object can be finalized.
22381         This won't be reached if the thread threw an uncaught exception,
22382         so those thread handles will stay referenced :-( (This is due to
22383         missing support for scanning thread-specific data in the Boehm GC
22384         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
22385
22386 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
22387
22388         * reflection.c: ensure streams and tables are first allocated with
22389         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
22390
22391 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22392
22393         * icall.c: fixed GetElementType for byrefs (bug# 44792).
22394
22395 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
22396
22397         * reflection.c (mono_reflection_create_runtime_class): Add support for
22398         properties to dynamically created classes.
22399         * reflection.c: Fix a few places where non-MonoObjects were inserted
22400         into the tokens hashtable.
22401
22402 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
22403
22404         * object.c: some support to handle out of memory exceptions.
22405
22406 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
22407
22408         * marshal.c (mono_marshal_get_native_wrapper): support reference
22409         return types
22410
22411 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
22412
22413         * object.h, object.c: more portability stuff from Bernie Solomon.
22414         Unexport mono_object_allocate(). Added mono_object_unbox ().
22415         Set exitcode when an unhandled exception is thrown.
22416
22417 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
22418
22419         * marshal.c (mono_marshal_get_native_wrapper): use custom
22420         marshaler for return types.
22421
22422 2003-06-10  Dick Porter  <dick@ximian.com>
22423
22424         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
22425         ip_mreq is available
22426
22427 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
22428
22429         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
22430         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
22431         by Bernie Solomon <bernard@ugsolutions.com>.
22432
22433 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
22434
22435         * gc.c (mono_gc_init): Avoid error message on shutdown when
22436         GC_DONT_GC=1 is used.
22437
22438         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
22439         New icall to return the GUID of a module.
22440
22441 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
22442
22443         * class.c: ensure instance size always includes the parent's size
22444         even whem class size is set explicitly (fixes bug#44294).
22445
22446 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
22447
22448         * profiler.h, profiler.c: made the simple profiler thread-safe,
22449         get more accurate timing info. Allow the loading of an
22450         externally-developed profiler module.
22451
22452 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
22453
22454         * marshal.c (mono_marshal_get_native_wrapper): improved
22455         class/byref arguments.
22456         (mono_marshal_get_native_wrapper): better string marshaling support.
22457
22458 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
22459
22460         * class.c: ensure .pack and .size are handled correctly and
22461         simplified layout of static fields.
22462
22463 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
22464
22465         * appdomain.c
22466         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
22467
22468         * loader.c (mono_lookup_pinvoke_call): look for modules in the
22469         current directory (fix bug 44008)
22470
22471 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
22472
22473         * marshal.c (mono_marshal_get_native_wrapper): started support for
22474         custom marshalers.
22475         (mono_delegate_to_ftnptr): consider marshalling specifications
22476
22477 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
22478
22479         * reflection.c, reflection.h: emit custom marshal info.
22480
22481 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22482
22483         * object.c: free the GError.
22484         * icall.c: added CloseEvent_internal.
22485         * threads.[ch]:
22486         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
22487         call.
22488
22489 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
22490
22491         * loader.c (mono_method_get_signature): Add support for dynamic
22492         assemblies.
22493
22494 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
22495
22496         * reflection.c: fixed bug #43905.
22497
22498 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
22499
22500         * class.c, domain.c, icall.c, metadata.h, object.h: support for
22501         handling TypedReference and ArgIterator.
22502         * loader.c, loader.h: added function to get signature at call site.
22503
22504 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
22505
22506         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
22507         data readonly. Buglets and warning fixes. Some MethodSpec support.
22508
22509 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
22510
22511         * class.h, class.c, object.c: remove relative numbering support.
22512
22513 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
22514
22515         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
22516         free the string, until we get a chance to fix Gtk#
22517
22518 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22519
22520         * marshal.c: revert last patch.
22521
22522 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
22523
22524         * icall.c: updates for new mono_class_vtable() not calling
22525         the type constructor anymore.
22526
22527 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
22528
22529         * object.h, object.c: separate vtable creation from type
22530         initialization. Make running the .cctor thread safe.
22531
22532 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
22533
22534         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
22535
22536 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
22537
22538         * loader.c (mono_get_method): consider calling convention
22539
22540 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
22541
22542         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
22543         to return the invisible global type for a module.
22544
22545         * reflection.c (mono_image_build_metadata): Emit global fields too.
22546
22547 2003-05-20  Peter Williams  <peterw@ximian.com>
22548
22549         * loader.c (mono_lookup_internal_call): Add a few newlines.
22550
22551 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
22552
22553         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
22554         literal strings.
22555
22556         * appdomain.c (set_domain_search_path): Recalculate search path when
22557         AppDomainSetup.PrivateBinPath changes.
22558
22559         * object.c (mono_class_compute_gc_descriptor): It turns out some
22560         parts of the class libs (like System.Thread) holds pointers to
22561         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
22562         to treat native int a pointer type here.
22563         
22564 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
22565
22566         * appdomain.h, domain.c: add hashtable for jump target resolution.
22567
22568 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
22569
22570         * reflection.h reflection.c icall.c: Added new icalls 
22571         GetManifestResourceInfoInternal, GetModulesInternal and support
22572         infrastructure.
22573
22574 2003-05-16  Dick Porter  <dick@ximian.com>
22575
22576         * icall.c:
22577         * file-io.h:
22578         * file-io.c: Implement System.IO.MonoIO::GetTempPath
22579
22580 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
22581
22582         * object.c: mono_store_remote_field: little fix to previous patch.
22583
22584 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
22585
22586         * class.c: add constructors to array classes.
22587         * icall.c: special case array construction for InternalInvoke (),
22588
22589 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
22590
22591         * class.h class.c reflection.c object.c: Added support for field
22592         defaults in dynamically generated classes.
22593
22594 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
22595
22596         * reflection.c: properly encode charset for ddlimport.
22597
22598 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
22599
22600         * threads.c: allow compiling without GC.
22601
22602 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
22603
22604         * appdomain.h, object.c, object.h, threads.c, threads.h: added
22605         handling of thread static data.
22606
22607 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22608
22609         * reflection.h, reflection.c: added mono_custom_attrs_free ().
22610
22611 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
22612
22613         * class.c (mono_array_class_get): always set the serializable flags
22614         (mono_array_class_get): always set the SEALED attribute for array types
22615
22616 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
22617
22618         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
22619         attributes (fix for bug 42021).
22620
22621 2003-05-12  Dick Porter  <dick@ximian.com>
22622
22623         * gc.c: Don't run finalizers when the finalizer thread is
22624         finishing up, because the default domain has already been
22625         destroyed.
22626
22627 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
22628
22629         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
22630         value is null, we should throw an exception.   This is slightly
22631         different than the other conventions used for the constructor.
22632
22633 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22634
22635         * socket-io.c: fixed windows build.
22636
22637 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22638
22639         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
22640
22641 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
22642
22643         * object.c (mono_string_new_wrapper): Compatibility fix for MS
22644         compilers.
22645
22646 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
22647
22648         * class.c (mono_class_layout_fields): Add experimental GC aware
22649         auto layout facility. Requires class library changes to work correctly.
22650
22651         (mono_class_setup_vtable): Avoid overriding explicit interface
22652         method implementations. Fixes iface3.exe test.
22653
22654         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
22655         object reference.
22656         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
22657         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
22658
22659         * metadata.h: Add new type classification macro which determines
22660         whenever the type holds an object reference.
22661
22662 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
22663
22664         * marshal.c (mono_marshal_get_native_wrapper): cleanups
22665
22666 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
22667
22668         * gc.c (finalizer_thread): Work around a GC bug.
22669
22670 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
22671
22672         * marshal.c (emit_struct_conv): allow unions
22673
22674         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
22675
22676 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
22677
22678         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
22679
22680 2003-05-06  Martin Baulig  <martin@ximian.com>
22681
22682         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
22683
22684 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22685
22686         * socket-io.c:
22687         (Select_internal): allow NULLs, don't create arrays if not needed.
22688         Coupled with Socket.cs changes.
22689
22690         * threadpool.c:
22691         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
22692         register a finalizer for it that will close the semaphore handle. This
22693         fixes the leak and make Lupus' test run with > 4080 loops.
22694
22695 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
22696
22697         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
22698         Jerome Laban (bug #42287)
22699
22700 2003-05-02  Martin Baulig  <martin@ximian.com>
22701
22702         * debug-mono-symfile.h
22703         (MonoSymbolFile): Moved declaration into mono-debug.h.
22704         (MonoDebugMethodJitInfo): Likewise.
22705         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
22706         argument.
22707         (_mono_debug_address_from_il_offset): Take a
22708         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
22709
22710         * mono-debug.h
22711         (MonoDebugDomainData): New struct.
22712         (mono_debug_get_domain_data): New function.
22713         (mono_debug_add_method): Take an additional `MonoDomain *'
22714         argument.
22715         (mono_debug_source_location_from_address): Likewise.
22716         (mono_debug_il_offset_from_address): Likewise.
22717         (mono_debug_address_from_il_offset): Likewise.
22718
22719 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
22720
22721         * reflection.c: one more check for null type in custom attrs.
22722
22723 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22724
22725         * reflection.c: avoid warning (comparison is always false due to limited
22726         range of data type).
22727
22728 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22729
22730         * icall.c: throw an exception in Type.GetField if the argument 'name'
22731         is NULL.
22732
22733 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
22734
22735         * reflection.c: fixed handling of enums in named arguments to custom
22736         attributes (bug #42123).
22737
22738 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
22739
22740         * reflection.c: use the right array element type and handle
22741         a null for a Type argument, too.
22742
22743 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
22744
22745         * reflection.c: handle arrays as arguments to custom attributes.
22746
22747 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
22748
22749         * reflection.c: handle a string value in a custom attr
22750         ctor that takes an object.
22751
22752 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
22753
22754         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
22755         (fix bug #42063)
22756
22757 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
22758
22759         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
22760
22761 2003-04-27  Martin Baulig  <martin@ximian.com>
22762
22763         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
22764         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
22765         MONO_DEBUGGER_EVENT_BREAKPOINT.
22766         (mono_breakpoint_trampoline_code): Removed.
22767         (mono_debugger_event_handler): The last argument is now a
22768         `guint32'.
22769         (mono_debugger_insert_breakpoint_full): Removed the
22770         `use_trampoline' argument.
22771         (mono_debugger_method_has_breakpoint): Likewise.
22772         (mono_debugger_trampoline_breakpoint_callback): Renamed to
22773         mono_debugger_breakpoint_callback(); take the method and
22774         breakpoint number as arguments.
22775
22776 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
22777
22778         * metadata.c: fix off by one when loading parameters attributes.
22779
22780 2003-04-24  Martin Baulig  <martin@ximian.com>
22781
22782         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
22783
22784 2003-04-24  Martin Baulig  <martin@ximian.com>
22785
22786         * mono-debug-debugger.c: Moved all code which interacts with the
22787         Mono Debugger here.
22788
22789         * debug-mono-symfile.c: This code now just deals with the symbol
22790         file itself, the debugger code is now in mono-debug-debugger.c.
22791
22792 2003-04-23  Martin Baulig  <martin@ximian.com>
22793
22794         * mono-debug.c (mono_debug_source_location_from_il_offset):
22795         New method; like mono_debug_source_location_from_address(), but
22796         takes an IL offset instead of a machine address.
22797
22798 2003-04-23  Martin Baulig  <martin@ximian.com>
22799
22800         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
22801         `line' field; this is now computed by the debugger.
22802
22803 2003-04-23  Martin Baulig  <martin@ximian.com>
22804
22805         * mono-debug.[ch]: New files.  This is the new debugging interface.
22806
22807         * mono-debug-debugger.[ch]: New files.  Moved all code which
22808         interacts with the Mono Debugger here.
22809
22810 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
22811
22812         * domain.c (mono_init): initialize mono_defaults.monitor_class
22813
22814 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
22815
22816         * reflection.c (method_encode_code): Add a spicy exception to help
22817         future compiler authors.
22818
22819 2003-04-21  Martin Baulig  <martin@ximian.com>
22820
22821         * icall.c
22822         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
22823         Make this work with relative pathnames; g_filename_to_uri() needs
22824         an absolute filename.
22825
22826 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
22827
22828         * icall.c: Track name changes in Object and ValueType.
22829
22830 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
22831
22832         * metadata.c (mono_type_stack_size): size should be a multiple of
22833         sizeof (gpointer)
22834
22835 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22836
22837         * gc.c:
22838         (internal_domain_finalize): moved into mono_domain_finalize. No need
22839         to create another thread because the finalizers will be run in the
22840         finalizer thread.
22841         
22842         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
22843         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
22844         to be run (MS does this too).
22845
22846 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
22847
22848         * object.c (mono_class_compute_gc_descriptor): Update comment.
22849
22850         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
22851
22852         * image.h: Add synchronized wrapper cache.
22853
22854         * image.c (do_mono_image_open): Initialize cache.
22855
22856         * reflection.c (create_dynamic_mono_image): Initialize cache.
22857
22858 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22859
22860         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
22861         ves_icall_System_Buffer_ByteLengthInternal.
22862
22863 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
22864
22865         * reflection.c: setup klass->nested_in earlier. Allow
22866         a dash in the assembly name.
22867
22868 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
22869
22870         * metadata.c (mono_type_to_unmanaged): dont access
22871         type->data.klass for MONO_TYPE_OBJECT
22872         (mono_type_to_unmanaged): consider System.Delegate class
22873
22874 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
22875
22876         * class.c: just setup supertypes in the proper place instead of
22877         initializing the full element class for arrays.
22878
22879 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
22880
22881         * class.c: ensure the element class of arrays is initialized.
22882         Setup the supertype info for array classes, too.
22883
22884 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
22885
22886         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
22887
22888 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22889
22890         * Makefile.am: re-added -m option when running cygpath. This way,
22891         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
22892         separator.
22893         * mono-config.c: same codepath for locating mono config file for WIN32
22894         and the rest.
22895         * assembly.c: if mono_assembly_setrootdir is called, don't override
22896         the value set.
22897
22898 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22899
22900         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
22901         MONO_ASSEMBLIES variable.
22902
22903 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
22904
22905         * icall.c: added Assembly::GetNamespaces() icall.
22906
22907 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22908
22909         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
22910
22911 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
22912
22913         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
22914         * object.c: fixed bug in the construction of vtable for proxies
22915
22916 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
22917
22918         * object.c (mono_array_new): Mark mono_array_new as an icall.
22919
22920 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22921
22922         * class.c: fixed test for public method when overriding interfaces.
22923         Closes bug #40970.
22924
22925 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
22926
22927         * appdomain.h, domain.c: added mono_domain_foreach() to
22928         be able to access the currently loaded appdomains.
22929         * object.c: make string interning work across sppdomains.
22930         Mark some functions for use as icalls.
22931
22932 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
22933
22934         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
22935
22936         * reflection.h reflection.c: Allocate long living data using 
22937         GC_MALLOC_ATOMIC so the collector does not need to scan it.
22938
22939         * reflection.c: Double the allocation size in streams instead of
22940         increasing it, to prevent unneccesary copying on large assemblies.
22941         
22942         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
22943         creation if the assembly does not have the Run flag set.
22944
22945 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
22946
22947         * class.h: avoid the C++ keywords in header files (Jerome Laban
22948         spotted and fixed this).
22949
22950 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22951
22952         * object.c:
22953         (mono_unhandled_exception): fill in the arguments for the
22954         UnhandledException event. Only trigger that event for the default
22955         domain (as MS does).
22956
22957 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
22958
22959         * object.c: Improve typed allocation stuff based on suggestions from
22960         Paolo. Also turn it on if the GC library supports it.
22961
22962 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
22963
22964         * object.c object.h class.h: Added experimental typed allocation
22965         facility using the interfaces in gc_gcj.h.
22966
22967         * os/gc_wrapper.h: Added new include files.
22968         
22969 2003-04-03  Martin Baulig  <martin@ximian.com>
22970
22971         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
22972         which is not yet enabled by default.
22973
22974         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
22975         functions.
22976         (mono_gc_lock, mono_gc_unlock): New static functions.
22977
22978         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
22979         functions; stop/start the world for the garbage collector.  This
22980         is using the windows API; we need to complete the SuspendThread()/
22981         ResumeThread() implementation in the io-layer to make this work on Unix.
22982         (mono_gc_push_all_stacks): New public function; tells the garbage
22983         collector about the stack pointers from all managed threads.
22984
22985 2003-04-03  Martin Baulig  <martin@ximian.com>
22986
22987         * object.h (MonoThread): Added `gpointer stack_ptr'.
22988
22989         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
22990
22991 2003-04-03  Martin Baulig  <martin@ximian.com>
22992
22993         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
22994
22995 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
22996
22997         * reflection.c (typebuilder_setup_fields): Initialize field.first and
22998         field.last.
22999
23000 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
23001
23002         * loader.c (mono_lookup_internal_call): Report the corlib that is
23003         out of sync.
23004
23005 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
23006
23007         * icall.c (ves_icall_type_GetTypeCode): fixed check for
23008         System.DBNull (it's class not valuetype).
23009
23010 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
23011
23012         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
23013         if the array method was already assigned a token (fixes bug#40646).
23014
23015 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
23016
23017         * reflection.c (mono_reflection_get_type): Attempt type resolve even
23018         if no assembly is given.
23019
23020 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
23021
23022         * metadata.h: Added the new tables.
23023
23024         * row-indexes.h: Added definitions for new tables.
23025
23026         * metadata.c: Add schemas for new tables, and add support for
23027         computing the sizes of them.
23028
23029         * class.c: Update for handling the new type cases.
23030
23031 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
23032
23033         * metadata.h (MONO_TYPE_IS_VOID): new macro
23034
23035 2003-03-31  Martin Baulig  <martin@ximian.com>
23036
23037         * threads.h (MonoThreadCallbacks): Added `thread_created'.
23038
23039         * threads.c (mono_thread_new_init): Call `thread_created' in the
23040         mono_thread_callbacks.
23041
23042 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
23043
23044         * loader.h: added marshalbyrefobject_class to mono_defaults
23045         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
23046         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
23047           generation of output parameters.
23048           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
23049         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
23050           contextbound and the target object belongs to the context of the caller.
23051         * object.h: added context and unwrapped_server variables in MonoRealProxy.
23052         * object.c: Implemented support for interfaces and abstract classes
23053           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
23054           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
23055
23056 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
23057
23058         * class.h class.c (mono_class_is_subclass_of): New function.
23059         
23060         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
23061         routines for most common case (calls from ArrayList::ToArray).
23062
23063         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
23064         routine so programs which call Environment::Exit() can be profiled.
23065
23066         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
23067         Added MONO_ARCH_SAVE_REGS.
23068
23069         * icall.c (ves_icall_type_is_subtype_of): Use new function.
23070
23071 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
23072
23073         * blob.h: Add a couple of new MonoType types definitions.
23074
23075         * tabledefs.h: Add a couple of new call convs.
23076
23077 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
23078
23079         * reflection.h (MonoReflectionDynamicAssembly): track changes in
23080         the layout of the class.
23081
23082         * reflection.c (alloc_table): double the size on overflow to avoid
23083         unnecessary copying.
23084
23085         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
23086         avoid filling out metadata tables and blobs. Also set mb->ilgen to
23087         null so it can be garbage collected.
23088         
23089 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
23090
23091         * reflection.c (mono_reflection_get_type): Return the resolved type
23092         only if it is in the assembly we searched.
23093
23094         * reflection.c (ensure_runtime_vtable): Initialize method slots.
23095
23096         * class.c (mono_class_setup_vtable): Set the slot of the overriding
23097         method.
23098
23099 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23100
23101         * appdomain.c:
23102         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
23103         the right one is 'file:///blah', but MS allows it.
23104         * assembly.c:
23105         (mono_assembly_open): allow 'file://blah'
23106
23107         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
23108
23109 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
23110
23111         * socket-io.c: fixes bug #40310.
23112
23113 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
23114
23115         * reflection.c (mono_reflection_parse_type): handle deeply nested
23116         types correctly.
23117
23118         * reflection.c (mono_image_create_token): Use unique token values
23119         since they will be put into a hash table.
23120
23121         * class.c (mono_class_setup_vtable): If a method occurs in more than
23122         one place in the vtable, and it gets overriden, then change the
23123         other occurances too.
23124
23125         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
23126         object as return type.
23127
23128 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
23129
23130         * icall.c: Deleted "ToString" implementation for double and float
23131         because they are full implemented in managed code.
23132
23133 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
23134
23135         * reflection.c, reflection.h: implemented and exported functions
23136         to retrieve info about custom attributes.
23137
23138 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23139
23140         * appdomain.c: moved Uri handling to assembly.c
23141         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
23142         work when using a file Uri in *nix and windows.
23143
23144         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
23145         GetReferencedAssemblies.
23146
23147 2003-03-18  Dick Porter  <dick@ximian.com>
23148
23149         * icall.c: Rename a couple of internal calls
23150
23151         * threads.c: Set the thread state to Stopped when a thread exits.
23152         Fixes bug 39377.
23153
23154 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
23155
23156         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
23157         New icall.
23158
23159         * object.c (mono_class_vtable): fix warning.
23160
23161 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
23162
23163         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
23164
23165         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
23166         memory.
23167         (method_encode_clauses): Create exception info structures in the right
23168         order.
23169         (mono_reflection_setup_internal_class): Initialize supertypes field.
23170
23171         * class.c object.c: Handle interfaces which implement other interfaces 
23172         correctly.
23173
23174         * class.h class.c: Move the supertypes array initialization code into 
23175         a separate function so it can be used for dynamic types too. Also call
23176         it earlier, in mono_class_init(), since it can be used before the
23177         type is initialized.
23178
23179 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23180
23181         * Makefile.am:
23182         * assembly.c:
23183         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
23184
23185         * appdomain.c:
23186         * appdomain.h:
23187         * marshal.c:
23188         * object.c: remove warnings.
23189
23190 2003-03-13  Martin Baulig  <martin@ximian.com>
23191
23192         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
23193         (MonoDebugLexicalBlockEntry): New types.
23194
23195         * debug-mono-symfile.c
23196         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
23197
23198 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23199
23200         * process.c: ret can be any non-zero value accroding to MS doc.
23201
23202 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
23203
23204         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
23205         fixing a warning for a miss-used prototype, would have cause
23206         random memory corruption.
23207
23208 2003-03-07  Martin Baulig  <martin@ximian.com>
23209
23210         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
23211         getting really annoying ....
23212
23213 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
23214
23215         * reflection.c (fixup_method): added support for array methods.
23216
23217 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
23218
23219         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
23220         (pointed out by Michael Adams).
23221
23222 2003-03-04  Dick Porter  <dick@ximian.com>
23223
23224         * icall.c: Temporarily reverted the Double and Single ToString()
23225         change, because it broke nunit.
23226
23227 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
23228
23229         * object.h, threads.h: make include files compatible with C++
23230         (patch by Jerome Laban <jlaban@wanadoo.fr>).
23231
23232 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
23233
23234         * icall.c: Erased ToString helper functions for Double and Single.
23235         Now, that implementations ar all in managed code (Double and Single
23236         Formatters).
23237
23238 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
23239
23240         * appdomain.c: Added method for initializing the default context of
23241         a domain. Added internal call for getting the default context.
23242         * appdomain.h: Added context variable in MonoDomain struct.
23243         * domain.c: mono_domain_set also sets the default context of the domain
23244         * icall.c: Mapped internal method InternalGetDefaultContext.
23245         * object.c: mono_object_get_virtual_method returns always a remoting
23246         wrapper if the object is a transparent proxy.
23247         mono_runtime_invoke_array: when creating an object by calling the
23248         constructor, if the created object is a proxy, then the constructor should
23249         be called using the a remoting wrapper.
23250
23251 2003-03-03  Dick Porter  <dick@ximian.com>
23252
23253         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
23254         variable so it compiles on solaris.  Problem spotted by
23255         Christopher Taylor <ct@cs.clemson.edu>
23256
23257 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23258
23259         * appdomain.c:
23260         (get_info_from_assembly_name): don't leak value.
23261
23262         * icall.c:
23263         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
23264         result.
23265
23266 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
23267
23268         * assembly.c: export mono_image_load_references ().
23269         * class.c: handle function pointers. mono_class_from_name() now
23270         supports nested type names directly.
23271
23272 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
23273
23274         * reflection.h reflection.c: Encode already created dynamic methods 
23275         and fields correctly as a DEF instead of a REF.
23276
23277         * reflection.c: Get rid of the force_ref argument to 
23278         mono_image_typedef_or_ref since it was wrong in the first place.
23279
23280         * string-icalls.c: add error checking to string constructors according
23281         to the MSDN docs.
23282
23283         * reflection.c: Emit types in the order their TypeBuilders were 
23284         created. Previously, a new table index was assigned to each type before
23285         the tables were emitted. This was wrong because the signature blob
23286         might already refer to a type by its original table index.
23287
23288 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
23289
23290         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
23291         change.
23292         
23293 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23294
23295         * Makefile.am: make assemblies dir have \ instead of / on windows.
23296
23297 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
23298
23299         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
23300         iterate over the NESTEDCLASS table using a linear search since the
23301         table is not guaranteed to be sorted by the secondary key.
23302
23303         * class.c (mono_class_create_from_typedef): fixed up call to
23304         mono_metadata_nesting_typedef.
23305         
23306 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
23307
23308         * marshal.c (mono_string_to_byvalstr): clear the memory as
23309         suggested by Jerome Laban <jlaban@wanadoo.fr>
23310
23311 2003-02-26  Dick Porter  <dick@ximian.com>
23312
23313         * process.c: Cope with padding in .rsrc blocks
23314
23315 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
23316
23317         * metadata.h: reverted the filter_len change, it breaks reflection
23318         
23319 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
23320
23321         * metadata.h: added a new field to store the filter_len
23322         
23323
23324 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
23325
23326         * reflection.c: handle custom attributes for types and members
23327         created with Reflection.Emit (bug#38422).
23328
23329 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
23330
23331         * reflection.c: define RTSpecialName automatically for constructors for
23332         compatibility with MS.NET.
23333
23334         * reflection.c (mono_reflection_create_runtime_class): initialize
23335         nested_in field of dynamically created classes.
23336
23337 2003-02-22  Martin Baulig  <martin@ximian.com>
23338
23339         * debug-mono-symfile.h: Incremented version number.
23340
23341 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
23342
23343         * object.h icall.c process.c: fix warnings.
23344
23345 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
23346
23347         * appdomain.h appdomain.c:
23348         (mono_domain_try_type_resolve): split the 
23349         name_or_tb argument into a name and a tb argument.
23350         (mono_domain_has_type_resolve): new function to check whenever the
23351         application has registered a TypeResolve event handler.
23352         
23353         * icall.c reflection.h reflection.c: move the type resolve logic into
23354         mono_reflection_get_type () so it will be invoked when 
23355         Assembly::GetType () is called.
23356
23357         * reflection.c:
23358         (mono_reflection_get_type): renamed to get_type_internal.
23359         (mono_reflection_get_type): fixed type name generation so it works 
23360         for nested types too.
23361         (mono_reflection_get_type): call has_type_resolve () to avoid the 
23362         costly type name generation if there is no resolve event handler.
23363
23364 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
23365
23366         * class.c, image.c: load exported types from file references.
23367
23368 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
23369
23370         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
23371           used to cache the managed methods used to create proxies and make 
23372           remote invocation of methods.
23373         * class.h: Added in MonoVTable a flag to indicate that a class needs 
23374           to be remotely created.
23375         * object.c: Modified the method mono_class_vtable(). It now initializes 
23376           the remote flag of the vtable. Modified mono_object_new_specific(), 
23377           so now it checks the remote flag.
23378         * icall.c: Added a couple of internal methods, one for enabling instance 
23379           creation interception for a type, and one for creating objects bypassing
23380           the remote check.
23381
23382 2003-02-18  Martin Baulig  <martin@ximian.com>
23383
23384         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
23385         New interncall to get a method's metadata token.
23386
23387         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
23388         New interncall for the debugger.
23389
23390 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
23391
23392         * class.c (mono_class_setup_vtable): allocate supertype array
23393
23394 2003-02-18  Martin Baulig  <martin@ximian.com>
23395
23396         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
23397
23398 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23399
23400         * reflection.c:
23401         (assembly_name_to_aname): jump over unknown properties (i've found
23402         something like: 'type, assembly, version=xxx, custom=null, public...',
23403         so now will ignore custom=null and still get the rest of the values).
23404
23405 2003-02-17  Dick Porter  <dick@ximian.com>
23406
23407         * threads.c: Have Thread.Start() wait for a semaphore to signal
23408         that the thread has set up all its local data.  This fixes bug
23409         34323, where Abort() raced the new thread's TLS data.
23410
23411         Also removes the handle_store() call from start_wrapper, because
23412         threads are now always created suspended and there is no longer a
23413         race between the parent and child threads to store the info.
23414
23415 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
23416
23417         * image.c: explain the #- heap issue in a message, hopefully
23418         avoiding FAQs on mono-list.
23419
23420 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23421
23422         * icall.c:
23423         (GetEntryAssembly): if the domain has not invoked
23424         AppDomain.ExecuteAssembly yet, return the assembly of the default
23425         AppDomain.
23426
23427 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
23428
23429         * class.c (mono_ldtoken): make it work in dynamic assemblies.
23430
23431 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
23432
23433         * metadata.c, reflection.c: simple speedup to type hash
23434         and equals code.
23435
23436 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
23437
23438         * image.c, image.h, class.c, assembly.c: move module loading
23439         to MonoImage. When loading metadata, consider alignemnet from
23440         the start of metadata, not from the metadata address in memory.
23441
23442 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
23443
23444         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
23445         AssemblyBuilder objects. Factored out custom attribute creation into
23446         a separate function.
23447         (create_custom_attr): new function to create custom attributes.
23448
23449 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
23450
23451         * Makefile.am: Got tired of typing the full pathname to pedump.
23452         Until there is another option, am installing this.
23453
23454 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
23455
23456         * class.c (class_compute_field_layout): always set field->parent 
23457         (mono_ldtoken): use mono_defaults.fieldhandle_class;
23458
23459 2003-02-11  Dick Porter  <dick@ximian.com>
23460
23461         * threads-types.h:
23462         * monitor.c: Rewrote Monitor, making lock much faster and
23463         Pulse/Wait work as specified.  Also uses much fewer handles, and only
23464         creates them as needed.
23465
23466         * exception.c: Added SynchronizationLockException
23467
23468         * threads.c: Deleted old Monitor implementation.  The new one is
23469         in a new file.
23470
23471 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
23472
23473         * class.c: handled TypedReference type code. Set the correct size for
23474         class data. Setup interface_offsets for interface classes, too.
23475
23476 2003-02-09  Martin Baulig  <martin@ximian.com>
23477
23478         * debug-mono-symfile.h: Reflect latest symbol writer changes.
23479
23480 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
23481
23482         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
23483         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
23484         * object.c: fixed mono_object_get_virtual_method () for interfaces.
23485         * verify.c: check for code that runs after the end of the method.
23486
23487 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
23488
23489         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
23490         "System.Math::Round2".
23491         * sysmath.h: Added Floor, Round and Round2 definitions.
23492         * sysmath.c: Modified certain functions that were not 100% compliant
23493         with MS.NET (math precision) and added the implementation of Floor,
23494         Round and Round2.
23495
23496 2003-02-07  Martin Baulig  <martin@ximian.com>
23497
23498         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
23499
23500 2003-02-07  Martin Baulig  <martin@ximian.com>
23501
23502         * debug-mono-symfile.c: Reflected latest symwriter changes.
23503         (mono_debug_create_mono_symbol_file): Removed.
23504         (mono_debug_open_mono_symbol_file): Take an argument which
23505         specifies whether to create a dynamic symbol file.
23506
23507 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
23508
23509         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
23510
23511 2003-02-05  Martin Baulig  <martin@ximian.com>
23512
23513         * reflection.c (mono_image_build_metadata): Make this public,
23514         protect it against being called multiple times, don't create
23515         resources and don't build the compressed metadata here.
23516         (mono_image_create_pefile): Do this here.
23517
23518         * icall.c
23519         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
23520
23521 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23522
23523         * socket-io.c: fixed bug #36322.
23524
23525 2003-02-06  Piers Haken <piersh@friskit.com>
23526
23527         * appdomain.[ch]:
23528         * class.h:
23529         * debug-mono-symfile.c:
23530         * icall.c:
23531         * loader.c:
23532         * mono-config.c:
23533         * monosn.c:
23534         * reflection.c:
23535         * socket-io.c: warning cleanups
23536
23537 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
23538
23539         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
23540         function. works like remoting invoke, but does a check for the Proxy first.
23541
23542 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
23543
23544         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
23545
23546 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
23547
23548         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
23549         array of pointers.
23550         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
23551         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
23552
23553         * object.c (mono_store_remote_field_new): used by the new jit
23554         instead of mono_store_remote_field
23555         (mono_load_remote_field_new): used by the new jit
23556         instead of mono_load_remote_field
23557
23558 2003-02-05  Patrik Torstensson
23559
23560         * appdomain.c: changed unload to take the domain id instead
23561         of domain
23562         
23563         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
23564
23565
23566 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23567
23568         * appdomain.c: don't look for assemblies in ApplicationBase if
23569         PrivateBinPathProbe is set.
23570
23571 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23572
23573         * object.c: make the first argument in main_args contain the absolute
23574         path to the assembly. Fixes bug #37511.
23575
23576 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23577
23578         * icall.c: get correct UTC offset for countries not using daylight
23579         time saving. Fixes bug #30030.
23580
23581 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23582
23583         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
23584         and 1 are the family).
23585
23586 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
23587
23588         * icall.c (ves_icall_InternalExecute): removed wrong assertion
23589
23590         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
23591
23592 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
23593
23594         * reflection.c: added support for SignatureHelper tokens, which is
23595         needed by the Calli opcode.
23596
23597         * reflection.h: track changes to SignatureHelper class.
23598
23599         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
23600
23601 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23602
23603         * appdomain.c: fixed loading assemblies from PrivateBinPath.
23604
23605 2003-02-03  Patrik Torstensson
23606         * appdomain.[c|h], domain.c : 
23607          - Added support for getting a domain via domain id
23608          - Support for setting and getting domain from System.AppDomain 
23609            (used in cross appdomain channel)
23610          - Added support for get/set for a MonoAppContext on a thread 
23611            (Context class in System.Runtime.Remoting.Contexts),
23612          - Removed hack in Get/SetData and ExecuteAssembly.
23613         
23614         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
23615         the managed world to get control when a proxy is created.
23616
23617         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
23618         
23619 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
23620
23621         * icall.c
23622         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
23623         Populate the codebase field as well.
23624
23625 2003-02-02  Martin Baulig  <martin@ximian.com>
23626
23627         * debug-mono-symfile.c
23628         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
23629         (mono_debug_symfile_add_method): Allow interncalls.
23630
23631 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23632
23633         * icall.c: throw parse exception if strtod fails or the string is empty.
23634
23635 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
23636
23637         * marshal.c: handle object type separately from defined
23638         class types.
23639
23640 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
23641
23642         * marshal.c: handle NATIVE_LPSTR for strings when it's
23643         explicitly specified.
23644
23645 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
23646
23647         * reflection.c, reflection.h, icall.c: setup the reflection
23648         handle cache for ModuleBuilders and AssemblyBuilders.
23649
23650 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
23651
23652         * reflection.c (reflection_methodbuilder_to_mono_method): set
23653         pinvoke flag
23654
23655 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23656
23657         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
23658
23659 2003-01-29  Dick Porter  <dick@ximian.com>
23660
23661         * threads.c: No need for the fake_thread kludge now that Thread
23662         doesn't run a class constructor
23663         
23664 2003-01-29  Dick Porter  <dick@ximian.com>
23665
23666         * threads.c: Use g_direct_hash instead of the rather bogus
23667         g_int_hash
23668
23669 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
23670
23671         * marshal.c (mono_marshal_get_native_wrapper): add check for null
23672         (fix pinvoke12.exe)
23673         (mono_marshal_get_struct_to_ptr): generate valid IL code
23674         (mono_marshal_get_ptr_to_struct): generate valid IL code
23675         (*): correctly set sig->pinvoke, we need to memdup the signature
23676         to do that
23677
23678 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
23679
23680         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
23681         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
23682
23683 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
23684
23685         * profiler.c: provide more callers information.
23686
23687 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
23688
23689         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
23690
23691         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
23692
23693         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
23694
23695 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
23696
23697         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
23698         exception instead of going into an infinite loop on dates which it 
23699         can't yet handle.
23700
23701         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
23702         out-of-range exception if needed.
23703
23704         * class.c (mono_class_setup_vtable): allow a virtual method to provide
23705         an implementation for an interface method and to override an inherited
23706         method at the same time. 
23707         Imagine a scenario when a virtual method is used to override a
23708         virtual abstract method in a parent class, and this same method 
23709         provides an implementation for an method inherited from an interface. 
23710         In this case, the interface resolution code will set im->slot, which 
23711         means that the virtual method override pass will skip this method 
23712         which means a pointer to the abstract method inherited from the parent
23713         will remain in the vtable of this non-abstract class.
23714
23715         * class.c: (mono_class_setup_vtable): continue search for a real 
23716         method if only an abstract method is found.     
23717
23718 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
23719
23720         * reflection.c: add size to encoding for ByValStr and ByValArray
23721         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
23722
23723 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
23724
23725         * class.c (mono_class_setup_vtable): pass the override info as an
23726         argument.
23727
23728         * class.c (mono_class_setup_vtable): set the slot of overriding methods
23729         correctly.
23730         
23731         * reflection.c (ensure_runtime_vtable); add support for method 
23732         overrides.
23733         
23734 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
23735
23736         * reflection.c (resolution_scope_from_image): Hack to work to work with
23737         dynamic assemblies.
23738
23739         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
23740         added a 'force_ref' argument to force this function to allways return 
23741         a TypeRef. This is needed by mono_image_get_memberref_token ().
23742         
23743 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
23744
23745         * reflection.c (mono_image_get_type_info): interfaces really don't have
23746         a parent.
23747
23748         * reflection.c (mono_image_basic_init): fill out missing fields of
23749         image structure.
23750
23751         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
23752         dynamic assemblies. This is required so dynamic assemblies show up in
23753         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
23754         Type::GetType() etc. This is consistent with MS behaviour.
23755
23756         * image.c image.h reflection.c: add newly created classes to the name 
23757         cache so mono_class_get () will find them.      
23758
23759 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
23760
23761         First part of changes to get IKVM.NET running under mono.
23762         
23763         * appdomain.h, appdomain.c: added new function 
23764         mono_domain_try_type_resolve() which will emit TypeResolve events. 
23765         This function will call AppDomain::DoTypeResolve to do the actual work.
23766
23767         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
23768         moved existing code dealing with dynamic tokens to a new function 
23769         called mono_reflection_lookup_dynamic_token (). This function will 
23770         raise TypeResolve events when appropriate. Since reflection.c is not 
23771         part of libmetadata, a new hook function called 
23772         mono_lookup_dynamic_token() is added to class.c which will call this.
23773
23774         * assembly.h assembly.c: make the invoke_load_hook function public,
23775         so it can be called for dynamic assemblies.
23776
23777         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
23778
23779         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
23780         type isn't found.
23781
23782         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
23783         MonoGHashTable, since it contains pointers to objects which the GC 
23784         needs to track.
23785
23786         * assembly.c (search_loaded): remove unused variable.
23787         
23788 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
23789
23790         * object.c: fixed issue exposed by gcc-generated IL programs
23791         that use RVA data for pointers.
23792
23793 2003-01-25  Martin Baulig  <martin@ximian.com>
23794
23795         * threads.c (start_wrapper): Moved the initialization of
23796         `start_func' above the mono_new_thread_init() call to which we
23797         pass it as argument.
23798
23799 2003-01-24  Martin Baulig  <martin@ximian.com>
23800
23801         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
23802         the MonoThread pointer.
23803
23804 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
23805
23806         * icall.c: Rename `PowImpl' to Pow.
23807
23808 2003-01-23  Dick Porter  <dick@ximian.com>
23809
23810         * threads.c (start_wrapper): Create a Thread object if needed, so
23811         the Main() thread can do the class initialisation in a subthread
23812         that has been set up to allow managed code execution.
23813
23814         Pass the thread ID instead of the MonoThread pointer to the thread
23815         start and attach callbacks.  This change is required, because the
23816         jit thread start callback must be called _before_ the Thread
23817         object can be created.
23818         
23819         (mono_thread_init): Removed much object creation code that is no
23820         longer needed.  No managed code is called from here now.
23821
23822         * object.c (mono_runtime_exec_managed_code): Create a subthread
23823         for Main, and call back to the runtime to use it.
23824         Set the exit code when Main exits.
23825
23826         * gc.c: Make sure domain finalisation happens in a subthread.
23827         Re-enable threaded GC, fixing bug 31333 (again).
23828
23829         * environment.c: System.Environment internall calls (so far just
23830         ExitCode is here, the others are still in icall.c)
23831
23832         * appdomain.c (mono_runtime_cleanup): All threads running managed
23833         code should have finished before mono_runtime_cleanup() is
23834         reached, so no need to clean up threads.
23835
23836 2003-01-22  Martin Baulig  <martin@ximian.com>
23837
23838         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
23839         `gpointer func' arguments.      
23840         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
23841         but added `MonoThread *thread' argument.
23842         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
23843
23844         * threads.c (mono_new_thread_init): Added `gpointer func' argument
23845         and pass it to the mono_thread_start_cb callback.
23846         (mono_install_thread_callbacks): New public function to install a
23847         set of callbacks which are set by the debugger.
23848         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
23849
23850 2003-01-22  Martin Baulig  <martin@ximian.com>
23851
23852         * Makefile.am: Install debug-mono-symfile.h.
23853
23854 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
23855
23856         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
23857
23858 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
23859
23860         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
23861         * class.c (mono_ptr_class_get): correctly set access levels of pointers
23862         (mono_array_class_get): correctly set access levels of arrays
23863
23864 2003-01-20      Patrik Torstensson
23865         * image.h (MonoAssemblyName): changed major, minor, build, revision
23866         from signed to unsigned.
23867
23868 2003-01-20  sean kasun <skasun@azstarnet.com>
23869
23870         * reflection.c (load_cattr_value): Now this handles
23871         MONO_TYPE_SZARRAY.  Fixes bug #35629
23872
23873 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
23874
23875         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
23876         integer value
23877
23878 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23879
23880         * decimal.c: fixed bug #26056.
23881
23882 2003-01-17  Martin Baulig  <martin@ximian.com>
23883
23884         * gc.c: Raise an ExecutionEngineException instead of using g_error().
23885
23886 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23887
23888         * exception.[ch]:
23889         (mono_get_exception_type_initialization): new function.
23890
23891         * object.c: throw a TypeInitializationException when an exception is
23892         thrown invoking the class constructor.
23893
23894 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23895
23896         * reflection.c: fixed attribute reading.
23897
23898 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23899
23900         * icall.c:
23901         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
23902         provided, look for the type in the calling assembly and then in
23903         mscorlib; if the assembly name is provided, only try that one.
23904
23905 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
23906
23907         * object.c: register the vtable before there is a chance it's
23908         queried again recursively.
23909
23910 2003-01-13  Duncan Mak  <duncan@ximian.com>
23911
23912         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
23913         gc-internal.h. 
23914         
23915 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
23916
23917         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
23918
23919 2003-01-11  Martin Baulig  <martin@ximian.com>
23920
23921         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
23922         this to 20 for the release.
23923
23924 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
23925
23926         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
23927
23928         * loader.c (mono_method_get_marshal_info): bug fix
23929
23930         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
23931         structures with explicit layout
23932
23933 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
23934
23935         * profiler.c: made the output more readable (and sorted). 
23936         Added caller information for the allocation profiler.
23937
23938 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
23939
23940         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
23941
23942 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23943
23944         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
23945         to get value types.
23946         
23947 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
23948
23949         * object.c, profiler.h, profiler.c, profiler-private.h:
23950         Added object allocation profiler.
23951
23952 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
23953
23954         * reflection.h, reflection.c: handle global methods.
23955         Compress blob entries.
23956
23957 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
23958
23959         * marshal.c: fix compilation.
23960
23961 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
23962
23963         * loader.c (mono_method_get_marshal_info): impl.
23964
23965         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
23966
23967 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23968
23969         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
23970         for reference types.
23971
23972 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
23973
23974         * loader.c: fixed off by one error in loaded parameter names.
23975
23976 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
23977
23978         * marshal.c (mono_marshal_get_icall_wrapper): like
23979         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
23980         instead of a MonoMethod.
23981
23982 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23983
23984         * decimal.c: fixed bug #36537.
23985
23986 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
23987
23988         * marshal.c: throw a missing method exception if a
23989         P/Invoke method is not found.
23990
23991 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
23992
23993         * icall.c: allow a null this for constructors.
23994
23995 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
23996
23997         * icall.c: raise the proper exceptions if the arguments to the
23998         internal Invoke are incorrect.
23999
24000 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
24001
24002         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
24003
24004 2003-01-03  Martin Baulig  <martin@ximian.com>
24005
24006         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
24007
24008 2002-12-31  Martin Baulig  <martin@ximian.com>
24009
24010         * debug-mono-symfile.c: Completely rewrote the type section.
24011         Instead of using individual malloc()ed fields, we use one big
24012         continuous memory area and offsets into this area.
24013         See the comments in the source code for details.
24014
24015 2002-12-30  Martin Baulig  <martin@ximian.com>
24016
24017         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
24018
24019 2002-12-30  Martin Baulig  <martin@ximian.com>
24020
24021         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
24022         line number table in this data blob instead of using an external
24023         pointer.
24024
24025 2002-12-28  Martin Baulig  <martin@ximian.com>
24026
24027         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
24028
24029 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
24030
24031         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
24032         as a boxed return type.
24033
24034 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
24035
24036         * appdomain.c
24037         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
24038         g_build_filename to properly get separators on the filename created.
24039
24040         * object.h: Small change, introduce MonoMarshalByRefObject to
24041         track the layout of that structure in the C# universe as we make
24042         changes there.
24043
24044 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
24045
24046         * object.c: removed assert to allow static fields on interfaces.
24047         * loader.c: a TypeSpec may be used for any type, not just arrays.
24048
24049 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24050
24051         * class.c, class.h: added mono_class_array_element_size ().
24052         Ignore static methods in interfaces.
24053
24054 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24055
24056         * threads.c: fixed the build under cygwin.
24057
24058 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
24059
24060         * reflection.c: handle nullref constants. Allocate keys for
24061         reflection handles with the GC.
24062
24063 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
24064
24065         * threads.c, threads.h: added mono_thread_get_abort_signal()
24066         to get a suitable signal for thread abort.
24067
24068 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
24069
24070         * metadata.c: fix handling of ExportedType table.
24071
24072 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24073
24074         * icall.c: added WriteWindowsDebugString internal call.
24075
24076 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24077
24078         * reflection.h: added fields to match C# implementation.
24079
24080 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24081
24082         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
24083
24084 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
24085
24086         * gc.h, gc-internal.h: Rename header for GC internal calls to
24087         gc-internal.h from gc.h as to not clash with Boehm GC having its
24088         header installed as <gc.h> in outside include paths.
24089         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
24090         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
24091
24092 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24093
24094         * icall.c: assign minor, build and revision in FillName.
24095
24096 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
24097
24098         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
24099         Added support for running code generated by Reflection.Emit.
24100
24101 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24102
24103         * appdomain.c: check for NULL argument in LoadFrom.
24104
24105 2002-12-10  Dick Porter  <dick@ximian.com>
24106
24107         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
24108
24109 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24110
24111         * appdomain.c: fix buglet when building exe file name.  Handle full
24112         assembly name (needed after latest changes to AssemblyName).
24113         * image.c:
24114         (mono_image_close): free some hashtables.
24115
24116 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
24117
24118         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
24119         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
24120         on some systems (redhat 7.3) 
24121
24122 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
24123
24124         * threads.c: delete the critical section of a sync block,
24125         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
24126
24127 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
24128
24129         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
24130
24131 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24132
24133         * appdomain.[ch]: handle the assembly preload event to try loading the
24134         assemblies using the paths we have in the current domain.
24135
24136         * assembly.[ch]: created an assembly preload hook that is called to try
24137         loading the assembly by other means that the ones provided here.
24138
24139         * domain.c: initialize the domain search path.
24140
24141         From now on, assemblies (TODO: except corlib and System) are loaded
24142         according to these rules when using mono_assembly_load ():
24143
24144                 1. It tries to load the assembly from the ApplicationBase
24145                 of the current domain appending .dll and .exe (TODO: have to
24146                 try loading from name/name.dll and name/name.exe).
24147
24148                 2. It tries the search path specified in PrivateBinPath for the
24149                 current domain (if any).
24150
24151                 3. Previous behavior.
24152
24153 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
24154
24155         * icall.c: implemented GetInterfaceMap() related icall.
24156         * domain.c, loader.h: load MethodInfo in mono_defaults.
24157
24158 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
24159
24160         * gc.c: disable the finalizer thread for now, untill all the issues
24161         with it are resolved.
24162
24163 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
24164
24165         * string-icalls.c: handle embedded nulls in string ctor when the
24166         length is specified.
24167
24168 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
24169
24170         * class.c: look for explicit interface implementation in parent
24171         classes, too.
24172
24173 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
24174
24175         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
24176
24177 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
24178
24179         * gc.c: protect handles with a critical section.
24180
24181 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24182
24183         * icall.c:
24184         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
24185         parameters. If no assembly specified, try getting the type from all
24186         the assemblies in the current domain, else, load the assembly and get
24187         the type from it.
24188
24189 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24190
24191         * marshal.c: applied patch from Aleksey Demakov that fixes
24192         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
24193
24194 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24195
24196         * icall.c: fixed get_location.
24197
24198 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
24199
24200         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
24201         declarations to make it work with older gcc. 
24202
24203         * loader.c (mono_get_method): set signature->pinvoke for native calls
24204
24205 2002-11-20  Dick Porter  <dick@ximian.com>
24206
24207         * threads.c (mono_thread_init): Set the main thread's handle
24208
24209 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
24210
24211         * gc.c: allow compilation without GC support. Changed to match the
24212         mono coding style.
24213
24214 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
24215
24216         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
24217
24218 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
24219
24220         * reflection.c: set a public key token on the core assemblies.
24221
24222 2002-11-18  Dick Porter  <dick@ximian.com>
24223
24224         * threads.c: Split out some thread initialisation so that other
24225         files can set the start callback function.
24226
24227         * gc.c: Run finalisers in a separate thread, to avoid stack
24228         overflow.  Fixes bug 31333.
24229
24230         * appdomain.c: Set up GC finalisation thread.
24231
24232         * reflection.c: 
24233         * object.c: 
24234         * domain.c: Use gc.h macros for GC_malloc
24235         
24236 2002-11-15  Dick Porter  <dick@ximian.com>
24237
24238         * threadpool.c: 
24239         * threads.c:
24240         * appdomain.c: Removed mono_runtime_init_with_attach(),
24241         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
24242         merging the extra parameter with the existing function.  Removed
24243         unneeded code in mono_thread_attach().
24244
24245 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
24246
24247         * image.c (mono_image_loaded_by_guid): a method to get loaded
24248         images by guid. 
24249         (load_metadata_ptrs): we store the guid as string.
24250
24251 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
24252
24253         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
24254
24255         * metadata.c (mono_guid_to_string): imported method form Zoltan
24256         Varga (slightly modified)
24257
24258         * assembly.c (mono_assembly_open): load precompiled code
24259
24260         * loader.h (MonoMethod): we store the method token for use in the
24261         aot compiler. 
24262
24263 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24264
24265         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
24266         the hook function called when an assembly is loaded.
24267         
24268         * domain.c: Modified file.
24269         (mono_domain_assembly_load): removed hash table insertion of assemblies.
24270
24271         Fixes bug #33196.
24272
24273 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
24274
24275         * reflection.c: Map PEFileKind to the value expected by the WinNT
24276         image loader. 
24277
24278 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24279
24280         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
24281         Read until the buffer is filled completely.
24282
24283 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24284
24285         * icall.c: implemented MonoType.InternalGetEvent ().
24286
24287 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24288
24289         * appdomain.c: implemented InitAppDomainSetup. Delayed
24290         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
24291         the entry_assembly.
24292
24293         * assembly.c: base_dir is now an absolute path ending with
24294         G_DIR_SEPARATOR.
24295
24296         * icall.c: modified get_location according to the above changes.
24297
24298         * object.c: init AppDomain.SetupInformation for the default domain after
24299         we have the entry assembly.
24300
24301         * domain.c: when unloading a domain, setup = NULL.
24302
24303 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
24304
24305         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
24306
24307 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
24308
24309         * object.h, object.c: introduced mono_object_get_virtual_method ()
24310         to lookup the method invoked on an object when a callvirt is done on
24311         a method.
24312         * icall.c: make MethodInfo::Invoke() always do a virtual call.
24313
24314 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24315
24316         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
24317         current domain when loaded an assembly and failed to load it.
24318
24319         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
24320
24321 2002-10-31  Dick Porter  <dick@ximian.com>
24322
24323         * icall.c: 
24324         * file-io.h: 
24325         * file-io.c: Return the error status in a parameter, as the
24326         GetLastError() value has long since been blown away if we try and
24327         look it up in a subsequent internal call invocation.  Delete the
24328         GetLastError() internal call, because it's useless.
24329
24330 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
24331
24332         * class.[ch]: added cast_class to fix bug 29517
24333
24334 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
24335
24336         * marshal.c: create valid IL code in the filter clause:
24337         the new JIT is less forgiving:-)
24338
24339 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24340
24341         * icall.c: removed get_property internal call.
24342
24343 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
24344
24345         * appdomain.h domain.c: Added an ID to appdomains.
24346         
24347         * threads.c threads.h icall.c: Implement icall
24348         Thread:GetDomainID(), and remove unused icall 
24349         CurrentThreadDomain_internal.
24350
24351 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24352
24353         * icall.c: Don't recurse through the base types in GetConstructor.
24354         Fixes bug #32063. 
24355
24356 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
24357
24358         * mempool.h, mempool.c: added mono_mempool_empty() and
24359         mono_mempool_stats().
24360
24361 2002-10-23  Dick Porter  <dick@ximian.com>
24362
24363         * file-io.c: 
24364         * file-io.h: 
24365         * icall.c: Added MonoIO.GetFileType internal call
24366
24367 2002-10-17  Dick Porter  <dick@ximian.com>
24368
24369         * appdomain.c (mono_runtime_cleanup): Don't signal the async
24370         delegate semaphore before waiting for all threads to finish,
24371         because new threads can also call async delegates.  Fixes bug
24372         32004.
24373
24374         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
24375         of 3 seconds, in case another async job is queued.  (This part is
24376         needed because the bug fix reintroduced the 3s exit lag.)  This
24377         makes the mono_runtime_shutdown flag superfluous.
24378
24379 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
24380
24381         * reflection.c: include ehader size in method section headers.
24382         Really check for suplicated modules entries.
24383
24384 2002-10-17  Martin Baulig  <martin@gnome.org>
24385
24386         * debug-mono-symfile.c: Added back support for locals.
24387
24388 2002-10-14  Martin Baulig  <martin@gnome.org>
24389
24390         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
24391         MONO_TYPE_VOID.
24392
24393 2002-10-14  Martin Baulig  <martin@gnome.org>
24394
24395         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
24396         mono_class_get() instead of looking in the class cache. 
24397
24398 2002-10-13  Martin Baulig  <martin@gnome.org>
24399
24400         * debug-mono-symfile.c: Set version number to 28, include the
24401         signature in method names.
24402
24403 2002-10-13  Martin Baulig  <martin@gnome.org>
24404
24405         * debug-mono-symfile.h: Set version number to 27.
24406
24407 2002-10-11  Martin Baulig  <martin@gnome.org>
24408
24409         * gc.c: Don't register/unregister NULL pointers as disappearing links.
24410
24411 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
24412
24413         * metadata.c, metadata.h: added helper function to allocate signatures.
24414
24415 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24416
24417         * icall.c: added internal call to get the location of machine.config.
24418
24419 2002-10-08  Martin Baulig  <martin@gnome.org>
24420
24421         * debug-mono-symfile.c: Ignore classes with a pending init for the
24422         moment.
24423
24424 2002-10-03  Dick Porter  <dick@ximian.com>
24425
24426         * threads.c: Freebsd pthread_t is a pointer
24427
24428 2002-10-03  Dick Porter  <dick@ximian.com>
24429
24430         * socket-io.c: Implemented GetHostName_internal
24431
24432 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24433
24434         * mono-config.c:
24435         (mono_config_parse_file): don't leak the text.
24436
24437 2002-10-02  Martin Baulig  <martin@gnome.org>
24438
24439         * debug-mono-symfile.c: Added support for methods.
24440
24441 2002-10-01  Martin Baulig  <martin@gnome.org>
24442
24443         * debug-mono-symfile.c: Don't emit methods and line numbers for
24444         the dynamic symbol file, just write the type table.  We can easily
24445         have an external helper program which creates a symbol file for an
24446         IL file.        
24447
24448 2002-10-01  Dick Porter  <dick@ximian.com>
24449
24450         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
24451         Only add the handle to the cleanup array when we're about to
24452         launch the thread.  Bug 31425 deadlocked when the test was run on
24453         mono under w32.
24454
24455 2002-10-01  Martin Baulig  <martin@gnome.org>
24456
24457         * debug-mono-symfile.c: Added support for properties.
24458
24459 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
24460
24461         * reflection.c: unaligned store fix from Mark Crichton
24462         <crichton@gimp.org>.
24463
24464 2002-09-27  Martin Baulig  <martin@gnome.org>
24465
24466         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
24467         New interncall.
24468
24469 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
24470
24471         * assembly.h, assembly.c: use a sane API to hook into the assembly
24472         loading process instead of a useless special-purpouse hack
24473         (ngen needs a hook, too, for example).
24474
24475 2002-09-27  Dick Porter  <dick@ximian.com>
24476
24477         * threads.c (mono_thread_init): Call GetCurrentProcess() so
24478         io-layer can set up some process handle info.  Not needed on w32,
24479         but doesn't hurt either.
24480
24481         * process.c: Pass the program name in the second parameter to
24482         CreateProcess, so the path is searched.  Include the working
24483         directory. Implemented process name, process enumeration, and some
24484         process detail internal calls.
24485         
24486         * icall.c: Added internal calls for process lookup, and some
24487         process details
24488
24489 2002-09-26  Martin Baulig  <martin@gnome.org>
24490
24491         * assembly.c (mono_install_open_assembly_hook): New global
24492         function to install a function to be invoked each time a new
24493         assembly is loaded.
24494         (mono_assembly_open): Run this callback function if set.
24495
24496         * debug-mono-symfile.c: Put back line numbers for the dynamic
24497         symbol file and also record the .il file as source file.  This
24498         allows us to install the temporary symbol file as `file.dbg' just
24499         like a compiler-generated one.
24500
24501 2002-09-26  Nick Zigarovich <nick@chemlab.org>
24502
24503         * Corrected typo in gc.c (BOHEM vs BOEHM).
24504
24505 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24506
24507         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
24508         GetProperties. Also avoid calling g_slist_length in GetProperties and
24509         GetMethods.
24510
24511 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
24512
24513         * reflection.c: avoid unaligned stores (bug spotted by
24514         Mark Crichton  <crichton@gimp.org>).
24515
24516 2002-09-25  Martin Baulig  <martin@gnome.org>
24517
24518         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
24519         instead of guint64 for addresses and added prologue/epilogue info.
24520
24521 2002-09-25  Martin Baulig  <martin@gnome.org>
24522
24523         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
24524         store line number info.  For the dynamic symbol file, we only need
24525         to provide the JIT generated dynamic line number info for the dynamic
24526         symbol file.
24527
24528 2002-09-25  Martin Baulig  <martin@gnome.org>
24529
24530         * debug-mono-symfile.h: Incremented version number.
24531
24532 2002-09-24  Martin Baulig  <martin@gnome.org>
24533
24534         * class.c (mono_debugger_class_init_func): New global function
24535         pointer variable.
24536         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
24537         call it.
24538
24539         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
24540         function.  This is called via the mono_debugger_class_init_func
24541         hook to add all types to the dynamic type table.
24542         (ves_icall_MonoDebugger_GetType): New interncall to get a class
24543         from its metadata token.
24544
24545         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
24546         New interncall for the debugger.
24547
24548 2002-09-24  Nick Drochak <ndrochak@gol.com>
24549
24550         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
24551         before using it in case it is null.
24552         
24553 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
24554
24555         * metadata.c: allow custom modifiers in local var signatures
24556         (bug spotted by Zoltan Varga).
24557
24558 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
24559
24560         * class.c: deal with the <Module> class that may have a NULL vtable.
24561         Eliminate warnings.
24562
24563 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
24564
24565         * image.c, image.h: more strong name helpers.
24566         * monosn.c: more work: convert pem keys to cryptoapi format.
24567
24568 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
24569
24570         * string-icalls.c: speedup IndexOf.
24571
24572 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
24573
24574         * icall.c: updates from Zoltan.2.Varga@nokia.com.
24575
24576 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
24577
24578         * icall.c: cleanup: use mono_object_domain ().
24579
24580 2002-09-23  Martin Baulig  <martin@gnome.org>
24581
24582         * debug-mono-symfile.c: Improved type support.
24583
24584 2002-09-22  Martin Baulig  <martin@gnome.org>
24585
24586         * debug-mono-symfile.c: Added support for reference types and strings.
24587
24588 2002-09-22  Martin Baulig  <martin@gnome.org>
24589
24590         * debug-mono-symfile.c: Started to work on the type table.
24591
24592 2002-09-21  Martin Baulig  <martin@gnome.org>
24593
24594         * debug-mono-symfile.c: Largely reworked the symbol table format.
24595         The symbol table is now incrementally updated each time a new
24596         method is added.  We're now also using our own magic and version
24597         so that you don't need to recompile all your classes if the
24598         dynamic table changes.
24599         (mono_debug_update_mono_symbol_file): Removed.
24600         (mono_debug_symfile_add_method): New function to add a method.
24601
24602 2002-09-21  Martin Baulig  <martin@gnome.org>
24603
24604         * icall.c
24605         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
24606         New interncall.
24607
24608         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
24609         New interncall to get a method from its metadata token.
24610
24611 2002-09-21  Martin Baulig  <martin@gnome.org>
24612
24613         * debug-mono-symfile.c: Create type table.
24614
24615 2002-09-20  Martin Baulig  <martin@gnome.org>
24616
24617         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
24618
24619 2002-09-20  Martin Baulig  <martin@gnome.org>
24620
24621         * debug-mono-symfile.c: Provide information about params and locals.
24622
24623 2002-09-20  Martin Baulig  <martin@gnome.org>
24624
24625         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
24626         New interncall.
24627
24628         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
24629         interncall to get a method from its metadata token.
24630
24631 2002-09-20  Martin Baulig  <martin@gnome.org>
24632
24633         * debug-mono-symfile.c: Added a few checks for method->header
24634         being non-NULL.  This should never happen, but for the moment
24635         let's use a g_warning() rather than a g_assert().
24636
24637 2002-09-19  Mark Crichton  <crichton@gimp.org>
24638
24639         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
24640         even if support for it isn't present.  Added an #ifdef to fix this.
24641
24642         * socket-io.c: Added checks back for Solaris support.
24643
24644 2002-09-19  Martin Baulig  <martin@gnome.org>
24645
24646         * debug-mono-symfile.c (read_string, write_string): Reflect latest
24647         changes in the symbol file format.
24648
24649 2002-09-18  Martin Baulig  <martin@gnome.org>
24650
24651         * debug-mono-symfile.c: Set version number to 21.
24652
24653 2002-09-18  Dick Porter  <dick@ximian.com>
24654
24655         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
24656         on netbsd.  Fixes bug 30051.
24657
24658 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24659
24660         * reflection.c:
24661         (set_version_from_string): little fix.
24662
24663 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
24664
24665         * monosn.c, Makefile.am: added strong name utility.
24666         * reflection.h, reflection.c: implemented delayed signing,
24667         locale, version and hash id assembly attributes.
24668
24669 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
24670
24671         * loader.c, metadata.c: load param attributes in signatures.
24672
24673 2002-09-16  Martin Baulig  <martin@gnome.org>
24674
24675         * debug-mono-symfile.c: Added string table with all method names.
24676
24677 2002-09-14  Martin Baulig  <martin@gnome.org>
24678
24679         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
24680         fast method lookup.
24681
24682 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
24683
24684         * reflection.c: record the public key token of referenced assemblies.
24685
24686 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
24687
24688         * image.c, image.h: added functions to get the strong name and the
24689         public key of an assembly.
24690         * pedump.c: use them.
24691
24692 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
24693
24694         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
24695
24696 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
24697
24698         * marshal.c (mono_marshal_get_managed_wrapper): Added
24699         MONO_TYPE_BOOLEAN 
24700
24701 2002-09-11  Martin Baulig  <martin@gnome.org>
24702
24703         * gc.c: Call GC_unregister_disappearing_link() on all links when
24704         finalizing them, this is necessary to aviod a crash in boehm's
24705         finalize handler.
24706
24707 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
24708
24709         * gc.c: handle GetTarget for finalized objects spotted and fixed by
24710         nick@chemlab.org.
24711
24712 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
24713
24714         * icall.c: implemented MonoType::Module.
24715         * reflection.c, reflection.h: mono_module_get_object () from
24716         Tomi Pakarinen <tomi.pakarinen@welho.com>.
24717
24718 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
24719
24720         * icall.c: ignore overridden methods in GetMethods ().
24721         Fix for FieldInfo::SetValue().
24722         * object.c: handle float/double in runtime invoke.
24723
24724 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
24725
24726         * object.c: allow a constructor to be called again on an object.
24727
24728 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
24729
24730         * class.h, class.c: move field layout code to it's own function and
24731         export it. Get an interface id earlier. Move fields in MonoClass
24732         so they are more cache friendly and align the bitfields.
24733         * loader.c: temporary handle get_param_names() for a runtime method.
24734         * reflection.c, reflection.h: more code to handle runtime creation of
24735         types.
24736
24737 2002-09-09  Martin Baulig  <martin@gnome.org>
24738
24739         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
24740         signature with the pinvoke field being set for the actual call.
24741
24742 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
24743
24744         * icall.c: removed some unused icalls. Start of map of glib charsets
24745         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
24746
24747 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
24748
24749         * debug-helpers.c: break infinite loop (found and fixed by
24750         Holger Arnold <harnold@gmx.de>).
24751
24752 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
24753
24754         * icall.c: target may be null in create_delegate.
24755
24756 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
24757
24758         * marshal.c: handle a boolean return type.
24759
24760 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
24761
24762         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
24763
24764 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
24765
24766         * gc.c: fix weakreferences.
24767
24768 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
24769
24770         * icall.c: added icall to get default codepage.
24771
24772 2002-09-03  Dick Porter  <dick@ximian.com>
24773
24774         * threads.h: 
24775         * threads.c: Use MonoThread instead of MonoObject where
24776         apropriate.
24777
24778         Store running thread objects in a hash table, so that we have all
24779         the info to hand when waiting for them to finish
24780         (means we don't need OpenThread() any more, so mingw builds should
24781         be fully functional again.)
24782
24783         * verify.c:
24784         * object.h: Added thread ID to MonoThread
24785
24786 2002-09-03  Martin Baulig  <martin@gnome.org>
24787
24788         * icall.c (System.Reflection.Assembly::get_location): New interncall.
24789
24790 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24791
24792         * icall.c: fixed leak in get_temp_path. Thanks lupus.
24793
24794 2002-09-03  Martin Baulig  <martin@gnome.org>
24795
24796         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
24797         argument to store the end address of the disassembled instruction.
24798
24799         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
24800         here from debug-symfile.h.
24801         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
24802         JIT into this struct.
24803         (MonoSymbolFile): Added `char *image_file' field.
24804         (MonoDebugGetMethodFunc): Removed.
24805         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
24806         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
24807         (mono_debug_find_method): New method.
24808
24809         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
24810         create a full symbol file.
24811         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
24812         and static symbol files.
24813         (mono_debug_find_method): The symbol file keeps an internal method hash,
24814         call this to get a MonoDebugMethodInfo from a MonoMethod.
24815
24816         * debug-symfile.[ch]: Removed.
24817
24818 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
24819
24820         * image.c (do_mono_image_open): Remove linker version check.
24821
24822 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
24823
24824         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
24825         wrappers for instance methods.
24826         
24827 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24828
24829         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
24830
24831 2002-08-28  Dick Porter  <dick@ximian.com>
24832
24833         * Makefile.am: Export HOST_CC for w32 builds
24834
24835 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
24836
24837         * file-io.c process.c: MonoString are null terminated, no
24838         need for mono_string_to_utf16() anymore.
24839
24840 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
24841
24842         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
24843
24844 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
24845
24846         * icall.c, reflection.h: speedup System.MonoType.
24847
24848 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
24849
24850         * reflection.c: allow null as the value of a string argument in
24851         custom attributes constructors.
24852
24853 2002-08-27  Martin Baulig  <martin@gnome.org>
24854
24855         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
24856         `trampoline_address' field.
24857
24858 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
24859
24860         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
24861         check (fixes bug #29486) 
24862
24863 2002-08-27  Martin Baulig  <martin@gnome.org>
24864
24865         * debug-mono-symfile.c: Changed the file format in a way that allows us
24866         open it read-only and to use a specially malloced area for all the
24867         dynamic data.  We can now also generate a symbol file on-the-fly if we're
24868         debugging IL code and there is no MCS generated symbol file for it.
24869
24870 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
24871
24872         * object.c: added a define for a good string and array
24873         creation speedup (not enabled by default because we need to deal with
24874         the synch stuff).
24875
24876 2002-08-26  Martin Baulig  <martin@gnome.org>
24877
24878         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
24879         function to create a dynamic symbol file.  This is used by the
24880         debugger to create a symbol file for IL code on-the-fly.
24881
24882 2002-08-26  Martin Baulig  <martin@gnome.org>
24883
24884         * loader.c (mono_lookup_pinvoke_call): Include the error message
24885         from g_module_error() in the error message.
24886
24887 2002-08-24  Martin Baulig  <martin@gnome.org>
24888
24889         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
24890         function to update the symbol file.  The symbol file is mmap()ed
24891         writable, but private.  This allows us to install the symbol file
24892         together with the assembly.
24893
24894 2002-08-24  Martin Baulig  <martin@gnome.org>
24895
24896         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
24897         but they can read the new symbol file format which mcs is now creating.
24898
24899         * debug-symfile.c (mono_debug_find_source_location): Moved to
24900         debug-mono-symfile.c; this is now operating on the new symbol file.
24901
24902 2002-08-23  Martin Baulig  <martin@gnome.org>
24903
24904         * debug-helpers.c (mono_method_desc_from_method): New function to get
24905         a MonoMethodDesc from a MonoMethod.
24906
24907 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
24908
24909         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
24910         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
24911
24912 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
24913
24914         * string-icalls.[ch]: make helper methods static.
24915
24916 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24917
24918         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
24919         types to it and to SetValueInternal.
24920
24921         * object.c: Moved handle_enum label to its proper place. This was the
24922         f... bug! ;-)
24923
24924         This time i compiled mcs and gtk-sharp and they both work.
24925
24926 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24927
24928         * icall.c: reverted partially my previous patch until 
24929         object.c:set_value handles enums correcly.
24930
24931 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24932
24933         * icall.c:
24934         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
24935         (ves_icall_System_Environment_get_MachineName): removed warning when
24936         compiling under cygwin.
24937
24938 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
24939
24940         * object.c: fixed field_get_value() for reference types.
24941
24942 2002-08-22  Dick Porter  <dick@ximian.com>
24943
24944         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
24945         Don't free a buffer while it's still needed.  Patch from Jonathan
24946         Liger <Jonathan.liger@wanadoo.fr>
24947
24948 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
24949
24950         * icall.c (ves_icall_System_Environment_get_Platform): Add new
24951         internal call.
24952
24953 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
24954
24955         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
24956         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
24957
24958         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
24959         we call unmanaged code which throws exceptions.
24960
24961 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
24962
24963         * appdomain.h: added per-domain entry_assembly.
24964         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
24965         arguments.
24966         * icall.c: Assembly::GetEntryAssembly icall.
24967         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
24968         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
24969
24970 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
24971
24972         * appdomain.h, gc.c: added mono_domain_finalize ().
24973
24974 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24975
24976         * object.c:
24977         (mono_print_unhandled_exception): changed g_warning by g_printerr
24978         because g_log has a 1024 characters limit (yeah, i got a big stack
24979         trace). Don't print exception name, that should be in ToString 
24980         returned string.
24981
24982 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24983
24984         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
24985         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
24986
24987 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24988
24989         * object.c:
24990         (mono_print_unhandled_exception): after previous commit, i realized
24991         that MS calls ToString on the exception. I changed this function to
24992         do that. This way we get stack_trace for free.
24993
24994 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24995
24996         * object.c:
24997         (mono_print_unhandled_exception): invoke Message property instead of
24998         getting 'message' field from Exception. Don't allocate memory for
24999         'trace' and 'message' if not needed.
25000
25001 2002-08-18  Dick Porter  <dick@ximian.com>
25002
25003         * unicode.c: Fix asserts to match Encoder.cs checks
25004
25005 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25006
25007         * marshal.c: fix unaligned store issue and a few wrong
25008         opcode argument types.
25009
25010 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25011
25012         * icall.c: added GetUninitializedObjectInternal internal call.
25013
25014 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
25015
25016         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
25017         to the right domain.
25018
25019 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
25020
25021         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
25022
25023         * class.c (class_compute_field_layout): set blittable to false for Strings
25024
25025         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
25026
25027 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25028
25029         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
25030         first chunk of code to create types at runtime. Code to
25031         handle ReflectedType/DeclaringType. Make reflection handles
25032         domain specific.
25033
25034 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
25035
25036         * class.c: set correct name in arrays.
25037
25038 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
25039
25040         * appdomain.c (mono_domain_transfer_object): make it work with
25041         valuetypes. bug fixes.
25042
25043 2002-08-12  Dick Porter  <dick@ximian.com>
25044
25045         * object.h: Rename some parameters to avoid c++ keywords (Patch
25046         from Joseph Wenninger <kde@jowenn.at>)
25047
25048 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
25049
25050         * icall.c: added icall to implement Assembly.GetFile*.
25051
25052 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25053
25054         * reflection.h, reflection.c: code to embed managed resources.
25055
25056 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
25057
25058         * class.c: move all the type size stuff into
25059         class_compute_field_layout().
25060
25061 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25062
25063         * class.c: ensure enums have always the correct instance size.
25064         * unicode.c: remove wrong assert.
25065
25066 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
25067
25068         * assembly.c: fix mem corruption issue.
25069         * image.h, image.c: added mono_image_get_resource () to access
25070         managed resources.
25071         * icall.c: implemented Assembly.EntryPoint property and some
25072         Managed Resources related internalcalls.
25073
25074
25075 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25076
25077         * image.c, image.h: impemented mono_image_get_entry_point ().
25078         * appdomain.c: use mono_image_get_entry_point.
25079
25080 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25081
25082         * reflection.c: support the object type argument when loading
25083         custom attributes.
25084
25085 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
25086
25087         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
25088         String as return type.
25089
25090 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
25091
25092         * reflection.c: fix encoding of named args for custom attrs to match
25093         the ms implementation. Read them back when instantiating custom
25094         attributes.
25095
25096 2002-08-02  Radek Doulik  <rodo@ximian.com>
25097
25098         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
25099         by Dietmar as quick fix
25100         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
25101         16 as stack size, used on more places as quick fix before Dietmar
25102         will fix it properly
25103
25104 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25105
25106         * object.h, object.c: added accessors for fields and properties.
25107
25108 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25109
25110         * class.c, class.h: made mono_class_get_field_from_name ()
25111         loop on parent types.
25112         Added mono_class_get_property_from_name ().
25113
25114 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
25115
25116         * class.c, class.h: move the code to setup the type vtable in its own
25117         function so that it can be reused also for types created at runtime.
25118         Eliminate the "class" identifier from the header file.
25119         * reflection.c: setup the vtable for enums so that we can create
25120         objects for use in SetConstant ().
25121
25122 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
25123
25124         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
25125         instead of the delegate itself as this pointer (bug #28383)
25126
25127 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
25128
25129         * marshal.c (mono_marshal_get_managed_wrapper): added return type
25130         conversions.
25131
25132 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25133
25134         * loader.c: don't set the pinvoke bit on icalls.
25135
25136 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
25137
25138         * debug-helpers.c (mono_method_full_name): only print a number to
25139         indicate wrapper type (so that the output is more readable in traces).
25140
25141 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
25142
25143         * class.c (mono_class_init): include method override patch from Paolo
25144
25145 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
25146
25147         * icall.c: fixed GetTypeCode().
25148
25149 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
25150
25151         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
25152         use real delegate invoke function to make it work with multicast
25153         delegates (fix bug# 28291).
25154
25155 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
25156
25157         * object.c: load constant strings.
25158
25159 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
25160
25161         * reflection.c: no magic numbers.
25162         * tabledefs.h: security action enum.
25163
25164 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
25165
25166         * assembly.c: fix possible memory corruption.
25167
25168 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25169
25170         * reflection.h, reflection.c: added support for linking resources.
25171         * verify.c: check we have an updated corlib.
25172
25173 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
25174
25175         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
25176         string arrays.
25177         (mono_marshal_string_array): null terminate unmanaged string arrays.
25178         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
25179
25180 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
25181
25182         * icall.c: Type.GetType () can now return also types from the
25183         calling assembly.
25184
25185 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
25186
25187         * loader.h, loader.c: stack walking support.
25188         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
25189         GetCallingAssembly.
25190
25191 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
25192
25193         * marshal.c: added optimisations for blittable types 
25194
25195         * class.c (mono_array_class_get): do not set blittable attribute on arrays
25196         (mono_class_setup_mono_type): set blittable attribute for single
25197         and double.
25198
25199         * marshal.c (mono_string_utf8_to_builder): impl.
25200         (mono_string_builder_to_utf8): impl.
25201         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
25202
25203 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
25204
25205         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
25206         (mono_marshal_get_managed_wrapper): impl. byref types
25207
25208 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25209
25210         * icall.c:
25211         (search_method): don't display debug message. 
25212
25213 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
25214
25215         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
25216
25217 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
25218
25219         * appdomain.c: set the missing filename when throwing exception.
25220
25221 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
25222
25223         * metadata.c (mono_type_size): code cleanup
25224         (mono_type_stack_size): removed some test code
25225
25226 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
25227
25228         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
25229         mono_get_exception_file_not_found now.
25230
25231         * exception.c (mono_exception_from_name_two_strings): New version
25232         that will call a constructor with two string arguments. 
25233         (mono_get_exception_file_not_found): New helper routine, used to
25234         report file-not-found errors.
25235
25236 2002-07-20  Dick Porter  <dick@ximian.com>
25237
25238         * process.h:
25239         * process.c: Pass file handles to CreateProcess
25240         
25241         * icall.c:
25242         * file-io.h:
25243         * file-io.c: Implemented CreatePipe
25244
25245 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
25246
25247         * metadata.c (mono_get_param_info): set alignment for value types
25248
25249 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25250
25251         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
25252         Constify mono_domain_assembly_open().
25253         * loader.c: handle null namespace in icalls.
25254
25255 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
25256
25257         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
25258         (emit_str_to_ptr_conv): marshal object as structs
25259
25260         * metadata.c (mono_type_to_unmanaged): marshal object as structs
25261
25262         * marshal.c (mono_marshal_get_runtime_invoke): support value types
25263
25264 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
25265
25266         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
25267         (mono_marshal_get_native_wrapper): we an now return value types
25268
25269 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25270
25271         * verify.c: more checks implemented.
25272
25273 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
25274
25275         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
25276         (fix bug #27695)
25277         (mono_marshal_get_native_wrapper): allow byref arguments
25278         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
25279         impl. PtrToStringXXX methods
25280         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
25281         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
25282         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
25283         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
25284         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
25285
25286 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25287
25288         * reflection.c: fix buglet in parsing an assembly name.
25289
25290 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
25291
25292         * marshal.c (emit_ptr_to_str_conv): first impl.
25293
25294 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
25295
25296         * object.c, class.h: cache the vtable in the class as suggested by
25297         vargaz@freemail.hu (Zoltan Varga).
25298
25299 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25300
25301         * class.h, loader.c: added mono_field_from_token().
25302         * verify.c: first cut of type checking code.
25303
25304 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
25305
25306         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
25307
25308 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
25309
25310         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
25311         (fix bug #27782)
25312         (mono_marshal_get_remoting_invoke): impl.
25313         (mono_delegate_begin_invoke): impl.
25314         (mono_mb_emit_save_args): impl.
25315         (mono_delegate_end_invoke): impl.
25316         (mono_marshal_get_delegate_begin_invoke):
25317         (mono_marshal_get_delegate_end_invoke):
25318         (mono_marshal_get_delegate_invoke): generate a special name for
25319         those methods (including the signature) and associate them whith
25320         the delegate class. 
25321
25322 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
25323
25324         * reflection.[ch]: 
25325         (mono_reflection_type_from_name): now it has a MonoImage parameter
25326         which is used as the default image to search the type in. If the image
25327         is NULL or getting the type from it fails, it defaults to corlib.
25328
25329         * icall.c: changed 1 call to mono_reflection_type_from_name to match
25330         new parameter.
25331
25332 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25333
25334         * reflection.c: update the parameter table index.
25335
25336 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
25337
25338         * domain.c: don't include the mark byte in the string hash.
25339
25340 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
25341
25342         * icall.cs: icall for Type.GetTypeCode ().
25343         * verify: a couple of fixes and disabled local initialization checks.
25344
25345 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
25346
25347         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
25348
25349         * debug-helpers.c (mono_method_full_name): print the type of the
25350         runtime wrapper
25351
25352         * metadata.c (mono_signature_hash): a hash function for signatures
25353         (mono_signature_hash): better hash algorithm
25354
25355         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
25356
25357         * debug-helpers.c (mono_method_full_name): this can now generate
25358         method names with signatures
25359
25360         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
25361         method dont have this pointers.
25362
25363 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
25364
25365         * reflection.c: fixup typebuilder tokens.
25366         * image.c: fix buglet.
25367         * marshal.h: remove whitespace.
25368         * metadata.h, metadata.c: reinstate code that was removed.
25369         * verify.c: handle catch directives and fix another couple of bugs.
25370
25371 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
25372
25373         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
25374         (mono_marshal_get_native_wrapper): make it comp. with the old code
25375         (mono_marshal_get_native_wrapper): support boolean
25376         (mono_marshal_get_managed_wrapper): support more types
25377
25378 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
25379
25380         * class.c (class_compute_field_layout): compute class->blittable attribute.
25381
25382 2002-07-09  Dick Porter  <dick@ximian.com>
25383
25384         * threads.c: Make the thread cleaning up cope with threads that
25385         call ExitThread()
25386
25387 2002-07-08  Radek Doulik  <rodo@ximian.com>
25388
25389         * reflection.c (method_encode_code): use non-translated values to
25390         compute finally_start, this fixes exception handling on ppc, yay!
25391
25392         * decimal.h (struct signscale): fix endianess
25393
25394 2002-07-07  Radek Doulik  <rodo@ximian.com>
25395
25396         * reflection.c: swap box_val and not val
25397
25398 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
25399
25400         * reflection.c, reflection.h: handle full assembly info in type name.
25401         Handle Type arguments when loading custom attributes.
25402         * icall.c: updated to use new mono_reflection_type_from_name () method.
25403
25404 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25405
25406         * loader.c:
25407         (method_from_memberref): also print assembly name when method not found.
25408
25409 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25410
25411         * icall.c:
25412         (ves_icall_TypeGetProperties): fixed bug #27473. 
25413
25414 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25415
25416         * reflection.c: display image name and token when cannot find the
25417         .ctor for an attribute.
25418
25419 2002-07-05  Martin Baulig  <martin@gnome.org>
25420
25421         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
25422
25423 2002-07-04  Dick Porter  <dick@ximian.com>
25424
25425         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
25426         compile on mingw.  This will cause mingw builds to not wait for
25427         subthreads to terminate after the main thread does.  I've lodged a
25428         bug with the mingw developers for them to wrap OpenThread().
25429
25430 2002-07-03  Dick Porter  <dick@ximian.com>
25431
25432         * threads.c: Store thread IDs instead of handles, because
25433         GetCurrentThread() returns a pseudohandle and therefore stores
25434         useless values.  mono_thread_cleanup() continues checking the
25435         array of threads until it is empty, to cope with subthreads
25436         spawning new threads after the main thread has finished.
25437
25438         * profiler.h:
25439         * profiler.c:
25440         * profiler-private.h: Pass the thread ID to thread profiler
25441         functions, instead of a handle
25442
25443 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
25444
25445         * verify.c: fixes to make it more usable.
25446         * pedump.c: added --verify code to verify IL code in an assembly.
25447
25448 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25449
25450         * reflection.c: turn errors into warnings to allow compiling corlib.
25451
25452 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
25453
25454         * reflection.c: add special cases to compile corlib.
25455
25456 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
25457
25458         * reflection.c: handle properties with only a set method.
25459
25460 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
25461
25462         * opcodes.h: add enum with opcodes in opval order.
25463
25464 2002-07-01  Dick Porter  <dick@ximian.com>
25465         
25466         * object.h:
25467         * object.c (mono_runtime_run_main): Removed unneeded argument
25468
25469 2002-06-28  Martin Baulig  <martin@gnome.org>
25470
25471         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
25472
25473 2002-06-27  Dick Porter  <dick@ximian.com>
25474
25475         * threads.c: Store the handle in both the parent thread and in the
25476         subthread, to minimise the time between starting a new thread and
25477         storing its ID.
25478
25479 2002-06-26  Dick Porter  <dick@ximian.com>
25480
25481         * appdomain.c (mono_runtime_cleanup): Close the socket library
25482         after all the threads have finished, not before
25483
25484 2002-06-26  Martin Baulig  <martin@gnome.org>
25485
25486         * debug-symfile.c (mono_debug_find_source_location): Added
25487         `guint32 *line_number' argument.  If it's not NULL, store the line number
25488         there and return the file name without the line number.
25489
25490 2002-06-25  Dick Porter  <dick@ximian.com>
25491
25492         * icall.c:
25493         * process.h:
25494         * process.c: Process forking and other support functions
25495
25496 2002-06-25  Dick Porter  <dick@ximian.com>
25497
25498         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
25499         things dont happen when the image is closed.
25500         (mono_image_lookup_resource): Walk the resource section looking
25501         for a particular entry
25502
25503         * cil-coff.h: PE resource section decoding
25504
25505 2002-06-25  Dick Porter  <dick@ximian.com>
25506         
25507         * assembly.h:
25508         * assembly.c: 
25509         (mono_assembly_foreach): Accessor functions to walk the list of
25510         loaded assemblies
25511         (mono_assembly_set_main):
25512         (mono_assembly_get_main): Process methods need to know which
25513         assembly is the "main" one
25514
25515         * object.c (mono_runtime_run_main): Record the main assembly
25516
25517         * debug-helpers.c: Fix typo
25518
25519 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
25520
25521         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
25522         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
25523
25524 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
25525
25526         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
25527
25528 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
25529
25530         * image.c (do_mono_image_open): Initialize reference count,
25531         otherwise we leak the MonoImage.
25532
25533 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
25534
25535         * reflection.c: small tweak to handle self-hosting.
25536
25537 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25538
25539         * reflection.c: fix type name parse code.
25540
25541 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
25542
25543         * reflection.c: break out of the loop.
25544         * image.c: special case corlib.
25545
25546 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25547
25548         * reflection.c: add all the custom attrs at the end to ensure the
25549         ctors have been properly initialized when the attributes are defined
25550         in the current assembly.
25551
25552 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
25553
25554         * reflection.c: handle correctly multiple-nested types.
25555
25556 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
25557
25558         * row-indexes.h: fix typos.
25559         * reflection.c: adjust for typos and fix method_def_or_ref
25560         encoding in MethodImpl table.
25561
25562 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
25563
25564         * reflection.c: fix entry point patching (thanks Serge!).
25565
25566 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
25567
25568         * verify.c: add check for System.Exception
25569
25570 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
25571
25572         * image.c, class.c: minifix for code just c&p'ed.
25573         * reflection.c: warning fix.
25574         * object.h, loader.h, domain.c: load also StringBuilder.
25575
25576 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
25577
25578         * marshal.h, marshal.c: some support code to handle complex marshaling.
25579
25580 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25581
25582         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
25583         Better signatures with vtable error dump.
25584
25585 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
25586
25587         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
25588
25589 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
25590
25591         * icall.c (ves_icall_Type_GetField): impl.
25592
25593 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25594
25595         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
25596         to retrieve a marshal description blob for a field or param.
25597
25598 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25599
25600         * reflection.h, reflection.c: change order of nested type emission
25601         to avoid table corruption. The NestedTypes table is sorted.
25602         * icall.c: change order of GetConstructor results to workaround mcs bug.
25603
25604 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
25605
25606         * reflection.h, reflection.c: handle field and param marshal
25607         information.
25608
25609 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25610
25611         * icall.c, marshal.c marshal.h: more Marshal class implementation.
25612
25613 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25614
25615         * reflection.c: fix call convention.
25616
25617 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25618
25619         * reflection.h, reflection.c: mono_image_get_memberref_token()
25620         takes a type instead of a class, now. Added
25621         mono_image_get_array_token() to create tokens for the special
25622         multi-dim array methods.
25623
25624 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25625
25626         * assembly.c: handle modules (no assembly table). Split
25627         loading references in its own function.
25628         * class.c: handle moduleref resolution scope.
25629         * image.c, image.h: cache module name in image.
25630
25631 2002-06-07  Martin Baulig  <martin@gnome.org>
25632
25633         * reflection.c (mono_image_get_type_info): Only add a class layout entry
25634         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
25635
25636 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
25637
25638         * icall.c: more signature fixes that used uint instead of int.
25639
25640 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25641
25642         * reflection.c: fixed signature of field refs.
25643
25644 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
25645
25646         * class.c, reflection.c: handle typerefs of nested types
25647         (both on read and when writing files).
25648
25649 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
25650
25651         * icall.c: fix method signatures that tried to workaround the previous
25652         typo, d'oh!
25653
25654 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
25655
25656         * debug-helpers.c: fix typo.
25657
25658 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
25659
25660         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
25661         rewrote the PE/COFF writing code (our programs are understood by the
25662         ms runtime, now).
25663
25664 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
25665
25666         * gc.c, gc.h, icall.c: weakreference support.
25667
25668 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25669
25670         * Makefile.am, mono-config.c: use $(sysconfdir).
25671
25672 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
25673
25674         * icall.c: changed default precision of Double.ToString() to 15.
25675         Fixed memory leak. Unified with Single.ToString.
25676
25677 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
25678
25679         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
25680
25681 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25682
25683         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
25684         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
25685         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
25686         and myself.
25687
25688 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
25689
25690         * debug-symfile.c, sysmath.c: yet more compilation fixes.
25691
25692 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25693
25694         * reflection.c, socket-io.c: more compilation fixes.
25695
25696 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
25697
25698         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
25699         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
25700         unicode.c: warning and compiler compatibility fixes.
25701
25702 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
25703
25704         * class.h, metadata.c: fixed warnings/compilation errors.
25705
25706 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
25707
25708         * Makefile.am, mono-config.c, mono-config.h: configuration file
25709         support routines.
25710         * loader.c, loader.h: make Dll mapping configurable at runtime in the
25711         config file. Export methods to insert and lookup mappings.
25712
25713 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25714
25715         * reflection.c: handle types and boxed objects in custom attr
25716         constructors.
25717
25718 2002-05-30  Martin Baulig  <martin@gnome.org>
25719
25720         * debug-symfile.c
25721         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
25722
25723 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
25724
25725         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
25726         to lookup the implmap row for a P/Invoke method.
25727         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
25728         P/Invoke method from the runtime on an as needed basis.
25729
25730 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
25731
25732         * metadata.c (mono_metadata_parse_signature): impl.
25733
25734 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25735
25736         * class.c: handle .pack directive.
25737
25738 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25739
25740         * object.c: initialize static fields with RVA data.
25741
25742 2002-05-25  Martin Baulig  <martin@gnome.org>
25743
25744         * debug-symfile.c
25745         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
25746
25747 2002-05-24  Martin Baulig  <martin@gnome.org>
25748
25749         * debug-symfile.c
25750         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
25751         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
25752         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
25753
25754 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
25755
25756         * object.c: special case string ctros in invoke.
25757         * gc.c: silly whitespace changes.
25758
25759 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
25760
25761         * threadpool.[ch]: impl. a threadpool that can
25762         be used by mint and mono.
25763
25764 2002-05-22  Martin Baulig  <martin@gnome.org>
25765
25766         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
25767         The first argument is now a `MonoReflectionModuleBuilder *', the return
25768         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
25769         `methods' field to get the method builder.  The `token' argument is the
25770         unfixed token.
25771
25772         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
25773         invalid characters instead of g_assert_not_reached()ing.  This seems
25774         to be the behaviour of mscorlib.
25775
25776 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
25777
25778         * object.c (mono_runtime_invoke_array): applied patch from Rachel
25779         Hestilow to fix bug #25104
25780
25781 2002-05-21  Martin Baulig  <martin@gnome.org>
25782
25783         * debug-symfile.c (mono_debug_find_source_location): New function.
25784         Looks up an IL offset in the line number table and returns the source
25785         location as a string.
25786
25787 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25788
25789         * icall.c:
25790         (mono_double_ToStringImpl): changed %f by %g until we have something
25791         better.
25792
25793 2002-05-21  Nick Drochak  <ndrochak@gol.com>
25794
25795         * icall.c : Use different name for Math.Pow's icall.  Needed to check
25796         parameters first in C#.
25797
25798 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
25799
25800         * icall.c, reflection.h: added icall to get info about an event.
25801
25802 2002-05-20  Radek Doulik  <rodo@ximian.com>
25803
25804         * object.c (mono_value_box): don't use memcpy for boxing on BIG
25805         endian
25806         (mono_value_box): don't use memcpy for small sizes on
25807         architectures with unaligned access
25808
25809 2002-05-20  Martin Baulig  <martin@gnome.org>
25810
25811         * reflection.c (mono_reflection_setup_internal_class): Don't crash
25812         if `tb->parent == NULL'.
25813         (mono_reflection_create_internal_class): New function.  This is
25814         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
25815         for enum types.
25816
25817         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
25818         New interncall.
25819
25820 2002-05-19  Martin Baulig  <martin@gnome.org>
25821
25822         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
25823         argument to get the length, don't default to the array length.
25824
25825 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
25826
25827         * assembly.c (mono_assembly_setrootdir): New function used to
25828         override the MONO_ASSEMBLIES directory.
25829
25830 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
25831
25832         * icall.c: ValueType_GetHashCode() initialize local var.
25833
25834 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
25835
25836         * reflection.c: sort custom attributes table.
25837
25838 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25839
25840         * reflection.c: support named args in custom attributes (write support).
25841
25842 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
25843
25844         * reflection.c: fix finally position calculation.
25845
25846 2002-05-15  Radek Doulik  <rodo@ximian.com>
25847
25848         * reflection.c: fixed endianess at many places
25849
25850         * icall.c (ves_icall_InitializeArray): comment out debug msg
25851
25852 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
25853
25854         * object.c (mono_unhandled_exception): new function to handle
25855         unhandled exceptions.
25856         (mono_unhandled_exception): call the UnhandledException event.
25857         (mono_runtime_delegate_invoke): impl.
25858
25859 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
25860
25861         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
25862         returns the RVA, not the direct pointer to the data. Handle the case
25863         when the class size is fixed.
25864
25865 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
25866
25867         * reflection.c: fix some endianess issues.
25868
25869 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
25870
25871         * object.c (mono_runtime_invoke): is now able to catch exceptions.
25872
25873         * threads.c (mono_thread_init): added a callback which is invoked
25874         at thread start.
25875
25876 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
25877         
25878         * icall.c: make GetHashCode return non-negative values.
25879
25880 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
25881
25882         * object.c, icall.c, gc.c: revert to address-based hashcode.
25883
25884 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
25885
25886         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
25887
25888 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
25889
25890         * icall.c, class.c: special case <Module>.
25891
25892 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
25893
25894         * icall.c: fix bug in GetNow().
25895
25896 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
25897
25898         * object.c (mono_runtime_class_init): make sure that we call all
25899         static class constructors.
25900
25901 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25902
25903         * reflection.c: sort methodsemantics table.
25904
25905 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25906
25907         * reflection.h, reflection.c: honour init locals setting.
25908
25909 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
25910
25911         * icall.c: copied Double ToStringImpl for Single ToStringImpl
25912
25913 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
25914
25915         * reflection.c: support ContructorBuilders in attribute blob creation.
25916
25917 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
25918
25919         * reflection.c: some changes to build a binary that can be run
25920         directly in windows.
25921
25922 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
25923
25924         * loader.c: print a big message when an icall can't be found.
25925
25926 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25927
25928         * string-icalls.c: fix bug 24248.
25929
25930 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
25931
25932         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
25933         icall.c, reflection.h: separate assembly loading by pathname and by
25934         assembly name. Use the MONO_PATH env var to search for assemblies.
25935
25936 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
25937
25938         * assembly.c, image.h: add some support for assemblies
25939         with multiple modules.
25940         * class.c, class.h: export mono_class_from_typeref().
25941         * loader.c: remove duplicated code and use mono_class_from_typeref(),
25942         instead.
25943
25944 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
25945
25946         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
25947         documentation says (the ECMA one is correct).
25948
25949 2002-05-02  Dick Porter  <dick@ximian.com>
25950
25951         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
25952         Don't name the synchronisation mutex.
25953
25954 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
25955
25956         * rand.c
25957         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
25958         Make the prototypes match.
25959         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
25960         Same.
25961
25962         * icall.c
25963         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
25964         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
25965         all systems have tm.tm_zone, so use strftime() with %Z to print
25966         the timezone abreviation into a temp string.
25967
25968         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
25969         rather than mono_array_addr() on a MonoString on Big Endian
25970         machines.
25971
25972 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
25973
25974         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
25975         fix bug 24041
25976
25977 2002-04-30  Dick Porter  <dick@ximian.com>
25978
25979         * socket-io.c: Cope with SOCKET being an integer rather than a
25980         pointer now.
25981
25982         * threads.c: Added Thread_free_internal, to deal with thread
25983         handle cleanup.  Moved calls to handle_store() and handle_remove()
25984         to start_wrapper(), so each can only be called once.  Allocate
25985         synchronisation blocks with GC_malloc(), and use GC finalisation
25986         to close the handles.
25987
25988         * icall.c: added System.Threading.Thread::Thread_free_internal
25989
25990 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25991
25992         * icall.c: support Environment.Exit, CommandLineArgs().
25993
25994 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25995
25996         * object.c, object.h: added mono_runtime_run_main () and
25997         mono_runtime_get_main_args () for use in System.Environment.
25998
25999 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26000
26001         * gc.c: fix thinko, enable actual finalization since the jit is now
26002         fixed.
26003
26004 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26005
26006         * gc.c, object.c: take into account that an object may be offset wrt the address
26007         returned by GC_malloc().
26008
26009 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
26010
26011         * image.c: handle files without entries in the assembly table (modules).
26012
26013 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
26014
26015         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
26016         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
26017         allowed to be null when it's System.Object class setup.
26018
26019 2002-04-27  Martin Baulig  <martin@gnome.org>
26020
26021         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
26022         if `tb->parent == NULL' rather than crashing.
26023
26024 2002-04-28  Nick Drochak  <ndrochak@gol.com>
26025
26026         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
26027         calling acos() where asin() should have been called.
26028
26029 2002-04-26  Martin Baulig  <martin@gnome.org>
26030
26031         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
26032         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
26033         there's a subdirectory called `System', but we don't want to read that
26034         subdirectory as an assembly.
26035
26036 2002-04-25  Martin Baulig  <martin@gnome.org>
26037
26038         * debug-symfile.c: Reflect latest MonoString changes.
26039
26040 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26041
26042         * rand.c, rand.h: instance method icalls need to have an explicit
26043         this pointer as first argument in the C implementation.
26044
26045 2002-04-25  Nick Drochak <ndrochak@gol.com>
26046
26047         * icall.c: Fix typo in map for GetNonZeroBytes
26048
26049 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26050
26051         * string-icalls.c : String does now passes unit tests without any 
26052         errors, the following changes has been made:
26053         
26054         Implemented replace methods.
26055         Renaming of methods to (try) follow the standard.
26056         Fixed compare ordinal
26057         Made all memory allocated directly to function instead of via icall function.
26058         Small performance fix in is_in_array function
26059                         
26060  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
26061
26062         c (mono_string_Internal_ctor_charp_int_int):
26063         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
26064         sindex < 0, throw ArgumentOutOfRangeException instead of
26065         ArgumentNullException.
26066
26067         Added new check for length == 0, however
26068         I need to make it return String.Empty from the C code.
26069         
26070         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
26071         that calculate the length for us here.
26072         
26073         (mono_string_Internal_ctor_sbytep_int_int): Replaced
26074         mono_string_new_utf16 with mono_string_new, since value is utf8.
26075
26076 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26077
26078         * object.c: register the object for finalization if needed.
26079         Allocate one more char in the string for the terminating 0 char.
26080
26081 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26082
26083         * class.c, class.h, image.c: check if a type implemenst a destructor.
26084         Use the proper key for array class lookups.
26085         * icall.c: register the icalls in the System.GC class.
26086         * gc.c, gc.h: GC-related functions and icalls.
26087
26088 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26089
26090         * icall.c:
26091         * socket-io.c:
26092         * unicode.c: free some strings gotten from mono_string_to_utf8 and
26093         changed a couple of free () by g_free ().
26094
26095         * decimal.c: one-liner in the comments for decimal2string ().
26096
26097 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26098
26099         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
26100
26101 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26102
26103         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
26104         * object.c (mono_runtime_invoke_array) : handle null in params
26105
26106 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26107
26108         * string-icalls.c: fixed bug in split (one off bug)
26109
26110 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26111
26112         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
26113         * icalls.c: added String::Equals as internal method
26114
26115 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26116
26117         * threads.c: fixed bug in the double interlocked functions
26118
26119 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
26120
26121         * threads.c: implemented all of the new interlocked icalls.
26122         * string-icalls.c: fix a bug in insert.
26123         * icalls.c: added the icalls for interlocked, removed old string functions.
26124         
26125 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
26126
26127         * loader.c: fix off-by-one error when reading argument names.
26128
26129 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26130
26131         * profiler.c: win32 counter implementation (untested).
26132         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
26133         (the latter needs testing and more complete impl. from win32 folks).
26134
26135 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
26136
26137         * object.c: mono_array_new_full workaround mono_array_class_get
26138         problem.
26139
26140 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26141
26142         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
26143         * object.h (mono_string_chars): Changed casting type.
26144
26145 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26146
26147         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
26148                            method signatures to use gunichar2 instead of gint16.
26149
26150 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
26151
26152         * object.h, object.c: domain-specific versions of mono_object_new and
26153         mono_array_new.
26154
26155 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
26156
26157         * object.c: changed String layout
26158
26159         * string-icalls.c (mono_string_Internal_ctor_chara): added
26160         internal string constructors.
26161
26162 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
26163
26164         * threads.c: pass 'this' to the thread start routine.
26165
26166 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26167
26168         * string-icalls.c: fix IndexOf and LastIndexOf. Now
26169         InternalCompareStr don't call twice mono_string_cmp_char for the last
26170         character. Improved performance in mono_string_cmp_char.
26171
26172 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
26173
26174         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
26175         code into its own library: libmonoruntime.
26176
26177 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
26178
26179         * object.h, object.c: changed array format so that szarrays do not
26180         require a bounds structure.
26181         * icall.c, appdomain.c: support for new szarray format.
26182
26183 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
26184
26185         * metadata.c: compare also the retuns type when comparing signatures:
26186         we didn't do this as an optimization since really overloaded methods
26187         must differ also in the arguments, but this doesn't work with
26188         low-level IL code (or when using explicit conversion operators: see
26189         bug#23498 for an example).
26190
26191 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26192
26193         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
26194
26195 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
26196
26197         * icall.c: make MonoType::GetElementType its own icall.
26198
26199 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26200
26201         * icall.c: remove MonoMethod_get_Name().
26202         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
26203         object.
26204
26205 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26206
26207         * string-icalls.c: optimized a few methods.
26208
26209 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26210
26211         * icall.c: added all new string internal calls
26212         * string-icalls.c: added, new string internal call implementation.
26213         * object.c: added mono_string_new_size for allocating a string a size
26214
26215 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
26216
26217         * object.c (mono_object_isinst): use the same code as in the
26218         optimized x86 version.
26219
26220 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26221
26222         * profiler.c: TSC-based timer code (faster and more accurate).
26223         Not hooked up in configure, yet (set USE_X86TSC to 1).
26224
26225 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
26226
26227         * profiler.c, profiler.h: track time spent compiling methods.
26228         * threads.c: track thread creation/destruction.
26229
26230 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
26231
26232         * profiler.c, profiler.h, profiler-private.h: profiling interface
26233         and sample implementation. Moved here so that it can be used also by
26234         the jit.
26235
26236 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
26237
26238         * reflection.c, reflection.h: keep types and other handles separate in
26239         the hash tables for referred tokens. Add guid for modules.
26240
26241 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26242
26243         * assembly.c: fix bugs found with valgrind.
26244         * metadata.h, metadata.c: added mono_metadata_guid_heap().
26245
26246 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
26247
26248         * threads: added icall support for getting current domain for
26249                    the thread.
26250  
26251 2002-04-13  Martin Baulig  <martin@gnome.org>
26252
26253         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
26254         (MonoDebugVarInfo): Added `index' field for register based addresses.
26255         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
26256         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
26257         `MonoDebugVarInfo *params' and `guint32 this_offset' with
26258         `MonoDebugVarInfo *this_var'.
26259
26260         * debug-symfile.c (relocate_variable): New static function to write
26261         a location description for a local variable or method parameter.
26262
26263 2002-04-12  Martin Baulig  <martin@gnome.org>
26264
26265         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
26266         stack offset and begin/end scope address of a local variable.
26267         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
26268         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
26269         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
26270
26271         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
26272         Added new relocation types for start/end scope of a local variable.
26273
26274 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26275
26276         * object.h: add mono_object_domain() macro.
26277         * reflection.c: handle typespecs.
26278         * icall.c: MonoMethod::get_Name() implementation.
26279
26280 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26281
26282         * icall.c: String::GetHashCode() icall implementation.
26283
26284 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26285
26286         * icall.c: String::IndexOfAny icall.
26287         * object.c, object.h: make array->max_length more useful.
26288         Intrduced mono_object_class() and mono_string_length() macros.
26289
26290 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26291
26292         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
26293         instead of g_unichar_isdigit.
26294
26295 2002-04-11  Nick Drochak  <ndrochak@gol.com>
26296
26297         * icall.c: Implement a simple Double.ToString().
26298
26299 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
26300
26301         * appdomain.h: only io-layer.h is supposed to be included.
26302         * icall.c: explicitly import environ. Fix warning.
26303
26304 2002-04-10  Nick Drochak  <ndrochak@gol.com>
26305
26306         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
26307                 return true even if it's not Daylight Savings time.
26308                 Only return false for the case where the function isn't
26309                 implemented for a plaform (read Windows).
26310
26311 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26312
26313         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
26314         data with a mutex.
26315
26316 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
26317
26318         * mempool.c (mono_mempool_alloc): only use g_malloc when
26319         absolutely necessary.
26320
26321 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
26322
26323         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
26324
26325         * class.c (mono_class_vtable): use domain mempool to allocate vtable
26326         (mono_class_proxy_vtable): use domain mempool
26327
26328 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26329
26330         * appdomain.h, appdomain.c: split initialization that requires the
26331         execution engine support into mono_runtime_init().
26332
26333 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
26334
26335         * class.c (mono_class_init): don't include vtable inside MonoClass
26336         to save some memory, gather some statistics.
26337         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
26338
26339 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26340
26341         * icall.c: internalcall implementation for ValueType.Equals().
26342
26343 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
26344
26345         * object.c (mono_message_init): moved 
26346         (mono_runtime_exec_main): new arch. independent impl.
26347         (mono_runtime_invoke_array): new method - like
26348         mono_runtime_invoke, but you can pass an array of objects.
26349         (mono_remoting_invoke): new arch. independent impl.
26350         (mono_message_invoke): new arch. independent impl.
26351         (mono_runtime_class_init): new arch. independent impl.
26352         (mono_runtime_object_init): new arch. independent impl.
26353
26354 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26355
26356         * metadata.c, object.c, reflection.c: documented the exported
26357         functions.
26358
26359 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
26360
26361         * icall.c: simpler code to pass the assembly builder data to corlib.
26362         Implement GetNestedTypes() internalcall.
26363
26364 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26365
26366         * class.c: warn if a type can't be loaded.
26367
26368 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
26369
26370         * image.h: typedef MonoImageOpenStatus
26371         * types.h: removed unused file
26372         
26373 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
26374
26375         * icall.c: Enum_ToObject accepts enum value arguments.
26376
26377 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
26378
26379         * class.c: move initialization of properties, events and nested
26380         classes, so that they happen for interfaces, too.
26381
26382 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26383
26384         * icall.c: cleanup some ugly casts in Array_SetValue*.
26385
26386 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26387
26388         * icall.c: the values array fro enums is of the correct type, now.
26389         Implement (correctly) getFullName instead of assQualifiedName for
26390         MonoType.
26391         * reflection.h, reflection.c: added mono_type_get_name ().
26392
26393 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26394
26395         * assembly.c, image.h: for each MonoImage, record from wich assembly
26396         it was loaded.
26397         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
26398         Make Type.Assembly work.
26399
26400 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
26401
26402         * debug-symfile.h: use char* instead of gpointer to avoid
26403         unnecessary casts.
26404
26405         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
26406
26407         * icall.c (ves_icall_InternalExecute): impl. FielSetter
26408         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
26409
26410 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
26411
26412         * icall.c (mono_message_init): impl. (code cleanup)
26413         (ves_icall_InternalExecute): impl. FieldGetter
26414
26415         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
26416         defined we call all (non-static)methods through the vtable. 
26417
26418 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
26419
26420         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
26421         finalizer even though the memory is still referenced (and the chunk of
26422         memory is not freed).
26423
26424 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
26425
26426         * assembly.c: fix brokeness.
26427
26428 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
26429
26430         * class.c: kill some warnings. Check explicit interface method
26431         implementation also without considering the namespace.
26432         Load also literal strings in static class data.
26433
26434 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
26435
26436         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
26437         (default_assembly_name_resolver): Make the resolver take the
26438         "base" directory where the assembly was originally defined, so we
26439         can load DLLs that are in the same directory as the assembly that
26440         is being referenced.
26441
26442 2002-03-28  Dick Porter  <dick@ximian.com>
26443
26444         * file-io.h: 
26445         * file-io.c:
26446         * socket-io.c: 
26447         * unicode.h: 
26448         * unicode.c: Warning cleanups
26449
26450 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
26451
26452         * object.h, reflection.h: use the correct type instead of MonoObject.
26453
26454 2002-03-28  Martin Baulig  <martin@gnome.org>
26455
26456         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
26457         (mono_debug_update_symbol_file): Initialize classes if necessary.
26458
26459 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
26460
26461         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
26462         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
26463
26464 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
26465
26466         * assembly.h: fix function prototype.
26467         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
26468         * mono-endian.h: use const cast.
26469
26470 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
26471
26472         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
26473
26474 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
26475
26476         * loader.c: don't assert when a typeref can't be loaded, give
26477         a chance to the runtime to trow an exception instead.
26478         * loader.h: fix warning.
26479
26480 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
26481
26482         * class.c (mono_class_proxy_vtable): added proxy support
26483
26484 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
26485
26486         * icall.c: removed last of PAL calls, added System.Environment
26487         * file-io.h, file-io.c: MonoIO implementation
26488         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
26489
26490 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
26491
26492         * appdomain.c: do not use the byte marker in ldstr table lookup.
26493         * debug-helpers.c: allow two ':' to separate class and method name.
26494         * object.c: allocate arrays bounds with the GC, too.
26495         * verify: add a few more checks.
26496
26497 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
26498
26499         * reflection.c: output also literal strings. Allocate parameter data
26500         with GC_malloc() (thanks, Martin, for catching this!).
26501
26502 2002-03-26  Martin Baulig  <martin@gnome.org>
26503
26504         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
26505         include the `this' offset in the `param_offsets'.
26506
26507 2002-03-25  Martin Baulig  <martin@gnome.org>
26508
26509         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
26510         mono_debug_get_class() function to get the classes. Added new
26511         relocation types for arrays and strings.
26512         (mono_debug_get_class): New static function to search in all
26513         referenced assemblies for a metadata token.
26514
26515         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
26516
26517 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
26518
26519         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
26520         hold gc-allocated objects. Make the string heap a stream like the
26521         others. Removed duplicated code when writing stream info.
26522         Added asserts to catch possible buffer overflows. Set the sorted map
26523         for tables that need sorting. Added some documentation.
26524
26525 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
26526
26527         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
26528         for interned strings and vtables.
26529
26530 2002-03-24  Martin Baulig  <martin@gnome.org>
26531
26532         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
26533         it in the array since it was created with g_slist_prepend().
26534
26535 2002-03-24  Martin Baulig  <martin@gnome.org>
26536
26537         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
26538         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
26539         (mono_debug_method_from_token): Renamed to
26540         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
26541         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
26542
26543         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
26544         relocation types.
26545
26546         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
26547
26548 2002-03-24  Martin Baulig  <martin@gnome.org>
26549
26550         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
26551         (mono_debug_method_from_token): New func.
26552
26553         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
26554         New interncall, calls mono_debug_local_type_from_signature().
26555         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
26556         calls mono_debug_method_from_token().
26557
26558 2002-03-23  Martin Baulig  <martin@gnome.org>
26559
26560         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
26561         specifies the number of bytes to be converted, not the array size.
26562         Return the number of chars, not the number of bytes.
26563         (ves_icall_iconv_get_chars): The `byteCount' argument
26564         specifies the number of bytes to be converted, not the array size.
26565
26566 2002-03-23  Martin Baulig  <martin@gnome.org>
26567
26568         * reflection.h (MonoReflectionSigHelper): New type.
26569
26570         * reflection.c (mono_reflection_sighelper_get_signature_local),
26571         (mono_reflection_sighelper_get_signature_local): New functions.
26572
26573         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
26574         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
26575         interncalls.
26576
26577 2002-03-23  Martin Baulig  <martin@gnome.org>
26578
26579         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
26580         is_writeable is set.
26581         (mono_raw_buffer_update): New function to write the modified map
26582         back to disk.
26583
26584         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
26585
26586         * debug-symfile.c (mono_debug_update_symbol_file): Call
26587         mono_raw_buffer_update() when done writing.
26588
26589 2002-03-23  Martin Baulig  <martin@gnome.org>
26590
26591         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
26592
26593         * debug-symfile.c: Added support for arguments and local variables.
26594
26595 2002-03-23  Dick Porter  <dick@ximian.com>
26596
26597         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
26598         protected by ifdefs, hence breaking the w32 build.
26599
26600 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
26601
26602         * object.c: implement is_interned() the right way.
26603
26604 2002-03-21  Martin Baulig  <martin@gnome.org>
26605
26606         * debug-symfile.[ch]: New files to handle debugging information
26607         files. There's also support to dynamically update these symbol
26608         files to include machine dependent information.
26609
26610 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
26611
26612         * threads.c (mono_thread_create): new function to create thread
26613         from C
26614
26615 2002-03-20  Martin Baulig  <martin@gnome.org>
26616
26617         * icall.c (ves_icall_InternalInvoke): Create a new object if the
26618         method is a constructor.
26619         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
26620         points to ves_icall_InternalInvoke().
26621
26622 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
26623
26624         * file-io.c: Flush shouldn't throw exceptions.
26625
26626 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
26627
26628         * file-io.c: FileStream flush support; FileSetLength now
26629         restores file pointer.
26630
26631 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
26632
26633         * class.c: set image for pointer classes.
26634
26635 2002/03/19  Nick Drochak <ndrochak@gol.com>
26636
26637         * sysmath.c: Forgot one.
26638
26639 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
26640
26641         * sysmath.c: Avoid redefining existing names.
26642
26643 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
26644
26645         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
26646         handled by runtime as icall rather than dllimport from libm.so
26647         * file-io.c, file-io.h: fixed handle argument type.
26648
26649 2002-03-18  Dick Porter  <dick@ximian.com>
26650
26651         * reflection.c (mono_image_get_type_info): rename interface to
26652         iface, because of "#define interface struct" on windows.
26653
26654 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
26655
26656         * class.c, class.h: rename and export mono_ptr_class_get().
26657         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
26658         * reflection.c, reflection.h, icall.c: better/saner type name
26659         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
26660         method signatures.
26661
26662 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
26663
26664         * class.c (mono_class_init): removed hardcoded GHC_SLOT
26665
26666         * icall.c (ves_icall_InternalInvoke): impl.
26667
26668 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
26669
26670         * reflection.c: output the interface map table, too.
26671
26672 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
26673
26674         * class.c (class_compute_field_layout): separate computation of 
26675         static field layout
26676
26677 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
26678
26679         * icall.c: added System.Buffer support.
26680         * file-io.c: moved file icalls from PAL to FileStream.
26681
26682 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
26683
26684         * icall.c (ves_icall_System_Object_GetHashCode): impl.
26685
26686 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
26687
26688         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
26689
26690 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
26691
26692         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
26693
26694 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
26695
26696         * debug-helpers.{c,h}: moved here from monograph some useful functions
26697         to locate a method by name/signature in a class or image. Included
26698         also a small and flexible IL disassembler.
26699
26700 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
26701
26702         * reflection.c: fixup tokens in methods with small header size, too.
26703
26704 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
26705
26706         * object.c (mono_string_to_utf8): remove assert(!error), instead
26707         print a warning. 
26708
26709 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
26710
26711         * icall.c: update to the new mono_Array_class_get interface.
26712
26713 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
26714
26715         * appdomain.c, object.c: Boehm-GC enable.
26716         * icall.c: make get_data_chunk() support split data requests.
26717         Ensure a class is initialized in more cases. Return only the first
26718         property found in GetProperties() or the compiler gets confused. 
26719         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
26720         * reflection.h, reflection.c: add fixup mechanism for field and method
26721         tokens. Initialize assembly->typeref in a single place. Output
26722         properties after events. Support custom attributes for events, too.
26723         Typo fix for paramter custom attrs.
26724
26725 2002-03-07  Martin Baulig  <martin@gnome.org>
26726
26727         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
26728
26729 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
26730
26731         * class.c (mono_array_class_get): fix. for multi. dim. arrays
26732
26733 2002-03-06  Martin Baulig  <martin@gnome.org>
26734
26735         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
26736         non-zero lower bounds. See testcases #F10-#F13.
26737
26738 2002-03-05  Martin Baulig  <martin@gnome.org>
26739
26740         * exception.c (mono_get_exception_argument_out_of_range): New exception.
26741
26742         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
26743         ves_icall_System_Array_GetValue(), only calculate the absolute array position
26744         here.
26745         (ves_icall_System_Array_SetValue): Likewise.
26746         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
26747         as argument and does the actual work. This function is used when copying a
26748         multi-dimensional array.
26749         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
26750         now do all the widening conversions of value types.
26751         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
26752
26753 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
26754
26755         * class.c: remove some magic numbers and use the smbolic names,
26756         instead. Added init_events() to load event info at class init time.
26757         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
26758         and mono_metadata_methods_from_event().
26759         * reflection.h, reflection.c: added support for writing out the evnets
26760         related information.
26761
26762 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
26763
26764         * reflection.h, icall.c: use a different method (GetInterfaces)
26765         to gather interface info and add isbyref, isprimitive and
26766         ispointer to the ves_icall_get_type_info() return value.
26767
26768 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
26769
26770         * class.h: stared adding support for events.
26771         * icall.c: split find_members implementation. Added debug icall to get
26772         the address of an object.
26773         * reflection.c: handle TypeBuilders in mono_type_get_object().
26774
26775 2002-03-01  Martin Baulig  <martin@gnome.org>
26776
26777         * icall.c (ves_icall_System_Array_GetLength): This must throw an
26778         ArgumentOutOfRangeException(), not an ArgumentException().
26779         (ves_icall_System_Array_GetLowerBound): Likewise.
26780         (ves_icall_System_Array_GetValue): Improved argument checking.
26781         (ves_icall_System_Array_SetValue): Improved argument checking.
26782
26783 2002-03-01  Martin Baulig  <martin@gnome.org>
26784
26785         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
26786         called with invalid arguments rather than just dying with g_assert().
26787         (ves_icall_System_Array_SetValue): Likewise.
26788         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
26789         raise a NotImplementedException instead.
26790         (ves_icall_System_Array_GetLength): Added argument checking.
26791         (ves_icall_System_Array_GetLowerBound): Added argument checking.
26792
26793 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
26794
26795         * object.h (mono_assert): new macros mono_assert and
26796         mono_assert_not_reached
26797
26798 2002-02-28  Martin Baulig  <martin@gnome.org>
26799
26800         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
26801         and "System::String::IsInterned" to "System::String::_IsInterned".
26802
26803 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
26804
26805         * icall.c: remove hacks for typebuilder. Added icall to create a
26806         modified type from a tybebuilder.
26807         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
26808         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
26809         to create a backing MonoClass for a TypeBuilder.
26810
26811 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
26812
26813         * class.c, class.h: more refactoring of class init.
26814         Export mono_class_setup_mono_type() and mono_class_setup_parent().
26815
26816 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
26817
26818         * marshal.c, marshal.h: start of marshaling interface.
26819
26820 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
26821
26822         * icall.c: fix order in assembly qualified name icall.
26823
26824 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
26825
26826         * class.c: do not free str, since we store it in the hash table.
26827         * reflection.h: add label field to MonoILExceptionInfo.
26828         * reflection.c: handle references to more than one assembly. Handle
26829         case when there isn't a module created in the assembly.
26830
26831 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
26832
26833         * class.c: Fix typo. Start refactoring of class init code.
26834
26835 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
26836
26837         * appdomain.c: exit with 1 on error.
26838         * class.c: we already have the name in MonoClassField.
26839         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
26840         MonoStreamHeader instead of an offset of image->raw_metadata.
26841
26842 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
26843
26844         * appdomain.c (mono_init): Be even more descriptive about the error.
26845
26846 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
26847
26848         * appdomain.c: give the user an informative message when corlib can't
26849         be loaded.
26850
26851 2002-02-26  Martin Baulig  <martin@gnome.org>
26852
26853         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
26854         New icall to get the time zone data.
26855
26856 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
26857
26858         * reflection.c: set virtual and raw size of section correctly.
26859         * threads.c: transfer domain information to newly created threads.
26860
26861 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
26862
26863         * class.c: when instancing a class in a domain, load the default
26864         vaules for static fields from the constant table. Fix System.Enum to
26865         not be an enum.
26866         * icall.c: implement Object::GetType() internalcall. Implemented
26867         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
26868         Fixed checking of binding flags in find_members().
26869         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
26870         * reflection.c: handle enumerations when writing to the constant
26871         table. Use a different object cache for types.
26872
26873
26874 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
26875
26876         * object.c (mono_object_isinst): fix for arrays
26877
26878         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
26879
26880 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
26881
26882         * object.c: don't use mprotect ()  and fix intern pool hash table
26883         lookup for big endian systems.
26884
26885 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
26886
26887         * icall.c: change type_is_subtype_of () signature.
26888
26889 2002-02-21  Mark Crichton  <crichton@gimp.org>
26890
26891         * rand.c, rand.h: Added random number generator for
26892         System.Security.Cryptography classes.
26893
26894         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
26895
26896         * icall.c: Added System.Security.Cryptography calls.
26897
26898 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
26899
26900         * class.c, icall.c, metadata.c: better support for pointer types.
26901         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
26902         * reflection.c: Add support for getting custom attrs for properties
26903         and simplify some code.
26904
26905 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
26906
26907         * icall.c: change getToken () and add custom attribute GetBlob()helper
26908         method.
26909         * reflection.h: add custom attrs array to the reflection builder structures.
26910         * reflection.c: encode and emit custom attributes for all the relevant
26911         reflection objects. Cache fieldref and methodref tokens. Change
26912         mono_image_create_token() interface to take a MonoDynamicAssembly.
26913         More complete custom attributes decoder. Load custom attributes for
26914         Assembly, Field, Method and Constructor objects, too. Make the
26915         returned array an Attribute[] one, not object[]. Added
26916         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
26917         custom attribute constructor.
26918
26919 2002-02-20  Dick Porter  <dick@ximian.com>
26920
26921         * icall.c:
26922         * rawbuffer.c:
26923         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
26924         problem code out for now).
26925
26926 2002-02-19  Radek Doulik  <rodo@ximian.com>
26927
26928         * object.c (mono_ldstr): use hash table to avoid multiple swapping
26929
26930 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
26931
26932         * icall.c: register the GetCustomAttributes method.
26933         * object.c, object.h: add mono_string_new_len ().
26934         * reflection.h, reflection.c: added mono_runtime_invoke(),
26935         mono_install_runtime_invoke(). Added
26936         mono_reflection_get_custom_attrs () to load custom attributes and
26937         create the attribute objects.
26938
26939 2002-02-19  Dick Porter  <dick@ximian.com>
26940         * threads-dummy-types.c:
26941         * threads-dummy-types.h:
26942         * threads-dummy.c:
26943         * threads-dummy.h:
26944         * threads-pthread-types.c:
26945         * threads-pthread-types.h:
26946         * threads-pthread.c:
26947         * threads-pthread.h:  Deleted obsolete files
26948
26949 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
26950
26951         * class.c (mono_class_vtable): runtime init the class when we
26952         allocate static class data.
26953
26954         * icall.c (ves_icall_System_Array_SetValue): check for null values.
26955
26956         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
26957         and String - but we will need generic marshalling support in the
26958         future. 
26959         (mono_init): set the domain name in a ms compatible way
26960
26961         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
26962         String[].
26963
26964 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
26965
26966         * object.c (mono_array_clone): use alloca() instead of g_malloc  
26967         for sizes
26968
26969         * appdomain.c (mono_domain_unload): impl.
26970
26971 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
26972
26973         * appdomain.c, object.c: fix intern pool implementation.
26974         * class.c: fix alignment code.
26975
26976 2002-02-16  Radek Doulik  <rodo@ximian.com>
26977
26978         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
26979         and s2 > s1, just copy lower bytes to be compatible with little
26980         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
26981         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
26982
26983         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
26984         force big_endian to be 1 for big endian machines 
26985         (ves_icall_iconv_new_decoder): ditto
26986
26987 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
26988
26989         * socket-io.c (convert_sockopt_level_and_name): If the system
26990         doesn't define SOL_IP or SOL_TCP, get them by hand using
26991         getprotobyname() and caching the values (because this could be a
26992         slow operation).
26993         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
26994         Use the appropriate struct when the system does support it. Ie,
26995         not all systems have struct ip_mreqn so use struct ip_mreq when
26996         appropriate.
26997
26998 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
26999
27000         * reflection.c: handle finally clauses.
27001
27002 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
27003
27004         * socket-io.c: use g_snprintf() instead of snprintf.
27005
27006 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
27007
27008         * reflection.c (mono_param_get_objects): Cast second argument to
27009         mono_method_get_param_names to a const char** to silence the
27010         compiler warning.
27011
27012         * appdomain.c (mono_domain_assembly_open): Put parens around the
27013         truth statement in the for-loop.
27014
27015         * unicode.c (iconv_convert): Got rid of a compiler warning about
27016         int i being unused when the system has a new iconv.
27017         (iconv_get_length): Same.
27018
27019         * image.c (load_class_names): Cast the second argument to
27020         g_hash_table_insert() to char* to hush compiler warnings about the
27021         arg being a const.
27022         (mono_image_open): Same here.
27023
27024         * socket-io.c: Don't conditionally include sys/filio.h or
27025         sys/sockio.h here anymore since we now get them from
27026         io-layer/io-layer.h
27027         (inet_pton): If the system doesn't support inet_aton, implement
27028         using inet_addr and also #define INADDR_NONE if it isn't defined
27029         by the system.
27030
27031 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
27032
27033         * metadata.c, metadata.h: added function to get packing and size info
27034         of a typedef.
27035         * reflection.h, reflection.c: handle field RVA data. Save info about
27036         the table layout if needed. Assign typedef indexes to all the types
27037         before dumping the info about them to avoid forward reference problems.
27038
27039 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
27040
27041         * socket-io.c (convert_sockopt_level_and_name): ifdef
27042         SO_ACCEPTCONN because it is not defined on my system (old debian)
27043
27044 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27045
27046         * opcode.c: use stddef.h to get NULL.
27047
27048 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
27049
27050         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
27051         for FIONBIO, FIONREAD and SIOCATMARK.
27052         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
27053         define INADDR_NONE and besides, inet_addr() is deprecated and
27054         should not be used. Use inet_pton() instead - it also has the
27055         added bonus that it can easily handle IPv6 addresses as well.
27056         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
27057
27058 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
27059
27060         * decimal.c: remove _MSC_VER conditional.
27061
27062 2002-02-13  Dick Porter  <dick@ximian.com>
27063
27064         * socket-io.c: 
27065         * icall.c: Internal calls for Blocking, Select, Shutdown,
27066         GetSocketOption and SetSocketOption
27067
27068 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27069
27070         * assembly.cs: better resolver: use it instead of some kludgy
27071         code.
27072
27073 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
27074
27075         * reflection.c: the best way to speed-up the compiler is to avoid
27076         infinite loops.
27077
27078 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
27079
27080         * class.c (mono_class_vtable): changed the object layout
27081         (obj->vtable->class). 
27082         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
27083
27084 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27085
27086         * assembly.c: look for assemblies in the assembly dir, too.
27087
27088 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27089
27090         * class.c: fix thinko in mono_class_from_type().
27091
27092 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27093
27094         * exception.h, exception.c: added TypeLoadException.
27095         * object.h, object.c: added mono_array_clone ().
27096         * icall.c: handle throwOnError in AssemblyGetType().
27097         Added Array.Clone().
27098         * opcode.h, opcode.c: use a single value for the opcode val.
27099         Compile fix for non-gcc compilers.
27100
27101 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
27102
27103         * opcodes.c, opcodes.h: export interesting info about opcodes.
27104
27105 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
27106
27107         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
27108         icalls. 
27109
27110         * class.c (class_compute_field_layout): set element_class for enums
27111         (mono_class_create_from_typedef): set element_class for normal classes
27112
27113         * icall.c (ves_icall_System_Enum_get_value): impl.
27114
27115         * class.c (mono_class_create_from_typedef): do not set valuetype
27116         flag for System.ValueType and System.Enum
27117
27118 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
27119
27120         * unicode.c (iconv_convert): fix big endian problem.
27121
27122 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27123
27124         * class.c: add asserts if we are ever going to scribble over memory.
27125         * socket-io.c: not all systems have AF_IRDA defined.
27126
27127 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
27128
27129         * class.c (class_compute_field_layout): do not consider static
27130         fields to compute alignment
27131
27132 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
27133
27134         * appdomain.c (mono_appdomain_get): impl.
27135         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
27136
27137 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
27138
27139         * icall.c: ignore "file://" prefix when loading an assembly.
27140
27141 2002-01-23  Dick Porter  <dick@ximian.com>
27142
27143         * socket-io.c:
27144         * icall.c:
27145         * Makefile.am: Added socket support
27146
27147 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
27148
27149         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
27150         code back.  This should return the assemblies that are loaded by
27151         the runtime on behalf of an application domain. 
27152
27153         The current implementation is still broken, it just returns every
27154         assembly loaded, but until we get real applications domain this
27155         will do.
27156
27157 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
27158
27159         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
27160         AppDomain object.
27161
27162 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
27163
27164         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
27165         the mono_class_from_name lookup.
27166         (ves_icall_get_parameter_info): ditto.
27167         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
27168         method.
27169         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
27170
27171 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
27172
27173         * class.c: load also nested classes on class init.
27174         System.ValueType instance methods gets passed boxed
27175         values, unless methods in derived classed that get a pointer to the
27176         data.
27177         * icall.c: use better name parsing code in GetType().
27178         * image.c, image.h: add mono_image_loaded ().
27179         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
27180         * reflection.c, reflection.h: added mono_reflection_parse_type().
27181
27182 2002-01-22  Veronica De Santis <veron78@interfree.it>
27183
27184         * icall.c : Added mapping of internal calls for Manual and Auto reset events
27185         * threads.c : Added the implementation of internal calls for events
27186         * threads.h : Added prototypes of internal calls for events
27187         
27188 2002-01-21  Radek Doulik  <rodo@ximian.com>
27189
27190         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
27191
27192 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
27193
27194         * class.c (mono_class_init): set min_align to 1 (instead of 0)
27195         (mono_class_value_size): use min_align
27196
27197 2002-01-20  Dick Porter  <dick@ximian.com>
27198
27199         * threads.h:
27200         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
27201         so it compiles on w32.
27202
27203 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
27204
27205         * metadata.c (mono_type_stack_size): impl.
27206
27207         * class.c (mono_class_get_field): impl. memberref token
27208
27209 2002-01-16 Veronica De Santis <veron78@@interfree.it>
27210
27211         * icall.h : Added the internal calls mapping for CreateMutex_internal
27212                     and ReleaseMutex_internal.
27213         * threads.h : Added the prototype of mutexes internal calls.
27214         * threads.c : Added the implementations of mutexes internal calls.
27215
27216 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
27217
27218         * metaparse.h: removed unused file.
27219         * reflection.c, reflection.h: added stream_data_align () function 
27220         to align data in streams and keep stream aligned. Add support for
27221         exception support in method headers.
27222
27223 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
27224
27225         * unicode.c: make iconv_convert () return the number of bytess written
27226         in the output buffer.
27227
27228 2002-01-15  Dick Porter  <dick@ximian.com>
27229         * threads.c: Make the runtime's idea of infinite timeouts coincide
27230         with the class library's
27231
27232         Fix a particularly egregious bug in mono_thread_cleanup(). That
27233         code was so utterly bogus it must have been written on a Monday.
27234
27235 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
27236
27237         * reflection.h: add subtypes field to TypeBuilder.
27238         * reflection.c: encode constants for literal fields.
27239         Handle subtypes. Fix user string token (and add a zero byte)
27240         at the end.
27241         
27242 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
27243
27244         * class.c (mono_class_init): bug fix: assign slot numbers for
27245         abstract methods.
27246
27247 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27248
27249         * reflection.c: don't try to output a code RVA for abstract methods.
27250         Small fixes for method header format. Output parameter info to the
27251         ParamDef table. Save method overriding info to MethodImpl table.
27252         Fix property support. Allow typedef.extends to be a type in the
27253         building assembly.
27254         * verify.c: fix off-by-one error.
27255
27256 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
27257
27258         * class.c: fix mono_class_from_mono_type () for szarray types.
27259         Remove unused cache check in mono_class_from_type_spec().
27260         * icall.c: *type_from_name () functions handle simple arrays and byref.
27261         * reflection.c: handle byref and szarray types. Handle methods without
27262         body (gets P/Invoke compilation working). Handle types and fields in
27263         get_token ().
27264         * reflection.h: add rank to MonoTypeInfo.
27265
27266 2002-01-10  Dick Porter  <dick@ximian.com>
27267
27268         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
27269         internal calls
27270
27271 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
27272
27273         * icall.c: initialize class in type_from_handle ().
27274         Loop also in parent classes for get_method ().
27275         * reflection.c: properly encode class and valuetype types.
27276         Start on encoding TypeBuilder types. Handle fieldrefs.
27277         Use correct length when registering a user string.
27278         Handle ConstructorBuilder and MonoMethod in get_token ().
27279         Make mono_type_get_object () aware of cached types.
27280         * object.c: back out change to mono_string_new ().
27281
27282 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
27283         * object.c: mono_string_new should return a NULL when the string 
27284         passed in is NULL -- not try to deference it.
27285         
27286 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
27287
27288         * icall.c: hack to make IsSubType work for TypeBuilders.
27289         * reflection.c: emit constructors before methods.
27290         Retrieve param names in mono_param_get_objects().
27291
27292 2002/01/05  Nick Drochak  <ndrochak@gol.com>
27293
27294         * Makefile.am: fix list of headers and sources so automake 1.5
27295         doesn't complain. Removed \# at end of list.
27296
27297 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
27298
27299         * reflection.c: get token for a method ref. Set return type of
27300         constructor to void.
27301         * loader.c: debug message.
27302         * class.c: typo fix.
27303
27304 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
27305
27306         * icall.c: fix array init with rank > 1. FindMembers
27307         loops in parent class as well.
27308         * image.c: do not insert nested types in name cache.
27309         * reflection.c: warning fix.
27310         * reflection.h: add override method (for interface impl).
27311
27312 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
27313
27314         * metadata.c: fix customattr decoding.
27315
27316 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
27317
27318         * rawbuffer.cs: Added native Win32 implementation, avoids using
27319         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
27320
27321 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
27322
27323         * class.c: make the low-level routines handle the cache.
27324
27325 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
27326
27327         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
27328
27329 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
27330
27331         * class.c: fix mono_array_element_size() for objects.
27332         * class.h, class.c: add properties to MonoClass and load them
27333         at init time.
27334         * icall.c: check with isinst() when assigning a value to an array
27335         instead of requiring the classes to match exactly.
27336         Implemented icall for System.Type::GetType().
27337         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
27338         enums. Handle bindingflags when looking for methods and fields.
27339         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
27340         and mono_metadata_methods_from_property().
27341         * reflection.h, reflection.c: added structures for propreties,
27342         parameters and enums. Implemented mono_property_get_object() and
27343         mono_param_get_objects().
27344
27345 2001-12-18  Dick Porter  <dick@ximian.com>
27346
27347         * file-io.c: Use mono_string_to_utf16() instead of
27348         mono_string_chars()
27349
27350         * object.c: Added mono_string_to_utf16(), which copies the non
27351         NULL-terminated MonoString into a new double-null-terminated
27352         buffer.
27353
27354 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
27355
27356         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
27357
27358 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
27359
27360         * file-io.c: raise exceptions if handle is invalid.
27361
27362 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
27363
27364         * assembly.c: yet another check for mscorlib.
27365         * class.c, class.h: load nesting info for classes.
27366         * icall.c: many new functions to support the Reflection classes.
27367         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
27368         * reflection.h, reflection.c: mono_image_create_token(),
27369         mono_assembly_get_object(), mono_type_get_object(),
27370         mono_method_get_object(), mono_field_get_object(): methods to return
27371         objects that parallel the C representation of assemblies, types,
27372         methods, fields.
27373
27374 2001-12-11  Dick Porter  <dick@ximian.com>
27375
27376         * icall.c:
27377         * file-io.c: Internal calls for file IO.
27378
27379 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
27380
27381         * tabledefs.h: missing FileAttributes.
27382         * verify.h, verify.c: use is_valid_string () to simplify and check for
27383         valid strings more correctly. Fix warnings and speeling.
27384         Check more tables: Filed, File, ModuleRef, StandAloneSig.
27385         Check code: branches, maxstack, method calls.
27386
27387 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
27388
27389         * object.c (mono_object_allocate): removed static, so that the jit
27390         can allocate value types.
27391
27392         * icall.c (ves_icall_System_DateTime_GetNow): impl.
27393
27394 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
27395
27396         * class.c: init enum types right away and register the
27397         token->MonoClass map in mono_class_create_from_typedef ().
27398         * verify.h, verify.c: first cut of the verifier.
27399         * pedump.c: add --verify switch to verify metadata tables.
27400         * tabledefs.h: add some missing enums.
27401
27402 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
27403
27404         * class.c (mono_install_runtime_class_init): impl.
27405         (mono_class_init): renamed mono_class_metadata_init to
27406         mono_class_init, also removed the metadata_inited flag
27407
27408         * object.c (mono_object_isinst): use faster algorithm
27409
27410 2001-11-30  Radek Doulik  <rodo@ximian.com>
27411
27412         * mono-endian.h: reverted last change
27413         added function prototypes
27414
27415         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
27416         add mono-endian.c back
27417
27418         * mono-endian.c: returned back, as Paolo pointed out, it's needed
27419         for unaligned access, I've mistaked it with endianess. I am
27420         sorry.
27421         (mono_read16): fix reverted endianess
27422         (mono_read64): ditto
27423         (mono_read32): ditto
27424
27425 2001-11-30  Dick Porter  <dick@ximian.com>
27426
27427         * exception.c: Implement mono_exception_from_name()
27428
27429 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
27430
27431         * metadata.h, metadata.c: remove params_size and locals_size and their
27432         calculation from the metadata code: they are only usefult to the
27433         interp.
27434
27435 2001-11-29  Radek Doulik  <rodo@ximian.com>
27436
27437         * object.c (mono_ldstr): swap bytes here, it's probably not the
27438         best place, but works for me now, I'll redo it once I know mono
27439         better, also note that I add PROT_WRITE and don't reset back, also
27440         note that it's only affects big endians, so x86 should be OK
27441
27442         * mono-endian.h (read16): use just glib macros for both endians
27443
27444         * mono-endian.c: removed as glib macros are used in in
27445         mono-endian.h so we don't need to care about endianess for read
27446         macros as glib does that for us already
27447
27448 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
27449
27450         * class.h, class.h: take minimum alignment into consideration so
27451         that the fields of a class remain aligned also when in an array.
27452
27453 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
27454
27455         * loader.h, loader.c: add mono_method_get_param_names().
27456         * class.c: 0-init class fields.
27457
27458 2001-11-26  Dick Porter  <dick@ximian.com>
27459
27460         * icall.c:
27461         * threads-types.h:
27462         * threads.c: New file that handles System.Threading on all platforms
27463
27464         * object.c: 
27465         * object.h: Remove the synchronisation struct from MonoObject,
27466         replace it with a pointer that gets initialised on demand
27467
27468         * Makefile.am: Replace all the system-specific threading code with
27469         a single file that uses the new wrapper library
27470
27471 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
27472
27473         * class.c, class.h: add mono_install_trampoline() so that the runtime
27474         can register a function to create a trampoline: removes the ugly
27475         requirement that a runtime needed to export arch_create_jit_trampoline.
27476         * object.h, object.c: added mono_install_handler() so that the runtime
27477         can install an handler for exceptions generated in C code (with
27478         mono_raise_exception()). Added C struct for System.Delegate.
27479         * pedump.c: removed arch_create_jit_trampoline.
27480         * reflection.c: some cleanups to allow registering user strings and
27481         later getting a token for methodrefs and fieldrefs before the assembly
27482         is built.
27483         * row-indexes.h: updates and fixes from the new ECMA specs.
27484
27485 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
27486
27487         * class.h, class.c: add enum_basetype field to MonoClass.
27488         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
27489         to get index in the constant table reated to a field, param or
27490         property.
27491         * reflection.h, reflection.c: handle constructors. Set public-key and
27492         version number of the built assembly to 0.
27493         * row-indexes.h: update from new ECMA spec.
27494
27495 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
27496
27497         * class.h, class.c: add a max_interface_id to MonoClass.
27498         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
27499         since it's used to do that. Added mono_type_type_from_obj().
27500         Make GetType() return NULL instead of segfaulting if the type was not
27501         found. Handle simple arrays in assQualifiedName.
27502         * object.h: add a struct to represent an Exception.
27503         * reflection.c: output call convention in method signature.
27504         Add code to support P/Invoke methods and fixed offsets for fields.
27505
27506 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
27507
27508         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
27509         the value.
27510         * icall.c: use mono_array_addr instead of array->vector: fixes the
27511         reflection image writing.
27512         * reflection.c: init call convention byte to 0 in method signature.
27513         Encode the property signature. Don't output property-related methods
27514         twice. Really process the properties for a type (don't cast a field to
27515         a property, my mom always told me that).
27516         Fix 64 bit issues in pointer alignment in a different and more
27517         readable way.
27518
27519 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
27520
27521         * loader.h: Removed type class from MonoDefaults, added monotype
27522
27523         * loader.c: Loaded MonoType, removed loading of Type
27524
27525         * icall.c (my_mono_new_object): Now returns a System.MonoType,
27526         and fills in System.Type._impl with a RuntimeTypeHandle rather
27527         than the actual MonoClass *
27528
27529         (ves_icall_type_from_handle): change from type_class to
27530         monotype_class
27531
27532         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
27533         implemented
27534
27535         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
27536         implemented
27537
27538         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
27539
27540         (ves_icall_System_Reflection_Assembly_GetType): implemented
27541
27542         (ves_icall_System_MonoType_assQualifiedName): implemented
27543
27544         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
27545
27546 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
27547
27548         * assembly.c (mono_assembly_open): Implement a cache for the
27549         assemblies. 
27550
27551         (mono_assembly_close): only destroy the assembly when the last
27552         reference is gone.
27553         
27554 2001-11-09  Dick Porter  <dick@ximian.com>
27555
27556         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
27557
27558 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
27559
27560         * class.c (mono_class_metadata_init): bug fix: compute the right slot
27561
27562 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
27563
27564         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
27565         from Martin Weindel.
27566         * object.h: add mono_string_chars ().
27567
27568 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
27569
27570         * reflection.c (build_compressed_metadata): Eliminates warnings
27571         and uses 64-bit clean code.
27572
27573         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
27574         (mono_type_equal): Change signature to eliminate warnings.
27575
27576 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
27577
27578         * icall.c, loader.c: remove the internalcall array constructors.
27579         Changes to match the new MonoArray structure.
27580         * object.h, object.c: an array object doesn't allocate an extra
27581         vector. Add mono_array_new_full () to create jagged arrays easily.
27582
27583 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
27584
27585         * metadata.h, metadata.c: add mono_metadata_field_info () to
27586         retreive all the info about a field from vairous tables.
27587         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
27588         * class.h, class.c: augment MonoClassField with more info.
27589         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
27590         policy and load a field's RVA if needed.
27591
27592 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
27593
27594         * class.c (mono_class_metadata_init): create a trampoline for all
27595         virtual functions instead of actually compiling them.
27596
27597 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
27598
27599         * class.h, class.c: include name in MonoClassField.
27600         * class.c: fix fundamental type of System.Object and System.String.
27601         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
27602         tokens in ldtoken.
27603         * icall.c: remove internalcalls for the Reflection stuff that is now
27604         done in C# code.
27605         * loader.c: mono_field_from_memberref () implementation.
27606         * mono-endian.c: thinko (s/struct/union/g).
27607         * object.c, object.h: make the mono_string_* prototypes actually use
27608         MonoString instead of MonoObject.
27609         * reflection.c, reflection.h: updates for changes in the reflection
27610         code in corlib: we use C structures that map to the actual C# classes.
27611         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
27612         fat method header if needed and use the info from the ILGenerator for
27613         methods. Handle fields in types. Misc fixes.
27614
27615 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
27616
27617         * class.c (mono_class_metadata_init): bug fix: always allocate
27618         space for static class data
27619
27620 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
27621
27622         * class.c (mono_compute_relative_numbering): use relative
27623         numbering to support fast runtime type checks.
27624
27625 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
27626
27627         * class.c (mono_class_create_from_typeref): added debugging output
27628         to print class name when MonoDummy is returned instead of real class
27629
27630 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
27631
27632         * class.c (mono_class_metadata_init): interface offset table now
27633         contains pointers into the vtable - this is more efficient for the jit
27634
27635 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
27636
27637         * class.c (mono_class_metadata_init): use a temporary vtable (the
27638         old algorithm only worked for the interpreter, but not for the jit)
27639
27640 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
27641
27642         * loader.c (method_from_memberref): use mono_class_get to get the
27643         class of an array instead of using System.Array directly.
27644         (mono_get_method): also add MEMBERREF methods to the method cache
27645         which usefull for arrays.
27646
27647 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
27648
27649         * pedump.c (arch_compile_method): added to compute vtable entry
27650
27651         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
27652         number of interfaces.
27653         
27654         * class.h: merged MonoArrayClass into MonoClass
27655
27656         * class.c (mono_class_create_from_typedef): compute the vtable size and
27657         allocate space to include the vtable inside MonoClass
27658         (mono_class_metadata_init): initialize the vtable
27659
27660 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
27661
27662         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
27663         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
27664         * image.c: endian fixes by Laurent Rioux.
27665         * object.h, object.c: rename MonoStringObject to MonoString and
27666         MonoArrayObject to MonoArray. Change some function names to conform to
27667         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
27668         guint16* as first argument, so don't use char*.
27669         Provide macros to do the interesting things on arrays in a portable way.
27670         * threads-pthread.c: updates for the API changes and #include <sched.h>
27671         (required for sched_yield()).
27672         * icall.c: updates for the API changes above.
27673         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
27674         platforms that need them.
27675
27676 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
27677
27678         * class.c: set the correct type for all the fundamental
27679         type when loading the class.
27680
27681 2001-10-05  Dick Porter  <dick@ximian.com>
27682
27683         * threads-pthread.c (pthread_mutex_timedlock): Simple
27684         compatibility version for C libraries that lack this call.
27685
27686 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
27687
27688         * class.c: MonoTypes stored in MonoClass are stored as
27689         fundamental MonoTypes when the class represents a
27690         fundamental type (System.Int32, ...).
27691         The TypeHandle return by ldtoken is a MonoType*.
27692         * icall.c: ves_icall_get_data_chunk () write out all the
27693         PE/COFF stuff. Implement ves_icall_define_method (),
27694         ves_icall_set_method_body (), ves_icall_type_from_handle ().
27695         * image.c: properly skip unknown streams.
27696         * loader.h, loader.c: add type_class to mono_defaults.
27697         * metadata.c, metadata.h: export compute_size () as
27698         mono_metadata_compute_size () with a better interface.
27699         Typo and C&P fixes.
27700         * pedump.c: don't try to print the entry point RVA if there is no entry point.
27701         * reflection.c, reflection.h: many cleanups, fixes, output method
27702         signatures and headers, typedef and typeref info, compress the metadata
27703         tables, output all the heap streams, cli header etc.
27704         * row-indexes.h: typo fixes.
27705
27706 2001-10-04  Dick Porter  <dick@ximian.com>
27707
27708         * object.h: Add a synchronisation mutex struct to MonoObject
27709
27710         * object.c (mono_new_object): Initialise the object
27711         synchronisation mutexes
27712
27713         * icall.c: System.Threading.Monitor internal calls
27714         
27715         * threads-pthread.h:
27716         * threads-pthread.c: System.Threading.Monitor internal calls
27717
27718         * threads-types.h: New file, includes the system-specific thread
27719         structures
27720         
27721         * threads-pthread-types.h:
27722         * threads-pthread-types.c: New files, handle pthread-specific
27723         synchronisation types
27724
27725         * threads-dummy-types.h: 
27726         * threads-dummy-types.c: New files of dummy support for
27727         thread-specific types
27728
27729         * metadata.c:
27730         * image.c:
27731         * pedump.c: include mono-endian.h not endian.h
27732         
27733         * Makefile.am: More threads files.
27734         Name mono-endian.h not endian.h
27735
27736 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
27737
27738         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
27739         stuff and implement a few more bits.
27740         * icall.c: a field needs to be dereferenced twice. Do not use the same
27741         name for two variables in the same scope.
27742         * image.c, image.h: cleanups.
27743
27744 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
27745
27746         * class.c (mono_class_metadata_init): bug fix: compute the right size
27747
27748 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
27749
27750         * icall.c: implemented some of the Reflection internalcalls.
27751         * image.c, image.h: start writing out the PE/COFF image.
27752         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
27753         that does the reverse than decode_blob_size ().
27754         * object.c: use mono_metadata_encode_value (). Move here
27755         temporary implementation of mono_string_to_utf8 ().
27756         * rawbuffer.c: make malloc_map static.
27757
27758 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
27759
27760         * metadata.c: fix type comparison for arrays.
27761         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
27762         Added a couple of new classes to monodefaults.
27763         * icall.c: added a couple of Reflection-related internalcalls.
27764         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
27765         Added a byval_arg MonoType to MonoClass.
27766
27767 2001-09-28  Dick Porter  <dick@ximian.com>
27768
27769         * icall.c:
27770         * threads-pthread.h: 
27771         * threads-pthread.c: Implemented internal calls for
27772         LocalDataStoreSlot operations.  Applied mutexes around all shared
27773         data.  Reworked the thread creation and Start() operations to
27774         avoid a race condition.
27775         
27776         * threads-dummy.h:
27777         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
27778
27779 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
27780
27781         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
27782
27783 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
27784
27785         * class.c, loader.c: warn and return NULL instead of erroring out.
27786         * icall.c: added System.AppDomain::getCurDomain().
27787         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
27788
27789 2001-09-25  Dick Porter  <dick@ximian.com>
27790
27791         * threads-pthread.h:
27792         * threads-pthread.c: Implemented timed thread joining and added
27793         System.Threading.Thread::Join_internal internal call
27794
27795         * icall.c: Added System.Threading.Thread::Join_internal internal call
27796
27797         * threads-dummy.h:
27798         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
27799
27800 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
27801
27802         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
27803         mono_string_intern () to implement the semantics of the ldstr opcode
27804         and the interning of System.Strings.
27805         * icall.c: provide hooks to make String::IsIntern and String::Intern
27806         internalcalls.
27807
27808 2001-09-23  Dick Porter  <dick@ximian.com>
27809
27810         * threads-dummy.c: 
27811         * threads-dummy.h: New files of dummy threading routines
27812
27813         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
27814         support code based on system specifics
27815
27816         Rename PTHREAD_LIBS to THREAD_LIBS
27817         
27818 2001-09-23  Dick Porter  <dick@ximian.com>
27819
27820         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
27821         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
27822         internal calls.
27823         (mono_thread_init): Set up a Thread object instance to return when
27824         the main thread calls Thread.CurrentThread
27825         (mono_thread_cleanup): Wait for all subthreads to exit
27826
27827         * icall.c: New internal calls for System.Threading.Thread::Sleep
27828         (including Schedule) and CurrentThread
27829
27830         * threads.h: New file, to insulate thread-specific stuff from the
27831         rest of the code
27832
27833 2001-09-21  Dick Porter  <dick@ximian.com>
27834
27835         * threads-pthread.h: 
27836         * threads-pthread.c: New file, for handling pthreads-style
27837         threading support.  Start() now starts a new thread and executes
27838         the ThreadStart delegate instance.
27839
27840         * icall.c: Added the internalcall for
27841         System.Threading.Thread::Start_internal
27842
27843         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
27844
27845 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
27846
27847         * loader.c: work around the different signatures for delegates
27848         constructors csc generates in compiled code vs the ones compiled in mscorlib.
27849
27850 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
27851
27852         * class.h, class.c: add mono_class_get_field_from_name ().
27853         * *: Fix C comments and other ANSI C issues.
27854
27855 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
27856
27857         * endian.h, assembly.c: fix some endianness issues.
27858
27859 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
27860
27861         * loader.h, load.c: add delegate_class to mono_defaults.
27862         Handle runtime provided methods in mono_get_method ().
27863
27864 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
27865
27866         * loader.c (mono_get_method): use pinvoke for internal call
27867
27868         * icall.c: use pinvoke for internal call
27869
27870         * loader.c (method_from_memberref): set the method name
27871
27872 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
27873
27874         * metadata.c: help the compiler generate better code for
27875         mono_class_from_mono_type ().
27876
27877 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
27878
27879         * class.c (mono_class_metadata_init): delayed computing of the
27880         class size to mono_class_metadata_init ()
27881
27882 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
27883
27884         * class.c, class.h: add an interfaces member to MonoClass.
27885         * image.c, image.h: add assembly_name field to MonoImage
27886         from the assembly table.
27887         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
27888
27889 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
27890
27891         * class.c: Handle Array in mono_class_from_mono_type ().
27892         * metadata.c, pedump.c: some endian fixes.
27893
27894 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
27895
27896         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
27897         * metadata.c: fix small problem introduced with the latest commit.
27898
27899 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
27900
27901         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
27902         We don't need a MonoMetadata pointer anymore to compare signatures in
27903         mono_metadata_signature_equal (), update callers.
27904         Reduced memory usage an number of allocations for MonoMethodHeader and
27905         MonoMethodSignature.
27906
27907 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
27908
27909         * metadata.c: added compare for szarray.
27910
27911 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
27912
27913         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
27914         and add a couple more types to it and mono_defaults. Give an hint on
27915         classes that need implementing in our corlib and are referenced
27916         in mscorlib.
27917
27918 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
27919
27920         * class.h, class.c: keep track if a class is also an Enum.
27921         * loader.c: Implement a couple more types for use in libffi
27922         marshalling. Gives better diagnostics when failing to dlopen
27923         a library. Set method->klass for P/Invoke methods, too.
27924
27925 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
27926
27927         * class.c, class.h: add a MonoType this_arg to MonoClass that
27928         represents a pointer to an object of the class' type that
27929         can be used by the interpreter and later the type cache.
27930         Add best guess alignment info for valuetype objects.
27931
27932 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
27933
27934         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
27935         into MonoType: one less level of indirection and allocation and
27936         simplifies quite a bit of code. Added cache for MonoTypes that are
27937         used frequently, so that we don't need to allocate them all the time.
27938
27939 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
27940
27941         * class.c (mono_class_create_from_typedef): System.Enum is also a
27942         value type, although it does not derive from System.ValueType
27943         (maybe a bug in the ms compiler?)
27944
27945         * metadata.c (mono_type_size): return the right size for value types
27946
27947         * loader.c (mono_get_method): only initialize method header if not abstract
27948
27949         * class.c (mono_class_from_mono_type): use mono_default values. 
27950
27951 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
27952
27953         * *: use MonoClass pointers instead of <type_tokens>
27954         
27955         * class.h: new flag: metadata_inited.
27956
27957         * class.c (mono_class_metadata_init): impl.
27958         (mono_class_instance_size): impl.
27959         (mono_class_data_size): impl.
27960
27961 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
27962
27963         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
27964         MonoClass now has the name and name_space fields. 
27965         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
27966         mono_get_method () takes and optional MonoClass as argument.
27967         Removed mono_typedef_from_name() and added mono_class_token_from_name()
27968         instead that takes advantage of a map from class names to typedef
27969         tokens in MonoImage.
27970
27971 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
27972
27973         * metadata.c: zero is not a valid alignment boundary.
27974         Merge MONO_TYPE_VOID in default decoding code.
27975
27976 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
27977
27978         * image.h: merged MonoMetadata into MonoImage
27979
27980         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
27981         identify the type of elements.
27982
27983 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
27984
27985         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
27986         * cil-coff.h: split MonoMSDOSHeader and add size info.
27987         * image.c: add some consistency checks.
27988         * metadata.c: fix row size computation: one programmer
27989         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
27990         add explanation for the locator routine.
27991         Fix decoding of size in method header.
27992         
27993 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
27994
27995         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
27996         (g_concat_dir_and_file): Bring g_concat_dir_and_file
27997         function from gnome-libs.  This uses the right path separator
27998         based on the OS, and also works around a bug in some systems where
27999         a double slash is not allowed. 
28000         (default_assembly_name_resolver): Use g_concat_dir_and_file
28001         (mono_assembly_open): ditto.
28002
28003 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
28004
28005         * metadata.c (mono_metadata_signature_equal): impl.
28006
28007         * *: void is now a realy MonoType (instead of using NULL)
28008         
28009         * metadata.c (do_mono_metadata_parse_type): use
28010         mono_metadata_parse_type to parse void value.
28011
28012 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
28013
28014         * metadata.c, metadata.h: in the signature and method header store
28015         only the space required for holding the loca vars and incoming arguments.
28016
28017 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
28018
28019         * metadata.c (do_mono_metadata_parse_type): treat void like any
28020         other type (instead of assigning NULL);
28021
28022 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
28023
28024         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
28025
28026 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
28027
28028         * image.c (do_mono_image_open): added a cache for arrays.
28029
28030 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
28031
28032         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
28033         decode a single column from a row in a metadata table and changes
28034         to take advantage of it in the typedef locator (gives a nice speed up).
28035         Store offset info for function params.
28036
28037 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
28038
28039         * image.h (MONO_IMAGE_IS_CORLIB): removed 
28040
28041 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
28042
28043         * assembly.c: how could mono_assembly_close () had ever worked?
28044         * metadata.c, metadata.h: provide offset info for local vars.
28045         Implement mono_type_size () to take care of alignment as well
28046         as size (it was mono_field_type_size in cli/class.c before).
28047
28048 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
28049
28050         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
28051
28052         * assembly.h (CORLIB_NAME): set to corlib.dll
28053
28054         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
28055
28056 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
28057
28058         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
28059         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
28060         tokentype.h: massive namespace cleanup.
28061
28062 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
28063
28064         * metadata.h, metadata.c: decode exception clauses when parsing method header.
28065
28066 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
28067
28068         * metadata.c (mono_metadata_free_type): added check for type !=
28069         NULL (void) before calling mono_metadata_free_type()
28070
28071 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
28072
28073         * metadata.h, row_indexes.h: added header with enumerations to use
28074         to index in the columns from tables in metadata and to decode coded
28075         tokens: we should start using this instead of embedding magic numbers
28076         all over the code.
28077
28078 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
28079
28080         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
28081         Move metadata_t info from cli_image_info_t to MonoImage, where
28082         it's easily accessible. Changed all the uses accordingly.
28083         Added the method and class caches to MonoImage.
28084         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
28085         and mono_metadata_decode_value () signature to be more consistent
28086         with the other parse functions (and simplify code). Taken advantage
28087         of zero-length array allocation with GCC. Removed reduntant (and
28088         wrong) MonoFieldType struct and use MonoParam instead. Changed
28089         mono_metadata_parse_field_type () to use common code for parsing.
28090         Added mono_metadata_typedef_from_field () and
28091         mono_metadata_typedef_from_method () to lookup a typedef index from a
28092         field or method token.
28093         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
28094
28095 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
28096
28097         * metadata.c (mono_metadata_parse_field_type): Implement. 
28098         (do_mono_metadata_parse_type): Split engine from
28099         mono_metadata_parse_type, so that we can create smaller structures
28100         for things that just have one pointer to the MonoType (look at
28101         the MonoFieldType)
28102
28103 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
28104
28105         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
28106         as Jan Gray found out, it is incorrect. 
28107
28108 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
28109
28110         * assembly.c: Implement asssembly loading.  This loads an image
28111         and loads all the referenced assemblies.  Come to think of it, we
28112         could always do lazy loading of the assemblies. 
28113
28114         * image.c (mono_image_open): Keep loaded images in a hashtable.
28115
28116         * image.h (MonoImage): Add reference count.
28117
28118 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
28119
28120         * assembly.c (mono_assembly_open): Keep track of the file name in
28121         case the assembly has no ASSEMBLY table.
28122
28123         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
28124         from get.c here.
28125
28126 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
28127
28128         * metadata.c, metadata.h: decode local vars in method header
28129         parse function. Change callers accordingly.
28130
28131 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
28132
28133         * metadata.h, cil-coff.h: protect against multiple inclusion.
28134         Added some new structures to hold information decoded from metadata:
28135         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
28136         and relevant decoding/free functions.
28137         * metadata.c: implement decoding functions. Add warning for out of bounds
28138         index in mono_metadata_locate(). Implement mono_get_method () to retreive
28139         all the info about a method signature and invocation. Remove check on
28140         uninitialized local var in parse_mh() and fix memory leak.
28141
28142 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
28143
28144         * metadata.h: More macros.
28145
28146         * tokentype.h: New file.
28147
28148 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
28149
28150         * assembly.c: added a consistency check and initialize
28151         some structures with g_new0().
28152         * metadata.c: fixed a couple more bugs in table size computation
28153         and add other checks for out-of bound access to metadata.
28154
28155 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
28156
28157         * metatada.c: fix bugs computing table sizes. Spew a
28158         warning when index in string heap is out of bounds.
28159
28160 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
28161
28162         * metadata.h: Add a couple of macros to manipulate tokens. 
28163
28164 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
28165
28166         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
28167         cli_section_tables).
28168
28169 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
28170
28171         * metadata.c (mono_metadata_user_string): New function, provides
28172         access to the UserString heap. 
28173
28174 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
28175
28176         * metadata.c: Add inline documentation.
28177
28178 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
28179
28180         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
28181         files. 
28182
28183 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
28184
28185         * typeattr.h: New file, TypeAttribute flags. 
28186
28187 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
28188
28189         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
28190         mono_assembly_ensure_section): Section loading code.
28191         (load_section_tables): Load the sections.
28192
28193         * mono/metadata/metadata.c (mono_metadata_locate_token,
28194         mono_metadata_locate): Functions to locate the information
28195         definition given a token or a table and an index.
28196         (mono_metadata_compute_table_bases): New.
28197         (compute_size): New function to compute the sizes of the various
28198         tables.
28199
28200         * mono/metadata/metadata.h: Finish listing the different index
28201         types. 
28202
28203         * mono/metadata/pedump.c: Improve to dump new information.
28204
28205 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
28206
28207         * mono/metadata/metadata.c: Entered all the tables matching
28208         Beta2. 
28209
28210         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
28211
28212
28213