ce895c8db2c9df7d3e5f704b3e9c37164ffd4244
[mono.git] / mono / metadata / ChangeLog
1 2010-07-24  Zoltan Varga  <vargaz@gmail.com>
2
3         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix warnings on amd64.
4
5 2010-07-24  Sanjoy Das <sanjoy@playingwithpointers.com>
6
7         * sgen-gc.h: Removed 'foo defined but not used' warnings for the
8           *_signal_num variables.
9
10 2010-07-23  Zoltan Varga  <vargaz@gmail.com>
11
12         * file-io.c (ves_icall_System_IO_MonoIO_Read): Add a null check.
13         (ves_icall_System_IO_MonoIO_Write): Ditto.
14
15         * loader.c (mono_loader_cleanup): Delete loader_mutex, the shutdown races should
16         be fixed now.
17
18 2010-07-23  Zoltan Varga  <vargaz@gmail.com>
19
20         * loader.c (mono_loader_lock_if_inited): New helper function which can be called
21         during startup before the loader lock is initialized.
22         (mono_loader_unlock_if_inited): Ditto.
23
24
25 2010-07-21  Geoff Norton  <gnorton@novell.com>
26
27         * sgen-archdep.h: Fix the build on amd64-darwin.
28
29 2010-07-16  Zoltan Varga  <vargaz@gmail.com>
30
31         * object.c (mono_print_unhandled_exception): Fix a warning.
32
33 2010-07-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
34
35         * threadpool.c: use a monitor thread to start up new ones when needed.
36         Fixes bug #622398.
37
38 Thu Jul 15 18:44:44 CEST 2010 Paolo Molaro <lupus@ximian.com>
39
40         * reflection.c, class-internals.h, class.c, icall.c: support
41         reflection of default constant value for Re.Emit properties.
42
43 2010-07-14  Miguel de Icaza  <miguel@novell.com>
44
45         * reflection.c (load_cattr_value): Add support for encoding
46         DateTime constants into the blob.    Turns out that this is
47         required by .NET, it was only documented post 1.0.
48
49         * icall.c (ves_icall_type_GetTypeCodeInternal): Guard test for
50         System.Decimal and System.DateTime inside a mono_is_corlib_image
51         call.   A sample program showed that we could return the wrong
52         TypeCode just by creating a class with those names. 
53
54         * class.c (mono_is_corlib_image): Exposed this to other metadata/
55         code.
56
57 2010-07-14  Sebastien Pouliot  <sebastien@ximian.com>
58
59         * security-core-clr.c: Don't abort (only warn) if we cannot find 
60         a caller for relfecting code (transparent is assumed). Fix
61         get_method_access_exception to accept a NULL caller.
62
63 2010-07-14  Mark Probst  <mark.probst@gmail.com>
64
65         * sgen-gc.c: Heavy statistics on the internal allocator.
66
67 2010-07-13  Mark Probst  <mark.probst@gmail.com>
68
69         * sgen-marksweep.c, sgen-gc.h: Keep track of num_empty_blocks
70         properly and in a thread-safe way.
71
72 2010-07-13  Mark Probst  <mark.probst@gmail.com>
73
74         * sgen-gc.c, sgen-marksweep.c: Make object marking thread-safe.
75
76 2010-07-13  Mark Probst  <mark.probst@gmail.com>
77
78         * sgen-gc.c: Versions of safe_object_get_size() and
79         copy_object_no_checks() that work without the object's vtable
80         intact, by passing the correct vtable as an argument.
81
82 2010-07-13  Mark Probst  <mark.probst@gmail.com>
83
84         * sgen-marksweep.c: Make allocation of major sections thread-safe.
85
86 2010-07-13  Mark Probst  <mark.probst@gmail.com>
87
88         * sgen-gc.c, sgen-gc.h, sgen-los.c, sgen-major-copying.c,
89         sgen-marksweep.c: Update the heap boundaries thread-safe and lock
90         free if parallel mark is enabled.
91
92 2010-07-13  Mark Probst  <mark.probst@gmail.com>
93
94         * sgen-gc.c, sgen-gc.h, sgen-major-copying.c: Lock the internal
95         allocator if parallel mark (not committed yet) is enabled.
96
97 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
98
99         * reflection.c (inflate_mono_method): Handle dynamic
100         generic instances that have method.count set but
101         methods not. Fixes another crash from boo's test suite.
102
103 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
104
105         * icall.c (ves_icall_MonoMethod_get_base_method): If
106         the method slot is bigger than the class vtable, return
107         the original method. Makes booc work again.
108
109 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
110
111         * verify.c (mono_generic_param_is_constraint_compatible):
112         The candidate type itself might satisty the required
113         constraints.
114
115         Fixes #621599.
116
117 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
118
119         * reflection.c (fix_partial_generic_class): Inflate the
120         generic instance parent in case it was changed after
121         MonoGenericClass was instantiated.
122
123         Fixes one of the issues from #389886.
124
125 2010-07-10  Mark Probst  <mark.probst@gmail.com>
126
127         * sgen-gray.c: Store only a pointer to one end of the gray queue.
128
129 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
130
131         * loader.c (mono_method_signature_checked): Release the domain
132         lock on failure.
133
134 2010-07-10  Mark Probst  <mark.probst@gmail.com>
135
136         * sgen-gc.c: Store the forwarding address in the first word of an
137         object, where the forwarding bit is stored.
138
139 2010-07-10  Mark Probst  <mark.probst@gmail.com>
140
141         * gc.c, gc-internal.h, sgen-gc.c, sgen-gc.h, sgen-os-mach.c: An
142         interface to register our Mach exception thread which will not be
143         suspended by stop-the-world.
144
145 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
146
147         * loader.c (mono_get_method_constrained): Properly unlock the
148         domain lock on failure. Use checked variant of
149         inflate_generic_signature.
150
151 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
152
153         * loader.c (mono_method_signature_checked): Use checked
154         variant of inflate_generic_signature.
155
156         Fixes #606353.
157
158 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
159
160         * metadata.c (mono_metadata_parse_type_internal): Don't use
161         cannonical types when a transient type was requested.
162
163         Fixes #608626.
164
165 2010-07-10  Mark Probst  <mark.probst@gmail.com>
166
167         * sgen-gray.c, sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c:
168         All functions that touch the gray queue directly or indirectly now
169         take it as an argument.
170
171 2010-07-10  Mark Probst  <mark.probst@gmail.com>
172
173         * sgen-gray.c, sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c:
174         Put the gray queue data into a struct and pass it around.
175
176 2010-07-09 Rodrigo Kumpera  <rkumpera@novell.com>
177
178         * class.c (mono_method_can_access_method_full): Handle type
179         accessibility with very deep nested types.
180
181         * class.c (mono_method_can_access_field_full): Ditto.
182
183         Fixes #619300.
184
185 2010-07-10  Mark Probst  <mark.probst@gmail.com>
186
187         * sgen-gc.c, sgen-los.c, sgen-major-copying.c, sgen-marksweep.c,
188         sgen-scan-object.h: Use a macro for rounding up sizes and
189         addresses to ALLOC_ALIGN.
190
191 2010-07-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
192
193         * file-io.c: fix GetFileSystemEntries for patterns containing
194         directories.
195
196 2010-07-09  Mark Probst  <mark.probst@gmail.com>
197
198         * sgen-marksweep.c (major_finish_major_collection): Don't free
199         major heap blocks on 32 bit platforms because it can lead to
200         address space fragmentation.  We'll figure this out later.
201
202 2010-07-09  Mark Probst  <mark.probst@gmail.com>
203
204         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c: Free major
205         heap blocks for mark&sweep eventually.
206
207 2010-07-09  Mark Probst  <mark.probst@gmail.com>
208
209         * sgen-protocol.c: Fix build when binary protocol is disabled.
210
211 2010-07-09  Mark Probst  <mark.probst@gmail.com>
212
213         * sgen-protocol.c, sgen-gc.c: Make binary protocol lock-freely
214         thread-safe.
215
216 2010-07-08 Neale Ferguson <neale@sinenomine.net>
217
218         * sgen-archdep.h: Add support for s390x
219         * domain.c: Use gsize so that 64-bit big endian systems produce 
220         bitmap.
221
222 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
223
224         * pedump.c (verify_image_file): Initialize the vtable as well.
225
226 2010-07-07  Geoff Norton  <gnorton@novell.com>
227
228         * sgen-gc.h:  Not every system has sys/signal.h.  Prefer the posix
229         header.
230
231 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
232
233         * assembly.c (mono_assembly_load_reference): Replace a g_warning
234         with a mono_trace calls. This makes compiling MD a lot less scary.
235
236 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
237
238         * verify.c (do_stobj): Improve error message.
239
240 2010-07-08  Mark Probst  <mark.probst@gmail.com>
241
242         * sgen-gc.c (OBJ_COMPLEX_ARR_FOREACH_PTR): Don't load the vtable
243         from the object because it might have pinned/forwarding bits set.
244
245 2010-07-06  Zoltan Varga  <vargaz@gmail.com>
246
247         * Makefile.am (sgen_sources): Add missing sgen files.
248
249 2010-06-07  Martin Baulig  <martin@ximian.com>
250
251         * mono-debug-debugger.c (mono_debugger_get_thread_abort_signal):
252         New helper function since mono_thread_get_abort_signal() is now
253         internal.
254
255 2010-06-07  Martin Baulig  <martin@ximian.com>
256
257         * mono-debug.h, debug-mono-symfile.h: Kill glib dependencies.
258
259 2010-07-02  Michael Hutchinson  <mhutchinson@novell.com>
260
261         * object-internals.h, object.h: Make mono_string_to_utf_8_checked 
262         public, as mono_string_to_utf_8 is deprecated.
263
264         * object.(c|h): Added mono_object_to_string, a public helper function 
265         that calls ToString on a MonoObject and returns a MonoString.
266
267         * object.c (mono_print_unhandled_exception): Use mono_object_to_string.
268
269 2010-07-01  Zoltan Varga  <vargaz@gmail.com>
270
271         * filewatcher.h filewatcher.h decimal.c threads-types.h: Applied patch
272         from Elijah Taylor (elijahtaylor@google.com). Fix some definitions to
273         match their declarations and vice-versa.
274
275
276 Wed Jun 30 12:08:36 CEST 2010 Paolo Molaro <lupus@ximian.com>
277
278         * class-internals.h, domain-internals.h: mark functions that are
279         needed by the llvm module.
280
281 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
282
283         * assembly.c (framework_assemblies): Add 3.5 assemblies.
284
285         * domain-internals.h (MonoRuntimeInfo): Increase version_sets
286         by one to have room to remap 3.5 assemblies.
287
288         * domain.c (supported_runtimes): Add 3.5 remapping information.
289
290 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
291
292         * reflection.c (mono_image_create_token): Handle a
293         FieldBuilder from a different assembly.
294
295         Fixes #611836.
296
297 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
298
299         * verify.c (do_store_static_field): Improve error
300         message.
301
302 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
303
304         * assembly.c: Revert r159692 since it breaks loading 3.5
305         assemblies under 2.0.
306
307 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
308
309         * icall.c (ves_icall_Type_make_array_type): Raise a TLE if a
310         TypedByRef is passed.
311
312         * icall.c (ves_icall_Type_make_byref_type): Ditto.
313
314         * icall.c (ves_icall_Type_MakePointerType): Ditto.
315
316         Fixes #612780.
317
318 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
319
320         * assembly.c: Add a few more assemblies to the list of framework
321         assemblies.
322
323         Fixes #617714.
324
325 2010-06-28  Zoltan Varga  <vargaz@gmail.com>
326
327         * class.c (mono_class_get_vtable_entry): Avoid a crash if mono_class_setup_vtable ()
328         fails.
329
330 2010-06-25  Mark Probst  <mark.probst@gmail.com>
331
332         * class.c (mono_class_inflate_generic_method_full_checked): Added
333         a comment regarding a hack in mini-trampolines.c.
334
335 2010-06-26  Zoltan Varga  <vargaz@gmail.com>
336
337         * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Use SIZEOF_VOID_P instead of
338         sizeof(SIZEOF_VOID_P) which is 4.
339
340         * gc.c (mono_gc_init): Move the GC disabled check to *-gc.c.
341
342 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
343
344         * null-gc.c boehm-gc.c: Define the mono_gc_ pthread wrapper functions for these
345         GCs too.
346
347         * *-gc.c (mono_gc_wbarrier_value_copy_bitmap): Implement this for all GCs.
348
349         * sgen-gc.c (mono_gc_is_moving): New function returning whenever this GC can move
350         objects.
351
352         * *-gc.c (mono_gc_set_desktop_mode): New function setting up the GC to work in
353         desktop mode.
354
355 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
356
357         * *-gc.c (mono_gc_get_description): New function returning a human readable
358         description of the current GC.
359
360 2010-06-24  Miguel de Icaza  <miguel@novell.com>
361
362         * mono-hash.c: Moved here from mono/utils as this file is
363         GC-aware, and the utils directory is not.
364
365 2010-06-23  Miguel de Icaza  <miguel@novell.com>
366
367         * Makefile.am: Add support for building a sgen-aware versions of
368         the libraries: libmonoruntimesgen.la libmonoruntimesgen-static.la,
369         they share all the components of the default, but use a differen
370         set of CFLAGS to enable SGEN instead.
371
372         Put the BOEHM defines in the CFLAGS definition. 
373
374         * domain-internals.h (MonoJitInfo): this structure used to have
375         different sizes depending on the GC that was configured (Boehm vs
376         SGen).   I have removed this difference for the sake of avoiding
377         the complexity of dealing with the mono/arch directory requiring
378         GC-specific changes to their Makefiles.
379
380 2010-06-23  Mark Probst  <mark.probst@gmail.com>
381
382         * sgen-gc.c, sgen-los.c, sgen-marksweep.c: Fix warnings.
383
384 2010-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
385
386         * metadata.c (mono_metadata_type_hash): Don't hash
387         the type kind for dynamic types since it can change.
388
389 2010-06-22 Geoff Norton  <gnorton@novell.com>
390
391         * sgen-os-mach.c: We cannot call malloc from the gc, so we need to use
392         alloca instead to prevent a deadlock.
393
394 2010-06-22  Geoff Norton  <gnorton@novell.com>
395
396         * domain.c: Allow gettings the tls key, since we need it for
397         cross thread tls poking in sgen-mach
398         * sgen-gc.(c|h), gc-internal.h: Rework sgen into having some functions
399         in external files for platform specific STW support.
400         * sgen-os-mach.c: Add a new mach kernel backend implementation of STW.
401         * sgen-os-posix.c: Move the existing posix signal based STW here.
402
403 2010-06-21  Zoltan Varga  <vargaz@gmail.com>
404
405         * marshal.c (mono_array_to_lparray): Allow MONO_TYPE_PTR. Fixes #615952.
406
407 2010-06-21 Rodrigo Kumpera  <rkumpera@novell.com>
408
409         * object-internals.h: Map new PropertyBuilder fields.
410
411         * reflection.c (property_encode_signature): Emit an instance
412         signature if property's callconv is hasthis.
413
414         * appdomain.c: Bump corlib version.
415
416 2010-06-20  Jb Evain  <jbevain@novell.com>
417
418         * metadata-verify.c: do not consider the assembly invalid if it
419         doesn't have a #Blob stream as resource assemblies don't
420         necessarily have one.
421
422 2010-06-17  Geoff Norton  <gnorton@novell.com>
423
424         * sgen-archdep.h: sgen support for arm linux and darwin.
425
426 2010-06-17  Zoltan Varga  <vargaz@gmail.com>
427
428         * loader.c (mono_method_get_header): Avoid a crash if the declaring method
429         has a faulty header.
430
431 2010-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
432
433         * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Work in a similar
434         way to mono_gc_wbarrier_value_copy but takes a bitmap that
435         indicates which slots need a write barrier.
436
437 2010-06-14  Jonathan Pryor <jpryor@novell.com>
438
439         * Makefile.am (EXTRA_DIST): Add runtime.h.
440
441 2010-06-14  Zoltan Varga  <vargaz@gmail.com>
442
443         * object.c (build_imt_slots): Don't crash if callbacks.get_imt_trampoline is not set.
444
445 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
446
447         * object.c (mono_method_add_generic_virtual_invocation): Fix the computation of the
448         IMT slot which is passed to callbacks.get_imt_trampoline.
449
450 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
451
452         * object.c: Use a callback to create IMT trampolines, allowing the usage of one
453         imt trampoline per imt slot when using LLVM.
454
455 2010-06-10  Jonathan Pryor <jpryor@novell.com>
456
457         * object.c (mono_runtime_run_main): Move fire_process_exit_event() into
458           runtime.c:mono_runtime_shutdown().
459         * runtime.c: Added; adds mono_runtime_shutdown(), which invokes the
460           AppDomain.ProcessExit event in all AppDomains.
461
462 2010-06-06  Zoltan Varga  <vargaz@gmail.com>
463
464         * marshal.c (mono_marshal_get_runtime_invoke): Don't set *exc to NULL, it is now
465         done by the caller.
466
467 2010-06-05  Mark Probst  <mark.probst@gmail.com>
468
469         * sgen-los.c: Keep bitmaps on chunk usage in LOS sections to speed
470         up freeing.
471
472 2010-06-05  Mark Probst  <mark.probst@gmail.com>
473
474         * sgen-gc.c, sgen-los.c: New LOS allocator that allocates large
475         segments of memory at once, to reduce the number of mmap/munmap
476         calls.
477
478 2010-06-05  Mark Probst  <mark.probst@gmail.com>
479
480         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: Protocol degraded
481         allocations and distinguish between normal, degraded and pinned
482         allocations.
483
484 2010-06-05  Mark Probst  <mark.probst@gmail.com>
485
486         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Make degraded
487         allocations count toward major collections and trigger major
488         collections from degraded allocations if appropriate.
489
490 2010-06-05  Mark Probst  <mark.probst@gmail.com>
491
492         * sgen-marksweep.c (ms_get_empty_block): Update heap boundaries.
493
494 2010-06-05  Mark Probst  <mark.probst@gmail.com>
495
496         * sgen-gc.c: Enable mark&sweep again.
497
498 2010-06-05  Mark Probst  <mark.probst@gmail.com>
499
500         * sgen-gc.c: Increase the maximum small object size to 8000 bytes.
501
502 2010-06-05  Mark Probst  <mark.probst@gmail.com>
503
504         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Have only one
505         major heap allowance for minor collections, instead of two
506         separate ones for small and large objects.  This reduces the
507         number of major collections.
508
509 2010-06-04  Marek Habersack  <mhabersack@novell.com>
510
511         * icall.c (ves_icall_MonoType_GetEvent): be case insensitive is
512         the BFLAGS_IgnoreCase is raised
513
514 2010-06-03  Zoltan Varga  <vargaz@gmail.com>
515
516         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Rewrite this so it returns
517         all information in a single structure. Return information about scopes as well.
518
519         * mono-debug.c (mono_debug_lookup_locals): Ditto.
520
521 2010-06-02  Geoff Norton  <gnorton@novell.com>
522
523         * appdomain.c: If we are running with IOMAP we might
524         have been provided a string that isn't case-aware for our file-
525         system, so we need to use io-portability to check if the file 
526         exists, rather than a simple glib test.
527
528         Fixes #608849
529
530 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
531
532         * verify.c (verify_generic_parameters): Verify if
533         there are not loops in constraints.
534
535 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
536
537         * verify.c (is_compatible_boxed_valuetype): Constaints
538         must be recursively checked if one generic argument
539         has a constraint on another.
540
541         Fixes #610625.
542
543 2010-05-31  Miguel de Icaza  <miguel@novell.com>
544
545         * console-unix.c (terminal_get_dimensions): Fix my previous
546         botched commit and return the actual value obtained from the ioctl.
547
548 2010-05-29  Mark Probst  <mark.probst@gmail.com>
549
550         * sgen-gc.c: Always use DESC_TYPE_RUN_LENGTH for objects without
551         references so that we don't have to do the cache-cold fetch of the
552         class in copy_object_no_checks().
553
554 2010-05-29  Robert Jordan  <robertj@gmx.net>
555
556         * marshal.c (mono_marshal_asany): marshal LPWSTRs using
557         mono_marshal_string_to_utf16_copy () to avoid memory allocation
558         mismatches under Windows. Fixes pinvoke2:test_0_asany.
559
560 2010-05-28  Mark Probst  <mark.probst@gmail.com>
561
562         * sgen-gc.c: Change default nursery size to 4MB, because it
563         improves performance on many applications and benchmarks.
564
565 2010-05-28  Mark Probst  <mark.probst@gmail.com>
566
567         * sgen-gc.c, sgen-scan-object.h: Value types in arrays are not
568         always aligned to ALLOC_ALIGN.  To handle this, shift the size in
569         the GC descriptor by one bit, and don't encode the size for value
570         types not containing references.  Also get rid of
571         DESC_TYPE_STRING.
572
573 2010-05-28  Mark Probst  <mark.probst@gmail.com>
574
575         * sgen-gc.c: Don't depend on the size encoded in a GC descriptor
576         other than for remset processing.
577
578 2010-05-28  Mark Probst  <mark.probst@gmail.com>
579
580         * sgen-gc.c: More and better remset consistency checks.
581
582 2010-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
583
584         * sgen-gc.c: Add a note about the int[] trick to avoid some
585         memset.
586
587 2010-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
588
589         * sgen-gc.c (sort_addresses): Use heap sort since it has better
590         performance.
591
592         This helps programs with lots of threads or thread with big stacks
593         since the bottleneck the pin queue can get quite big.
594
595 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
596
597         * sgen-gc.c (search_fragment_for_size): Move fragment setup into
598         a separate function called setup_fragment.
599
600         * sgen-gc.c (search_fragment_for_size_range): Variant of
601         search_fragment_for_size that does search for a secondary smaller
602         size.
603
604         * sgen-gc.c (mono_gc_alloc_obj_nolock): Use search_fragment_for_size_range
605         for tlab allocation so small fragments are used.
606
607         This patch uses small fragments for tlab allocation when possible in order
608         to improve nursery utilization. With a fixed size tlab this patch is not very
609         usefull but once size gets dynamically adjusted, this will be invaluable.
610
611         Performance under pystone 500k is unchanged. Nursery utilization improves by
612         3.5% and 18 more fragments are used per minor GC.
613
614         Performance under modified binary-tree is unchanged. Nursery utilization
615         improves by 0.5% and 3 more fragments are used per minor GC.
616
617         These numbers make sense since as more pinning happens, more fragments are
618         created and so are the chances of having a bunch of small ones.
619
620 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
621         * sgen-gc.c (mono_gc_alloc_obj_nolock): Avoid wasting space     from
622         the current fragment when allocating a TLAB.
623
624         Reduces number of pystone 500k minor collections by 7%.
625
626 2010-05-25  Martin Baulig  <martin@ximian.com>
627
628         Applying a patch from Lucas Meijer <lucas@lucasmeijer.com>.
629
630         * debug-mono-symfile.c: Release memory from symfiles that were
631         loaded from memory.
632
633 2010-05-24  Zoltan Varga  <vargaz@gmail.com>
634
635         * marshal.c (mono_marshal_free_dynamic_wrappers): Avoid an assert when this is called
636         during shutdown.
637
638 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
639
640         * marshal.c (mono_marshal_get_runtime_invoke): Simplify the code computing the
641         target class and remove some dead code.
642
643 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
644
645         * metadata.c: Add a 'transient' argument to the MonoType creation functions, so
646         the MonoTypes inside method headers can be freed when the header is freed.
647
648 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
649
650         * threadpool.c: Fix the DISABLE_SOCKETS build.
651
652 2010-05-19 Martin Baulig  <martin@novell.com>
653
654         Fix #604911.
655
656         * threads.c (wait_for_tids_or_state_change): Use an
657         alertable WaitForMultipleObjectsEx().
658         (wait_for_tids): Likewise.
659
660 2010-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
661
662         * marshal.c (mono_marshal_init): Register mono_gchandle_get_target
663         icall.
664
665         * marshal.c (mono_delegate_to_ftnptr): Use a gchandle instead of
666         gc tracked memory.
667
668         * marshal.c (mono_marshal_emit_managed_wrapper): Retrieve the first
669         argument from a gchandle.
670
671         * marshal.c: Get rid of the delegate_target_locations hash table.
672
673         Fixes #605295.
674
675 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
676
677         * sgen-gc.c: Use _fast variants for string and array length.
678
679 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
680
681         * sgen-gc.c: Fix counters to be 64 bits.
682
683         * sgen-gc.c (dump_heap): Fix formating strings.
684
685 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
686
687         * sgen-gc.c (global_remset_location_was_not_added): New
688         function that implements a 2 element LRU cache for just
689         added remsets. It is used to avoid adding duplicate ones.
690
691         * sgen-gc.c (add_to_global_remset): Check cache before
692         adding new entry.
693
694         * sgen-gc.c (scan_from_remsets): Don't process global remsets
695         that fail the cache test.
696
697         * sgen-gc.c (scan_from_remsets): Simplify the global remset
698         loop removing one condtion that is not possible.
699
700         A 2 element LRU cache was chosen by profiling IronPython 2.6
701         pytones with 1M passes and corlib compilation.
702
703         For the ipy test duplication was originally 940.92, measured
704         by "Store remsets" divided by "Unique store remsets".
705
706         With a 2-element LRU, duplication went to 1.007. Without the
707         check in scan_from_remsets 1.438.
708
709         With a 16-elements LRU, duplication reduction was negligibe.
710         A single element cache was basically of no use.
711
712         With corlib compilation duplication went from  1.4 to 1.02.
713
714         Performance results is a 20% time decrease for ipy and 2%
715         with corlib.
716 2010-05-16  Zoltan Varga  <vargaz@gmail.com>
717
718         * mono-debug.c (mono_debug_cleanup): Fix a crash in the previous change.
719
720 2010-05-15  Geoff Norton  <gnorton@novell.com>
721
722         * mono-debug.c: Fix a leak of the global table on shutdown.
723
724 2010-05-15  Geoff Norton  <gnorton@novell.com>
725
726         * debug-mono-symfile.(c|h): Add mono_debug_symfile_free_location
727         to clean up MonoDebugSourceLocation's.
728
729 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
730
731         * class.c (mono_class_create_from_typedef): Fail a class
732         if there is a loop with its parent.
733
734         Fixes #598239.
735
736 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
737
738         * loader.c (mono_loader_set_error_type_load): Convert
739         a g_warninig to mono_trace_warning.
740
741 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
742
743         * class.c (mono_class_get_full): Release strings on failure
744         to avoid leaking them.
745
746 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
747
748         * class.c (mono_class_create_from_typedef): Only return
749         the class if no exceptions were detected.
750
751         * class.c (mono_class_create_from_typedef): Don't remove
752         broken classes from class_cache. Just set failure and
753         bail out.
754
755         This fixes a memory a memory leak where resolving the same
756         broken class multiple times resulted in a memory leak.
757
758         The right behavior would be to actually return the class
759         a let the caller figure it out.
760
761 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
762
763         * mono-ptr-array.h: Add mono_ptr_array_sort.
764
765         * reflection.c (mono_image_build_metadata): Replace that ugly
766         qsort call with mono_ptr_array_sort.
767
768 2010-05-13  Mark Probst  <mark.probst@gmail.com>
769
770         * sgen-gc.c: Switch to the copying major collector, because
771         Mark&Sweep is still buggy.
772
773 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
774
775         * reflection.c (mono_image_build_metadata): Don't put managed
776         references on non-tracked memory.
777
778 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
779
780         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix this for amd64.
781
782 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
783
784         * icall.c: Switch to mono-ptr-array.h.
785
786 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
787
788         * Makefile.am: Add mono-ptr-array.h.
789
790         * mono-ptr-array.h: New header that implements
791         a GC tracked equivalent of g_ptr_array. 
792
793 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
794
795         * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
796         method to avoid initializing the class.
797
798         Fixes #605115.
799
800 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
801
802         * icall.c (ves_icall_System_MonoType_getFullName): It
803         doesn't require to init the class.
804
805 2010-05-11  Miguel de Icaza  <miguel@novell.com>
806
807         * console-unix.c: Signal handlers now save and restore errno.   We
808         have never had a bug report about this, ioctl does change errno. 
809
810         Hide the unused method.   
811
812         Remove internal declarations from public headers.
813
814         Document what the signal handler is doing
815
816 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
817
818         * sgen-gc.c (clear_unreachable_ephemerons): Clear
819         unreachable keys with a tombstone.
820
821         * sgen-gc.c (mark_ephemerons_in_range): Ignore
822         tombstone keys.
823
824 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
825
826         * icall-def.h:
827         * gc-internals.h:
828         * gc.c: New GC:get_ephemeron_tombstone.
829
830 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
831
832         * appdomain.c (create_exceptions): Rename to
833         create_domain_objects. Create the ephemeron tombstone object.
834
835         * domains-internals.h (MonoDomain): Add new field for the
836         ephemeron tombstone.
837
838         * domain.c (mono_domain_free): Set ephemeron_tombstone to
839         NULL.
840
841 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
842
843         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
844         and dislinks must be processed before LOS since they
845         could end up with pointers to memory returned to the
846         OS.
847
848 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
849
850         * class.c (mono_class_alloc): New helper function to centralize memory allocation
851         for classes, allocates either from the image mempool or from the heap.
852
853         * class.c: Use mono_class_alloc to allocate memory owned by classes.
854
855         * metadata.c (free_generic_class_dependents): Free more items belonging to
856         generic classes.
857
858 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
859
860         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
861         as well. Fixes #604054.
862
863 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
864
865         * metadata-verify.c: MS doesn't mind duplicates in the
866         typeref table. Move it to full verification.
867
868         Fixes #600508.
869
870 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
871
872         * image.c (do_mono_image_load): Report verification
873         errors when loading an image fails.
874
875 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
876
877         * reflection.c (mono_type_get_object): Remove chunk of code
878         no longer in use.
879
880 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
881
882         * icall-def.h
883         * icall.c: Delete some unused icalls.
884
885 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
886
887         * appdomain.c (mono_domain_has_type_resolve): Check for
888         NULL domain objects to make pedump happy.
889
890         * object.c (mono_field_get_value): Assert on NULL object.
891         It's the caller resposibility to check for this.
892
893         * object.c (mono_field_get_value_object): Ditto.
894
895         Fixes #601384.
896
897 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
898
899         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
900         checks can avoid doing a mono_class_init.
901
902         * icall.c: Remove mono_class_init from a bunch of icalls that
903         don't need it.
904
905         Hopefully we're now lazy enough to fix most victims of #601431.
906
907 2010-05-07  Mark Probst  <mark.probst@gmail.com>
908
909         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
910
911 2010-05-07  Mark Probst  <mark.probst@gmail.com>
912
913         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
914
915 2010-05-07  Marek Habersack  <mhabersack@novell.com>
916
917         * culture-info-tables.h: updated to include en-TT culture. Fixes
918         bug #594035
919
920 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
921
922         Move mono_class_init from mono_type_get_object to icalls.
923         This causes massive memory savings for Assembly::GetTypes () and
924         make it fail a lot less due to missing dependencies.
925
926         This is a conservative, naive change as it doesn't remove some
927         mono_class_init from places that might not need them. Carefull
928         review of those should follow.
929
930         * reflection.c (mono_type_get_object): Don't mono_class_init the
931         returning type.
932
933         * reflection.c:
934         * cominterop.c:
935         * icall.c:
936         * marshal.c: Call mono_class_init in functions receiving a MonoType
937         object.
938
939         First step into fixing #601431.
940
941 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
942
943         * gc-internal.h: Add new functions required for ephemeron support.
944
945         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
946
947         * icall-def.h: Add GC::register_ephemeron_array.
948
949         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
950         under sgen. Its fields must not be marked.
951
952         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
953
954         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
955         handling finalizable objects. Clean dead ones after all finalizable
956         handling.
957
958         * sgen-gc.c (dump_heap): Add new kind of internal memory.
959
960         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
961         arrays from the dead domain.
962
963         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
964
965         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
966         whose keys are reachable.
967
968         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
969         list of live ephemeron arrays.
970
971 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
972
973         * class.c (mono_class_layout_fields): Don't perform alignment
974         if align is zero.
975
976         * class.c (mono_class_layout_fields): Init field related information
977         to sane defaults.
978
979 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
980
981         * verify.c (mono_verifier_verify_class): Verify the constraint
982         of generic type definitions.
983
984 2010-05-04  Mark Probst  <mark.probst@gmail.com>
985
986         * sgen-marksweep.c: Simplify free list maintenance in sweep.
987
988 2010-05-02  Mark Probst  <mark.probst@gmail.com>
989
990         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
991         major_do_collection() across the two major collectors.
992
993 2010-05-02  Mark Probst  <mark.probst@gmail.com>
994
995         * sgen-gc.c: Add heavy statistics counter for re-added global
996         remsets.
997
998 2010-05-02  Mark Probst  <mark.probst@gmail.com>
999
1000         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
1001         get rid of a division in critical code.
1002
1003 2010-04-29  Mark Probst  <mark.probst@gmail.com>
1004
1005         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
1006         blocks for objects without references in mark&sweep, to improve
1007         performance.
1008
1009 2010-04-28  Mark Probst  <mark.probst@gmail.com>
1010
1011         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
1012         statistics up-to-date.
1013
1014 2010-04-27  Mark Probst  <mark.probst@gmail.com>
1015
1016         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
1017         heap-dump for mark&sweep.
1018
1019 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
1020
1021         * loader.c (mono_method_get_header): Move the is_inflated case before the
1022         wrapper case, as a method can be both.
1023
1024 2010-04-27  Mark Probst  <mark.probst@gmail.com>
1025
1026         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
1027         separate pass to scan pinned and large object but use the gray
1028         queue like for regular objects.
1029
1030 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
1031
1032         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
1033         string.h for memmove.
1034
1035         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
1036         ipaddress_to_struct_in6_addr() is only needed when
1037         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
1038
1039 2010-04-25  Mark Probst  <mark.probst@gmail.com>
1040
1041         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
1042         separate copy_object functions for major vs nursery.  Allows us to
1043         get rid of a few checks and the start and end parameters for many
1044         functions.
1045
1046 2010-04-25  Mark Probst  <mark.probst@gmail.com>
1047
1048         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
1049         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
1050         collector.
1051
1052 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
1053
1054         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
1055         calling setup_mono_type () since the nested parent could recursively reference
1056         the nested class using generic constraints. Fixes #599469.
1057
1058 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1059
1060         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
1061         abstraction.
1062
1063 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1064
1065         * sgen-gc.c: Remove more unneeded code.
1066
1067 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1068
1069         * sgen-gc.c: Disable managed allocator and wbarrier when the
1070         binary protocol is enabled.
1071
1072 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1073
1074         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
1075
1076 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1077
1078         * sgen-gc.c: Remove a few commented out and unneeded bits.
1079
1080 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1081
1082         * threadpool.c: patch from Robert Nagy that fixes a nullref and
1083         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
1084
1085 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
1086
1087         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
1088         types.
1089
1090         Fixes #331126
1091
1092 2010-04-21  Mark Probst  <mark.probst@gmail.com>
1093
1094         * sgen-gc.c: Turn off semi-precise stack mark.
1095
1096 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
1097
1098         * reflection.c (mono_custom_attrs_from_index): Use right function
1099         to free 'list' (i.e. g_list_free) if the verifier fails.
1100
1101 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
1102
1103                 * verify.c: Handle the case where mono_type_get_underlying_type_any
1104                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
1105                 and MONO_TYPE_VALUETYPE in those case.
1106
1107                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
1108
1109                 Hopefully Fixes #564253.
1110
1111 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
1112
1113         * domain-internals.h: made threadpool_jobs volatile.
1114         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
1115         all local jobs.
1116         * threadpool.c:
1117                 -When two threads try to initialize the socket IO pool,
1118                 the second one waits until the intialization is finished
1119                 instead of continuing right away.
1120                 -Add checks for domain unload: no items added in this case.
1121                 -Only measure the time every 10 elements added to the queue.
1122                 This is an experiment since linux x86 gettimeofday() sucks.
1123                 -Create new thread if there are none waiting for work items.
1124                 -There was a missing decrement of the busy threads.
1125                 -Make sure the local queue is cleaned up before exiting the
1126                 thread when the program ends.
1127
1128 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
1129
1130         * reflection.c (mono_type_get_object): Normalize generics types
1131         as to how managed code expect them to be. A generic instance over
1132         the GTD arguments must have the same mirror as the GTD itself.
1133
1134         Fixes #473289.
1135
1136 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
1137
1138         * locales.c: Implement support for DISABLE_NORMALIZATION.
1139
1140 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1141
1142         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
1143         since it is not a MonoMethod.
1144
1145 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
1146
1147         * icall-def.h: Add get_RequiresElevatedPermissions icall to
1148         System.Security.SecurityManager - used only by Moonlight
1149         * security-core-clr.c|h: Add Elevated Trust/Permission support
1150         for CoreCLR / Moonlight
1151
1152 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1153
1154         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
1155         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
1156
1157 2010-04-16  Marek Habersack  <mhabersack@novell.com>
1158
1159         * mono-perfcounters.c: added code for the "Mono
1160         Memory/Total Physical Memory" performance counter.
1161
1162         * mono-perfcounters-def.h: added definition of the "Mono
1163         Memory/Total Physical Memory" performance counter.
1164
1165 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1166
1167         * class.c (mono_class_get_method_by_index): Return NULL
1168         on type load failures.
1169
1170 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1171
1172         * class.c (mono_class_from_typeref): Check if the supplied
1173         image has an assembly bound to it.
1174
1175         Fixes #567884.
1176
1177 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1178
1179         * loader.c (mono_method_get_signature_full): Use new function
1180         inflate_generic_signature_checked to check for errors.
1181
1182         Fixes #560839.
1183
1184 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1185
1186         * loader.c (inflate_generic_signature): Add _checked variant
1187         and move this function to use it.
1188
1189 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1190
1191         * class.c (mono_class_setup_vtable_general): Use error checking
1192         version of mono_class_inflate_generic_method_full.
1193
1194         Fixes #596975.
1195
1196 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1197
1198         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
1199         error handling passing MonoError around.
1200
1201         Fixes #560336.
1202
1203 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1204
1205         * socket-io.c: make GetHostByName ("") work on windows.
1206         Fixes bug #456723.
1207
1208 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1209
1210         * object-internals.h:
1211         * threads.c: use a spin lock when accesing the per-thread appdomain
1212         list.
1213
1214 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1215
1216         * threads.c: no need to take the threads lock in push/pop appdomain.
1217
1218 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
1219
1220         * reflection.c (_mono_reflection_parse_type): MS supports
1221         non-assembly-qualified types in a generic type parameter list
1222         when enclosed in '[]' (which signals that they should be a fqn).
1223
1224         This breaks ECMA specs for how type names are encoded in cattr
1225         blobs but F# does it.
1226
1227         Fixes #576342.
1228
1229 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
1230
1231         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
1232         for instance methods/ctors.
1233
1234         Fixes #422113.
1235
1236 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1237
1238         * reflection.c: Use the new verifier support for checking
1239         custom attributes.
1240
1241         Fixes #595306.
1242
1243 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1244
1245         * metadata-verify.c: Implement structural verification
1246         of custom attributes. This check requires access to the
1247         loader since to resolve the size of an enum we have to
1248         look it up.
1249         We don't check if named argumenments are encoded in a
1250         compatible fashion to their underlying field/prop.
1251         Maybe we should?
1252
1253         * verify-internals.h: Add two new cattr verification API.
1254
1255 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1256
1257         * metadata-verify.c (decode_signature_header): Fix signature.
1258
1259 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1260
1261         * verify.c (mono_verifier_is_enabled_for_method): Handle
1262         assembly less images.
1263
1264         * verify.c (mono_verifier_is_class_full_trust): Ditto.
1265
1266 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1267
1268         * loader.c (mono_method_signature_checked): Properly
1269         init MonoError.
1270
1271         * loader.c (mono_method_signature): It's the calee
1272         resposibility to init the error object.
1273
1274 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1275
1276         * metadata-verify.c (decode_signature_header): Do proper
1277         overflow checking.
1278
1279 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
1280
1281         * reflection.c: maintain the invariants required by
1282         mono_class_layout_fields() also in typebuilder_setup_fields ().
1283
1284 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
1285
1286         * security-core-clr.c: Call mono_class_setup_methods in 
1287         get_default_ctor before checking klass->methods. Fix typo in
1288         comment
1289
1290 2010-04-10  Jb Evain  <jbevain@novell.com>
1291
1292         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
1293         add .net 4.0 RTM version.
1294
1295 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1296
1297         * reflection.c (resolve_object): Properly inflate generic
1298         methods when a context is supplied.
1299
1300         Fixes #591226.
1301
1302 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1303
1304         * verify.c (mono_method_verify): A switch op don't empty
1305         the stack for the next one. Fixes a bug when running fsi
1306         under --verify-all.
1307
1308 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1309
1310         * metadata-verify.c (is_valid_standalonesig_blob): Accept
1311         fields as valid standalone sig too. F# does generate them.
1312
1313         * metadata-verify.c (verify_typedef_table_full): Ignore
1314         what <module> extends.
1315
1316 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1317
1318         * verify.c (do_invoke_method): It's ok to do use call with
1319         virtual, non-final methods if their class is sealed.
1320
1321 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1322
1323         * icall.c (ves_icall_MonoField_GetValueInternal): This function
1324         is a near identical copy of mono_field_get_value_object. So simply
1325         call it.
1326
1327         * object.c (mono_field_get_value_object): Handle literal fields
1328         on open generic classes.
1329
1330         Fixes #594942.
1331
1332 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1333
1334         * reflection.c (mono_reflection_create_runtime_class): Setup
1335         parent/supertype information again since it can be changed
1336         without notice.
1337
1338 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1339
1340         * verify.c (verify_type_compatibility_full): Properly handle
1341         stores between arrays of primitives.
1342
1343         Fixes the verifier side of #555950.
1344
1345 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1346
1347         class.c (mono_bounded_array_class_get): Properly init
1348         cast_class to take the fact that uint[] and int[] can be
1349         casted between each other.
1350
1351         Fixes #555950.
1352
1353 2010-04-07  Geoff Norton  <gnorton@novell.com>
1354
1355         * domain.c: Avoid a deadlock on osx.  Fixes #565765
1356
1357 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1358
1359         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
1360         builders. Fixes #594464.
1361
1362 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1363
1364         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
1365         waiting for all threads to suspend, as those threads can't be suspended.
1366
1367 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1368
1369         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
1370         to avoid crashes on newly created threads.
1371
1372 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1373
1374         * file-io.c: reset the MonoIOStat structure in case of error.
1375         Fixes bug #582667.
1376
1377 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
1378
1379         * class.c (print_implemented_interfaces): Print proper type name.
1380
1381         * class.c (mono_class_setup_vtable): Don't try that hard to produce
1382         the override map for generic instances since it later ignored.
1383
1384         * class.c (mono_class_implement_interface_slow): Don't break for
1385         dynamic generic instances.
1386
1387         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
1388
1389         * reflection.c (mono_reflection_method_get_handle): New method that
1390         resolves a method handle.
1391
1392         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
1393         case when we override methods from a dynamic generic instance interface.
1394
1395         Fixes #575941.
1396
1397 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
1398
1399         * threadpool.c: don't attempt to close the pipe when it has not been
1400         created.
1401
1402 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
1403
1404         * threadpool.c: if there are no waiting threads, try to start a new
1405         one. This fixes the not-so-random hangs in System.ServiceModel tests.
1406         No need to use InterlockedCompareExchange to read volatile variables.
1407
1408 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1409
1410         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
1411         and reference types that point to the same class.
1412
1413         Fixes #565598.
1414
1415 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1416
1417         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
1418         when verifying compatibility between a generic instance and a generic
1419         parameter.
1420
1421         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
1422
1423         * verify.c (stack_slot_stack_type_full_name): Improve verification type
1424         name.
1425
1426         Fixes #587849.
1427
1428 2010-04-04  Mark Probst  <mark.probst@gmail.com>
1429
1430         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
1431
1432 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
1433
1434         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
1435
1436 2010-04-03  Marek Habersack  <mhabersack@novell.com>
1437
1438         * process.c: when cross-compiling with MinGW, force GetProcessId
1439         lookup using GetProcAddress.
1440
1441 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1442
1443         * sgen-gc.c: parse_environment_string_extract_number() must be
1444         static.
1445
1446 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1447
1448         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
1449         gray_object_dequeue(), to make sure they're inlined.
1450
1451 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1452
1453         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
1454         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
1455
1456 2010-04-02  Jb Evain  <jbevain@novell.com>
1457
1458         * exception.c: remove dead code.
1459
1460 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
1461
1462         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
1463         with mono-gc.h.
1464
1465 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
1466
1467         * sgen-gc.c: Make the nursery size adjustable by the
1468         MONO_GC_PARAMS environment variable.
1469
1470         Code is contributed under MIT/X11 license.
1471
1472 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
1473
1474         * threadpool.c: threadpool threads wait is alertable.
1475         Fixes bug #592964.
1476         Reduced the stack size of the *poll_wait thread.
1477
1478 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
1479
1480         * exception.c|metadata-internals.h: Add new mono_get_exception_
1481         field_access_msg and mono_get_exception_method_access_msg 
1482         functions that accept a const char* parameter to provide more 
1483         details when the exception is thrown.
1484         * security-core-clr.c|h: Rework code to allow logging exceptions
1485         (export MONO_LOG_MASK="security") and to supply more details in
1486         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
1487         mono_security_core_clr_is_field_access_allowed and 
1488         mono_security_core_clr_is_call_allowed to return an exception,
1489         with messages and logging, that can be emitted by method-to-ir.c
1490
1491 2010-04-01  Mark Probst  <mark.probst@gmail.com>
1492
1493         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
1494         pinned object.
1495
1496 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1497
1498         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
1499         the assembly name is not well formed utf8. Fixes #567882.
1500
1501 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1502
1503         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
1504         the generic parameters from the builder. Fixes #473298.
1505
1506 2010-03-31  Miguel de Icaza  <miguel@novell.com>
1507
1508         * object.c (mono_class_proxy_vtable): Eliminate warning. 
1509
1510         * marshal.c (emit_marshal_boolean): Eliminate possible
1511         uninitialized local warning. 
1512
1513 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
1514
1515         * class.c (mono_class_init): Postpone coreclr inheritance check
1516         until the end of the initialization (so we can check up the 
1517         default ctor manually for the core-clr inheritance rules).
1518         * security-core-clr.c: Add the missing (undocumented) checks on
1519         default constructors when verifying inheritance rules.
1520
1521 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1522
1523         * domain-internals.h (MonoJitExceptionInfo): Add new field
1524         handler_end to the data union. To be used to point the end
1525         of a finally block.
1526
1527 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1528
1529         * reflection.c: Add support for new v4 type
1530         System.Reflection.MonoModule that is the concrete version
1531         of Module which is abstract unver v4.
1532
1533 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1534
1535         * class.c (mono_class_init): Don't set class failure after
1536         inited = 1 is set. It must be done before.
1537
1538 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
1539
1540         * mono-config.c: Add support for OS "haiku"
1541         * ChangeLog: Fix UTF-8 encoding
1542
1543         Code is contributed under MIT/X11 license.
1544
1545 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
1546
1547         * console-unix.c: fixed include logic for sys/ioctl.h.
1548
1549 2010-03-30  Mark Probst  <mark.probst@gmail.com>
1550
1551         * threads.c: Fix bitmap generation for TLS marking on 64 bit
1552         systems.
1553
1554 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
1555
1556         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
1557         unfinished/broken typebuilders.
1558
1559 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1560
1561         * sgen-gc.c: Use the same heuristic for the LOS target that we use
1562         for the minor section allowance.
1563
1564 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
1565
1566         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
1567         "NoOptimization".
1568
1569 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1570
1571         * sgen-gc.c: Count bytes allocated with heavy statistics.
1572
1573 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1574
1575         * sgen-gc.c: More detailed time statistics.
1576
1577 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
1578
1579         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
1580         fix the user defined mark interface to pass a pointer
1581         to the object location and not the object itself.
1582
1583 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1584
1585         * reflection.c (mono_method_body_get_object): Release
1586         the method header before the call to CACHE_OBJECT since
1587         this is a macro that returns.
1588
1589 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1590
1591         * class.c (inflate_generic_type): mono_metadata_type_dup
1592         already dupes array information, the g_memdup was just
1593         leaking memory.
1594
1595 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1596
1597         * verify.c: Add stack_peek function. Fix CEE_DUP
1598         to not read from invalid memory if push did expand
1599         the stack.
1600
1601 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1602
1603         * verify.c: Remove old table verification code that has
1604         been superseeded by the new metadata verifier.
1605
1606         * verify.h: Remove mono_image_verify_tables from the public
1607         API.
1608
1609         * pedump.c: Fix for removed bits.
1610
1611 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1612
1613         * verify.c: Allocate stack slows lazily to reduce stack usage
1614         in case of methods with huge stacks. Reduces memory consumption
1615         for mcs yyparse from 459Mb to 1.8Mb.
1616
1617 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1618
1619         * threadpool.c: don't try executing items from domains being
1620         unloaded. Fixes appdomain-async-invoke test.
1621
1622 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1623
1624         * threadpool.c: spin while the threadpool initializes.
1625         * mono-wsq.c: if the WSQ has not been initialized or has been shut
1626         down, don't do anything.
1627
1628 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1629
1630         * threads.c (mono_thread_create_internal): Set the GC type of the
1631         threads_starting_up hash table.
1632
1633 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1634
1635         * threadpool.c: reset 'state' to avoid returning non-null when the
1636         event type is not found.
1637
1638 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1639
1640         * sgen-gc.c: make copy_object () take the address of the
1641         slot holding the reference. This allows saving memory stores
1642         when not needed and it allows keeping track of oldspace->nursery
1643         references for the card table code.
1644
1645 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
1646
1647         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
1648
1649         Code is contributed under MIT/X11 license.
1650
1651 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
1652
1653         * object.c, threads.c, threads-types.h, threads.h: make the
1654         managed thread local storage references precisely tracked.
1655
1656 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1657
1658         * threadpool.[ch]: reworked the threadpool:
1659                 -Threadpool threads use a work-stealing queue. Adding a work
1660                 item from a threadpool thread will queue it in the thread
1661                 local queue without locking (in most cases).
1662                 -epoll events are coalesced before being added to the IO
1663                 queue.
1664                 -Dynamically change the number of active threads
1665                 -Changed the global queue to be more GC friendly
1666
1667         * class-internals.h: add 2 new performance counters for the number of
1668         threads in the threadpool and the IO threadpool.
1669
1670         * object-internals.h: new field in MonoAsyncResult.
1671         * icall-def.h: new internal call for queueing work items.
1672
1673         * Makefile.am: add 2 new files.
1674
1675         * appdomain.c: bump up corlib version.
1676
1677         * mono-wsq.[ch]: an implementation of a work-stealing queue.
1678
1679         * mono-perfcounters-def.h:
1680         * mono-perfcounters.c: added 2 new performance counters.
1681
1682 2010-03-26  Mark Probst  <mark.probst@gmail.com>
1683
1684         * sgen-gc.c: More FIXME/TODO updates.
1685
1686 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1687
1688         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
1689         function mono_gc_invoke_with_gc_lock() which invokes a function
1690         with the guarantee that no collection will occur during its execution.
1691
1692 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1693
1694         * sgen-gc.c: Update a few comments.
1695
1696 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1697
1698         * reflection.c: Add support for new v4 type
1699         System.Reflection.MonoAssembly that is the concrete version
1700         of Assembly which is abstract unver v4.
1701
1702 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
1703
1704         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
1705         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
1706
1707         Expose a few macros that are needed for SR but not SRE to the
1708         world (previous inside the SRE ifdef)
1709
1710 2010-03-24  Mark Probst  <mark.probst@gmail.com>
1711
1712         * sgen-gc.c (gc_register_current_thread): We need
1713         stack_start_limit as well in the non-attribute pthread case.
1714
1715 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
1716
1717         * threads.c: Fix windows build.
1718
1719 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1720
1721         * thread-types.h: Add mono_thread_resume_interruption.
1722
1723         * threads.c: Add mono_thread_resume_interruption, this
1724         function should be called after the last protected handler
1725         found at interruption time has finished.
1726
1727 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1728
1729         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
1730         Check MonoInternalThread's ::state instead of ::abort_exc
1731         since the later can be lazily created.
1732
1733         This is specially problematic when running a finally block
1734         under AbortRequested state. ResetAbort must work, but the
1735         abort_exc object has not been created because interruption
1736         has not began.
1737
1738 2010-03-22  Geoff Norton  <gnorton@novell.com>
1739
1740         * locales.c: Its possible for CFStringGetCStringPtr
1741         to return null and not convert encodings.  Use
1742         CFStringGetCString instead.
1743
1744 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
1745
1746         * class-internals.h, class.c, object.c: introduce compressed
1747         interface bitmaps (for now only under small config): this saves
1748         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
1749         startups.
1750
1751 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
1752
1753         * mono-debug.c: don't try to get the method header, it causes a
1754         deadlock and it is not used for anything anymore.
1755
1756 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1757
1758         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
1759         broken by the last change.
1760
1761 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
1762
1763         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
1764         SOCK_RDM.
1765         
1766         Code is contributed under MIT/X11 license.
1767
1768 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
1769
1770         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
1771         nursery.
1772
1773         Code is contributed under MIT/X11 license.
1774
1775 2010-03-19  Martin Baulig  <martin@ximian.com>
1776
1777         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
1778         dummy field, containing an empty string.
1779         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
1780
1781
1782 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1783
1784         * class.c: setup_interface_offsets() refactor to not call
1785         mono_class_get_implemented_interfaces () more times than needed and
1786         to reduce the runtime memory requirements to be O(num_interfaces)
1787         instead of O(max_interface_id).
1788
1789 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1790
1791         * mono-mlist.[ch]: add mono_mlist_set_next ().
1792
1793 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1794
1795         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1796         associated changes to support holes in the protected range of a
1797         try block.
1798
1799         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1800         retrieves the holes table from a given MonoJitInfo.
1801
1802 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1803
1804         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1805         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1806         hide the contents of the MonoString and MonoArray structs from the
1807         public API. Change the accessor macros to accessors functions where
1808         needed. Adjusted the array API to allow for pointer-sized lengths and
1809         starting positions, so 64 bit arrays can be optionally provided in an
1810         API compatible way if needed on 64 bit systems.
1811
1812 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1813
1814         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1815         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1816
1817 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1818
1819         * class-internals.h: remove the method header from MonoMethod since
1820         from now on it will be transient. We have a header pointer for method
1821         wrappers, since in that case we need to keep track of it. For this
1822         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1823         structs now. The same happens with MonoMethodInflated.
1824         * class.c: reset the sre_method flag for inflated method structures:
1825         this makes the code that cares look at the header in the MonoMethodInflated
1826         structure.
1827         * loader.c: lookup the method header in the appropriate field now that
1828         it is removed from MonoMethod.
1829         * metadata-internals.h: add a flag to the method header to know if it
1830         can be freed inside mono_metadata_free_mh ().
1831         * method-builder.c: updates after moving the header field from
1832         MonoMethod to MonoMethodWrapper.
1833         * reflection.c: MonoMethods generated from Reflection.Emit use
1834         MonoMethodWrapper structs if they need a method header now (later take
1835         advantage of this and remove all the current unsafe uses of method_aux_hash).
1836         * metadata.c: make method header parsing not leak when verification
1837         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1838         These changes save a few hundred KB of runtime memory in a mcs
1839         bootstrap or a monodevelop startup.
1840
1841 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1842
1843         * verify.c: Improve error message.
1844
1845 2010-03-12  Jb Evain  <jbevain@novell.com>
1846
1847         * reflection.c (add_exported_type): populate the exported
1848         table with the type's nested type.
1849
1850 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1851
1852         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1853         can't read parentheses.
1854
1855 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1856
1857         * threads.c (thread_cleanup): Add a guard to dereferencing
1858         "thread" to avoid an unlikely race condition.
1859
1860 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1861
1862         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1863         instead of an empty string.
1864
1865 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1866
1867         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1868         convert to a boolean, recent gcc versions compile this differently.
1869
1870 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1871
1872        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1873        inlined.
1874
1875 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1876
1877         * sgen-gc.c (STRING_SIZE): Off by one.
1878
1879 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1880
1881         * sgen-archdep.h: Fix the signal context register access for
1882         AMD64.
1883
1884 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1885
1886         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1887
1888 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1889
1890         * verify.c: Store the initial basic block returned by mono_basic_block_split
1891         so we can release the whole list and not just the first one.
1892
1893 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1894
1895         * verify.c, debug-helpers.c, profiler.c, loader.c,
1896         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1897         MonoMethodHeader a transient entity.
1898
1899 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1900
1901         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1902         uncontrolled growth of the gray stack.
1903
1904         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1905         added items are removed first, improving cache locality. Avoid freeing queue
1906         segments in the fast path, use the list of segments as the free list, truncate
1907         it to its max size at the start of collection.
1908
1909 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1910
1911         * metadata-internals.h: more memory savings, both with small config and without.
1912
1913
1914 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1915
1916         * appdomain.c, domain-internals.h, domain.c, object.c:
1917         make class_vtable_hash into an array to reduce memory usage.
1918
1919 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1920
1921         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1922         object-internals.h, object.c, reflection.c, threadpool.c:
1923         reduce resource usage when the small config is selected.
1924         In particular, up to 64K of methods/fields/properties/events
1925         are allowed and "other" methods in events are ignored.
1926
1927 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1928
1929         * threads.c: reduce resource usage when compiled for a small config.
1930
1931 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1932
1933         * sgen-gc.c: Also collect number of degraded-alloced objects with
1934         heavy statistics.
1935
1936 2010-03-04  Geoff Norton  <gnorton@novell.com>
1937
1938         * assembly.c: Only support OSX bundling if the bundle is 
1939         actually detectable.
1940
1941 2010-03-04  Geoff Norton  <gnorton@novell.com>
1942
1943         * loader.c: The marshal specs are freed at the end of the call
1944         but it explicitly frees the strings as well as the container,
1945         so we need to dup them too to avoid referencing free'd memory.
1946
1947 2010-03-04  Geoff Norton  <gnorton@novell.com>
1948
1949         * icall-def.h:
1950         * icall.c: Add a new private internal icall to construct
1951         an object from its type without running the ctor.
1952
1953 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1954
1955         * profiler.c: allow multiple profiler engines to be loaded
1956         at the same time.
1957
1958 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1959
1960         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1961         profiler event to track object moves.
1962
1963 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1964
1965         * object.c, profiler.c, profiler.h, string-icalls.c:
1966         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1967
1968 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1969
1970         * decimal.c (mono_double2decimal): Add support for reducing the
1971         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1972         expected.
1973
1974 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1975
1976         * icall-def.h:
1977         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1978
1979 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1980
1981         * mono-config.c (mono_config_parse_assembly_bindings): added -
1982         parses assembly binding redirections from appdomain's config
1983         file.
1984
1985         * metadata-internals.h: added definition of a new function -
1986         mono_config_parse_assembly_bindings - to support parsing assembly
1987         binding redirections defined in appdomain's config file.
1988
1989         * domain-internals.h: added two new fields to _MonoDomain - a list
1990         of assembly bindings and a flag to parse the config file only
1991         once.
1992
1993         * assembly.c (assembly_binding_maps_name): empty culture name and
1994         NULL culture name are considered equal.
1995         (mono_assembly_apply_binding): added support for domain specific
1996         assembly binding redirections, read from the appdomain's
1997         configuration file. Fixes bug #580185
1998
1999 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
2000
2001         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
2002         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
2003         support.
2004
2005 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
2006
2007         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
2008         from this function. The new function receive the parent token instead of a type.
2009
2010         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
2011         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
2012         typebuilders. This make it possible to properly encode generic type builders since
2013         their unmanaged type don't have generics data while unfinished.
2014
2015         Fixes #583655.
2016
2017 2010-03-02  Mark Probst  <mark.probst@gmail.com>
2018
2019         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
2020         writing binary log files (can be enabled by #define'ing
2021         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
2022         bugs in longer running programs.
2023
2024 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
2025
2026         * metadata.c: added some API documentation.
2027
2028 2010-03-01  Robert Jordan  <robertj@gmx.net>
2029
2030         * filewatcher.h: Include glib.h to fix the MSVC build.
2031
2032 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
2033
2034         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
2035         a GC handle instead. This is a bit slower to access, but avoids burdening the
2036         GC with 100s of individual roots.
2037
2038         * reflection.c (mono_class_get_ref_info):
2039         (mono_class_set_ref_info):
2040         (mono_class_free_ref_info): New internal helper fuctions.
2041
2042         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
2043         of accessing klass->reflection_info directly.
2044
2045         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
2046         words.
2047
2048         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
2049         the previous array.
2050
2051 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
2052
2053         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
2054         needs an indirection.
2055
2056 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2057
2058         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
2059         so all generic sharing code is in one place.
2060
2061         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
2062         we don't call setup_interface_offsets () for unfinished types.
2063
2064 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2065
2066         * class.c (mono_class_generic_sharing_enabled): Move this to
2067         generic-sharing.c.
2068
2069         * image.c: Add an unload hook which is called before an image is unloaded.
2070
2071         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
2072         metadata.c having to depend on generic sharing.
2073
2074 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
2075
2076         * class.c: reduce size of ridiculously large cache.
2077
2078 2010-02-26  Martin Baulig  <martin@ximian.com>
2079
2080         * mono-debug.h
2081         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
2082
2083         * threads.c (mono_thread_internal_reset_abort): New method; resets
2084         the abort, but doesn't throw any exception if no abort was requested.
2085
2086 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2087
2088         * class.c (get_implicit_generic_array_interfaces): Call
2089         mono_class_setup_interface_offsets () before accessing
2090         eclass->interface_offsets_count. This only shows up on platforms without IMT for
2091         some reason.
2092
2093 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
2094
2095         * environment.c, environment.h, icall.c: make the GetOSVersionString()
2096         icall internal.
2097
2098 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
2099
2100         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
2101         direct access to the MonoType fields.
2102
2103 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
2104
2105         * threads.h: Move some internal functions which were added to this header by
2106         mistake to threads-types.h.
2107
2108         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
2109
2110 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
2111
2112         * class-internals.h, class.h, object.h: make MonoRemoteClass
2113         and mono_remote_class() internal.
2114
2115 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
2116
2117         * metadata-internals.h, class-internals.h, metadata.h: make the
2118         MonoType guts internal as well.
2119
2120 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
2121
2122         * reflection.h: the MonoTypeNameParse guts are internal now.
2123         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
2124         are internal now, provide accessors as needed.
2125         * metadata.h, metadata-internals.h: the MonoMethodSignature
2126         guts are internal now.
2127         * Makefile.am: mempool.h is an internal header now.
2128         * *.h, *.c: remove glib.h usage from the public headers.
2129
2130 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
2131
2132         * culture-info-table.h : regenerated.
2133
2134 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
2135
2136         * metadata.c: Add mono_method_get_header_summary which returns minimal
2137         information about the header of a method. This is the information used
2138         by the inline oracle to reject methods.
2139
2140         This method doesn't decode local variables and doesn't cache it's result,
2141         so it should cause a minimal reduction in memory usage.
2142
2143         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
2144         mono_method_get_header_summary.
2145
2146 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
2147
2148         * threads.c (mono_thread_exit): Make sure that the main thread is
2149         non-null before dereferencing it.
2150
2151 2010-02-21  Geoff Norton  <gnorton@novell.com>
2152
2153         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
2154         locale.
2155         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
2156         before falling back to the posix lookup.
2157
2158 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
2159
2160         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
2161         the DONT_MANAGE flag set.
2162
2163 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2164
2165         * domain.c: Remove old v1 version strings. Let the runtime
2166         default to 2.0 instead of failing because it can't find a
2167         working 1.0 instalation.
2168
2169 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2170
2171         * domain.c: Add v4 RC version string.
2172
2173 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2174
2175         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
2176         of overflow checking function.
2177
2178 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
2179
2180         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
2181         generic methods.
2182
2183         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
2184         cases for ParameterInfo.
2185
2186         Fixes #579493.
2187
2188 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
2189
2190         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
2191         have has_cctor set. Fixes #575946.
2192
2193 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
2194
2195         * appdomain.c: display a warning if the parsing the config file
2196         produces any error.
2197         Skip the BOM in UTF-8 files.
2198         Copy the AppDomainSetup before setting the privateBinPath so that the
2199         correct configuration file is read.
2200
2201 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
2202
2203         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
2204         vtable trampoline per vtable slot index. Not used yet.
2205
2206 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
2207
2208         * icall-def.h:
2209         * icall.c: add internal call that returns the system page size.
2210
2211 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
2212
2213         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
2214         'int' for system classes.
2215
2216 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
2217
2218         * icall.c, icall-def.h: new icall to check for sufficient
2219         stack space.
2220
2221 2010-02-12  Mark Probst  <mark.probst@gmail.com>
2222
2223         * reflection.c (ensure_complete_type): Check that reflection_info
2224         is set, too.  Fixes crash of corlib testsuite with -O=-all.
2225
2226 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
2227
2228         * attrdefs.h:
2229         * tabledefs.h: Add NoOptimization flag.
2230
2231 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2232
2233         * sgen-gc.c: Don't consider it a missing remset if the target
2234         object is pinned - we might have done the store but not added the
2235         remset yet.
2236
2237 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2238
2239         * sgen-gc.c: When checking for missing remsets, don't assert on
2240         the first one, but print them all and then assert.
2241
2242 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2243
2244         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
2245
2246 2010-02-09  Miguel de Icaza  <miguel@novell.com>
2247
2248         * console-unix.c: On OSX Control-Y is assigned to
2249         VDSUSP (non-Posix), the
2250         suspend-program-next-time-it-tries-to-read-input command (this is
2251         different than C-z, which suspends immediately).
2252
2253         Do the same thing that bash does and ignore this setting,
2254         making our repl/getline support pasting.
2255
2256 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2257
2258         * sgen-gc.c: Simple plausibility check for scan_starts.
2259
2260 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2261
2262         * sgen-gc.c: Round up when calculating the number of scan starts.
2263
2264 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2265
2266         * reflection.c: Export mono_get_object_from_blob.
2267
2268         * object-internals.h: Ditto.
2269
2270         * icall.c: New icall property_info_get_default_value to get the default
2271         value of a property. Since using this is not common, no caching is done.
2272
2273         * icall-def.h: Add new icall.
2274
2275 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2276
2277         * class.c: Add mono_class_get_property_default_value.
2278
2279         * class-internal.h: Export mono_class_get_property_default_value.
2280
2281 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2282
2283         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
2284
2285 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
2286
2287         * sgen-gc.c: introduced critical regions to allow some lockless
2288         operations and increase scalability.
2289
2290 2010-02-10  Geoff Norton  <gnorton@novell.com>
2291
2292         * reflection.c: Support building with DISABLE_REFLECTION
2293
2294 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
2295
2296         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
2297         Closes bug #566057.
2298
2299         * exception.c: fix typo in comment.
2300
2301 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
2302
2303         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
2304         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
2305
2306         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
2307
2308         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
2309         the internal API.
2310
2311         Fixes #574434.
2312
2313 2010-02-09  Mark Probst  <mark.probst@gmail.com>
2314
2315         * threads.c: Removed two assertions that were too strict.  Added a
2316         clarifying comment.  Fixes #577090.
2317
2318 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
2319
2320         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
2321         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
2322
2323         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
2324
2325         * verify.c (mono_type_get_stack_name): Fix a warning.
2326
2327 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
2328
2329         * marshal.c (mono_marshal_get_wrapper_info): Rename from
2330         mono_marshal_wrapper_info_from_wrapper.
2331
2332         * marshal.c (mono_marshal_set_wrapper_info): Rename from
2333         mono_marshal_method_set_wrapper_data, and export.
2334
2335         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
2336         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
2337         by calling mono_marshal_get_wrapper_info ().
2338
2339         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
2340         small objects which does no size checks.
2341
2342 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
2343
2344         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
2345
2346 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
2347
2348         * verify.c (mono_method_verify): Use the new basic block formation pass
2349         to avoid verifying dead basic blocks. This is the same behavior as the
2350         runtime MS verifier.
2351
2352 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
2353
2354         * mono-basic-block.c:
2355         * mono-basic-block.h: New implementation of a basic block formation pass.
2356         The formation pass does static liveness analysis as well to detect dead
2357         basic blocks.
2358
2359 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
2360
2361         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
2362         'this' argument in icalls.
2363
2364 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
2365
2366         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
2367
2368 2010-02-01  Mark Probst  <mark.probst@gmail.com>
2369
2370         * object.c, domain.c: When using SGen, we must register
2371         vtable->type as a root if it's not a MonoType, because then it
2372         wasn't pin-alloced.
2373
2374 2010-02-01  Mark Probst  <mark.probst@gmail.com>
2375
2376         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
2377         at the start of nursery collections, because we might have had
2378         degraded allocations which changed next_data.
2379
2380 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
2381
2382         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
2383         custom attr so this function works in cross-compiling mode.
2384
2385 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
2386
2387         * class.c (make_generic_param_class): Initialize interface offsets since we
2388         set klass->inited. Fixes #574819.
2389
2390 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
2391
2392         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
2393         calling the JIT domain cleanup hook.
2394
2395 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
2396
2397         * pedump.c (main): Properly set the verifier mode when running the metadata
2398         verifier.
2399
2400 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
2401
2402         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
2403         overlapping fields now that we're called before has_references is set.
2404
2405         * pedump.c (dump_verify_info): Clear any loader error before verifying another
2406         method. Otherwise all sort of weird stuff happens.
2407
2408 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
2409
2410         * object.c (mono_field_get_value_object): Handle nullable types correctly.
2411         Fixes #572874.
2412
2413 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
2414
2415         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
2416         Fixes #573322.
2417
2418 2010-01-23  Mark Probst  <mark.probst@gmail.com>
2419
2420         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
2421         pin_staging_area_index is greater than 0.
2422
2423 2010-01-22 Miguel de Icaza (miguel@novell.com)
2424
2425         * loader.c: Since we do nothing with the error returned, pass NULL
2426         to ignore the error.
2427
2428 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2429
2430         * reflection.c (typebuilder_setup_fields): Pretend field setup already
2431         happened before starting to encode the actual fields. This avoid ciclic
2432         dependencies and eventual crashes.
2433
2434         Fixes #572660.
2435
2436 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2437
2438         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
2439         atomic and remove the half-constructed hack in SGen.
2440
2441 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2442
2443         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
2444         has a recursive reference to itself.
2445
2446         Fixes #571863.
2447
2448 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2449
2450         * loader.c (mono_method_signature): Fix error message.
2451
2452 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2453
2454         * sgen-gc.c: Reuse to-space sections between nursery collections.
2455
2456 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
2457
2458         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
2459         from the current assembly or mscorlib. Fixes bug #322957.
2460
2461 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
2462
2463         * marshal.c: Calculate the target class of the delegete invoke wrappers using
2464         get_wrapper_target_class.
2465
2466 2010-01-19  Mark Probst  <mark.probst@gmail.com>
2467
2468         * sgen-gc.c: Fix warnings.
2469
2470 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2471
2472         * verify.c (store_local): Better error message.
2473
2474 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2475
2476         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
2477         arguments.
2478
2479 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2480
2481         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
2482         function is generics variance aware.
2483
2484 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
2485
2486         * security-core-clr.c (mono_security_core_clr_can_access_internals):
2487         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
2488
2489 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
2490
2491         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
2492           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
2493
2494         Code is contributed under MIT/X11 license.
2495
2496 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2497
2498         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
2499         on a GTD.
2500
2501 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
2502
2503         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
2504         return a point to a wrapper specific info structure describing the wrapper.
2505         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
2506  
2507 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2508  
2509         * sgen-gc.c: Make minor collection section allowance adaptive,
2510         depending on the amount of memory reclaimed in the last major
2511         collection.  If more memory was reclaimed (i.e. more garbage
2512         produced), do the next collection earlier.
2513
2514 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2515
2516         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
2517         to itself.
2518
2519         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
2520         the token as parameter.
2521
2522         * verify-internals.h: Ditto.
2523
2524         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
2525
2526         Fixes #571460.
2527
2528 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2529
2530         * sgen-gc.c: Make store_remset_buffer_index long.
2531
2532 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2533
2534         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
2535
2536         Fixes #569579.
2537
2538 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
2539
2540         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
2541         off precise marking if it is available.
2542         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
2543
2544 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
2545
2546         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
2547
2548         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
2549         pinned objects.
2550
2551         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
2552         to the array allocator.
2553
2554 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2555
2556         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
2557         result of mono_compile_method (), it already includes an ftnptr.
2558
2559 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2560
2561         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
2562
2563 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
2564
2565         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
2566         hash value which doesn't depend on glib/eglib versions.
2567         (mono_metadata_type_hash): Use it.
2568
2569         * object.c (mono_method_get_imt_slot): Ditto.
2570
2571 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
2572
2573         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
2574         independently of the GTD.
2575
2576         * class.c (mono_class_setup_fields): Fail if field has negative offset.
2577
2578         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
2579         to the upper limit since instance_size includes this amount.
2580
2581         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
2582
2583         Fixes #569544.
2584
2585 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
2586
2587         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
2588         with static methods.
2589
2590         * object.c (build_imt_slots): Avoid asserting when static methods are
2591         encountered in an interface.
2592
2593 2010-01-13  Mark Probst  <mark.probst@gmail.com>
2594
2595         * sgen-gc.c (to_space_expand): Fix assertion.
2596
2597 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
2598
2599         * string-icalls.c: missing declaration fixes.
2600         * sgen-gc.c: portability fixes.
2601
2602 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2603
2604         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
2605
2606         * class.c:
2607         * cominterop.c:
2608         * icall.c:
2609         * object.c: 
2610         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
2611
2612 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2613
2614         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
2615         it can fail loading the type.
2616
2617         * class.c: Add mono_class_inflate_generic_class_checked.
2618
2619         * class.c:
2620         * verify.c:
2621         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
2622
2623 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
2624
2625         * loader.c (mono_method_signature_checked): New internal function taking an
2626         MonoError argument.
2627
2628         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
2629         Fixes build on rh 7.3.
2630
2631 2010-01-10  Aaron Bockover  <abockover@novell.com>
2632
2633         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
2634         at runtime in the same way as on Windows, which yields a relocatable
2635         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
2636         of the running mono process.
2637
2638         On TARGET_ARM, fallback () will always be executed.
2639
2640 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2641
2642         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
2643
2644 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2645
2646         * class.c (mono_class_is_assignable_from_slow): Support variant
2647         generic delegates.
2648
2649         * class.c (mono_class_implement_interface_slow): Support types with
2650         variant generic arguments.
2651
2652 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2653
2654         * verify.c: Remove some code duplication.
2655
2656 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2657
2658         * object.c: Update docs.
2659
2660 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2661
2662         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
2663
2664         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
2665         fallback trampoline as well.
2666
2667         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
2668         out argument that is set to TRUE if the match was direct. 
2669
2670         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
2671
2672         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
2673
2674 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2675
2676         * class.c: Add mono_class_interface_offset_with_variance function that does same
2677         as mono_class_interface_offset but takes variance into account.
2678
2679         * class-internal.h: Export mono_class_interface_offset_with_variance.
2680
2681         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
2682
2683 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2684
2685         * object.c:
2686         * icall.c:
2687         * class.c: Add some FIXME for due to variant generic arguments.
2688
2689         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
2690         can't use the simple bitfield check, so call mono_class_is_assignable_from if
2691         the bitfield check fails.
2692
2693 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2694
2695         * class.c (mono_class_is_assignable_from): Rework the generics variance code
2696         to be easier to read and fix bugs in the case a non generic type implements a variant
2697         interface.
2698
2699         * class.c (mono_class_has_variant_generic_params): Make non static.
2700
2701         * class-internals.h: Export mono_class_has_variant_generic_params as part of
2702         the private API.
2703
2704 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2705
2706         * assembly.c: fix MONO_PATH debug output.
2707
2708 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
2709
2710         * culture-info-table.h : regenerated.
2711
2712 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2713
2714         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
2715         types that are meant to not have a parent.
2716
2717 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2718
2719         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
2720         from the image mempool, so it is not leaked.
2721
2722 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2723
2724         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
2725
2726 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
2727
2728         * verify.c (verify_valuetype_layout_with_target): Fix case
2729         that can lead to infinite recursion. Fix bug #567861
2730
2731 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2732
2733         * pedump.c: Run code verifier even if image verification fails
2734         due to a failed type we. This allows more errors to be shown.
2735
2736 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2737
2738         * class.c (count_virtual_methods): Remove the assert and now
2739         fail properly.
2740         
2741         * class.c (setup_interface_offsets): This can fail now.
2742
2743         * class.c (mono_class_setup_vtable_general): Check for parent vtable
2744         errors. Check setup_interface_offsets errors.
2745
2746         * class.c (setup_interface_offsets): Simplify the return error logic
2747         and remove class_init_ok.
2748
2749         Fixes #560327.
2750
2751 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2752
2753         * class.c (mono_class_init): Do class verification at the beginning. Add
2754         some asserts to avoid tripping into invalid memory.
2755
2756         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
2757         g_error and a decent message.
2758
2759         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
2760
2761         Fixes #567548.
2762
2763 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2764
2765         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
2766         as inline functions instead of defining them in mempool.c.
2767
2768         * metadata-internals.h (MonoImageSet): New structure representing a set of
2769         MonoImages, which own a collection of generic instances.
2770
2771         * metadata.c: Get rid of the global generic caches, instead assign each generic
2772         instance to the image set which consists of all the images referenced by the
2773         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
2774         the memory used by generic instances to be allocated from a per image-set mempool
2775         later.
2776
2777 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2778
2779         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
2780
2781 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2782
2783         * appdomain.c (zero_static_data): Fix a warning.
2784
2785         * locales.c (construct_culture_from_specific_name): Applied patch from
2786         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
2787         not found. Fixes #567900.
2788
2789 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
2790
2791         * loader.c (mono_method_get_signature_full): Remove two asserts.
2792         Return NULL instead so that the verifier can handle both cases 
2793         gracefully.
2794
2795 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2796
2797         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2798         so we can properly fail types instead of crashing.
2799
2800         Fixes #567676.
2801
2802 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2803
2804         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2805         generic method.
2806
2807 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2808
2809         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2810
2811 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2812
2813         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2814         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2815         we can't remove it from it since we don't hold the lock.
2816         (mon_new): Free the orphaned events here when a mon structure is added to the
2817         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2818         this down.
2819
2820 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2821
2822         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2823         as max stack might be zero.
2824
2825         Fixes #562320.
2826
2827 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2828
2829         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2830
2831         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2832         instances if the GTD did.
2833
2834         * class.c (mono_class_setup_properties): Ditto.
2835
2836         * class.c (mono_class_setup_events): Ditto.
2837
2838         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2839
2840         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2841         error setting.
2842
2843         * class.c (mono_class_init): Fail if GTD did.
2844
2845         * cominterop.c:
2846         * generic-sharing.c:
2847         * icall.c:
2848         * loader.c:
2849         * object.c:
2850         * verify.c: Properly handle failure of mono_class_setup_methods.
2851
2852 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2853
2854         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2855         mono_class_inflate_generic_method_full internal.
2856
2857         * class.c (inflate_generic_context): Now takes a MonoError argument.
2858
2859         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2860         errors.
2861
2862 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2863
2864         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2865         they cannot be patched. Partly fixes #564408.
2866
2867 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2868
2869         * metadata-internals.h, reflection.c: Use the
2870         MonoDynamicImage.handleref hash table only with unmanaged keys,
2871         and add a managed hash table handleref_managed for managed keys.
2872
2873 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2874
2875         * sgen-gc.c: Unset to-space bumper between collections.  It might
2876         become invalid due to degraded allocations.
2877
2878 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2879
2880         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2881         with the one from the original method.
2882
2883         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2884         compatibility.
2885
2886         * verify-internals.h: Add new function to the internal API.
2887
2888 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2889
2890         * culture-info-tables.h: regenerated it to include the Georgian culture.
2891
2892 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2893
2894         * sgen-gc.c: Include mono/utils/memcheck.h.
2895
2896         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2897         instead of the current domain, since the two might not match if this is called
2898         from the debugger.
2899
2900         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2901         domain which created this assembly.
2902
2903 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2904
2905         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2906
2907 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2908
2909         * sgen-gc.c: Managed implementation of the specialized generic
2910         store write barrier.
2911
2912 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2913
2914         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2915         A private virtual newslot method is used to implement an interface method without exposing
2916         it to users. When querying for public instance methods, such method would hide a public one
2917         on a parent type.
2918
2919         Fixes #564379.
2920
2921 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2922
2923         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2924         conventions.
2925
2926 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2927
2928         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2929
2930 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2931
2932         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2933         as they are no longer used.
2934         
2935          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2936
2937         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2938
2939 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2940
2941         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2942         if the owner class has not been finished before returning reflection_info.      
2943
2944         Fixes #565127.
2945
2946 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2947
2948         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2949         param doesn't have custom attributes. Fixes #565117.
2950
2951         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2952         #565120.
2953
2954 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2955
2956         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2957
2958 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2959
2960         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2961         same amount done by a core-clr enabled runtime.
2962
2963 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2964
2965         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2966         the target files is reset to writable by owner and readable by
2967         everyone else to prevent problems when updating shadow copies of
2968         files whose source is read-only. Fixes bug #556884
2969
2970 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2971
2972         * class.c (mono_generic_class_get_class): Allocate the generic
2973         class via malloc again, so that it can be freed when any one of
2974         the images of its constituent types is closed.
2975
2976         * metadata.c: When closing an image, don't free generic insts and
2977         generic classes right away, but put them into a list for later
2978         freeing.
2979
2980         * image.c, metadata-internals.h: Store the free list and in the
2981         second pass of closing an image, free it.
2982
2983 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2984
2985         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2986
2987         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2988         types in type_hash.
2989
2990         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2991
2992 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2993
2994         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2995         user type.
2996
2997         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2998         is used.
2999
3000 2009-12-14  Miguel de Icaza  <miguel@novell.com>
3001
3002         * verify.c (mono_method_verify): The Unused opcodes produce an
3003         InvalidProgramException on .NET
3004
3005 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
3006
3007         * loader.c (mono_method_get_header): Move assert after the verifier
3008         has been called on the method header.
3009
3010 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
3011
3012         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
3013
3014         * appdomain.c: Bump corlib version.
3015
3016 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
3017
3018         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
3019         types as well since otherwise generic instances would not return UT as arguments but
3020         their undelying system type.
3021
3022         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
3023         to reflect the fact that they can have now multiple different types.
3024
3025         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
3026
3027         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
3028
3029         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
3030
3031         * reflection.c (mono_reflection_register_with_runtime): Init super types
3032         if the image is not dynamic.
3033
3034         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
3035         check if the generic type definition is a TypeBuilder.
3036
3037         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
3038         doesn't belong to a dynamic image, skip initialization.
3039
3040         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
3041         base definition is not a dynamic type.
3042
3043 2009-12-11  Marek Habersack  <mhabersack@novell.com>
3044
3045         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
3046         mono_profiler_string_allocation
3047
3048         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
3049         if string profiling is enabled, call
3050         mono_profiler_string_allocation
3051
3052         * profiler.h: added two MonoProfileFlags -
3053         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
3054         installation functions for the hooks below.
3055
3056         * profiler-private.h, profiler.c: added two hooks:
3057         mono_profiler_string_allocation called whenever a string is
3058         allocated by InternalAllocateStr and mono_profiler_iomap called
3059         whenever IOMAP code performs an adjustement on a file path.
3060
3061 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
3062
3063         * boehm-gc.c: fixed race condition while getting the target of a
3064         disappearing link (bug #522233).
3065
3066 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
3067
3068         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
3069         the error.
3070
3071 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
3072
3073         * reflection.c: Add mono_reflection_register_with_runtime icall to
3074         allow a MonoGenericClass to register itself as the managed mirror of
3075         a given generic instance.
3076         This is a temporary workaround until all MGC instantiation happens in
3077         managed code.
3078
3079         * object-internals.h: Ditto.
3080
3081         * icall-def.h: Ditto.
3082
3083 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3084
3085         * sgen-gc.c (find_in_remsets): Also search the generic store
3086         remsets.
3087
3088 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3089
3090         * sgen-gc.c: Don't access class names in debugging code when
3091         unloading a domain, because they might not be valid anymore.
3092
3093 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3094
3095         * domain.c, domain-internals.h: New function mono_domain_unset().
3096
3097         * appdomain.c (unload_thread_main): Detach the thread again at the
3098         end.
3099
3100         * threads.c: When a thread exists or is detached, unset its domain
3101         so that it's NULL when, for example, a pthread destructor runs.
3102
3103         * sgen-gc.c: Assert that there is no domain set after a thread is
3104         done.
3105
3106 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3107
3108         * class.c (mono_generic_class_get_class),
3109         metadata.c (free_generic_class): Allocate generic MonoClass's from
3110         the image mempool, not via malloc.  The problem with malloc is
3111         that when unloading a domain those classes are freed before
3112         clearing the heap and SGen needs the classes.  Rewriting the
3113         unloading code to do the free later would be more work and there's
3114         no point in using malloc anyway.
3115
3116 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
3117
3118         * loader.c (mono_method_signature): Always call mono_loader_unlock 
3119         before returning.
3120
3121 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3122
3123         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
3124         user string blobs.
3125
3126         * verify-internals.h: Add new function to the internal API.
3127
3128         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
3129         check if it's a valid string.
3130
3131         * object.c (mono_ldstr): Ditto.
3132
3133         Fixes #561943.
3134
3135 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3136
3137         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
3138         from a method before returning it. This is the expected behavior.
3139
3140 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3141
3142         * reflection.c (inflate_method): Handle the case of a regular system type.
3143
3144 2009-12-08  Mark Probst  <mark.probst@gmail.com>
3145
3146         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
3147         gathering code.
3148
3149         * mempool.c, mempool-internals.h: New function
3150         mono_mempool_get_bytes_allocated().
3151
3152         * Makefile.am: sgen-pinning-stats.c added.
3153
3154 2009-12-08  Mark Probst  <mark.probst@gmail.com>
3155
3156         * sgen-gc.c (create_allocator): Only use the fast path if the
3157         object size is within the small object size limit.
3158
3159 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3160
3161         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
3162         possibly adding padding to sizeof (GCMemSection).
3163
3164 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3165
3166         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
3167         reference is not in the nursery.
3168
3169 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
3170
3171         * class.c (mono_class_from_typeref): Bounds check idx against the 
3172         assemblyref table.
3173
3174 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3175
3176         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
3177         through the potential roots, then sort the results and find the
3178         pinned objects from there.
3179
3180         * Makefile.am: sgen-pinning.c added.
3181
3182 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3183
3184         * sgen-gc.c: Record generic stores in specialized remset buffers.
3185
3186 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3187
3188         * sgen-gc.c: Make pinned chunks the same size as major heap
3189         sections, and align them as well, so that we can check whether an
3190         object is in a pinned chunk or a major section in constant time.
3191
3192 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3193
3194         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
3195
3196 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3197
3198         * sgen-gc.c: Make all major heap sections the same size (currently
3199         128k) and allocate them on aligned addresses.  Small heap sections
3200         give us better granularity with pinned objects - we can free up
3201         much more memory.
3202
3203 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3204
3205         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
3206         output removed.
3207
3208 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3209
3210         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
3211
3212         * mono/metadata/assembly.c: When opening an assembly image, pass the real
3213         names in addition to the runtime generated one.
3214
3215         * mono/metadata/image.h: Add a function to take the real name of the assembly
3216         image.
3217
3218         * mono/metadata/image.c: If a real name has been passed to load an assembly,
3219         use it instead of the runtime generated one.
3220
3221         Code is contributed under MIT/X11 license.
3222
3223 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3224
3225         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
3226         before the other checks to prevent problems if the DateTime class is blittable.
3227         Hopefully fixes #559600.
3228
3229 2009-12-05  Mark Probst  <mark.probst@gmail.com>
3230
3231         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
3232         returns the largest string length that will not be put into the
3233         LOS.
3234
3235         * sgen-gc.c, gc-internal.h: New function that returns the largest
3236         object size that will not be put into the LOS.
3237
3238         * appdomain.c: Bump corlib version.
3239
3240 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3241
3242         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
3243
3244         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
3245
3246 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3247
3248         * reflection.c (inflate_method): Fix signature.
3249
3250         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
3251         in managed code.
3252
3253 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3254
3255         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
3256
3257 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3258
3259         * sgen-gc.c: Abstract to-space handling.
3260
3261 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
3262
3263         * loader.c (find_method_in_class): Ignore methods with broken signatures.
3264
3265         Fixes #559906.
3266
3267 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3268
3269         * sgen-gc.c: Only add references from outside the nursery to
3270         within the nursery to the global remset list.
3271
3272 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3273
3274         * appdomain.c (create_exceptions): Set the domain temporarily if
3275         necessary to avoid cross-domain references.
3276
3277 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3278
3279         * verify.c (get_stack_type): Return that the type is invalid instead of
3280         asserting.
3281
3282         * verify.c (mono_method_verify): Verify that all locals and arguments
3283         have valid stack types.
3284
3285         Fixes #559913.
3286
3287 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3288
3289         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
3290         bounds checking overflow aware.
3291
3292         Fixes #559910.
3293
3294 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3295
3296         * verify.c (do_invoke_method): Check for invalid method signatures.
3297
3298         Fixes #553450.
3299
3300 2009-12-02  Jb Evain  <jbevain@novell.com>
3301
3302         * appdomain.c (MONO_CORLIB_VERSION): bump.
3303         * icall-def.h (get_base_definition): renamed to get_base_method
3304         and add a boolean argument indicating we want the original
3305         method definition, or the immediate base method.
3306         * icall.c: apply the get_base_definition to get_base_method change.
3307
3308 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3309
3310         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
3311
3312         Fixes #558042.
3313
3314 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
3315
3316         * class.c: remove asserts for invalid type token in
3317         mono_class_name_from_token(), mono_assembly_name_from_token() and
3318         mono_class_create_from_typedef () (fixes bug #553318).
3319
3320 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
3321
3322         * metadata.c, class.c, loader.c: remove assert after bsearch() for
3323         incorrect assemblies (bug #553322).
3324
3325 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3326
3327         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
3328
3329         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
3330
3331         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
3332
3333         * class.c (inflate_generic_context): Ditto.
3334
3335         * loader.c (method_from_methodspec): Ditto.
3336
3337         Fixes #558230.
3338
3339 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3340
3341         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
3342
3343         * class.c (mono_class_create_from_typespec): Ditto.
3344
3345         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
3346
3347         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
3348
3349         Fixes #558184.
3350
3351 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3352
3353         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
3354
3355         * verify.c (verify_delegate_compatibility): Ditto.
3356
3357         * verify.c (do_newobj): Ditto.
3358
3359         Fixes #558046.
3360
3361 2009-12-02  Mark Probst  <mark.probst@gmail.com>
3362
3363         * sgen-gc.c: Use a gray queue instead of requiring that gray
3364         objects are in a contiguous region.
3365
3366         * sgen-gray.c: The gray queue implementation.
3367
3368         * Makefile.am: sgen-gray.c added.
3369
3370 2009-12-02  Mark Probst  <mark.probst@gmail.com>
3371
3372         * appdomain.c: When unloading a domain, zero its static data and
3373         perform a minor collection when using SGen.  That will get rid of
3374         all the remsets pointing into that domain's static data.
3375
3376         * sgen-gc.c: Allow remsets into static data.  By doing this we
3377         need less checks so we're more efficient.
3378
3379 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3380
3381         * verify.c (mono_method_verify): Check for catch clauses with broken
3382         types.
3383
3384         Fixes #558465.
3385
3386 2009-12-01  Jb Evain  <jbevain@novell.com>
3387
3388         * class.c (make_generic_param_class): set the namespace of
3389         the generic parameter class from its owner, if available.
3390
3391 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3392
3393         * verify.c (code_bounds_check): Do proper overflow checking.
3394
3395         * verify.c (mono_method_verify): The number of switch entries is
3396         an unsigned int. Properly bounds check it.
3397
3398         Fixes #558594.
3399
3400 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3401
3402         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
3403         mono_metadata_method_has_param_attrs which only checks if a given param
3404         list has a non zero flags entry.
3405
3406         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
3407         to inform how many params should we expect to decode.
3408
3409         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
3410         as it's faster than mono_metadata_get_param_attrs.
3411
3412         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
3413         add mono_metadata_method_has_param_attrs.
3414
3415 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3416
3417         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
3418         failures.
3419
3420         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
3421         is -1 but its class is broken.
3422
3423         Fixes #558522.
3424
3425 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3426
3427         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
3428         for parameter overflow.
3429
3430         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
3431         of mono_metadata_get_param_attrs.
3432
3433         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
3434         API.
3435
3436         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
3437
3438 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3439
3440         * class.c (mono_class_setup_fields): Check for fields with broken types.
3441
3442         Fixes #558741.
3443
3444 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
3445
3446         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
3447         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
3448         its TypeBuilder::CreateType ().
3449
3450         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
3451         if not needed.
3452
3453         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
3454         to make setup_interface_offsets happy.
3455
3456         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
3457         compilation now works.
3458
3459 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
3460
3461         * appdomain.c (create_exceptions): New helper function extracted from
3462         mono_runtime_init () to precreate objects used during exception handling.
3463         (mono_runtime_init): Call it.
3464         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
3465
3466 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
3467
3468         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
3469         compilation until the proper one is found.
3470
3471 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
3472
3473         * class.c (mono_class_setup_vtable_general): Cache the result of
3474         get_virtual_methods () since it can be slow because of the metadata
3475         optimization.
3476
3477         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
3478         from a MonoValueHashTable for now, since the later is based on an earlier
3479         version of hpj's internal probing code and seems to have serious collision
3480         issues.
3481
3482         * loader.c (mono_get_method_full): Update after the change above.
3483
3484 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3485
3486         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
3487
3488 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3489
3490         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
3491         the GTD instead of the DGC instead of crashing.
3492
3493         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
3494         required. Inflate fields if needed.
3495
3496         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
3497         finished. Renamed.
3498
3499 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3500
3501         * class.c (check_interface_method_override): Check for NULL signatures and fail
3502         the type.
3503
3504         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
3505
3506         Fixes #553428.
3507
3508 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3509
3510         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
3511         the MONO_METHOD_FLAGS column instead of decoding the whole row.
3512
3513 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3514
3515         * loader.c (field_from_memberref): Resolve the class first then the field
3516         signature. Remove a lot of duplicated code and make sure we don't pass valid
3517         values to mono_loader_set_error_field_load.
3518
3519         Fixes #553306.
3520
3521 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3522
3523         * class.c (inflate_generic_type): Change code to use new signature of
3524         mono_error_set_bad_image.
3525
3526         Fixes #558124.
3527
3528 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
3529
3530         * verify.c (mono_method_verify): Don't free ctx.params items if 
3531         we aborted while inflating the ctx.locals. Complete previous fix
3532
3533 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
3534
3535         * verify.c (mono_method_verify): Use the uninflated type name, 
3536         when the inflated is null, to report errors. Also take care when
3537         freeing, not to free everything since, in case of an error, some
3538         stuff would be copies (i.e. not allocated by the function itself)
3539         Fix bug #558145
3540
3541 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3542
3543         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
3544         or overflow. The caller must have done this check explicitly. This guard us
3545         from accessing invalid memory.
3546
3547         * verify.c (do_push_static_field): Check for stack overflow.
3548
3549         Fixes #553333.
3550
3551 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3552
3553         * loader.c (find_method_in_class): Don't crash if the signature cannot
3554         be resolved.
3555
3556         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
3557         of asserting for the case of invalid params.
3558
3559         Fixes #553304.
3560
3561 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
3562
3563         * image.c (mono_image_load_module): Fix crash when a bad assembly
3564         has no module at all (fix bug #553412) and also replace the 
3565         g_assert with a return NULL (documented return value for failure)
3566
3567 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
3568
3569         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
3570
3571 2009-11-23  Miguel de Icaza  <miguel@novell.com>
3572
3573         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
3574         file attribute to managed code and avoid doing the mask/attribute
3575         checks here. 
3576
3577 2009-11-22  Miguel de Icaza  <miguel@novell.com>
3578
3579         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
3580         the managed world.
3581
3582         * icall-def.h: New entry points.
3583         
3584 2009-11-19  Mark Probst  <mark.probst@gmail.com>
3585
3586         * process.c: Don't put references to managed objects into a
3587         g_ptr_array.
3588
3589 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
3590
3591         * class.c (can_access_internals): Allow CoreCLR to participate in
3592         allowing (or not) [InternalsVisibleTo] between assemblies.
3593         * security-core-clr.c|h: Make sure that only trusted code (a 
3594         superset of platform code) can access the internals of platform
3595         code.
3596
3597 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
3598
3599         * reflection.c: use the correct base class to get the virtual method
3600         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
3601
3602 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
3603
3604         * security-core-clr.c (get_caller_no_reflection_related): 
3605         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
3606         it's still reflection and must be filtered correctly.
3607
3608 2009-11-16  Mark Probst  <mark.probst@gmail.com>
3609
3610         * object.c (compute_class_bitmap): Fix for large bitmaps.
3611
3612 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
3613
3614         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
3615
3616         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
3617         koush@koushikdutta.com). Disable GC_no_dls on android.
3618
3619 2009-11-12  Mark Probst  <mark.probst@gmail.com>
3620
3621         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
3622         tlab_next points outside the TLAB because the allocator was
3623         interrupted.
3624
3625 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3626
3627         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
3628
3629 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3630
3631         * object-internals.h: Change signature for mono_string_to_utf8_image.
3632
3633         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
3634         argument.
3635
3636         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
3637         exceptions due to mono_string_to_utf8.
3638
3639 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3640
3641         * object-internals.h: Change signature for mono_string_to_utf8_mp.
3642
3643         * object.c (mono_remote_class): Make sure all resources are released before
3644         raising an exception.
3645
3646         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
3647
3648 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3649
3650         * mono-perfcounters.c (network_get_impl): Change variable initialization
3651         ordering to fix potential memory leak in case of exceptions.
3652
3653         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
3654         encoded strings.
3655         
3656 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3657
3658         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
3659         variable initialization ordering to fix potential memory leak in case
3660         of exceptions.
3661
3662 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
3663
3664         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
3665         needed.
3666
3667 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3668
3669         * appdomain.c: Fix shadow path code to better deal with exceptions.
3670
3671 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3672
3673         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
3674         exception in the middle of the runtime code.
3675
3676 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3677
3678         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
3679         leak memory with broken envvar value.
3680
3681 2009-11-06  Mark Probst  <mark.probst@gmail.com>
3682
3683         * reflection.c (mono_reflection_setup_internal_class): Because
3684         nested classes are not added to the name cache, we must put them
3685         in the reflection_info_unregister_classes list.
3686
3687 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
3688
3689         * class.c: When CoreCLR is enabled don't call mono_init_com_types
3690         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
3691         platform (trusted) code. Instead we return a TypeLoadException to
3692         be thrown later. This is the exception thrown by Silverlight 2 if
3693         a type, inside application (user) code is marked with [ComImport]
3694
3695 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3696
3697         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
3698         mono_is_debugger_attached () too.
3699
3700         * mono-debug.c (mono_is_debugger_attached): New helper function.
3701         (mono_set_is_debugger_attached): Ditto.
3702
3703 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3704
3705         * object-internals.h: Add mono_string_to_utf8_checked.
3706
3707         * object.c: Implement mono_string_to_utf8_checked.
3708
3709 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3710
3711         * class.c: Add missing check for load errors after every
3712         call to mono_class_setup_fields
3713
3714         Fixes #552282.
3715
3716 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3717
3718         metadata-verify.c (verify_tables_schema): Fix the error message.
3719
3720 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3721
3722         * metadata.c: Change event table schema to use TDOR for event type
3723         as this is what it's meant to be.
3724
3725         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
3726         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
3727         entry.
3728
3729         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
3730         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
3731         rows in MONO_TABLE_GENERICPARAM.
3732
3733         Fixes #552289.
3734
3735 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3736
3737         * class.c (mono_image_add_to_name_cache): Assert on duplicate
3738         insertion.
3739
3740         * reflection.c (mono_reflection_setup_internal_class): Avoid
3741         registering a gc root the same MonoClass multiple times.
3742         Don't register nested types on the global scope as they should
3743         not be available there.
3744
3745 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3746
3747         * culture-info-tables.h: regenerated.
3748
3749 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3750
3751         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
3752
3753 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
3754
3755         * string-icalls.c|h: Remove string internal calls that are not 
3756         used anymore by the class libraries.
3757         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
3758         which is not used in the class librairies.
3759         * icall-def.h: Update tables.
3760
3761 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3762
3763         * class.h: Move mono_class_inflate_generic_type_checked...
3764
3765         * class-internals.h: to here and make it internal. We don't want to
3766         further expose MonoGenericContext. 
3767
3768 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3769
3770         * verify.c (mono_method_verify): Improve error message.
3771
3772 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3773
3774         * reflection.c (fieldref_encode_signature): If field_image is NULL then
3775         the token is already properly encoded. Fixs 4.0 build.
3776
3777 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3778
3779         * locales.c (construct_number_format): Check if the number index is
3780         valid before trying to use it, if not, just return.
3781         
3782 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3783
3784         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
3785         since that loses the abort state. Fixes #539394.
3786
3787 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3788
3789         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
3790         explicit this argument to the call signature.
3791         (mono_marshal_get_icall_wrapper): Ditto.
3792
3793 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3794
3795         * reflection.c (fieldref_encode_signature): Add new field_image parameter
3796         to indicate which assembly to use when resolving a custom-mod.
3797
3798         Fixes handling of volatile fields used across assemblies as reported in #551513.
3799
3800 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3801
3802         * loader.c: Improve error messages.
3803
3804 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3805
3806         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3807         of interfaces. Fixes IKVM.
3808
3809         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3810
3811 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3812
3813         * verify.c (verifier_inflate_type): Return the inflated type on success.
3814
3815 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3816
3817         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3818
3819         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3820
3821         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3822
3823         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3824         flag set.
3825
3826         * profiler.c: Add new profiler callbacks for runtime invoke.
3827
3828         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3829
3830 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3831
3832         * sgen-gc.c: Keep track of the reason for a major collection and
3833         write it to the heap-dump file.
3834
3835 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3836
3837         * threads.c: refactor the code that initializes the
3838         thread_start_args into a reusable function and use this in the two
3839         methods that start up threads.
3840
3841 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3842
3843         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3844         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3845
3846 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3847
3848         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3849         Until now, we only had the per-cpu(core) counters.
3850
3851 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3852
3853         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3854         mono_gc_get_suspend_signal(), which returns the suspend signal
3855         number used by the GC.
3856
3857 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3858
3859         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3860
3861         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3862         signalling start_notify.
3863
3864 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3865
3866         * appdomain.c: do not test the st_mode field for shadow-copies.
3867         Fixes bug #545276.
3868
3869 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3870
3871         * threadpool.[ch]: added hooks for thread start/finish and item
3872         processing begin/end. For monotouch use only.
3873
3874 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3875
3876         * threads.c (mono_thread_get_name): New helper function.
3877
3878         * reflection.c (resolve_object): Set handle_class for strings too.
3879         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3880         a cattr blob into a set of arrays and structures without creating the custom
3881         attributes themselves.
3882         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3883
3884         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3885
3886         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3887         function.
3888
3889 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3890
3891         * verify.c: Replace calls to mono_class_inflate_generic_type with
3892         mono_class_inflate_generic_type_checked. Fixes #480005.
3893
3894 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3895
3896         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3897         object since not all paths lead to callees initing it.
3898
3899 2009-10-23  Alp Toker  <alp@nuanti.com>
3900
3901         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3902         header and should not be shipped:
3903
3904         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3905         which is specific to the mono build. Not going to work.
3906
3907 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3908
3909         * security-manager.c: Report if core-clr is active from
3910         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3911         to allow Moonlight BCL to behave appropriately (both in browser
3912         and outside, e.g. smcs)
3913
3914 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3915
3916         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3917         Fixes bug #549108.
3918
3919 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3920
3921         * class.c: fix typo.
3922
3923 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3924
3925         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3926         a MonoError parameter.
3927
3928         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3929         version that can does proper error handling.
3930
3931         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3932
3933         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3934
3935         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3936
3937 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3938
3939         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3940         NO_UNALIGNED_ACCESS is defined.
3941
3942 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3943
3944         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3945         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3946         Fixes #549173.
3947
3948 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3949
3950         * sgen-gc.c: Shorten sections whenever possible.
3951
3952 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3953
3954         * sgen-gc.c: Use our portable semaphore #defines.
3955
3956 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3957
3958         * sgen-gc.c: A debug option for dumping the heap layout to a file
3959         after each collection.
3960
3961 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3962
3963         * sgen-gc.c: Make managed write barriers atomic via
3964         thread-restarts.
3965
3966 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3967
3968         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3969         methods. Fixes #543021.
3970
3971 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3972
3973         * socket-io.[ch]: fix VS build.
3974
3975 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3976
3977         * icall-def.h:
3978         * socket-io.[ch]: implemented SendFile.
3979
3980 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3981
3982         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3983         before the interfaces to avoid crashes later if class initialization fails.
3984         Fixes #548417.
3985
3986         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3987         Fixes #548276.
3988
3989 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3990
3991         * domain.c: Bump 4.0 version.
3992
3993 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3994
3995         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3996         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3997         check since 'pubkey' can't be NULL at this stage
3998         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3999         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
4000         initialization of 'iter'
4001
4002 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
4003
4004         * cominterop.c : Search the interface parts of vtable to find 
4005           method matches.  Fixes 547030.
4006
4007         Code is contributed under MIT/X11 license.
4008
4009 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
4010
4011         * marshal.c: BeginInvoke cannot be called on multicast delegates with
4012         multiple targets. Fixes bug #574426.
4013
4014 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
4015
4016         * profiler.h: Put here the definition of
4017         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
4018         (and fix the build...).
4019
4020 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
4021
4022         * profiler.c, profiler.h, profiler-private.h:
4023         Added support for different ways of getting call chains in stat mode.
4024
4025 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4026
4027         * object.c, object-internals.h: New function for computing the
4028         size of an array, factored out of mono_array_new_full().  Use
4029         SGen's functions for allocating arrays and vectors.
4030
4031         * sgen-gc.c, gc-internal.h: Special functions for allocating
4032         arrays and vectors without race conditions.  A managed array
4033         allocator method.
4034
4035         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
4036
4037 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4038
4039         * object.c, object.h, icall.c: Write barriers do the copying now,
4040         as well, so no need for an additional memcpy.
4041
4042         * sgen-gc.c: Lock when storing remsets.  Do the memory
4043         copying/moving in the write barriers.
4044
4045         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
4046
4047         * reflection.c: Added an assert.
4048
4049 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4050
4051         * threads.c, process.c: A few missing write barriers.
4052
4053 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
4054
4055         * mono-perfcounters.c, mono-perfcounters-def.h: Add
4056         network performance counters for bytes sent per second, bytes
4057         received per second, and bytes total per second.
4058
4059         Code is contributed under MIT/X11 license.
4060
4061 2009-10-09  Mark Probst  <mark.probst@gmail.com>
4062
4063         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
4064         Fix warning.
4065
4066 2009-10-09  Mark Probst  <mark.probst@gmail.com>
4067
4068         * threads.c, object-internals.h, object.c: Move code for
4069         transferring an object to a different domain (via
4070         serialization/remoting) to object.c.
4071
4072         * object.c (call_unhandled_exception_delegate): If the exception
4073         is in a different domain than the delegate, transfer the exception
4074         to that domain.
4075
4076 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
4077
4078         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
4079         Fixes #322934.
4080
4081 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
4082
4083         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
4084
4085 2009-10-06  Mark Probst  <mark.probst@gmail.com>
4086
4087         * object.c (mono_method_return_message_restore): Handle the case
4088         where the argument is an instance of a generic type.  Fixes
4089         #544446.
4090
4091 2009-10-06  Mark Probst  <mark.probst@gmail.com>
4092
4093         * object.c (set_value): Write barrier fix - we must pass the
4094         count, not the size.
4095
4096 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
4097
4098         * domain.c (mono_init_internal): Print a useful error message when encountering
4099         an old mscorlib, instead of crashing. Fixes #544307.
4100
4101 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
4102
4103         * appdomain.c (copy_app_domain_setup): Fix a warning.
4104
4105         * debug-helpers.c (dis_one): Ditto.
4106
4107 2009-10-04  Mark Probst  <mark.probst@gmail.com>
4108
4109         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
4110         into the new domain, instead of referencing the original one.
4111
4112         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
4113         non-static.
4114
4115         * appdomain.c: Corlib version bump.
4116
4117 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
4118
4119         * threadpool.c: one more...
4120
4121 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
4122
4123         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
4124         threads to die because we're shutting down. delgate5.exe works again.
4125
4126 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
4127
4128         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
4129           ccw_interface_hash table when a ccw is finalized.
4130
4131         Code is contributed under MIT/X11 license.
4132
4133 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4134
4135         * assembly.c, domain.c, image.c, metadata-internals.h: Split
4136         domain and image unloading into two steps.  We must do this
4137         because clearing the domain in SGen requires the class metadata to
4138         be intact, but we need to free the mono_g_hash_tables in case a
4139         collection occurs during domain unloading and the roots would trip
4140         up the GC.
4141
4142 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4143
4144         * object-internals.h: Remove serialized culture fields from
4145         MonoInternalThread.
4146
4147         * icall-def.h, thread-types.h, threads.c: Remove serialized
4148         culture icalls.
4149
4150         * appdomain.c: Corlib version bump.
4151
4152 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
4153
4154         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
4155         Fixes #543133.
4156
4157 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4158
4159         * sgen-gc.c: Try to shorten the new section after a major
4160         allocation to avoid ever-growing sections.
4161
4162 2009-10-13  Martin Baulig  <martin@ximian.com>
4163
4164         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
4165         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
4166         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
4167         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
4168
4169         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
4170
4171 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
4172
4173         * threadpool.c: fixed the order in which 'completed' and the wait
4174         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
4175         No need to use the wait_handle field of ASyncCall. Make sure the
4176         threadpool is active when adding a job or queueing an idle thread.
4177
4178 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
4179
4180         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
4181
4182         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
4183         when using --compile-all.
4184
4185 2009-09-27  Mark Probst  <mark.probst@gmail.com>
4186
4187         * metadata.c (free_generic_class): Unregister the field_objects
4188         roots if we're using SGen.
4189
4190 2009-09-27  Mark Probst  <mark.probst@gmail.com>
4191
4192         * reflection.c (mono_dynamic_image_free): Deregister the GC root
4193         for GenericParamTableEntry.gparam.
4194
4195 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4196
4197         * marshal.c: don't create the handle when calling. It is created later
4198         if needed.
4199
4200 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4201
4202         * sgen-gc.c: Warning fixes.
4203
4204 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4205
4206         * sgen-gc.c: New debug option "xdomain-checks", which scans the
4207         whole heap for cross-domain references before each collection.
4208
4209         * sgen-scan-object.h: The scan action can now use SCAN to scan the
4210         object.
4211
4212         * threadpool-internals.h, threadpool.c: New function
4213         mono_thread_pool_is_queue_array() for checking whether a given
4214         array is used as a (cross-domain) queue by the thread pool code.
4215
4216 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4217
4218         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
4219         searches the whole heap for objects containing a specific
4220         reference.  Only for debugging.
4221
4222 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4223
4224         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
4225
4226         * icall-def.h, threads.c, threads-types.h: New icalls for copying
4227         byte arrays between domains.
4228
4229 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4230
4231         * threadpool.c:
4232         * class-internals.h:
4233         * mono-perfcounters-def.h:
4234         * mono-perfcounters.c:
4235         -There is a list of idle threads
4236         -Each of those idle threads wait on their own WaitHandle instead
4237         of all of them using the same semaphore. When a new work item is
4238         added, the job is assigned directly to an idle thread or a newly
4239         created one if possible and then the handle for that thread is
4240         signaled. Compare that to the current approach where all the
4241         threads in the pool compete to dequeue a job from the same
4242         queue.
4243         -New struct ThreadPool that brings together the bunch of static
4244         variable for each threadpool (IO and regular).
4245         -New performance counters: # of items added and its rate per
4246         threadpool. The rate will be used later, perhaps together with
4247         other perf. counters, to decide when idle threads should exit.
4248
4249 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
4250
4251         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
4252         Fix typo on Windows build.      
4253         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
4254         
4255         Code is contributed under MIT/X11 license.
4256
4257 2009-09-25  Mark Probst  <mark.probst@gmail.com>
4258
4259         * object-internals.h: The Thread class is split up into Thread and
4260         InternalThread now.  We have exactly one InternalThread per
4261         thread, and at most one Thread per appdomain per thread.  Most
4262         data is stored in InternalThread.  All InternalThread objects live
4263         in the root domain.
4264
4265         * class-internals.h: Add internal_thread_class to MonoDefaults.
4266
4267         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
4268         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
4269         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
4270         resulting from the split of the Thread class.
4271
4272         * gc-internal.h: Prototype for new function for checking whether a
4273         thread is the finalizer thread.
4274
4275         * appdomain.c: Corlib version bump.
4276
4277 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4278
4279         * appdomain.c|h: Add a mono_domain_try_unload method which is
4280         equivalent to mono_domain_unload, except that it returns an exception
4281         instead of throwing it. Make mono_domain_unload use the
4282         mono_domain_try_unload method to avoid code-duplication.
4283
4284 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
4285
4286         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
4287         a problem.
4288
4289 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
4290
4291         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
4292         aborting when a conversion is not implemented.
4293
4294 2009-09-23  Miguel de Icaza  <miguel@novell.com>
4295
4296         * verify.c: when comparing culture strings, use g_ascii_strcmp
4297
4298         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
4299         when comparing public key tokens to use memcmp on 16 bytes.   I do
4300         not believe this ever worked as advertised in the past.
4301
4302         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
4303         which would have always failed earlier.
4304
4305 2009-06-25  Miguel de Icaza  <miguel@novell.com>
4306
4307         * gc.c: Raise a NullArgumentException if the object passed is
4308         null.
4309
4310 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
4311
4312         * image.c (mono_image_close): Atomically decrement the reference count and
4313         remove the image from the hash tables, to prevent another thread from seeing a
4314         dying MonoImage. Fixes #541194.
4315
4316 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4317
4318         * threadpool.c: actually use the minimum number of 'completion ports'
4319         (for us is just a potential worker thread).
4320
4321 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4322
4323         * threadpool.c: remove ares_htable. It does not make sense any more
4324         since the same objects are now stored in GC-tracked arrays while they are
4325         in the queue.
4326
4327 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4328
4329         * threadpool.c: increase the minimum length of the queues to 128.
4330         Remove warning.
4331
4332 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
4333
4334         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
4335         return the modified signature used by string ctors.
4336
4337 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
4338
4339         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
4340         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
4341         method, to be used by full-aot.
4342
4343 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
4344
4345         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
4346         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
4347         be known to be good.
4348
4349         * class.c (mono_class_init): Fail array types if their element type fails initialization
4350         as well.
4351
4352         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
4353         initialization, additionally we request the element_type vtable to be initialized as well.
4354
4355         This is fine and should not increase the working set in any meaningful way since it's reasonable
4356         to assume       that most code will create an array and eventually populate it, which will require the
4357         type's vtable to be initialized.
4358
4359         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
4360
4361 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
4362
4363         * normalization-tables.h : regenerated.
4364
4365 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
4366
4367         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
4368         a leb128 encoding can take up to 5 bytes.
4369
4370 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
4371
4372         * class.c (verify_class_overrides): Remove useless argument.
4373
4374         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
4375         before interface enumeration as this is no longer required.
4376
4377 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
4378
4379         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
4380         used under mono_class_init context. This functions avoid any code path that
4381         calls mono_class_init, which leads it to be slow as some things like the interface
4382         bitmap are not available.
4383
4384         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
4385         of it's own broken version. Fixes the verifier part of #538588.
4386
4387         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
4388         API.
4389
4390 2009-09-15  Mark Probst  <mark.probst@gmail.com>
4391
4392         * class.c (mono_class_init): Always set an exception in a class if
4393         vtable setup fails.  Fixes #538577.
4394
4395         * generic-sharing.c: Raise an exception if mono_class_vtable()
4396         returns NULL.
4397
4398 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
4399
4400         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
4401         methods of vtypes, as they could be incorrectly shared with static methods
4402         taking an IntPtr argument.
4403
4404 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4405
4406         * domain.c:
4407         * object.c:
4408         * class-internals.h: renamed waithandle_class to
4409         manualresetevent_class.
4410         * marshal.c: propagate the exception if a remoting BeginInvoke call
4411         fails.
4412
4413 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4414
4415         * object.c: Properly handle vtable failures.
4416
4417 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4418
4419         * socket-io.c: Assert on vtable failure.
4420
4421         * mono-mlist.c: Assert on vtable failure.
4422
4423 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4424
4425         * marshal.c: Assert on vtable failure.
4426
4427 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4428
4429         * icall.c: Properly handle vtable failures.
4430
4431 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4432
4433         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
4434
4435 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4436
4437         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
4438
4439         * console-unix.c (do_console_cancel_event): Same.
4440
4441 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4442
4443         * class-internals.h: Add mono_class_vtable_full function that allows control
4444         if an exception should be raised or not.
4445
4446         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
4447         to do what its documentation say, that is to return NULL and set exception_type on
4448         failure.
4449
4450         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
4451         and change the code to honor it.
4452
4453 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4454
4455         * verify.c: Fix typo in error message.
4456
4457 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
4458
4459         * security-core-clr.c: Fix default_platform_check so it can run
4460         the runtime coreclr tests (without an infinite recursion when
4461         throwing an exception).
4462
4463 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4464
4465         object.c (mono_delegate_ctor_with_method): Guard against null method.
4466
4467 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4468
4469         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
4470         that should be replaced with error handling later.
4471
4472 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4473
4474         * marshal.c (mono_delegate_end_invoke): Fix warning.
4475
4476 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4477
4478         * loader.c (mono_field_from_token): Properly handle invalid
4479         dynamic tokens.
4480
4481 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4482
4483         * pedump.c (verify_image_file): Skip types that can't be
4484         decoded.
4485
4486 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4487
4488         * verify.c: Look for recursive valuetypes only against the
4489         type been initialized as this is a lot simpler and works.
4490
4491 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4492
4493         * verify.c: Ensure that fields are properly loaded before
4494         checking them.
4495
4496 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
4497
4498         * object.c (mono_object_get_virtual_method) : Call 
4499           mono_cominterop_get_invoke if the object is a COM object.
4500
4501         Code is contributed under MIT/X11 license.
4502
4503 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
4504
4505         * verify.c: Check for recursive valuetype definitions.
4506
4507 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
4508
4509         Use inheritance-aware interface offsets. Inherited types use the same offsets
4510         of their parents. This reduce offset duplication in case more than one type in
4511         the inheritance tree explicitly implements the same interface.
4512
4513         This also removes a source of vtable bubbles found in #532409. An abstract type
4514         isn't required to provide abstract methods to all interfaces it implements, which
4515         resulted in a bubble with the previous scheme as the child would get a non-full
4516         vtable from its parent. We fail all concrete types with vtable bubbles, so this
4517         should be fixed.
4518
4519         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
4520         it's expected to not cause any significant increase beyond that.
4521
4522         * class.c (setup_interface_offsets): Compute super class iface offsets
4523         first to force sharing.
4524
4525         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
4526         dumping only the relevant ones.
4527
4528         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
4529         methods a new slot regardless if they belong to an interface or not. This allows
4530         an inherited type to override the iface method separately from the class one.
4531
4532 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
4533
4534         * threadpool.c: make the Sleep() alertable to prevent delays exiting
4535         applications that take less than 2s to execute.
4536         Bug #524984 fixed.
4537
4538 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
4539
4540         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
4541
4542         * object.c (mono_get_runtime_callbacks): New helper function to return
4543         the runtime callbacks.
4544
4545         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
4546         mono_get_runtime_build_info () as the display name.
4547         
4548 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
4549
4550         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
4551         argument, since NEWARR expects a native int. Fixes #481559.
4552
4553 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4554
4555         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
4556         against broken SRE methods.
4557
4558 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4559
4560         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
4561         a NULL variable. Abort early on failure.
4562
4563 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4564
4565         * class.c (can_access_type): Fail visibility test for non nested
4566         types with nested visibility.
4567
4568 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4569
4570         * assembly.c (parse_public_key): Avoid allocating (and not 
4571         freeing) the public key array when it's not requested by the 
4572         caller.
4573         * threads.c (mono_thread_manage, mono_thread_create_internal, 
4574         ves_icall_System_Threading_Thread_Thread_internal): Free 
4575         allocated memory on error.
4576
4577 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4578
4579         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
4580
4581 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4582
4583         * class.c (mono_class_setup_fields): Remove duplicated local variable
4584         named gklass.
4585         Rename gklass to gtd to reflect the fact that it points to the generic
4586         type definition.
4587         Remove the duplicated call to mono_class_setup_fields on gtd and move
4588         the error check to the beginning.
4589
4590 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4591
4592         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
4593         Remove cruft of the previous patch.
4594
4595 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4596
4597         * metadata-verify.c (verify_method_table): Check for abstract + final.
4598         Fixes #534175.
4599
4600 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4601
4602         * verify.c (verify_class_fields): Check for duplicate fields.
4603
4604 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4605
4606         * metadata-verify.c: Verify the typeref table for duplicates.
4607
4608 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4609
4610         This reverts r140936 and properly handles interfaces with static methods. The
4611         right fix is to ensure vtables without bubles which is an easier to verify
4612         constraint. We should avoid such special cases as of the reverted patch as those
4613         only make the runtime more brittle.
4614
4615         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
4616         static methods on interfaces.
4617
4618         * class.c (setup_interface_offsets): Use the number of virtual methods when
4619         calculating interface offsets instead of the number of methods. This way we
4620         avoid bubles on the layout.
4621
4622 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
4623
4624         * metadata-verify.c (verify_metadata_header): Some very smart
4625         obfuscators like to add extra stream headers. Ignore them.
4626
4627 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
4628
4629         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
4630         methods correctly.
4631
4632 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
4633
4634         * metadata-verify.c: Verify for duplicated types.
4635
4636 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
4637
4638         * metadata-verify.c (verify_typedef_table): Verify for nested types
4639         without an entry on the nested class table.
4640
4641 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
4642
4643         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
4644         <tom_hindle@sil.org>. Add locking around hash table accesses.
4645
4646 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4647
4648         * verify.c (mono_verifier_verify_class): Verify all interface if
4649         really are interfaces. Fixes #534184.
4650
4651 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
4652
4653         * pedump.c: Initialize all types during metadata validation so we report
4654         errors only detected as part of class initialization.
4655
4656 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
4657
4658         * metadata-verify.c (verify_method_table): PInvoke requires method to
4659         be static. Fixes #534189
4660
4661 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
4662
4663         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
4664         being NULL.
4665
4666 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4667
4668         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
4669         for holes or bad methods. Fixes #525314.
4670
4671 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4672
4673         * class.c (setup_interface_offsets): Don't allocate slot
4674         for the same interface multiple times. This creates bubbles
4675         that waster space and make vtable verification harder.
4676
4677         The same interface get a slot multiple times since we need
4678         to get the closure of all implemented interfaces, which means
4679         the same interface is reported multiple times.
4680
4681 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4682
4683         * verify.c (mono_verifier_verify_class): Don't check the fields
4684         of generic instances since the context on which they got expanded
4685         might lead to false positives.
4686
4687         Such thing happens when a generic type is inflated in the context
4688         of a generic method and the inflated type of a field turns into a
4689         generic method argument, which causes the checking code to think
4690         it's an invalid class when it's not.
4691
4692 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4693
4694         * verify.c (mono_type_is_valid_in_context): Verify if type
4695         is NULL and remove duplicate test.
4696
4697 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4698
4699         * verify.c (mono_verifier_verify_class): Check fields for
4700         invalid generic arguments.
4701
4702 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4703
4704         * class.c (verify_class_overrides): Verify if for static
4705         and non virtual methods.
4706
4707 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4708
4709         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
4710         Check for errors after retrieving the vtable.
4711
4712 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4713
4714         * class.c (mono_class_setup_vtable_general): Verify
4715         if method overrides are valid before processing them.
4716
4717 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4718
4719         * marshal.c (mono_array_to_lparray): Fix minimal build with
4720         cominterop disabled.
4721
4722         * marshal.c (mono_free_lparray): Same.
4723
4724 2009-08-21  Mark Probst  <mark.probst@gmail.com>
4725
4726         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
4727         the hash function for the ares_htable.
4728
4729 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
4730
4731         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
4732         bit for assembly flags. MS is ok with it but there is no spec anywhere
4733         on its mean
4734
4735 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4736
4737         * class.c (mono_class_create_from_typedef): Emit profiler events
4738         in all cases.
4739
4740 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4741
4742         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
4743         Release memory on failure.
4744
4745 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4746
4747         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
4748         to the internal API.
4749
4750         * metadata.c (get_constraints): Use a single-linked table as we don't
4751         traverse it backward. Fail and return FALSE if only of the contraint types
4752         is not found.
4753
4754         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
4755         to mono_metadata_load_generic_param_constraints except for having a return value.
4756         This has to be done since the later is part of the public API.
4757
4758         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
4759         and fail the type.
4760
4761         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
4762         and fail the method.
4763
4764 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4765
4766         * metadata-verify.c (is_valid_method_header): Add work-around to deal
4767         with MS broken behavior of emmitting EH section sizes without the
4768         header size added.
4769
4770 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4771
4772         * metadata.c (mono_type_create_from_typespec): Don't allocate image
4773         memory until we're sure that we'll need it. This avoids leaking for
4774         broken types or duplicated instantiation.
4775
4776 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4777
4778         * metadata-verify.c (is_valid_method_header): Fix stupid formating
4779         mistake.
4780
4781 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4782
4783         * metadata-verify.c (is_valid_method_header): Fix number of clauses
4784         and expected size calculation.
4785
4786 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4787
4788         * class.c (mono_class_get_field_idx): Add fixme for broken
4789         behavior for types with multiple fields with the same name.
4790         I would rather fix it, but have no idea on how to generate
4791         such artifact for testing.
4792
4793 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4794
4795         * verify.c (verifier_load_field): We should allow references to
4796         fields to be made using the generic type definition. It's up to
4797         the loader system to fail invalid ops.
4798
4799         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4800         are invalid.
4801
4802 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4803
4804         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4805
4806         * metadata-internals.h: Fix declaration of 
4807         mono_metadata_interfaces_from_typedef_full.
4808
4809         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4810         heap_alloc_result parameter that controls if the result should be
4811         g_malloc'd.
4812
4813         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4814         array be g_malloc'd and properly document this public API function.
4815
4816 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4817
4818         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4819         remove METHOD_HEADER_TINY_FORMAT1.
4820
4821         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4822
4823         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4824
4825         Both spec and MS uses only 2 bits to enumerate the kind of header.
4826         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4827         is superfluous, only used for tiny headers with odd code lengths.
4828
4829         This change also make sure that mono doesn't wronly interpret bit 2
4830         of fat header flags, which is currently reserved.
4831
4832 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4833
4834         * metadata.c (do_mono_metadata_parse_type): Do error
4835         checking for element types. Don't abort if presented
4836         with a broken type kind.
4837
4838 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4839
4840         * metadata.c (mono_metadata_parse_method_signature_full):
4841         Gracefully fail bad vararg signatures.
4842
4843 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4844
4845         * profiler.c:
4846         * class.c: Fix warnings for uninitialized variables.
4847
4848 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4849
4850         * icall.c: Fix _NSGetEnviron method declaration warning.
4851
4852 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4853
4854         * icall.c:
4855         * reflection.c: Make bitwise checks explicit.
4856
4857 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4858
4859         * debug-helpers.c:
4860         * marshal.c: Fix printf warnings.
4861
4862 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4863
4864         * reflection.c (encode_cattr_value): Fix a warning.
4865
4866 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4867
4868         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4869         of array bounds.
4870
4871 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4872
4873         * loader.c (mono_method_signature): Don't assert on broken
4874         signature. Print a more useful error message.
4875
4876 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4877
4878         * loader.c (mono_method_get_marshal_info): Assert if
4879         signature is invalid. Bounds check stores to the
4880         mspecs array;
4881
4882 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4883
4884         * loader.c (field_from_memberref): Fix warning.
4885
4886 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4887
4888         * loader.c (mono_method_get_param_names): Check if signature
4889         is null. Don't store beyond the size of the name array.
4890
4891 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4892
4893         * loader.c (mono_get_method_constrained): Check if signature
4894         is null.
4895
4896 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4897
4898         * loader.c (mono_loader_set_error_bad_image): Improve
4899         error messages.
4900
4901 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4902
4903         * loader.c (mono_get_method_full): Convert an assertion
4904         into a loader error.
4905
4906 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4907
4908         * class-internals.h, class.c: Better naming and documentation.
4909
4910 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4911
4912         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4913         obj is NULL.
4914
4915 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4916
4917         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4918         parsing fails.
4919
4920 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4921
4922         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4923         errors with no class set.
4924
4925         * loader.c (field_from_memberref): If the field signature is of the wrong
4926         type fail with a MissingFieldException instead of a BadImageException as
4927         this is the behavior observed on MS. 
4928
4929 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4930
4931         * loader.c (field_from_memberref): Don't crash if either the field
4932         signature or the typespec class are invalid.
4933
4934 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4935
4936         * verify.c (verifier_load_field): Don't allow field related
4937         ops to reference fields on generic type definition.
4938
4939 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4940
4941         * metadata-verify.c: Add new warning level for errors specified
4942         by ECMA 335 but that MS ignores.
4943
4944         * metadata-verify.c (verify_method_table): Make compiler controled
4945         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4946         this check is safe because the end result will only be some visibility
4947         exceptions been thrown.
4948
4949 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4950
4951         * verify.c (get_boxable_mono_type): Don't allow the
4952         use of the generic type definition on boxed type positions.
4953
4954         Fixes #531237.
4955
4956 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4957
4958         * threadpool.c: Make sure no cross-domain references remain in
4959         ares_htable or the arrays that are thrown away when resizing.
4960
4961 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4962
4963         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4964         list of classes for which we have to unregister reflection_info
4965         with the GC and which are not in the namespace cache.
4966
4967         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4968         the class to the list.
4969
4970 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4971
4972         * domain.c (mono_domain_free): Unregister the GC roots in
4973         MonoDomain.
4974
4975 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4976
4977         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4978
4979 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4980
4981         * class.c: Add mono_class_get_field_from_name_full which does
4982         the same as mono_class_get_field_from_name but does check field
4983         signature as well.
4984
4985         * class-internals.h: Export mono_class_get_field_from_name_full as
4986         part of the internal API.
4987
4988         * loader.c (field_from_memberref): Search fields by name and signature
4989         as it's valid to have two fields with same name but different types.
4990
4991         Fixes #528055.
4992
4993 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4994
4995         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4996
4997         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4998
4999         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
5000         System.Type.
5001
5002 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
5003
5004         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
5005
5006         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
5007
5008 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5009
5010         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
5011         to sgen-scan-object.h, which can be included and parameterized via
5012         macros.
5013
5014         * Makefile.am: sgen-scan-object.h added.
5015
5016 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5017
5018         * gc.c: #define GC_dont_gc if we're compiling with SGen.
5019
5020 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5021
5022         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
5023         before clearing a domain in the GC.
5024
5025 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5026
5027         * exception.c (mono_exception_from_name_domain): Actually create
5028         the exception in the specified domain.
5029
5030         * appdomain.c (mono_domain_create_appdomain_internal): Create the
5031         OutOfMemoryException a bit later so that the domain is inialized
5032         "enough" that it works.
5033
5034 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5035
5036         * threads.c (thread_cleanup): Clean up the cached_culture_info
5037         array to prevent cross-domain references.
5038
5039 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
5040
5041         * metadata.c: more documentation for MonoType accessors.
5042
5043 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
5044
5045         Fix incorrect size definitions where the tail array isn't a list
5046         of pointers
5047         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
5048         define size.
5049         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
5050         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
5051         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
5052
5053 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5054
5055         * reflection.h:
5056         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
5057
5058 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5059
5060         * metadata.c:
5061         * loader.c:
5062         * metadata-internals.h:
5063         * method-builder.c:
5064         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
5065
5066 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5067
5068         * cominterop.c:
5069         * metadata.c:
5070         * metadata.h:
5071         * loader.c:
5072         * marshal.c:
5073         * reflection.c: #define for sizeof in MonoType and
5074         MonoMethodSignature.
5075
5076 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5077
5078         * domain.c:
5079         * domain-internals.h: add and use #define's instead of sizeof()
5080         for MonoJitInfo and MonoJitInfoTable.
5081
5082 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5083
5084         * object.c:
5085         * class.h: use #define instead of sizeof() for MonoRemoteClass.
5086
5087 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
5088
5089         * metadata.c:
5090         * metadata.h:
5091         * object.c:
5092         * class-internals.h:
5093         * generic-sharing.c:
5094         * marshal.c: use a #define instead of sizeof() for a few
5095         structures that use a zero-length array.
5096
5097 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
5098
5099         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
5100         to handle inflated generic methods.
5101
5102         * appdomain.c: Bump corlib version.
5103
5104         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
5105         instances.
5106
5107         * reflection.c (fixup_method): Same
5108
5109         * reflection.c (resolve_object): Same.
5110
5111         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
5112         g_error and a decent message.
5113
5114 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
5115
5116         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
5117         from the object because it could not yet be available globally
5118         (it happens if the profiler tries to create a gchandle on the
5119         MonoThread object of a thread that is still registering itself
5120         with the runtime).
5121
5122 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
5123
5124         * reflection.c (mono_generic_class_get_object): Initialized the
5125         managed type arguments array.
5126
5127         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
5128
5129         * appdomain.c: Bump corlib version.
5130
5131 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
5132
5133         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
5134         #527902.
5135
5136 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
5137
5138         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
5139         Avoid a crash if synch_cs is not set.
5140         
5141         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
5142         Handle the case when the handle is 0.
5143
5144         * appdomain.c: Bump corlib version.
5145
5146 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
5147
5148         * reflection.c (mono_type_get_object): Fix a warning.
5149
5150 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5151
5152         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
5153         descriptor here.  We assume it's already been computed.
5154
5155         * generic-sharing.c (instantiate_other_info): Compute the GC
5156         descriptor for info type MONO_RGCTX_INFO_KLASS.
5157
5158 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5159
5160         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
5161         type, so don't use MONO_OBJECT_SETREF to set a field.
5162
5163 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5164
5165         * gc.c: We were missing one case where invoking a finalizer would
5166         not reset the domain.  Also, in the finalizer thread loop, assert
5167         that we're in the root domain.
5168
5169 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5170
5171         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
5172         if the type is not an array.
5173
5174 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5175
5176         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
5177         method bound to the declaring type of the method. Raise an exception
5178         if the type is not a generic param.
5179
5180 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5181
5182         * class.c (print_unimplemented_interface_method_info): Print the
5183         full type name.
5184
5185         * class.c (mono_class_setup_vtable_general): When dealing with a
5186         generic instance first check if the generic type definition is
5187         not broken.
5188
5189 2009-02-11 Tom Hindke <tom_hindle@sil.org>
5190
5191         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
5192
5193         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
5194
5195         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
5196
5197         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
5198
5199         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
5200
5201         Code is contributed under MIT/X11 license
5202
5203 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
5204
5205         * verify.c: Fix naming of stelem and ldelem.
5206
5207 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5208
5209         * generic-sharing.c: Replace the templates lock with the loader
5210         lock because of very hard to resolve deadlock issues.
5211
5212 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
5213
5214         * icall.c (ves_icall_Type_GetMethodsByName): Use 
5215         mono_class_get_vtable_size () instead of accessing klass->vtable_size
5216         directly. Fixes #525338.
5217
5218         * class.c (mono_class_get_vtable_size): New helper function.
5219
5220         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
5221         the field belongs to the type. Fixes #525733.
5222
5223 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5224
5225         * sgen-gc.c: When we stop a thread and its stack top is not within
5226         its allocated stack (because it's in an altstack signal handler),
5227         restart it and stop it again, until it is.
5228
5229 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5230
5231         * sgen-gc.c: Take a thread's stack top and registers from the
5232         sigcontext in the suspend signal handler.
5233
5234         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
5235         stuff to sgen-archdep.h.
5236
5237         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
5238         caller, because have code in sgen-archdep.h to acquire that data.
5239
5240 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
5241
5242         * profiler.c, profiler.h, profiler-private.h:
5243         Added support for keeping track of code chunks and buffers.
5244
5245 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
5246
5247         * metadata-verify.c: Fix endianness problems on decoding functions.
5248         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
5249
5250 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
5251
5252         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
5253         schema for vectors and one dimension SZARRAY.
5254
5255 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
5256
5257         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
5258         schema for vectors and one dimension SZARRAY.
5259
5260 2009-07-27  Mark Probst  <mark.probst@gmail.com>
5261
5262         * icall-def.h, thread-types.h, threads.c: New separate icalls for
5263         Interlocked.(Compare)Exchange with object arguments, which invoke
5264         write barriers.
5265
5266 2009-07-26  Miguel de Icaza  <miguel@novell.com>
5267
5268         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
5269         passed invalid arguments.   Fixes another crasher in the
5270         Silverlight test suite.
5271
5272         * class.c (mono_class_array_element_size): Return 0 for the size
5273         of the class;  This fixes the crasher exposed by :
5274
5275         typeof (void).MakeArrayType ();
5276
5277         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
5278         if there is no method to dereference.    Put all the code that
5279         depends on this inside the if (method) block.
5280
5281         This fixes the crasher exposed by Microsoft's Silvelright CLR test
5282         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
5283
5284         With this change, we pass the test.
5285         
5286         * reflection.c (mono_reflection_sighelper_get_signature_local):
5287         Only dereference the assembly if it has been set.    Fixes a
5288         crasher exposed by #525328
5289
5290 2009-07-25  Mark Probst  <mark.probst@gmail.com>
5291
5292         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
5293         don't perform the store in mono_gc_wbarrier_generic_nostore().
5294         Remove the second argument (value), which is not needed.
5295
5296 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
5297
5298         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
5299         the build.
5300
5301         * boehm-gc.c: Ditto.
5302         
5303 2009-07-24  Mark Probst  <mark.probst@gmail.com>
5304
5305         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
5306         not perform the store itself.  Introduce
5307         mono_gc_wbarrier_generic_nostore(), which is the same as
5308         mono_gc_wbarrier_generic_store(), except it doesn't perform the
5309         store.
5310
5311 2009-07-24  Mark Probst  <mark.probst@gmail.com>
5312
5313         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
5314         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
5315         we still need the memcpy().
5316
5317 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5318
5319         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
5320         so that big arrays are handled correctly.  Always use
5321         safe_object_get_size() to calculate array object sizes, which
5322         takes bounds into account.
5323
5324 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5325
5326         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
5327         GC descriptor is computed before we use it.
5328
5329 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5330
5331         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
5332         write barrier if necessary.
5333
5334 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5335
5336         * icall-def.h, icall.c, thread-types.h: New separate icall for
5337         VolatileWrite(object&,object) that uses a write barrier.
5338
5339         * console-unix.c, file-io.c, icall.c, threads.c: Use write
5340         barriers in icalls which write to "ref" or "out" arguments.
5341
5342 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
5343
5344         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
5345         handler in a separate icall, to reduce the size of the wrappers.
5346
5347 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5348
5349         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
5350
5351 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5352
5353         * metadata-verify.c (parse_field): Allow byref field.
5354
5355         * metadata-verify.c (parse_locals_signature): Allow byref locals.
5356
5357         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
5358
5359 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5360
5361         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
5362         Fixes #522784.
5363
5364 2009-07-20  Robert Jordan  <robertj@gmx.net>
5365
5366         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
5367         Fix invalid IL in valuetype handling (STOBJ must push the
5368         corresponding class). Fixes bug #523149.
5369
5370         Code is contributed under MIT/X11 license.
5371
5372 2009-07-20  Geoff Norton  <gnorton@novell.com>
5373
5374         * gc.c: Use proper semaphores where available on posix and darwin.
5375
5376 2009-07-19  Geoff Norton  <gnorton@novell.com>
5377
5378         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
5379
5380 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
5381
5382         * refletion.c (is_sre_usertype): Change name to is_usertype and
5383         invert it's result so it returns true if the type is an user type
5384         and not the opposite.
5385
5386         * reflection.c (is_*_type): Change all of those to use new macro
5387         check_corlib_type_cached that cached the type lookup so we don't
5388         need to do string comparisons all the type. Changed the signature
5389         to take a MonoClass instead.
5390
5391         * reflection.c: Change mono_image_create_token and resolve_object
5392         to use is_sre_* functions.
5393
5394 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5395
5396         * sgen-gc.c: Check for writes to the stack in the managed
5397         wbarrier as well.
5398
5399 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5400
5401         * sgen-gc.c: When a thread is unregistered, don't free its remsets
5402         but put them on a list which is processed with the other thread's
5403         remsets.
5404
5405 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5406
5407         * sgen-gc.c: Fix and enable the internal allocator instead of
5408         using malloc/free (which causes deadlocks).
5409
5410 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
5411
5412         * refletion.c: Fix builds with SRE disabled by adding a minimal
5413         implementation of mono_reflection_type_get_handle.
5414
5415 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5416
5417         * refletion.c: Make mono_reflection_type_get_handle non static.
5418
5419         * object-internals.h: Export mono_reflection_type_get_handle.
5420
5421         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
5422         unmanaged handle using mono_reflection_type_get_handle.
5423
5424 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5425
5426         * refletion.c: Replace all reads of MonoReflectionType::type with
5427         calls to mono_reflection_type_get_handle. Only the functions that
5428         deal with constructing TypeBuilder::type have not been changed
5429         because they have to deal with NULL values.
5430
5431         This is a first step into supporting reflection types that don't
5432         map directly into their unmanaged counterpart.
5433
5434 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5435
5436         * metadata-verify.c (parse_locals_signature): Don't complain
5437         on signature with zero locals since MS generates it and doesn't
5438         bother with.
5439
5440 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5441
5442         * reflection.c (mono_image_get_array_token): Resolve return
5443         type using mono_reflection_type_get_handle.
5444
5445         * reflection.c (mono_image_get_array_token): Resolve array method
5446         parent type using mono_reflection_type_get_handle.
5447
5448 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
5449
5450         * reflection.c (mono_image_basic_init): Applied patch from
5451         <Dax@daxxfiles.net>. Set the public key token from the assembly
5452         builder. Fixes #518909.
5453
5454         * appdomain.c: Bump corlib version.
5455
5456 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
5457
5458         * class.c (mono_class_needs_cctor_run): Make this return false if
5459         the class has no cctor.
5460
5461 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5462
5463         * sgen-gc.c: When the minor GC needs to allocate a new section,
5464         invoke the major GC afterwards.
5465
5466 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
5467
5468         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
5469           Applying the window_style field to the SHELLEXECUTEINFO struct.
5470
5471         Code is contributed under MIT/X11 license.
5472
5473 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5474
5475         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
5476         locking earlier.  Fix it in the managed allocator by making sure
5477         that no thread is stopped there before the GC runs.  If we do stop
5478         a thread there, we restart it and let it run a but, until it stops
5479         somewhere else.
5480
5481         * gc-internal.h, gc.c: Function for getting the IP from a signal
5482         context via a function registered by mini.
5483
5484 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
5485
5486         * object-internals.h (MonoIntPtr): New structure describing a boxed
5487         IntPtr.
5488
5489         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
5490         returns. Fixes #519953.
5491
5492         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
5493
5494 2009-07-09  Mark Probst  <mark.probst@gmail.com>
5495
5496         * class-internals.h, generic-sharing.c: New RGCTX info type for
5497         getting a remoting invoke with check wrapper.
5498
5499 2009-07-07  Geoff Norton  <gnorton@novell.com>
5500
5501         * icall-def.h: Fix the enable-minimal build.
5502
5503 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5504
5505         * object-internals.h: Add MonoReflectionDerivedType.
5506
5507         * reflection.c: Implement support for PointerType.
5508         Fixed tons of warnings.
5509
5510 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5511
5512         * object-internals.h: Add MonoReflectionByRefType.
5513
5514         * reflection.c: Implement support for ByRefType.
5515
5516 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5517
5518         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
5519
5520         * object-internals.h: Add MonoReflectionArrayType and
5521         mono_reflection_create_unmanaged_type.
5522
5523         * reflection.c: Implement support for ArrayType.
5524
5525 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5526
5527         * metadata-verify.c (is_valid_method_header): Parse EH block
5528         flags correctly.
5529
5530 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5531
5532         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
5533         processing the disappearing links, and process disappearing links
5534         in a loop until no new objects are copied.
5535
5536 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5537
5538         * object.c (handle_enum): Invoke the write barrier when copying
5539         value type instances.
5540
5541         * sgen-gc.c: Register remsets for unmanaged write barriers only
5542         when the address written to is actually on the heap.  This makes
5543         set_value() in object.c work without requiring that the result be
5544         on the heap.
5545
5546 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
5547
5548         The runtime wrappers are all bound to a given type that must
5549         exist in the same image. For regular images we use the <Module>
5550         type, which is required to exist for all images.
5551
5552         The <Module> type can't be used for dynamic images because it
5553         might not exist at the time the wrapper is required, so we create
5554         a synthetic type to use instead.
5555
5556         The current code works because of the 2 stage setup of MonoClass,
5557         but once this is gone it will no longer work.
5558
5559         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
5560
5561         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
5562
5563         * object-internals.h: Export mono_image_set_wrappers_type icall
5564         as part of the internal API.
5565
5566         * marshal.c (get_wrapper_target_class): If the image is dynamic,
5567         use MonoDynamicImage::wrappers_type instead of the <Module> type.
5568
5569         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
5570         image wrappers_type to the provided value.
5571
5572 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
5573
5574         * appdomain.c (deregister_reflection_info_roots): No need
5575         to use the image lock here.
5576
5577 2009-07-02  Mark Probst  <mark.probst@gmail.com>
5578
5579         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
5580
5581 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
5582
5583         * threads.c: Store the thread start argument in a hash table instead of
5584         registering it as a root, as libgc doesn't support unregistering roots
5585         under windows, leading to 'too many root sets' errors when many threads
5586         are created.
5587
5588         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
5589         shutdown, they can still be referenced by the other dying objects.
5590         Fixes #514506.
5591
5592 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5593
5594         * socket-io.c: DontLinger does not allow LingerOptions.
5595
5596 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5597
5598         * metadata-verify.c: The spec doesn't mention that it's possible to add
5599         custom attribute to a generic parameter. Fixed.
5600
5601 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5602
5603         * class.c (inflate_generic_type): Don't crash while trying to output a message
5604         on why we're aborting.
5605
5606 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5607
5608         * socket-io.c: DontLinger can take an int or a boolean too.
5609
5610 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
5611
5612         * gc.c: check for a null argument to SuppressFinalize () and
5613         ReRegisterForFinalize ().
5614
5615 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5616
5617         * loader.c (method_from_methodspec): Call into the verifier to check
5618         the signature.
5619
5620         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
5621
5622         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
5623         part of the internal API.
5624
5625 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5626
5627         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
5628         the signature.
5629
5630         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
5631
5632         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
5633         part of the internal API.
5634
5635 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5636
5637         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
5638         the signature.
5639
5640         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
5641         blob verification.
5642
5643         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5644         part of the internal API.
5645
5646 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5647
5648         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
5649         when doing basic verification. 
5650
5651         This check must be done since the runtime peeks into signatures in much
5652         more places than it does decoding so it makes sense to ensure that all
5653         pointers to blob objects are well formed.
5654
5655 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5656
5657         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
5658         Use proper overflow dectection. Fix usage of it.
5659
5660 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5661
5662         * loader.c (field_from_memberref): Call into the verifier to check
5663         the signature.
5664
5665         * loader.c (mono_method_get_signature_full): Same.
5666
5667         * loader.c (method_from_memberref): Same.
5668
5669         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
5670
5671         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5672         part of the internal API.
5673
5674 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5675
5676         * threadpool.c (mono_thread_pool_add): If the domain is unloading
5677         or unloaded, still return an AsyncResult, but don't add it to the
5678         threadpool.
5679
5680 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5681
5682         * threads.c: fix missing colon when DEBUG is defined.
5683
5684 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5685
5686         * threadpool.c: Don't add new calls to a threadpool if the domain
5687         of the call is unloading or unloaded.  When dequeuing a job, null
5688         the reference in the queue.
5689
5690 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5691
5692         * sgen-gc.c (null_link_in_range): Add the dislink for the old
5693         generation if an object was moved.
5694
5695 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
5696
5697         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
5698           parameters of type SAFEARRAY[VARIANT].
5699
5700         * reflection.c (encode_marshal_blob): Properly generate element type
5701           (SafeArraySubType marshal attribute option).
5702
5703         Code is contributed under MIT/X11 license.
5704
5705 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
5706
5707         * reflection.c: in mono_method_clear_object () really ensure all the
5708         objects are removed.
5709
5710 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5711
5712         * loader.c (mono_method_signature): Call into the verifier to check
5713         the method signature.
5714
5715         * metadata-verify.c (verify_method_table): Move signature verification
5716         to verify_method_table_full.
5717
5718         * metadata-verify.c: Add mono_verifier_verify_method_signature.
5719
5720         * verify-internals.h: Export mono_verifier_verify_method_signature as
5721         part of the internal API.
5722
5723 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5724
5725         * loader.c (mono_method_get_header): Call into the verifier to
5726         check the method header.
5727
5728         * metadata-verify.c: Add mono_verifier_verify_method_header.
5729
5730         * verify-internals.h: Export mono_verifier_verify_method_header as
5731         part of the internal API.
5732
5733 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5734
5735         * class.c (mono_class_find_enum_basetype): Call into the verifier to
5736         check the field signature. Replace an assert with an explicit check.
5737
5738         * class.c (mono_class_setup_fields): Call into the verifier to check
5739         the field signature.
5740
5741         * metadata-verify.c: Add mono_verifier_verify_field_signature.
5742
5743         * verify-internals.h: Export mono_verifier_verify_field_signature as
5744         part of the internal API.
5745
5746 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5747
5748         * class.c (mono_class_find_enum_basetype): Simplify this function
5749         by moving code outside of the loop and not decoding static fields.
5750
5751 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5752
5753         * metadata-verify.c (verify_typedef_table): Check the extends
5754         token here. Move to here a flags check from verify_typedef_table_full.
5755
5756 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
5757
5758         * metadata-verify.c (is_valid_method_header): Fix a warning.
5759
5760         * metadata-internals.h (MonoImage): Remove the unused 
5761         static_rgctx_invoke_wrapper_cache.
5762
5763         * image.c marshal.c: Ditto.
5764
5765 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5766
5767         * image.c (do_mono_image_load): Enable table data verification.
5768
5769 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5770
5771         * metadata-verify.c (is_valid_constant): Fix nullref check.
5772
5773 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5774
5775         * metadata-verify.c (is_valid_constant): Fix string bounds check.
5776
5777 2009-06-22  Mark Probst  <mark.probst@gmail.com>
5778
5779         * sgen-gc.c: Managed allocation with pthreads TLS.
5780
5781         * threads.c, threads-types.h: Functions for the JIT to tell the
5782         runtime whether it supports the MONO_TLS opcode.
5783
5784 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5785
5786         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
5787         without methods.
5788
5789 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5790
5791         * metadata-verify.c (is_valid_constant): Fix the string length check.
5792         Use safe overflow checking. Add decent error messages.
5793
5794 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5795
5796         * metadata-verify.c: Move remaininh blob checks to the offline
5797         verification path.
5798
5799 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5800
5801         * metadata-verify.c: Move more blob checks to the offline verification
5802         path.
5803
5804 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5805
5806         * object-internals.h : Adding interrupt_on_stop field.
5807
5808         * threads.c (mono_thread_request_interruption) : On Windows exit the
5809           thread if interrupt_on_stop is set.
5810
5811         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5812          Removing old interrupt logic and setting the interrupt_on_stop for the
5813          thread when calling accept.
5814
5815         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5816          setting the interrupt_on_stop for the thread when calling accept.
5817
5818         Contributed under MIT/X11 license.
5819
5820 2009-06-20  Martin Baulig  <martin@ximian.com>
5821
5822         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5823
5824 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5825
5826         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5827         running in no-exec mode.
5828
5829 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5830
5831         * metadata-verify.c (verify_method_table): Move header
5832         checking to verify_method_table_full.
5833
5834         * metata-verify.c (mono_verifier_verify_full_table_data):
5835         Call verify_method_table_full.
5836
5837 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5838
5839         * metadata-verify.c (verify_field_table): Move signature
5840         checking to verify_field_table_full.
5841
5842         * metata-verify.c (mono_verifier_verify_full_table_data):
5843         Call verify_field_table_full.
5844
5845 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5846
5847         * metadata-verify.c (verify_typedef_table): Move remaining
5848         stuff to verify_typedef_table_full.
5849
5850 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5851
5852         * metadata-verify.c: Kill is_corlib from VerifyContext.
5853         It is only used by the offline mode.
5854         So we better remove it from the runtime path.
5855
5856 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5857
5858         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5859         function that perform the offline metadata verification steps.
5860
5861         * metadata-verify.c (verify_typedef_table): Move some checks to
5862         verify_typedef_table_full and make it been called by new function
5863         mono_verifier_verify_full_table_data.
5864
5865         * pedump.c: Call mono_verifier_verify_full_table_data.
5866
5867         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5868         part of the internal API.
5869
5870 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5871
5872         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5873         check.
5874
5875         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5876         flags bits. SupportLastError was confused as bit 7 instead of 6.
5877
5878         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5879         to check against the module ref table instead of module.
5880
5881         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5882
5883         * pedump.c: Call mono_image_load_names.
5884
5885 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5886
5887         * image.c: Extract mono_image_load_names from do_mono_image_load.
5888
5889         * metadata-internals.h: Export mono_image_load_names as part of
5890         the internal API.
5891         
5892 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5893
5894         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5895         first, as it could reference data in the other caches.
5896
5897 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5898
5899         * metadata-verify.c: Finished with method header verification.
5900
5901 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5902
5903         * metadata-verify.c: Added more header verification code.
5904         Now only EH clauses are missing.
5905
5906 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5907
5908         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5909         for return values.
5910
5911 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5912
5913         * metadata-verify.c: Initial method header verification.
5914
5915 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5916
5917         * metadata-verify.c (verify_import_table): The IAT contents
5918         might end been patched by the windows DL when running with
5919         coree enabled.
5920
5921 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5922
5923         * class.c (mono_class_from_typeref): If the enclosing type is not
5924         found return null instead of crashing. Fixes #508487.
5925
5926 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5927
5928         * normalization-tables.h : updated to the latest unicode charcter
5929           data.
5930         * appdomain.c : bump corlib version.
5931
5932 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5933
5934         * class.c (mono_class_from_name): Fix support for assembly references
5935         in the EXPORTEDTYPE table. Fixes #511704.
5936
5937 2009-06-13  Geoff Norton  <gnorton@novell.com>
5938
5939         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5940         assembly in the target domain.
5941
5942 2009-06-12  Robert Jordan  <robertj@gmx.net>
5943
5944         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5945         because "this" of the managed signature has become an
5946         ordinary parameter in the unmanaged signature.
5947
5948 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5949
5950         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5951         field for owner-less generic containers.
5952
5953         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5954         image field of the owner-less generic containers created here.
5955
5956         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5957         contain is ownerless until the caller sets its owner.
5958
5959         * metadata.c (type_in_image): Handle owner-less generic containers
5960         correctly.
5961         
5962 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5963
5964         * image.c (mono_image_close): Support debug_assembly_unload for
5965         dynamic images too.
5966
5967 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5968
5969         * class.c: Fix some typos in comments.
5970
5971 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5972
5973         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5974
5975         * threads.c (mono_thread_execute_interruption): Avoid creating the
5976         abort exception object while holding the synch_cs lock.
5977
5978 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5979
5980         * metadata-verify.c: Verify basic cattr content.
5981
5982 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5983
5984         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5985         nested types.
5986         
5987         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5988         support for nested types. Fixes #511704.
5989
5990 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5991
5992         * metadata-verify.c: Verify methodspec signatures.
5993
5994 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5995
5996         * metadata-verify.c: Verify typespec signatures.
5997
5998 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5999
6000         * metadata.c (free_inflated_method): Call 
6001         mono_marshal_free_inflated_wrappers (), which was missed earlier.
6002
6003 2009-06-08  Miguel de Icaza  <miguel@novell.com>
6004
6005         * mono-config.c: Small change to report the PPC64/ILP32 model.
6006
6007 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
6008
6009         * metadata-verify.c (parse_type): Check szarray.
6010
6011 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
6012
6013         * metadata-verify.c (parse_type): Check fnptr.
6014
6015 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
6016
6017         * metadata-verify.c (parse_type): Check generic instances.
6018
6019 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
6020
6021         * metadata-verify.c (parse_type): Check array shape.
6022
6023 2009-06-05  Robert Jordan  <robertj@gmx.net>
6024
6025         * class.c (mono_class_create_from_typedef): Check only for
6026         mscorlib's System.Array.
6027
6028 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
6029
6030         * metadata-verify.c (parse_type): Check pointer, class/valuetype
6031         and generic params. 
6032
6033         * metadata-verify.c (parse_field): Check the signature.
6034
6035 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
6036
6037         * metadata-verify.c: Implement locals signature check.
6038
6039 2009-06-04  Marek Safar  <marek.safar@gmail.com>
6040
6041         * domain.c: Add .NET 4.0 Beta 1 version.
6042
6043 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
6044
6045         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
6046           For QueryInterface on CCWs consider the base class
6047           interfaces as well.
6048
6049         Code is contributed under MIT/X11 license.
6050
6051 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
6052
6053         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
6054
6055         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
6056         used.
6057
6058         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
6059         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
6060
6061         * generic-sharing.c (inflate_other_data): Ditto.
6062         
6063 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
6064
6065         * metadata-verify.c: Implement property signature check.
6066
6067 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6068
6069         * sgen-gc.h: Register saving support for PPC.
6070
6071 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6072
6073         * sgen-gc.c: Fixed a pthread TLS screwup.
6074
6075 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6076
6077         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
6078         supported.
6079
6080 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6081
6082         * sgen-gc.c: Disable TLA and managed allocation if the __thread
6083         keyword is not supported.
6084
6085 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
6086
6087         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
6088         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
6089         the inflated method is freed. Fixes #508389.
6090
6091         The code is contributed under the MIT/X11 license.
6092         
6093 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
6094
6095         * marshal.c (get_wrapper_target_class): New helper function.
6096         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
6097         the <Module> class of the image. Fixes #509049.
6098
6099 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6100
6101         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
6102         Check if the thread was interrupted and proccess it straight away.
6103         Makes abortion much more responsive.
6104
6105 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6106
6107         * threads.c (mono_thread_execute_interruption): Use atomic cas with
6108         MonoThread::interruption_requested to match it's counterpart.
6109
6110         Fixes a hang in abort-stress-1 on a 2 core x86.
6111
6112         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
6113         Fix warning.
6114
6115 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6116
6117         Change MonoImage::name_cache to be protected by the image lock
6118         instead of the loader lock.
6119
6120         * appdomain.c (deregister_reflection_info_roots): Protect access
6121         to name_cache.
6122
6123         * class.c (mono_image_init_name_cache): Change from the loader lock
6124         to the image lock. Check if the cache wasn't already created.
6125
6126         * class.c: Change from the loader to the image lock.
6127
6128         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
6129         the code to hold the image lock while iterating over name_cache and
6130         not go into mono_array_new holding it.
6131
6132         * metadata-internals.h: Add a comment about this change.
6133
6134 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6135
6136         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
6137         Under the 2.0 profile raise the loader error.
6138
6139         Fixes #508532.
6140
6141 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6142
6143         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
6144         of ldind opcode for generic instances so we don't fail for direct wrappers.
6145         This only affect direct calls.
6146
6147 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
6148
6149         * reflection.c (create_dynamic_mono_image): Fix warnings.
6150
6151         * generic-sharing.c (other_info_equal): Ditto.
6152         
6153 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
6154
6155         * metadata-verify.c: Implement field signature check.
6156
6157 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
6158
6159         * metadata-verify.c: Implement standalone signature check.
6160
6161 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
6162
6163         * metadata-verify.c: Implement methodref signature check.
6164
6165 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
6166
6167         * object-internals.h (MonoRuntimeCallbacks): New structure containing
6168         callbacks supplied by the runtime.
6169
6170         * object.c (mono_install_callbacks): New internal function to install
6171         the callbacks.
6172
6173         * object.c (mono_create_ftnptr): Move the implementation of this to
6174         mini/.
6175
6176         * object.c (mono_get_addr_from_ftnptr): Ditto.  
6177
6178 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
6179
6180         * metadata-verify.c (parse_return_type): Proper byref check.
6181         * metadata-verify.c (is_valid_method_signature): Check for zero arity
6182         generic signatures and method params.
6183
6184 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
6185
6186         * metadata-verify.c (decode_signature_header): Fix bounds check.
6187
6188         * metadata-verify.c (parse_custom_mods): Check custom mods.
6189
6190         * metadata-verify.c (parse_type): Do initial basic verification
6191         of valid values.
6192         
6193         * metadata-verify.c (is_valid_method_signature): Parse the generic
6194         param count.
6195
6196 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
6197
6198         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
6199         discarded based on their most specific definition so we set the method_slots
6200         array before checking if the method is acceptable or not.
6201
6202         Fixes #506757.
6203
6204 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6205
6206         * icall.c: Free the old array when resizing a mono_ptr_array.
6207
6208 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6209
6210         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
6211         for the hashes whose keys are managed objects.
6212
6213 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6214
6215         * object-internals.h, threads.c: Set the execution context on
6216         thread start here, not in corlib.
6217
6218         * appdomain.c: Bump corlib version.
6219
6220 2009-05-27  Martin Baulig  <martin@ximian.com>
6221
6222         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
6223         if `_mono_debug_using_mono_debugger' is set to make things work
6224         properly when embedding Mono.
6225
6226 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
6227
6228         * class.c (mono_class_setup_fields): Don't mark simd types as having
6229         16 bytes alignment as the whole runtime doesn't support.
6230
6231 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
6232
6233         * metadata-verify.c (safe_read): Use endian safe read macros.
6234
6235 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
6236
6237         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
6238         it is read-only when using full aot.
6239
6240 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6241
6242         * metadata-verify.c (is_valid_method_signature): Verify parts
6243         of the return type. Provide an error message in case of failure.
6244
6245 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6246
6247         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
6248
6249 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6250
6251         * metadata-verify.c: Include the size prefix in the bounds check.
6252
6253 2009-05-22  Miguel de Icaza  <miguel@novell.com>
6254
6255         * icall.c: Remove warnings.
6256
6257         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
6258         prevent auto-detection based on GCC defines.
6259
6260         Add PS3
6261
6262         * metadata-verify.c: Do not include signal.h
6263
6264         * generic-sharing.c, marshal.c: Add returns to avoid some warning
6265         messages.  Not sure why the g_assert_not_reached is not enough to
6266         quiet the compiler.
6267         
6268
6269         * appdomain.c: Remove code that is not used when
6270         DISABLE_SHADOW_COPY is set.
6271
6272         * image.c: use g_getenv
6273
6274 2009-05-21  Miguel de Icaza  <miguel@novell.com>
6275
6276         * reflection.c: Remove code that it not used with
6277         DISABLE_REFLECTION_EMIT is defined.
6278
6279 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
6280
6281         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
6282         invoke wrappers.
6283
6284 2009-05-20  Miguel de Icaza  <miguel@novell.com>
6285
6286         * socket-io.c
6287         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
6288         the ifdef here and instead put that on io-layer
6289
6290 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6291
6292         * metadata-verify.c: Verify the generic param constraint table.
6293
6294 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6295
6296         * metadata-verify.c (verify_generic_param_table): Fix
6297         thinko on the valid flags bits for generic params.
6298
6299 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6300
6301         * metadata-verify.c: Verify the methodspec table.
6302
6303 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6304
6305         * metadata-verify.c: Verify the generic param table.
6306
6307 2009-05-19  Mark Probst  <mark.probst@gmail.com>
6308
6309         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
6310
6311 2009-05-19  Mark Probst  <mark.probst@gmail.com>
6312
6313         * sgen-gc.c: Use generation enum more consistently and use the
6314         correct generation in mono_gc_register_for_finalization().
6315
6316 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
6317
6318         * metadata-verify.c: Verify the nested class table.
6319
6320 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
6321
6322         * metadata-verify.c: Verify the manifest resource table.
6323
6324 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
6325
6326         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
6327
6328 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
6329
6330         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
6331         wrappers, this is now done in the JIT.
6332         
6333         * class.c (mono_set_generic_sharing_supported): New internal function.
6334         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
6335
6336 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6337
6338         * metadata-verify.c: Verify the exported type table.
6339
6340 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6341
6342         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
6343
6344 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6345
6346         * metadata-verify.c: Verify the file table.
6347
6348 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6349
6350         * metadata-verify.c (verify_assembly_table): Fix an error message.
6351
6352         * metadata-verify.c: Verify the assemblyref table.
6353
6354 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6355
6356         * metadata-verify.c (verify_assembly_table): Fix the valid
6357         bits mask for flags.
6358
6359 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
6360
6361         * debug-helpers.c (mono_method_full_name): Print generic parameters of
6362         generic methods as well.
6363
6364 2009-05-15  Geoff Norton  <gnorton@novell.com>
6365
6366         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
6367         use-case and is significantly more performant than the wapi layer.
6368
6369 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6370
6371         * metadata-verify.c: Verify the assembly table.
6372
6373 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6374
6375         * metadata-verify.c: Fix rows limit check.
6376
6377 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6378
6379         * metadata-verify.c: Verify the fieldrva table.
6380
6381 2009-05-13  Mark Probst  <mark.probst@gmail.com>
6382
6383         * sgen.c: Speed up weak links and finalizers by grouping them by
6384         generation.
6385
6386 2009-05-13  Mark Probst  <mark.probst@gmail.com>
6387
6388         * marshal.c (delegate_hash_table_add): When overwriting an entry,
6389         free the old GCHandle (only applies to SGen).
6390
6391 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
6392
6393         * loader.c (mono_get_method_from_token): Avoid the expensive call to
6394         mono_metadata_load_generic_params () for non-generic methods.
6395
6396 2009-05-12  Mark Probst  <mark.probst@gmail.com>
6397
6398         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
6399         New function for returning a monitor's weak link if it has one.
6400
6401         * sgen-gc.c: Remove an object's monitor's weak link (if it has
6402         one) when clearing a domain.  These can still be around because
6403         the object might not have been collected.
6404
6405 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
6406
6407         * gc.c: Fix a warning.
6408
6409 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
6410
6411         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
6412         prevous wait that resulted in a deadlock on Windows when initializing
6413         the runtime form DllMain. Also results in improved startup time.
6414         (finalizer_thread): Get rid of thread_started_event.
6415         * threads.c, threads-types.h (mono_thread_create_internal): Return the
6416         resulting MonoThread.
6417
6418         Contributed under MIT/X11 license.
6419
6420 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
6421
6422         * metadata-verify.c: Verify the implmap table.
6423         Don't require that #US and #Strings be present.
6424
6425 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
6426
6427         * security-core-clr.c: Delegate checks are done at creation time,
6428         not a invocation time. Fix exception for Telerik Silverlight demo
6429
6430 2009-05-11  Mark Probst  <mark.probst@gmail.com>
6431
6432         * sgen-gc.c (need_remove_object_for_domain): Remove the special
6433         case for the Thread class.
6434
6435         * threads.c: Do clean-up of abort exception/state in
6436         thread_cleanup() instead of Thread.free_internal().  Also clean up
6437         current_appcontext.  The reason we have to do that is because
6438         those references might point into another domain and if that
6439         domain is unloaded before the thread is finalized, they point to
6440         invalid data.
6441
6442 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
6443
6444         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
6445         stub signatures.
6446         
6447         Contributed unter MIT/X11 license.
6448
6449 2009-05-09  Miguel de Icaza  <miguel@novell.com>
6450
6451         * verify.c, metadata-verifier.c: Add support for disabling the
6452         verifier in some builds.
6453
6454         [ Sorry, my previous commit accidentally commited some work in
6455         progress ]
6456
6457 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
6458
6459         * class.c (mono_class_setup_fields): Set class->field.first for
6460         generic instances.
6461
6462 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6463
6464         * metadata-verify.c: Verify the typespec table.
6465
6466 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6467
6468         * metadata-verify.c: Verify the module table.
6469
6470 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6471
6472         * metadata-verify.c: Verify the methodimpl table.
6473
6474 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6475
6476         * metadata-verify.c: Verify the property table.
6477
6478 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
6479
6480         * debug-helpers.c (mono_method_desc_match): Add support for generic
6481         glob patterns.
6482
6483 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
6484
6485         * metadata-verify.c: Verify the propertymap table.
6486
6487 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
6488
6489         * metadata-verify.c: Verify the event table.
6490
6491         * metadata-verify.c (search_sorted_table): Fix offset
6492         calculation.
6493
6494 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
6495
6496         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
6497
6498 2009-05-01  Mark Probst  <mark.probst@gmail.com>
6499
6500         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
6501         because mono_delegate_free_ftnptr() needs it.
6502
6503 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6504
6505         * metadata-verify.c: Verify the eventmap table.
6506
6507 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6508
6509         * metadata-verify.c: Verify the standalonesig table.
6510
6511 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6512
6513         * metadata-verify.c: Verify the field layout table.
6514
6515 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6516
6517         * class.c (mono_type_get_name_recurse): Don't crash
6518         for ownerless generic params.
6519
6520         * debug-helpers.c (mono_type_get_desc): Correct the format
6521         for ownerless generic params.
6522
6523 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6524
6525         * metadata-verify.c: Verify the class layout table.
6526
6527 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6528
6529         * metadata-verify.c: Verify the decl security table.
6530
6531 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6532
6533         * domain.c (mono_domain_set_internal_with_options): Don't do
6534         anything if the old domain is the same as the old one.  Fixes
6535         #499326.
6536
6537 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6538
6539         * appdomain.c: Deregister the reflection_info roots when unloading
6540         a domain.
6541
6542         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
6543         memory allocated by a domain and frees its disappearing links.
6544
6545         * boehm-gc.c, null-gc.c: Empty implementation of
6546         mono_gc_clear_domain().
6547
6548 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6549
6550         * appdomain.c (clear_cached_vtable): Free the static fields memory
6551         block.
6552
6553 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6554
6555         * gc.c: Set the correct domain when invoking finalizers.
6556
6557         * appdomain.c: Set the correct domain when creating threads.
6558
6559 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6560
6561         * sgen-gc.c: Fix skip size for vectors.
6562
6563 2009-05-03  Martin Baulig  <martin@ximian.com>
6564
6565         * mono-debug-debugger.c
6566         (mono_debugger_check_breakpoints): Check class init handlers even
6567         if we don't have any method load handers.
6568
6569 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
6570
6571         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
6572         returning refonly assemblies if refonly is FALSE. Fixes #499013.
6573
6574 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6575
6576         * metadata-verify.c: Verify the field marshal table.
6577
6578 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6579
6580         * metadata-verify.c: Verify the custom attribute table.
6581
6582 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6583
6584         * metadata-verify.c: Verify the constant table.
6585
6586 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6587
6588         * metadata-verify.c: Verify the memberef table.
6589
6590 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6591
6592         * metadata-verify.c (get_coded_index_token): Remove
6593         dead argument.
6594
6595 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6596
6597         * metadata-verify.c: Verify the interfaceimpl table.
6598
6599 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6600
6601         * verify.c: Improve error message.
6602
6603         * debug-helpers.c (mono_type_get_desc): Harden the code that
6604         deals with VAR and MVAR.
6605
6606 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
6607
6608         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
6609         part of #498692.
6610
6611 2009-04-23 Tom Hindle <tom_hindle@sil.org>
6612
6613         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
6614         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
6615
6616 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
6617
6618         * security-core-clr.c: Avoid redundant checks for platform code, 
6619         e.g. check for method and for class (very common) and check
6620         for class and outer class (less common)...
6621
6622 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
6623
6624         * reflection.c: Avoid returning random cattrs for synthetic methods.
6625         Fixes #498545.
6626
6627 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6628
6629         * assembly.c: assemblies in the GAC should never be shadow-copied.
6630
6631 2009-04-26  Mark Probst  <mark.probst@gmail.com>
6632
6633         * domain.c, domain-internals.h: Disable
6634         track_resurrection_{objects,handles}_hash in MonoDomain if using
6635         SGen.
6636
6637 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6638
6639         * metadata-verify.c: Verify the param table.
6640
6641 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6642
6643         * metadata-verify.c (verify_typedef_table): Range check FieldList and
6644         MethodList.
6645
6646         * metadata-verify.c (verify_method_table): Proper check the ParamList
6647         field.
6648
6649 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6650
6651         * metadata-verify.c (verify_method_table): Check for runtime
6652         implemented functions such as delegate .ctors. Remove spurious
6653         printf.
6654         
6655 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6656
6657         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
6658
6659 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6660
6661         Don't allocate MonoGenericInfo for ownerless generic params.
6662         * class-internals.h (MonoGenericParam::info): Move field to ...
6663         (MonoGenericParamFull): ... this.  New struct.
6664         (MonoGenericContainer::type_params): Change type to
6665         MonoGenericParamFull.
6666         (MonoGenericParam, MonoGenericContainer): Update accessors.
6667         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
6668         'info' field for ownerless generic param.
6669         (mono_metadata_load_generic_params): Update to changes.
6670         * reflection.c (mono_reflection_create_generic_class): Likewise.
6671         (reflection_methodbuilder_to_mono_method): Likewise.
6672         (mono_reflection_initialize_generic_parameter): Likewise.
6673
6674 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6675
6676         Don't use MonoGenericParamInfo for ownerless generic params.
6677         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
6678         use ParamInfo class at all.
6679         (mono_class_from_generic_parameter): Use them.
6680         (make_generic_param_class): Fix a couple of instances where 'pinfo
6681         == NULL' wasn't handle.
6682
6683 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6684
6685         * class.c (make_generic_param_class): Carve out of ...
6686         (mono_class_from_generic_parameter): ... here.
6687
6688 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6689
6690         Simplify mono_class_from_generic_parameter
6691         * class-internals.h (MonoGenericParamInfo::token): New field.
6692         * metadata.c (mono_metadata_load_generic_params): Initialize it
6693         from metadata.
6694         * class.c (mono_class_from_generic_parameter): Use it instead of
6695         searching through metadata.
6696
6697 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6698
6699         * metadata-verify.c: Add verification of the method table.
6700
6701 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6702
6703         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
6704         Delegate::Invoke optimization.
6705
6706 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6707
6708         * appdomain.c (mono_domain_create_appdomain_internal): Free the
6709         string returned by get_shadow_assembly_location_base.
6710
6711         * appdomain.c (get_shadow_assembly_location_base): Add a comment
6712         about caller's ownership.
6713
6714 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6715
6716         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
6717         reflection memory on domain unload.
6718
6719         * domain.c (mono_domain_free): Don't free refobject_hash, let the
6720         reflection cleanup code do it.
6721
6722         * domain-internals.h: Add mono_reflection_cleanup_domain.
6723
6724         This fixes a memory leak for managed mirrors of reflection objects
6725         on domain unload. 
6726
6727 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6728
6729         * metadata-verify.c: Implement more verification of the field table.
6730
6731 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6732
6733         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
6734         doesn't try to parse the input assembly, which can be broken.
6735
6736 2009-04-23  Mark Probst  <mark.probst@gmail.com>
6737
6738         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
6739         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
6740         by using the lowest bit in the link to store whether the link is
6741         tracked.  Move the track_resurrection hashes into boehm-gc.c.
6742
6743 2009-04-22  Miguel de Icaza  <miguel@novell.com>
6744
6745         * Makefile.am: Split the console support in platform specific code
6746         and put together a framework for making this easy in the future so
6747         that we can start splitting code instead of having a mess of PLATFORM_WIN32
6748
6749 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6750
6751         * pedump.c: Fix a warning.
6752
6753 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6754
6755         * verify.c (mono_delegate_type_equal): Compare valuetypes using
6756         mono_class_from_mono_type to avoid bad interactions with the dual representation
6757         of the generic type definition.
6758
6759 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6760
6761         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
6762         get the MonoClass for the call context type as it might be a generic
6763         instance.
6764
6765         Fixes #491483.
6766
6767 2009-04-21  Mark Probst  <mark.probst@gmail.com>
6768
6769         * object-internals.h: The Thread object has no execution_context
6770         member anymore.
6771
6772         * threads.c, threadpool.c, threads-types.h: Accessor functions for
6773         the execution context.
6774
6775         * appdomain.c: Bump corlib version.
6776
6777 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6778
6779         * verify.c (do_newobj): Improve error message.
6780
6781 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6782
6783         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
6784         is nested in the filter block.
6785
6786         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
6787         block is not fully nested.
6788
6789         Fixes #495656.
6790
6791 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6792
6793         * verify.c (verify_type_compatibility_full): Compare MonoClass and
6794         not MonoType to check for equality of valuetypes as the generic type
6795         definition allows for two different encodings: the generic type definition
6796         class or a generic instance over the GTD arguments.
6797
6798         Fixes #496175.
6799
6800 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6801
6802         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6803
6804         * verify.c (do_initobj): Improve error message.
6805
6806 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6807
6808         * metadata-verify.c: Enable pe verification as the issue with #496453
6809         is that the authenticode data directory have a different unspecified
6810         format. Ignore it for now.
6811
6812         * pedump.c: Run the metadata verifier together with the IL verifier.
6813
6814         Fixes ##496453.
6815
6816 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6817
6818         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6819
6820 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6821
6822         * class.c (can_access_type): Check visibility against
6823         the element type for pointers and arrays.
6824
6825         Fixes #496150.
6826
6827 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6828
6829         * metadata-verify.c: Fix cli and table verification to use information
6830         from the MonoImage. A lot of duplicated code got killed.
6831
6832 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6833
6834
6835         This patch starts to integrate the metadata verifier with the runtime code.
6836
6837         This patch causes major regression in functionality for the metadata verifier
6838         as cli and table verification are disabled since they require to be ported to
6839         use MonoImage information.
6840
6841         * image.c (do_mono_image_load): Split the code in this function
6842         into mono_image_load_pe_data and mono_image_load_cli_data.
6843         Add     care_about_pecoff parameter to not load pecoff data.
6844         Call into the metadata verifier for pecoff and cli verification.
6845
6846         * image.c (mono_image_open_raw): New function that doesn't perform
6847         any parsing of the image contents.
6848         
6849         The reason for the 3 new functions is to give pedump better control
6850         into the interaction with the verifier.
6851
6852         * metadata-internals.h: Add new functions from image.c as part of the
6853         internal mono API.
6854
6855         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6856         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6857         to make those functions work together with the runtime.
6858
6859         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6860         true if the image needs to be verified.
6861
6862         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6863
6864         * pedump.c: Use new metadata verifier API.
6865
6866 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6867
6868         * object.c (mono_install_vtable_trampoline): Make this receive a
6869         trampoline creation function instead of trampoline, allowing the JIT
6870         to use a different trampoline for each vtable.
6871
6872 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6873
6874         * object.c (mono_raise_exception): Don't reset the thread abort
6875         exception state here.
6876
6877 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6878
6879         * icall-def.h: New icall for getting the thread abort exception
6880         state for a thread.
6881
6882         * object.c, thread.c, object-internals.h: A thread's abort
6883         exception state is now a GC handle.  To get the object it stands
6884         for, we must move it into the current app domain, if it's
6885         different than the one where it originated from.
6886
6887         * appdomain.c: Bump corlib version.
6888
6889         * domain.c, domain-internals.h: New function for setting the
6890         domain and migrate the thread abort exception or not.
6891
6892 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6893
6894         * metadata-verify.c: Add initial verification of the
6895         field table.
6896
6897 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6898
6899         * metadata-verify.c: Add a macro to conditionally enable
6900         dumping of verification information. Add  make_coded_token
6901         and search_sorted_table to enable search sorted tables
6902         by a given coded token.
6903
6904 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6905
6906         * metadata-verify.c: Add array mapping from table index
6907         to description offset. Add get_col_offset and get_col_size
6908         functions.
6909
6910 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6911
6912         * metadata-verify.c: Add remaining table descriptions offsets.
6913         Add remaining coded index descriptions.
6914
6915 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6916
6917         * metadata-verify.c: Fixed constant table description.
6918         Fixed calculation of HasCustomAttribute coded index size.
6919         Fixed calculation of size for many table indexes. 
6920
6921 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6922
6923         * pedump.c (dump_metadata): Dump table offset instead
6924         of useless pointer in memory.
6925
6926 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6927
6928         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6929
6930 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6931
6932         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6933         a missing of for interface types.
6934
6935 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6936
6937         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6938         the code is commented.
6939
6940         * metadata-verify.c (verify_resources_table): Remove spurious printf
6941         and don't fail if there are unmanaged resources. Gmcs generates a useless
6942         one     for all assemblies - I bet it's some MS compatibility junk.
6943
6944 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6945
6946         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6947
6948         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6949
6950         * verify-internals.h: Same.
6951
6952         * pedump.c: Fix for mono_image_verify new signature.
6953
6954 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6955
6956         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6957         flags combinations.
6958
6959 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6960
6961         * metadata-verify.c (verify_module_table): Ignore the generation field.
6962
6963 2009-04-15  Martin Baulig  <martin@ximian.com>
6964
6965         * debug-mono-symfile.c
6966         (mono_debug_symfile_lookup_location): Don't print a warning for
6967         unknown extended opcodes if they're within 0x40 and 0x7f.
6968
6969 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6970
6971         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6972         invoke signatures returning an enum. Fixes #494847.
6973
6974 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6975
6976         * metadata-verify.c: Initial code to verify the typedef table.
6977
6978 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6979
6980         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6981         with non empty stack happens before the beginning of a try block.
6982
6983         Fixes #494812.
6984
6985 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6986
6987         * metadata-verify.c: Verify typename and typenamespace fields of
6988         the typeref table.
6989
6990 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6991
6992         * metadata-verify.c: Initial code to verify the typeref table.
6993
6994 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6995
6996         * verify.c (verify_delegate_compatibility): Fix error message.
6997
6998 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6999
7000         * security-core-clr.c: Fix typo
7001
7002 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
7003
7004         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
7005         a MonoGHashTable to keep its values alive.
7006         (emit_marshal_boolean): Fix a warning.
7007
7008 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
7009
7010         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
7011         not have any interface configured for IPv4/IPv6.
7012
7013 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
7014
7015         * assembly.c: fix typo in error message.
7016
7017 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
7018
7019         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
7020         allocating the location holding the this argument to prevent
7021         'too many root sets' errors.
7022
7023         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
7024         to mark fields as special static.
7025         (mono_field_static_get_value): Handle special static fields.
7026         (mono_field_static_set_value): Ditto.
7027
7028         * class-internals.h (struct _MonoClassField): Document this.
7029
7030 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7031
7032         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
7033           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
7034           case.  This will handle when managed code returns null to native code.
7035
7036         Code is contributed under MIT/X11 license.
7037
7038 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7039
7040         * object.c (build_imt_slots): Changing a free to a g_free to match
7041           the g_malloc0 in add_imt_builder_entry that allocated this memory.
7042
7043         Code is contributed under MIT/X11 license.
7044
7045 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7046
7047         * marshal.c (emit_marshal_boolean): Adding code to ensure that
7048           the correct TRUE value is passed through the marshaling layer.
7049
7050         Code is contributed under MIT/X11 license.
7051
7052 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
7053
7054         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
7055         correctly. Fixes #492330.
7056         
7057         * marshal.c: Fix the embedding of object pointers into JITted code in
7058         the native-to-managed wrappers by allocating some GC tracked memory, and
7059         embedding the address of that.
7060
7061 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
7062
7063         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
7064         pointers into the vtable.
7065
7066 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
7067
7068         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
7069
7070         * verify.c (verify_ldftn_delegate): Improve error message.
7071
7072 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
7073
7074         * reflection.c (my_mono_class_from_mono_type): Remove.
7075
7076 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
7077
7078         Prepare to reduce memory usage of owner-less generic parameters (1/n)
7079         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
7080         and constraints fields into ...
7081         (MonoGenericParamInfo): ... this.
7082         (mono_generic_param_info, mono_generic_container_get_param_info):
7083         New accessors.
7084         * class.c, debug-helpers.c, icall.c: Update to changes.
7085         * metadata.c, reflection.c, verify.c: Likewise.
7086
7087 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
7088
7089         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
7090
7091         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
7092         
7093         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
7094         booleans with sbytes.
7095
7096 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
7097
7098         * class.c (can_access_instantiation): Verify accesibility of element types
7099         for arrays and pointers.
7100
7101         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
7102
7103         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
7104
7105         Fixes #493068.
7106
7107 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
7108
7109         * verify.c (do_invoke_method): Improve error messages.
7110
7111 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
7112
7113         * verify.c:  Fixing the MSVC build.
7114
7115         Code is contributed under MIT/X11 license.
7116
7117 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
7118
7119         * security-core-clr.c: Simplify get_reflection_caller not to call
7120         mono_method_get_last_managed (another stack walk) and adjust the
7121         callers to handle a (should not happen) NULL return value.
7122
7123 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7124
7125         Add accessors to some MonoGenericParam fields
7126         * class-internals.h (mono_generic_param_owner): New accessor.
7127         (mono_generic_param_num): Likewise.
7128         (mono_type_get_generic_param_owner): New helper.
7129         (mono_type_get_generic_param_num): New helper.
7130         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
7131
7132 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7133
7134         * class-internals.h (mono_generic_container_get_param): New wrapper.
7135         * class.c, icall.c, metadata.c, verify.c: Use it.
7136
7137 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7138
7139         Fix gtest-252.cs
7140         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
7141         the standard case/loop.  In particular, don't complain about
7142         references to generic type definitions.
7143
7144 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
7145
7146         * debug-helpers.c (dis_one): Decode string arguments.
7147
7148 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
7149
7150         * pedump.c (dump_verify_info): Dump type name correctly.
7151
7152 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
7153
7154         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
7155         are larger than code size.
7156
7157         This can happen in valid code if the try/catch block is not followed by any instruction
7158         and do a backward branch on the leave instruction.
7159
7160         Fixes #492494.
7161
7162 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
7163
7164         * security-core-clr.c: Fix typo while comparing second method names
7165         in can_avoid_corlib_reflection_delegate_optimization
7166
7167 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
7168
7169         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
7170
7171         Fixes #487738.
7172
7173 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
7174
7175         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
7176         a MVAR using a class context.
7177
7178         Fixes #490335.
7179
7180 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
7181
7182         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
7183
7184         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
7185
7186         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
7187         functions supplied by the JIT for the SGEN GC.
7188
7189         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
7190         
7191 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
7192
7193         monitor.c (mono_monitor_try_enter_internal):
7194         Added calls to profile monitor contentions.
7195         Also duplicated a small piece of code (the "get the monitor" logic)
7196         from the fast path to the slow path, and changed the relevant goto
7197         statements, so that monitor acquisition events can be emitted from the
7198         slow path (this is by Paolo Molaro).
7199
7200 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
7201
7202         * profiler.c, profiler.h, profiler-private.h:
7203         Added support for profiling monitor contentions.
7204
7205 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
7206
7207         * metadata-verify.c: Verify the modules table.
7208
7209 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
7210
7211         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
7212         using the context of the method been verifier and not of the method been called.
7213
7214         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
7215         safely inflate generic types. 
7216
7217 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
7218
7219         * security-core-clr.c: Change the strategy for checking the 
7220         "reflection using delegates optimization" to avoid unneeded 
7221         attributes in multiple class libraries.
7222
7223 2009-04-02  Mark Probst  <mark.probst@gmail.com>
7224
7225         * sgen-gc.c: Remove object element in the disappearing link struct
7226         by storing the object pointer in the link.
7227
7228 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7229
7230         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
7231
7232 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7233
7234         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
7235
7236         * verify.c (mono_method_verify): Do proper bounds checking of exception
7237         clause ranges.
7238
7239 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7240
7241         * loader.c (mono_field_from_token): Don't crash if the field parent could
7242         not be decoded.
7243
7244 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7245
7246         * sgen-gc.c: Execute critical finalizers after ordinary
7247         finalizers.
7248
7249         * class-internals.h, domain.c: Add CriticalFinalizerObject to
7250         mono_defaults.
7251
7252 2009-03-31 Jb Evain <jbevain@novell.com>
7253
7254         * verify.c (do_ldstr): don't check if a string is in the user strings
7255         heap if the current image is dynamic.
7256
7257 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7258
7259         * sgen-gc.c: Wait until the last finalizer has executed when
7260         returning from WaitForPendingFinalizers.
7261
7262 2009-03-31  Martin Baulig  <martin@ximian.com>
7263
7264         * mono-debug-debugger.h (MonoDebuggerEvent): Add
7265         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
7266         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
7267         (mono_debugger_event_create_appdomain): New function.
7268         (mono_debugger_event_unload_appdomain): New function.
7269
7270         * appdomain.c (mono_domain_create_appdomain_internal): Call
7271         mono_debugger_event_create_appdomain().
7272
7273 2009-03-31  Martin Baulig  <martin@ximian.com>
7274
7275         * mono-debug-debugger.c
7276         (mono_debugger_register_class_init_callback): Also register the
7277         class init callback if the class is already initialized to make
7278         things work with shadow copied assemblies.
7279
7280 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
7281
7282         * security-core-clr.c
7283         (mono_security_core_clr_ensure_reflection_access_field): Let 
7284         critical code access the field (just like we do for methods). Use
7285         check_field_access helper.
7286         (mono_security_core_clr_ensure_reflection_access_method): Use 
7287         check_field_access helper.
7288
7289 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7290
7291         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
7292         call the run-finalize function directly.
7293
7294         * gc.c, gc-internal.h: Make run_finalize() non-static.
7295
7296 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7297
7298         * sgen-gc.c: Use a separate struct for disappearing links.
7299
7300 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7301
7302         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
7303         * MaxIOVectorLength enabled, just ignore them.
7304         Fixes bug #349688.
7305
7306 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
7307
7308         * metadata-verify.c: Fix eglib build.
7309
7310 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
7311
7312         * threads-types.h: Fix the win32 build.
7313
7314 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
7315
7316         * class.c: move coreclr inheritance/override checks to 
7317         security-core.clr.c
7318         * security-core.clr.c|h: add code from class.c with additional
7319         documentation. Fix override check when the method is not critical.
7320
7321 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
7322
7323         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
7324         (match_class): Ditto.
7325
7326 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
7327
7328         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
7329
7330         * metadata-verify.c: Implement table layout row size calculation. Verify
7331         the total size of the tables.
7332
7333 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
7334
7335         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
7336
7337 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
7338
7339         * appdomain.c:
7340         * console-io.[ch]: added new mono_console_init() to make sure that
7341         file descriptors 0, 1 and 2 are opened.
7342         Bug #489019 fixed.
7343
7344 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
7345
7346         * appdomain.h: Export a new callback type and a new function to
7347         set this callback. This allow a mono host to provide it's own
7348         definition for "platform code".
7349         * metadata-internals.h: Add a core_clr_platform_code flag on 
7350         _MonoImage to (cache and) know if it is representing platform 
7351         code.
7352         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
7353         on platform code images.
7354         * security-core-clr.c|h 
7355         (mono_security_set_core_clr_platform_callback): Allow the host
7356         to provide it's own platform check definition.
7357         (mono_security_core_clr_determine_platform_image): Detect if an 
7358         image is platform code (using the specified callback).
7359         (mono_security_core_clr_is_platform_image): Return cached value 
7360         for platform code.
7361
7362 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
7363
7364         * threads.c (mono_create_thread): New helper function to wrap CreateThread
7365         which has different parameter types for the 'tid' argument in windows and
7366         the io-layer.
7367
7368         * appdomain.c attach.c threads.c: Use the new helper.
7369
7370 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
7371
7372         * metadata-verify.c: Verify valid table bits.
7373
7374 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
7375
7376         * metadata-verify.c (verify_metadata_header): Store size in the size field.
7377
7378         * metadata-verify.c: Add initial table schema verification.
7379
7380 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
7381
7382         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
7383         obtain the refclass argument needed by mono_param_get_objects (). Fixes
7384         #488383.
7385
7386         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
7387
7388         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
7389
7390 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
7391
7392         * security-core-clr.c: Add/update documentation
7393
7394 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
7395
7396         * marshal.c (emit_marshal_object): Generate code to throw an exception
7397         instead of throwing it. Fixes #488670.
7398
7399 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
7400
7401         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
7402         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
7403         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
7404         and add a call to mono_security_core_clr_ensure_delegate_creation
7405         to do the extra checks required by CoreCLR.
7406         * security-core-clr.c|h: Add function to check delegate creation,
7407         both in the binding and accessibility, under CoreCLR.
7408
7409 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
7410
7411         * reflection.c (mono_reflection_create_dynamic_method): when 
7412         coreclr is enabled make sure that every resolved object are
7413         checked (e.g. field and method access).
7414         * security-core-clr.c|h: Add function to check objects resolved
7415         when a dynamic method is created.
7416
7417 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7418
7419         * metadata-verify.c: Cache directory rva translations.
7420
7421         * metadata-verify.c: Add cli-header and streams verification.
7422
7423 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7424
7425         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
7426         the wrong offset (8 instead of 6).
7427
7428 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
7429
7430         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
7431         methods, return the native function address itself. Fixes
7432         #487758.
7433
7434 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7435
7436         * console-io.c: some of the values for control characters might not be
7437         present.
7438
7439 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
7440
7441         * exception.c|h: Add helpers to create [Field|Method]AccessException
7442         * icall.c: Add required coreclr check calls for field reflection.
7443         Move the existing (method) check logic into security-core-clr.c
7444         * security-core-clr.c: Add functions to check if the access of a
7445         field or method is allowed when reflecting under coreclr. This is
7446         mostly done using a stack walk to find the "real" caller: i.e. the
7447         code that is calling the reflection
7448
7449 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
7450
7451         * gc-internal.h: Change location of gc_wrapper.h
7452
7453 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
7454
7455         * class.c: Simplification to coreclr checks for overrides that
7456         makes it easier to set breakpoints.
7457
7458 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
7459
7460         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
7461         mono_security_core_clr_method_level): Avoid potential 
7462         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
7463         user/application code) and make it easier to set breakpoints
7464
7465 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7466
7467         * metadata-verify.c: Reject cli header tables that mono don't handle.
7468
7469 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7470
7471         * pedump.c: Fix CLI header dumping.
7472
7473 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7474
7475         * metadata-verify.c: More CLI header verification.
7476
7477 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
7478
7479         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
7480
7481 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7482
7483         * metadata-verify.c: Initial verification of the CLI header.
7484
7485 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7486
7487         * metadata-verify.c (verify_resources_table): Fix verification of zero
7488         sized resource section and id entries count.
7489
7490 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
7491
7492         * icall.c: Handle user types in many Type icalls. Fixes #486303.
7493
7494 2009-03-17  Jb Evain  <jbevain@novell.com>
7495
7496         * profiler.c: call mono_gc_base_init from mono_profiler_load.
7497
7498 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
7499
7500         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
7501         (mono_gc_make_descr_for_array): Ditto.
7502
7503 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7504
7505         * verify.c (mono_verifier_is_class_full_trust): Add support for
7506         CoreCLR security mode where trusted assemblies are defined as
7507         "platform code".
7508
7509 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7510
7511         * metadata-verify.c: Add minimal PECOFF resource verification.
7512
7513 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7514
7515         * metadata-verify.c: Be less restrictive with some coff fields.
7516
7517 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7518
7519         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
7520         params as boxed values on stack. Fixes #485706.
7521
7522 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7523
7524         * console-io.c: the termios values may vary in different flavors of unix.
7525
7526 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7527
7528         * console-io.[ch]: return the entire set of control characters when
7529         initializing the terminal.
7530         * appdomain.c: bump corlib version.
7531
7532 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
7533
7534         * mono-perfcounters.c: added support for in-process custom
7535         performance counters.
7536
7537 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7538
7539         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
7540
7541 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7542
7543         * metadata-verify.c: Verify the data pointed by the import table. 
7544
7545 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7546
7547         * metadata-verify.c (load_data_directories): Store data
7548         directory contents.
7549
7550         * metadata-verify.c: Verify the import table. 
7551
7552 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7553
7554         * metadata-verify.c: Verify data directories.
7555
7556 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7557
7558         * metadata-verify.c: Check section header flags.
7559
7560 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7561
7562         * appdomain.c: if the assembly name is a shadow-copied file, return
7563         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
7564         in mono_make_shadow_copy.
7565         * icall.c: if the assembly name is a shadow-copied file, replace it
7566         with the original assembly path.
7567
7568         Bug #484244 fixed. NUnit tests for corlib can be run without
7569         --noshadow now.
7570
7571 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
7572
7573         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
7574         entries when the table is reallocated.
7575
7576         * icall.c: Allocate the memory used by the mono_ptr_array macros using
7577         mono_gc_alloc_fixed () since it contains GC refs.
7578
7579 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
7580
7581         * reflection.c (ensure_complete_type): New helper function to call
7582         type resolve handlers for unfinished dynamic types.
7583         (resolve_object): Call it for MonoClassFields. Fixes #483852.
7584
7585 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
7586
7587         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
7588         #483247.
7589
7590 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
7591
7592         * appdomain.c (get_shadow_assembly_location): Fix memleak.
7593
7594 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
7595
7596         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
7597         between GCHandles of type WeakTrackResurrection and the objects they
7598         point to.
7599
7600         * gc.c: Partly implement the sematics of GCHandles of type 
7601         WeakTrackResurrection: these handles should only be cleared after the
7602         finalizer of the object they are pointing to has ran.
7603
7604 2009-03-06  Mark Probst  <mark.probst@gmail.com>
7605
7606         * icall.c: Partially revert r126631 because using the jump
7607         trampolines for generic shared methods makes it superfluous.
7608
7609 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
7610
7611         * threads.c (handle_store): Create the 'threads' hash table with the proper
7612         MONO_HASH_VALUE_GC type.
7613
7614 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
7615
7616         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
7617         FIRST_GC_TRACKED.
7618
7619         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
7620         and LAST_GC_TRACKED as a GC root.
7621
7622         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
7623
7624         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
7625         the static data even if it consists of 1 reference.
7626
7627         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
7628         if there is a GC descriptor.
7629
7630         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
7631         instead of through the GC since they contain no object references.
7632
7633 2009-03-05  Mark Probst  <mark.probst@gmail.com>
7634
7635         * generic-sharing.c (instantiate_other_info): Always return a jump
7636         trampoline for method code.
7637
7638 2009-03-05  Marek Habersack  <mhabersack@novell.com>
7639
7640         * culture-info-tables.h: generated to include the en-tt culture.
7641
7642 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7643
7644         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
7645         capture the thread context.
7646
7647         * object.c (mono_async_result_new): Cache the invoke wrappers to
7648         ExecutionContext::Capture.
7649
7650 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7651
7652         * marshal.h: Add a prototype for what mono_compile_method returns
7653         for invoke wrappers.
7654
7655         * gc.c: Use the new prototype declaration.
7656
7657 2009-03-04  Geoff Norton  <gnorton@novell.com>
7658
7659         * boehm-gc.c: Add some MONO_LOG tracing for the GC
7660         * gc-internal.h:
7661         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
7662
7663 2009-03-04  Martin Baulig  <martin@ximian.com>
7664
7665         * mono-debug.h
7666         (mono_debugger_runtime_invoke): Removed.
7667
7668         * mono-debug-debugger.c
7669         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
7670
7671 2009-03-02  Martin Baulig  <martin@ximian.com>
7672
7673         * mono-debug.h
7674         (mono_debugger_unhandled_exception): Removed.
7675         (mono_debugger_handle_exception): Removed.
7676         (mono_debugger_throw_exception): Removed.
7677
7678         * mono-debug.c
7679         (mono_debug_debugger_version): Bump to 5.
7680
7681         * mono-debug-debugger.c: Moved the exception handling code to
7682         ../mini/debug-mini.c
7683
7684 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7685
7686         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
7687         finalize_objects_hash.
7688
7689         * gc.c: Use the separate lock to access the finalize_objects_hash field.
7690         
7691         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
7692         field.
7693
7694         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
7695         cache.
7696
7697         * image.c (mono_image_close): Free it.
7698         
7699         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
7700         allowing a creation of a wrapper which invokes its method using a CALLVIRT
7701         on the this argument.
7702
7703         * gc.c (run_finalize): Optimize the calling of the finalizers.
7704
7705 2009-03-03  Martin Baulig  <martin@ximian.com>
7706
7707         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
7708         of the `MonoGenericInst' changes.
7709
7710 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
7711
7712         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
7713         mono_array_class_get_cached to reduce locking contention. Extract
7714         a domain var.
7715
7716         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
7717         intermediary managed arrays. Use caching version of mono_array_new
7718         to allocate the result array.
7719
7720         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
7721
7722         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
7723
7724         * locales.c (create_names_array_idx):  Use mono_array_new_cached
7725         to reduce locking contention.
7726
7727 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7728                 
7729         * object.c (mono_method_add_generic_virtual_invocation): Put back the
7730         thunk builder code for the non-interface case.
7731
7732 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
7733
7734         * object.c (get_generic_virtual_entries): New helper function to collect
7735         the virtual generic method instances which need to be added to an IMT
7736         thunk.
7737         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
7738         Instead of creating a new IMT thunk, reset the vtable slot to the
7739         trampoline, the thunk will be created the next time the trampoline is called.
7740         (build_imt_slots): Add support for virtual generic methods in interfaces by
7741         adding to the IMT thunk all the methods registered using 
7742         mono_method_add_generic_virtual_invocation ().
7743
7744         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
7745         (struct _MonoIMTCheckItem): Ditto.
7746
7747         * object.c (mono_method_add_generic_virtual_invocation): Take a
7748         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
7749         the IMT thunk to include all items.
7750         
7751         * object.c (mono_class_create_runtime_vtable): Add a missing
7752         mono_loader_unlock ().
7753
7754 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7755
7756         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7757
7758         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
7759
7760 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7761
7762         * object-internals.h: Rename _MonoReflectionEvent to
7763         MonoReflectionMonoEvent so it reflects the right managed type.
7764         Add a MonoReflectionEvent that correctly represents System.EventInfo.
7765
7766         * icall.c:
7767         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
7768         type.
7769
7770 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7771
7772         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
7773         intermediary managed arrays. Use caching version of mono_array_new
7774         to allocate the result array.
7775
7776 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7777
7778         * reflection.c: Use cached version of mono_array_new alongside
7779         the mono_reflection_get_custom_attrs_by_type call path.
7780
7781 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7782
7783         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
7784         intermediary managed arrays. Use caching version of mono_array_new
7785         to allocate the result array.
7786
7787         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
7788
7789 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7790
7791         * icall.c: Add small implementation of a growable stack bound array.
7792
7793         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7794
7795         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7796         intermediary managed arrays. Use caching version of mono_array_new
7797         to allocate the result array.
7798
7799 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
7800
7801         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7802         helps Enum::CompareTo to be implemented without reboxing all enums
7803         to their underlying type.
7804 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7805
7806         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7807         since it acquires a global lock leading to scalability problems.
7808
7809         * profiler.c: Make the stat profiler work with multiple appdomains, this
7810         currently only works when no appdomains are unloaded.
7811
7812 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7813
7814         * appdomain.c: make the check to avoid copying when the assembly is
7815         already shadow copied actually work.
7816
7817 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7818
7819         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7820
7821         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7822         changes to the managed side.
7823
7824 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7825
7826         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7827         classes + a separate lock for it, as it is used frequently at runtime, not
7828         just during metadata loading/JIT compilation.
7829
7830         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7831         for szarrays.
7832         
7833         * object-internals.h (mono_class_from_name_cached): New macro to cache
7834         the results of the lookup locally without having to declare a static
7835         variable to hold it.
7836         (mono_class_get_field_from_name_cached): Ditto.
7837         (mono_array_class_get_cached): Ditto.
7838
7839         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7840         the new macros.
7841         
7842         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7843         slower search in metadata.
7844
7845         * pedump.c: Fix a warning.
7846
7847 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7848
7849         * reflection.c (encode_locals): Add checks for user types.
7850         (method_encode_clauses): Ditto.
7851         (method_encode_code): Ditto.
7852         (mono_image_create_token): Ditto.
7853
7854         * object-internals.h: Change the type of more fields from MonoReflectionType*
7855         to MonoObject*.
7856
7857 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7858
7859         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7860         the a thread does not suspend within 100ms.
7861
7862         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7863         in addition to StopRequested as well.
7864
7865         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7866
7867         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7868         search the method_hash before inserting a new entry, to avoid crashes when
7869         the same method is inserted multiple times, causing the old 
7870         MonoDebugMethodInfo structure to be freed by the value dtor function.
7871
7872 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7873
7874         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7875         SO_EXLUSIVEADDRUSE where available.
7876
7877 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7878
7879         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7880         runtime invoke wrappers, this time it is string ctor wrappers, which
7881         pass a dummy string as 'this' instead of their obj argument. Fixes
7882         #478473.
7883
7884 2009-02-21  Jb Evain  <jbevain@novell.com>
7885
7886         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7887         only get create_culture once.
7888
7889 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7890
7891         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7892         check before the locking.
7893         
7894         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7895         (mono_reflection_create_runtime_class): Ditto.
7896         (mono_reflection_sighelper_get_signature_local): Ditto.
7897         (mono_reflection_sighelper_get_signature_field): Ditto.
7898
7899         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7900         is a System.MonoType object or similar.
7901         (monotype_cast): New helper function to cast a MonoObject to a 
7902         MonoReflectionType object.
7903
7904         * object-internals.h: Change MonoReflectionType* members in structures to
7905         MonoObject* members to force the usage of the monotype_cast () function.
7906
7907         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7908         structures/arrays. This causes us to assert instead of crashing when 
7909         instances of user defined subclasses of System.Type are encountered.
7910
7911 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7912
7913         * cil-coff.h:
7914         * icall-def.h:
7915         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7916         win32 resource loaded from a PE file.
7917
7918         * image.c: fix mono_image_lookup_resource.
7919
7920 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7921
7922         * icall-def.h:
7923         * threads-types.h:
7924         * threads.c: added internal call for WaitHandle.SignalAndWait.
7925
7926 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7927
7928         * cominterop.c : Adding cominterop_type_from_handle and 
7929           registering it as an icall.  Replacing all references
7930           to type_from_handle.
7931
7932         Code is contributed under MIT/X11 license.
7933
7934 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7935
7936         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7937
7938         * appdomain.c: Call the tracer init function.
7939
7940         * domain-internals.h: Enable the tracer for the domain locks.
7941
7942         * image.c: Enable the tracer for image locks.
7943
7944         * loader.c: Enable the trace for the loader lock.
7945
7946         * lock-tracer.h:
7947         * lock-tracer.c: Initial implementation of the lock trace utility.
7948         The tracer requires a compile time define to be enabled and a env var
7949         to be enabled at runtime.
7950
7951 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7952
7953         * domain.c (mono_domain_code_foreach): Improve documentation.
7954
7955 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7956
7957         * appdomain.c:
7958         * generic-sharing.c:
7959         * object.c:
7960         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7961         comes first.
7962
7963 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7964
7965         * domain.c: Add mono_domain_code_* functions that perform locking
7966         around the domain codeman.
7967
7968         * domain-internals.h: Export those functions.
7969
7970         * object.c: Use new functions instead of acquiring the domain lock.
7971
7972 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7973
7974         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7975         delegate. Fixes #477396.
7976
7977 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7978
7979         * reflection.c (create_custom_attr): Get rid of alloca.
7980
7981 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7982
7983         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7984           Adding exception handling for all CCW calls.
7985
7986         Code is contributed under MIT/X11 license.
7987
7988 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7989
7990         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7991
7992         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7993         native->managed marshalling code. Fixes #476247.
7994
7995 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7996
7997         * class.c (mono_class_get_vtable_entry): Move the addition of
7998         static rgctx invoke wrappers for vtable methods here, this simplifies
7999         a lot of code and causes fewer rgctx wrappers to be created.
8000
8001         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
8002         name of the statistics to begin with an uppercase.
8003
8004 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
8005
8006         * reflection.c: Revert previous change as it breaks the build.
8007         
8008 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
8009
8010         * verify.c: Properly handle SZARRAY element type.
8011
8012         Fixes #474271.
8013
8014 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
8015
8016         * reflection.c (mono_image_create_method_token): Correctly encode
8017         MethodDef MemberRefParent token.
8018
8019         Fixes #472845.
8020
8021 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
8022
8023         * image.c (mono_image_close): Delete the critical section before
8024         freeing the memory holding it.
8025
8026 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8027
8028         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
8029         Fixes #476257.
8030
8031 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8032
8033         * pedump.c (main): Call mono_marshal_init so pedump
8034         doesn't crash.
8035
8036 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8037
8038         * loader.c (method_from_memberref): Properly fix #474271 and
8039         don't break the runtime bad.
8040
8041 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
8042
8043         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
8044         (mono_domain_alloc0): Ditto.
8045
8046 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8047
8048         * loader.c (method_from_memberref): Don't abort if the array
8049         method is not found. A regular loader failure is more informative
8050         and correct.
8051
8052         Fixes #474271.
8053
8054 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8055
8056         *loader.c: Guard MonoImage::method_cache/methodref_cache
8057         using the image lock instead of the loader lock.
8058
8059         * metadata.h: Add comments about which fields are protected by
8060         the image lock.
8061
8062 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
8063
8064         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
8065
8066         * generic-sharing.c (mono_method_construct_object_context): Remove the
8067         wrapper_type == NONE assert, it is not needed.
8068
8069 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
8070
8071         * reflection.c (clear_cached_object): New helper function.
8072         (mono_method_clear_object): New function to clear the cached reflection
8073         objects for a dynamic method.
8074
8075         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
8076         Partly fixes # 463323.
8077         
8078 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
8079
8080         * class.c:
8081         * loader.c:
8082         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
8083
8084 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
8085
8086         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
8087         take the image lock instead of the loader lock.
8088
8089         * metadata-internals.h: Export new functions.
8090
8091 2009-02-12  Miguel de Icaza  <miguel@novell.com>
8092
8093         * domain.c (app_config_parse): Remove another use of stat that is
8094         not necessary as g_file_get_contents already does the presence
8095         check. 
8096
8097 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
8098
8099         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
8100
8101         * marshal.c: Move the bstr handling code to cominterop.c.
8102
8103         * marshal.c: Remove some COM interop code missed previously.
8104
8105 2009-02-12  Miguel de Icaza  <miguel@novell.com>
8106
8107         More Paolo patches from the Wii port:
8108         
8109         * security.c: Remove ves_icall_System_Environment_get_UserName
8110         from here.
8111
8112         * icall.c: And put ves_icall_System_Environment_get_UserName
8113         here. 
8114
8115         * appdomain.c (mono_set_private_bin_path_from_config): Remove
8116         redundant call to stat that was only used to test for the file
8117         existence.   Patch from Paolo.
8118
8119         * gc.c (run_finalize): If COM is disabled, do not link in
8120         mono_marshal_free_ccw.
8121
8122         * generic-sharing.c: Use alloca.h here as well.
8123
8124 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
8125
8126         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
8127
8128 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
8129
8130         * cominterop.c cominterop.h: New files.
8131
8132         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
8133         function/typedefs which are needed by cominterop.c global.
8134
8135 2009-02-12  Mark Probst  <mark.probst@gmail.com>
8136
8137         * generic-sharing.c: Don't take the loader lock to guard image
8138         mempool allocs.
8139
8140 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8141
8142         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
8143         called without the loader lock which is required to guard MonoImage:tokens.
8144
8145 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8146
8147         * class.c:
8148         * metadata.c:
8149         * method-builder.c:
8150         * marshal.c:
8151         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
8152
8153 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8154
8155         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
8156         Rework the code to use regular mono_image_alloc/0.
8157
8158         * loader.c: Rework the code to use regular mono_image_alloc/0.
8159
8160         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
8161
8162 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
8163
8164         * object-internals.h : Fixing a typo in the 
8165           MonoReflectionComVisibleAttribute struct.
8166
8167         * marshal.c (cominterop_com_visible): Check the implemented 
8168           interfaces for ComImport.
8169
8170         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
8171           assume that bools should be treated as VARIANTBOOLs.
8172
8173         * marshal.c (emit_marshal_boolean): Adding cases for 
8174           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
8175
8176         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
8177           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
8178
8179         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
8180           should be treated as VARIANTBOOLs.    
8181
8182         Code is contributed under MIT/X11 license.
8183
8184 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8185
8186         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
8187         allocation with the image lock.
8188
8189 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8190
8191         This patch is the last of a series to remove explicit reference of MonoImage::mempool
8192         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
8193
8194         * object.c: Add mono_string_to_utf8_image.
8195
8196         * object-internals.h: Export mono_string_to_utf8_image.
8197
8198         * reflection.c: Rework all explicit references to the the image mempool to go thought
8199         the mono_image_alloc set of functions.
8200
8201 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8202
8203         This patch is the third of a series to remove explicit reference of MonoImage::mempool
8204         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
8205         and generics-sharing.c.
8206
8207         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
8208         as first argument. Note that this function remains broken as it doesn't perform locking around the
8209         mempool allocation.
8210
8211         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
8212
8213         * image.c: Add g_slist_append_image.
8214
8215         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
8216         the supplied image for allocation. Move code into mono_metadata_field_info_full.
8217
8218         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
8219         Fix all related code to do the same.
8220
8221         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
8222
8223         * metadata-internals.h: Fix the signatures.
8224
8225 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8226
8227         This patch is the second of a series to remove explicit reference of MonoImage::mempool
8228         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
8229         and similar to work using MonoImage.
8230
8231         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
8232         MonoMemPool.
8233
8234         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
8235
8236         * class.c (mono_metadata_signature_deep_dup): Same.
8237
8238         * class.c (inflate_generic_type): Same.
8239
8240         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
8241
8242         * metadata.c (mono_metadata_signature_dup_full): Same.
8243
8244         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
8245         mono_metadata_signature_dup_full.
8246
8247         * metadata.c (mono_metadata_type_dup): Same.
8248
8249         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
8250
8251         * reflection.c: Same.
8252
8253         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
8254
8255         * metadata-internals.h: Fix the signatures.
8256
8257         * class-internals.h: Same.
8258
8259 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8260
8261         This patch is the first of a series to remove explicit reference of MonoImage::mempool
8262         and use mono_image_alloc set of functions instead. 
8263
8264         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
8265         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
8266         of a MonoMemPool.
8267
8268         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
8269
8270         * class.c (g_list_prepend_mempool): Removed.
8271
8272         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
8273
8274         * image.c: Add g_list_prepend_image.
8275
8276         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
8277
8278         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
8279
8280
8281 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8282
8283         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
8284         mono_image_unlock.
8285
8286         * image.c (mono_image_init): Init the lock field.
8287  
8288         * image.c (mono_image_init): Cleanup the lock field.
8289
8290         * image.c: Add mono_image_(un)lock functions.
8291
8292 2009-02-11  Mark Probst  <mark.probst@gmail.com>
8293
8294         * class.c, class-internals.h: mono_method_get_context_general()
8295         combines the functionality of mono_method_get_context() and
8296         mini_method_get_context().
8297
8298         * generic-sharing.c, domain-internals.h:
8299         mono_method_construct_object_context() and
8300         mono_domain_lookup_shared_generic() moved from mini.
8301
8302         * icall.c (ves_icall_InternalInvoke): Handle the case where the
8303         method doesn't have the correct instantiation because it's shared
8304         generic code.  Fixes #473999.
8305
8306 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
8307
8308         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
8309
8310         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
8311         
8312 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8313
8314         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
8315
8316         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
8317
8318         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
8319         and recheck the cache for dups after it.
8320
8321         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
8322
8323         Fixes one of the deadlocks found in #473150.
8324
8325 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
8326
8327         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
8328           For Win32, add additional break conditions for accept.
8329
8330         Code is contributed under MIT/X11 license.
8331
8332 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
8333
8334         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
8335         lazily initialize the native wrapper cache.
8336         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
8337         cache, since they are different from the normal wrappers.
8338
8339         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
8340
8341         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
8342         AOT compiled native wrappers.
8343
8344 2009-02-09  Geoff Norton  <gnorton@novell.com>
8345
8346         * appdomain.h:
8347         * security-core-clr.c: Allow enabling core-clr from the embedding
8348         API.
8349
8350 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8351
8352         * socket-io.c: when requesting all the local ips, if there are no
8353         interfaces up and running, MS returns 127.0.0.1.
8354
8355 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8356
8357         * mono-perfcounters-def.h: processor time is an inverse time.
8358         Fixes bug #468625.
8359
8360 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8361
8362         * socket-io.c: an empty host name returns the list of local IPs.
8363         Fixes bug #386637 part 1/2.
8364
8365 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
8366
8367         * verify.c (mono_class_interface_implements_interface): Call
8368         mono_class_setup_interfaces ().
8369         (merge_stacks): Ditto.
8370
8371 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
8372
8373         * class.c (mono_class_setup_interfaces): New function to lazily initalize
8374         klass->interfaces.
8375         (mono_generic_class_get_class): Don't initalize klass->interfaces.
8376         (mono_generic_class_get_class): Ditto.
8377
8378 2009-02-06  U-QUACK\miguel  <miguel@quack>
8379
8380         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
8381         they live in security.c
8382
8383         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
8384         another bit from Paolo's code.
8385
8386 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
8387
8388         * object.c (build_imt_slots): Add a small optimization to avoid inflating
8389         methods which will be discarded by add_imt_builder_entry ().
8390
8391         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
8392         need to be boxed.
8393
8394         * loader.c: Add a statistics for the size of the memberref signature cache.
8395         
8396         * loader.c (find_cached_memberref_sig): New helper function.
8397         (cache_memberref_sig): Ditto.
8398
8399         * loader.c: Cache the result of parsing memberref signatures, since otherwise
8400         they will be parsed again for every generic instantiation, leading to unbounded
8401         memory growth.
8402
8403 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8404
8405         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
8406         parameters of generic methods.
8407
8408         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
8409         after the original method is copied to the inflated method.
8410         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
8411
8412         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
8413         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
8414
8415         * class.c metadata.c: Update after the changes above.
8416
8417 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8418
8419         * metadata-verify.c: Simplified error handling and added
8420         section table validation.
8421
8422 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8423
8424         * class-internals.h (MonoClassExt): New structure containing rarely used
8425         fields of MonoClass.
8426         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
8427         through a new 'ext' field.
8428
8429         * class.c (mono_class_alloc_ext): New helper function to allocate 
8430         class->ext.
8431
8432         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
8433
8434 2009-02-05  Mark Probst  <mark.probst@gmail.com>
8435
8436         * object.c (mono_object_get_virtual_method): Properly inflate
8437         generic methods.  Fixes #472692.
8438
8439 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8440
8441         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
8442         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
8443         for the parent type, the created type must be ready to be used on a generic
8444         instantiation.
8445         We fill this_arg/byval_arg if the parent is a generic instance to make sure
8446         we won't have duplicated entries in generic_inst_cache.
8447
8448         Fixes #469553.
8449
8450 2009-02-05  Miguel De Icaza  <miguel@novell.com>
8451
8452         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
8453         replace with plain BSD per the comments on the bug MONO77637.
8454
8455 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8456
8457         * class.c (mono_class_get_generic_class): New accessor function.
8458         (mono_class_get_generic_container): Ditto.
8459
8460         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
8461         fields, similar to the ones in MonoMethod.
8462
8463         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
8464         (mono_class_create_from_typedef): Set klass->is_generic if needed.
8465
8466         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
8467         
8468         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
8469         the same information as element_class->byval_arg.
8470
8471         * class.c reflection.c: Remove references to class->byval_arg.
8472
8473         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
8474         klass->enum_basetype directly.
8475
8476         * verify.c metadata.c object.c icall.c reflection.c: Use 
8477         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
8478         directly.
8479
8480 2009-02-04  Miguel de Icaza  <miguel@novell.com>
8481
8482         * icall-def.h: Remove internal calls for sockets when
8483         DISABLE_SOCKET is defined, file system writing features when the
8484         OS only support reading and not writing data and Policy support if
8485         the Policy is disabled.
8486         
8487         * image.c (do_mono_image_open): Apply Paolo's patches for using
8488         mono_file_map_ APIs here.
8489
8490         * assembly.c: Add support for platforms to avoid prefix
8491         auto-detection. 
8492
8493 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
8494
8495         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
8496         warning.
8497
8498         * class.c (mono_class_inflate_generic_class): New helper function.
8499
8500         * class.c: Use mono_class_inflate_generic_class in a few places. Add
8501         statistics for inflated methods/classes.
8502
8503         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
8504
8505         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
8506         the call is made from Delegate.CreateDelegate () for the invoke method of
8507         a delegate.
8508
8509         * loader.c: Add a statistics for the memory occupied by inflated signatures.
8510
8511         * metadata.c (mono_metadata_signature_size): New helper function.
8512
8513         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
8514         generic instances.
8515
8516         * metadata.c (inflated_method_in_image): Avoid calling 
8517         mono_method_signature () if the method does not already have a signature.
8518
8519 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8520
8521         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
8522         valuetype is compatible with target type, check by inheritance as a
8523         VT is not really compatible with System.ValueType, for example.
8524
8525         * verify.c (do_invoke_method): Improve error message.
8526
8527         * verify.c (do_box_value): If boxing a nullable, use the type argument
8528         on stack instead.
8529
8530         * verify.c (do_newobj): Improve error message.  
8531
8532         Fixes #469549.
8533
8534 2009-02-03  Miguel de Icaza  <miguel@novell.com>
8535
8536         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
8537
8538 2009-02-03  Mark Probst  <mark.probst@gmail.com>
8539
8540         * generic-sharing.c: Don't hold domain lock when calling
8541         instantiate_other_info().  Fixes #471958.
8542
8543         * domain-internals.h, loader.c: Describe locking policy of domain
8544         lock vs loader lock.
8545
8546 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8547
8548         * verify.c (mono_delegate_signature_equal): Make it possible to check
8549         first-arg-bound delegates to static method.
8550
8551         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
8552         static methods with the first arg bound.
8553
8554         Fixes #469529.
8555
8556 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8557
8558         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
8559         errors.
8560
8561         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
8562         under strict mode. Any type, when boxed can be seen as a reference type.
8563
8564         Fixes #469528.
8565
8566 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8567
8568         * object.h: The lower bound of an array is a signed integer value.
8569         Introduce mono_array_lower_bound_t typedef. It should be used instead of
8570         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
8571
8572         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
8573         calculate the upper bound.
8574         
8575         Fixes #471252.
8576
8577 2009-02-02  Miguel de Icaza  <miguel@novell.com>
8578
8579         From Paolo's work, refactored, cleared up:
8580         
8581         * threadpool.c, icall.c: ifdef code that requires a working socket
8582         stack.
8583
8584         * metadata.c (mono_metadata_field_info): Do not attempt to return
8585         a value from a function declared as void.
8586
8587         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
8588         from the console stack.
8589
8590         * assembly.c: use strrchr instead of rindex.
8591
8592         * class.c, object.c, marshal.c, icall.c, reflection.c: include
8593         alloca.h on systems that have it.
8594
8595         * environment.c: Avoid code that uses stuff from
8596         HAVE_SYS_UTSNAME_H
8597         
8598         * appdomain.c: Include sys/time.h.
8599
8600         * console-io.c: include sys/ioctl.h if it is available.
8601
8602 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
8603
8604         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
8605
8606         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
8607         the method builder.
8608
8609         * marshal.c: Set mb->skip_visibility instead of setting it on the method
8610         after it was created and cached, as the later is not thread safe.
8611         
8612 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8613
8614         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
8615         called while the debugging module is not initialized. Fixes #471669.
8616
8617 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
8618
8619         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
8620
8621         Fixes #471255.
8622
8623 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8624
8625         * generic-sharing.c (lookup_or_register_other_info): Make sure the
8626         loader lock is not taken while the templates lock is held.  Fixes
8627         #471089.
8628
8629 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8630
8631         * metadata.c (type_in_image): Added a check to fix a monodis
8632         crash.
8633
8634 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8635
8636         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
8637         nullable arguments.
8638
8639         * object.c (mono_runtime_invoke_array): Ditto.
8640         
8641         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
8642         freeing wrappers of dynamic methods.
8643
8644         * loader.c (mono_free_method): Call it. Fixes #463323.
8645         
8646         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
8647         methods taking vtype/byref arguments, to fix yet another bug caused by
8648         the sharing of runtime invoke wrappers. Partly fixes #471259.
8649
8650 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
8651
8652         * debug-mono-symfile.c (check_line): Return NULL instead of returning
8653         <first file in file table>:1 when the IL offset does not have an associated
8654         line number.
8655
8656 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
8657
8658         * mono-debug.c (mono_debug_lookup_locals): New function to return local
8659         variable info for a method.
8660
8661         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
8662         
8663 2009-01-30  Jb Evain  <jbevain@novell.com>
8664
8665         * pedump.c: reuse code from monodis to make sure pedump honors
8666         MONO_PATH, which is needed to verify net_2_1 assemblies.
8667
8668 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
8669
8670         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
8671         there is no line number info.
8672
8673 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
8674
8675         Avoid some MonoType allocations
8676         * reflection.c (mono_reflection_initialize_generic_parameter):
8677         Reuse MonoType from param->pklass rather than allocating one.
8678         (mono_dynamic_image_free): Update to changes.
8679
8680 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8681
8682         Rearrange some code to improve consistency
8683         * reflection.c (mono_reflection_setup_generic_class): Move body ...
8684         (mono_reflection_initialize_generic_parameter): ... here.
8685
8686 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
8687
8688         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
8689         with type constraints as an experiment.
8690
8691         * boehm-gc.c (on_gc_notification): Update mono_stats.
8692
8693 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8694
8695         Avoid some allocations
8696         * class-internals.h (_MonoGenericInst::type_argv): Convert from
8697         pointer to tail array to avoid extra allocation.
8698         * metadata.c (free_generic_inst): Update to changes.
8699         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
8700         on-stack struct.
8701
8702 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
8703
8704         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
8705         return TRUE if the two type objects are the same.
8706
8707 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8708
8709         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
8710         (mono_class_native_size): Use klass->marshal_info->min_align instead of
8711         klass->min_align, since klass->min_align contains the managed alignment,
8712         while the native alignment can be different, like for longs on x86.
8713         Fixes #469135.
8714
8715         * class-internals.h (MonoMarshalType): Add a min_align field.
8716
8717 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
8718
8719         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
8720         the 1.0 format.
8721
8722 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8723
8724         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
8725         some comments about the usage of the used_regs field.
8726
8727         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
8728         Fixes #469217.
8729
8730 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
8731
8732         * appdomain.c: return NULL instead of throwing FileNotFoundException
8733         when LoadAssembly() fails.
8734
8735 2009-01-23  Mark Probst  <mark.probst@gmail.com>
8736
8737         * metadata.c (mono_metadata_generic_param_equal): Only compare the
8738         image if the owner is NULL.  Fixes the AOT failures.
8739
8740 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
8741
8742         * metadata.c (mono_metadata_load_generic_params): Initialize the 
8743         MonoGenericParam structure using memset so the image field is initialized
8744         as well.
8745
8746 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8747
8748         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
8749         a plain store.
8750
8751 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
8752
8753         * class.c (mono_class_setup_vtable_general): In the generic instance
8754         optimization, set method->slot for abstract virtual methods. Fixes part of
8755         #467834.
8756
8757 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8758
8759         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
8760         which signals that the unloading has started but all appdomain services must
8761         remain operational.
8762
8763         * appdomain.c (mono_domain_unload): The initial state for unloading now
8764         is unloading_start and we switch to unloading after the managed call to
8765         AppDomain::DomainUnload has finished.
8766
8767         The new unloading state has to be created because managed code in the
8768         DomainUnload event can depend on things like the threadpool still working.
8769         The domain must remain fully functional while the event executes.
8770
8771         This shown as an issue due to Process::WaitForExit, which waits for
8772         async reads of stdout and stderr to complete. Since those are processed
8773         in the threadpool the code deadlocks because the DomainUnload callback 
8774         waits for the async read finished event, which should have been set by a
8775         threadpool job but has been discarded due to the domain been in unload
8776         state.
8777
8778 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8779
8780         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
8781         image must match.
8782
8783 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8784
8785         * reflection.c (resolve_object): For fields, inflate the class and
8786         then get the field in the inflated class.
8787
8788 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8789
8790         * object-internals.h (struct _MonoException): Added a comment
8791         explaining the new use of trace_ips.
8792
8793 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8794
8795         * generic-sharing.c (inflate_other_data): Inflate array methods
8796         correctly.
8797
8798         * loader.c, class-internals.h: Rename search_in_array_class() to
8799         mono_method_search_in_array_class() and make it non-static.
8800
8801 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8802
8803         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8804         Hopefully fixes #458168.
8805
8806 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8807
8808         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8809         as it is performed elsewhere.
8810
8811         Code is contributed under MIT/X11 license
8812
8813 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8814
8815         * mono-perfcounters-def.h: Add counters for asp.net requests total and
8816         requests queued.
8817         * object.c (mono_raise_exception): Increment the exceptions total
8818         counter when an exception is thrown.
8819         * class-internals.h: Add a location for storing the total number of
8820         asp.net requests served.
8821         * mono-perfcounters.c: Implement update support for asp.net counters
8822         from the class libraries. Implement read support for asp.net counters
8823         and exceptions total counter.
8824
8825 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8826
8827         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8828         accessing klass->methods. Fixes #467385.
8829
8830 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8831
8832         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8833         for byval arguments without an [Out] attribute. Fixes #467212.
8834
8835         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8836         Fix compilation under android.
8837         
8838         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8839         processed, scan them directly after they are copied, to achieve better locality
8840         and cache usage.
8841
8842         * socket-io.c: Applied patch from Koushik Dutta
8843         (koush@koushikdutta.com). Disable IPV6 when running under android.
8844
8845 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8846
8847         * icall.c (ves_icall_InternalExecute): Add write barriers.
8848
8849         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8850         the GC code.
8851
8852         * sgen-gc.c: Implement write barriers in IL code.
8853
8854 2009-01-17  Geoff Norton  <gnorton@novell.com>
8855
8856         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8857
8858 2009-01-17  Geoff Norton  <gnorton@novell.com>
8859
8860         * image.c: When unloading the image->references table, there can be gaps
8861         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8862         when unloading an appdomain.
8863
8864 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8865
8866         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8867         speed up ptr-in-nursery checks.
8868
8869         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8870         threads_lock () to prevent deadlocks.
8871
8872         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8873         does not need to be scanned during minor collections, since writes to it
8874         must use write barriers.
8875
8876 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8877
8878         * metadata-verify.c: Add pe nt header verification.
8879         
8880 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8881
8882         * gc.c: Fix a few warnings when using SGEN.
8883
8884 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8885
8886         * metadata-verify.c: Add pe optional header verification.
8887
8888 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8889
8890         * sgen-gc.c: Add support for user defined marker functions, used by
8891         MonoGHashTable to avoid registering a GC root for every hash node.
8892
8893 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8894
8895         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8896         non-pinned roots into separate hashes to avoid having to traverse them
8897         in functions which are only interested in one kind.
8898
8899 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8900
8901         * metadata-verify.c: Add pe header machine field verification.
8902         
8903 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8904
8905         * metadata-verify.c: Add pe header size verification.
8906
8907 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8908
8909         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8910         using the GC, they don't contain references.
8911
8912         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8913
8914 2009-01-13  Geoff Norton  <gnorton@novell.com>
8915
8916         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8917         AppDomains created on the native side can be cleaned up on the native side.
8918
8919 2009-01-13  Geoff Norton  <gnorton@novell.com>
8920
8921         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8922         as well as the managed api.
8923
8924 2009-01-13  Geoff Norton  <gnorton@novell.com>
8925
8926         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8927         with a MonoAppDomain initialized against it.
8928
8929 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8930
8931         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8932         
8933         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8934
8935         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8936         into the wrapper caches. Fixes #465700.
8937
8938         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8939         method builder.
8940         (mono_mb_create_method): Set the clauses from the method builder.
8941
8942 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8943
8944         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8945         Patch from Makoto Kishimoto.
8946
8947 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8948
8949         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8950         encoding them as ROOT_DESC_COMPLEX.
8951         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8952
8953 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8954
8955         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8956         no longer point to the nursery.
8957
8958         * sgen-gc.c: Add a few comments/FIXMEs.
8959         
8960         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8961
8962         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8963         initialization of the various _method variables thread safe. Fixes
8964         #465377.
8965
8966 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8967
8968         * domain.c, domain-internals.h: Remove the shared_generics_hash
8969         and its lookup functions.
8970
8971 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8972
8973         * socket-io.c:  Fixing the MSVC build. 
8974
8975         Code is contributed under MIT/X11 license.
8976
8977 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8978
8979         * metadata-verify.c: Add pe header watermark verification.
8980
8981 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8982
8983         * metadata-verify.c: Add lfanew verification.
8984
8985 2009-01-12  Jb Evain  <jbevain@novell.com>
8986
8987         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8988         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8989
8990 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8991
8992         * socket-io.c: Fix the build.
8993
8994         * environment.c: Fix an #ifdef.
8995
8996 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8997
8998         * threadpool.c (async_invoke_thread): Handle the wait function returning
8999         WAIT_IO_COMPLETION as well.
9000         (async_invoke_io_thread): Ditto.
9001
9002 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
9003
9004         * threads.c: Fixing the Windows build.
9005
9006         Code is contributed under MIT/X11 license.
9007
9008 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
9009  
9010         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
9011         interrupt a wait.
9012         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
9013         the thread to wait again.
9014
9015 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
9016
9017         * metadata-verify.c: Initial skeleton of the metadata verifier.
9018
9019         * pedump.c: Add support for the metadata verifier.
9020
9021         * verify-internal.h: Export the whole assembly metadata verifier function.
9022
9023 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
9024
9025         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
9026
9027 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
9028
9029         * Makefile.am: Upgrade dtrace-prelink.sh location.
9030
9031 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
9032
9033         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
9034         well. Otherwise the shutdown deadlock that happens on unix will can happen
9035         as well.
9036         If the main thread code finishes too fast it's possible that the finalizer
9037         thread won't have executed yet, won't record itself as the finalizer thread
9038         and the shutdown sequence will wait on it forever.
9039
9040 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
9041
9042         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
9043         with MSVC.
9044
9045 2009-01-08  Miguel de Icaza  <miguel@novell.com>
9046
9047         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
9048         Robert Jordan for pointing this out.
9049
9050 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
9051
9052         * icall.c
9053         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
9054         ves_icall_System_IO_DriveInfo_GetDriveType.
9055
9056 2009-01-07  Miguel de Icaza  <miguel@novell.com>
9057
9058         * icall.c: Wrap calls to mono_strtod in CriticalSection
9059         invocations when using eglib, to work around #464316.
9060
9061 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
9062
9063         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
9064         return value of GetCurrentDirectory to never access unitialized memory.
9065
9066 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
9067
9068         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
9069         return value of GetCurrentDirectory and expand the buffer if needed.
9070
9071         Fixes #459094.
9072
9073 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
9074
9075         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
9076           Adding a call to mono_init_com_types.
9077
9078         Code is contributed under MIT/X11 license.
9079
9080 2009-01-07  Geoff Norton  <gnorton@novell.com>
9081
9082         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
9083         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
9084         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
9085         be the value of the ip buffer.
9086
9087 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9088
9089         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
9090         interfaces_packed here.
9091
9092         Fixes part of #463294.
9093
9094 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9095
9096         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
9097
9098         Fixes part of #463294.
9099
9100 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9101
9102         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
9103         is a boxed complex as well.
9104
9105         Fixes part of #463294.
9106
9107 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9108
9109         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
9110         control if a methodspec should be created for the generic method definition from external assemblies.
9111         Caching of methodspec is done using the handleref hash table.
9112
9113         Fixes #462592.
9114
9115 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
9116
9117         * loader.c (find_method): When searching the interfaces of a class
9118         check the transitive closure of implemented interfaces.
9119
9120         Fixes #463303.
9121
9122 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
9123
9124         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
9125         
9126 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
9127
9128         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
9129         interfaces calculation to fill_valuetype_array_derived_types.
9130
9131         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
9132         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
9133         for example.
9134
9135         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
9136         interfaces for valuetypes if needed.    
9137
9138         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
9139         for their basetype as well. Types are array expanded if rank is > 0.
9140
9141         Fixes #400716.
9142
9143 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
9144
9145         * socket-io.h : Changing the signature of
9146           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
9147           the blocking state.
9148
9149         * icall-def.h :  Changing the signature of
9150           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
9151
9152         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
9153           For Windows only.  Avoid blocking when calling accept by
9154           querying for a connection via select.  The loop also queries
9155           the thread state every 1000 micro seconds for the thread
9156           stop state.  This will avoid the process hanging on shutdown
9157           when using a TcpChannel that is never connected to.
9158
9159         Code is contributed under MIT/X11 license.
9160
9161 2008-12-30  Marek Safar  <marek.safar@gmail.com>
9162
9163         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
9164
9165 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
9166
9167         * class.c (get_implicit_generic_array_interfaces): Extract common
9168         code to a helper function making it a lot easier on the eyes.
9169
9170 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
9171
9172         * class.c (get_implicit_generic_array_interfaces): If the internal
9173         enumerator is an interface inflate System.Object instead of itself.
9174
9175         Fixes #461261.
9176
9177 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
9178
9179         * object.c (mono_runtime_invoke_array): Don't assert with
9180         byref nullable types.
9181
9182         * marshal.c (mono_marshal_get_runtime_invoke): To handle
9183         byref nullables we unbox the object and store it on the
9184         stack. 
9185         We can't use the boxed object since it is the T of Nullable<T>
9186         and the boxed representation of a nullable it's underlying type
9187         or null.
9188         We could cheat and create a boxed nullable and use the same
9189         machinery of other byref VTs but this feels like a hack and
9190         using the stack has the bonus of reducing heap pressure.
9191
9192         Fixes #461941.
9193
9194 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
9195
9196         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
9197         return value.
9198
9199         Fixes #461867.
9200
9201 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
9202
9203         * icall-def.h : Adding an internal call definition for 
9204           System.Environment.internalBroadcastSettingChange.
9205
9206         * icall.c : Adding a Windows only implementation to broadcast a 
9207           WM_SETTINGCHANGE when an environment variable has changed.
9208
9209         Code is contributed under MIT/X11 license.
9210
9211 2008-12-19  Mark Probst  <mark.probst@gmail.com>
9212
9213         * class.c, class-internals.h: Made
9214         mono_class_has_parent_and_ignore_generics() non-static.
9215
9216 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
9217
9218         * image.c: deal with the mmap failing when loading an image.
9219
9220 2008-12-17  Geoff Norton  <gnorton@novell.com>
9221
9222         * threadpool.c: Ensure that the io_queue_lock is initialized
9223         in all circumstances, as we always attempt to cleanup against it.
9224
9225 2008-12-17  Miguel de Icaza  <miguel@novell.com>
9226
9227         * icall.c (ves_icall_System_Environment_get_Platform): For
9228         compatibility reasons for existing client code we will keep
9229         returning 4 for a while.   
9230
9231         For how long will depend on the documentation being updated, and
9232         for us to give client code a chance to be updated.
9233
9234         This reverts the original decison on #433108 since we did not
9235         catch roughly 33 instances of the broken code in our own source
9236         code base, we did not catch failures on the buildbots, and QA did
9237         not bring this as a problem.
9238
9239         Only today I found some customer's code breaking due to our own
9240         class libraries not being fully updated and tracked it down to
9241         this change.  I am reverting it because if we could not even get
9242         our story straight in our own code base, how can we hope that our
9243         end user code be fixed?
9244
9245         As of this morning, our Wiki page that documents how to detect
9246         Unix had not been fixed.    
9247
9248 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
9249
9250         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
9251
9252         * class.c (mono_class_get_fields): Handle loading errors.
9253
9254 2008-12-12 Mark Mason <mmason@upwardaccess.com>
9255
9256         * metadata.c (mono_type_stack_size_internal): If SIZEOF_REGISTER > SIZEOF_VOID_P then use SIZEOF_REGISTER as the size and alignment of the stack slots.
9257         
9258 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
9259
9260         * mono-perfcounters.c: avoid warning.
9261
9262 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9263
9264         * reflection.c (ensure_runtime_vtable): Work on generic instances and
9265         make sure all interfaces have MonoClass::interface_id set.
9266
9267         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
9268         method table is property set.
9269
9270 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9271
9272         * class.c: New function mono_class_setup_interface_id that setup
9273         MonoClass::interface_id if needed.
9274
9275         * class-internals.h: Export new function.
9276
9277 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9278
9279         * class.c: Add code to sanity check the vtable after setup_vtable_general
9280         has done it's work.
9281
9282 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
9283
9284         * icall.c: make Assembly.GetExecutingAssembly work properly when
9285         reflection is used to invoke the method.
9286         Bug #321781 fixed.
9287
9288 2008-12-11  Mark Probst  <mark.probst@gmail.com>
9289
9290         * metadata/generic-sharing.c: Look for constraints in all type
9291         arguments, not just the first one.
9292
9293 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9294
9295         * appdomain.c: return the correct CodeBase for an Assembly instance
9296         that was loaded from the shadow-copy directories.
9297         Bug #458190 fixed.
9298
9299 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
9300
9301         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
9302
9303         * sgen-gc.c (check_object): New debugging helper function.
9304
9305         * object.c: Fix calls to mono_value_copy_array ().
9306
9307 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9308
9309         * class.c (mono_class_setup_fields): If working on an inflated class
9310         first check if the generic definition did init with success.
9311
9312         Fixes #445361.
9313
9314 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9315
9316         pedump.c (main): Fix a warning.
9317
9318 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
9319
9320         * object-internals.h : Adding a definition for 
9321           MonoReflectionComVisibleAttribute.
9322
9323         * marshal.c (cominterop_com_visible) :  Method added to check the 
9324           ComVisible attribute of a class.
9325
9326         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
9327           cominterop_raise_hr_exception added to consolidate common code 
9328           to raise hr exceptions.
9329
9330         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
9331           if a managed class should support IDispatch.
9332
9333         * marshal.c 
9334           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
9335           Added additional checks for managed object when getting 
9336           an IDispatch interface.
9337
9338         Code is contributed under MIT/X11 license.
9339
9340 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9341
9342         pedump.c (main): Handle mono_get_method () returning NULL. 
9343
9344 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
9345
9346         * marshal.h: Fix a warning.
9347
9348 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
9349
9350         * marshal.c : Adding cominterop_release_all_rcws to release all
9351           runtime callable wrappers held by the runtime.
9352
9353         * marshal.h : Adding declaration for cominterop_release_all_rcws.
9354           
9355         Code is contributed under MIT/X11 license.
9356
9357 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
9358
9359         * metadata.c (mono_image_alloc_lock): New helper function.
9360         (mono_image_alloc0_lock): Ditto.
9361
9362         * metadata.c: Use the alloc_lock () helper functions for allocating
9363         memory from the image mempool.
9364
9365 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
9366
9367         * class.c (mono_class_from_generic_parameter): Document it's
9368         locking behavior. Fix double checked locking here, we stored in
9369         param->pklass a partially initialized MonoClass and no membar was used.
9370
9371 2008-12-05  Marek Habersack  <mhabersack@novell.com>
9372
9373         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
9374         (3) functions are present in the C library use them to do the
9375         job. If they are absent, make sure that the sum of int_part and
9376         dec_part is rounded before returning. This is necessary due to the
9377         division of dec_part by the power of 10 before the final addition
9378         is performed - if the result is not rounded in some cases it will
9379         yield invalid results.
9380
9381 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
9382
9383         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
9384         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
9385         instruction instead of a pointer constant.
9386
9387 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
9388
9389         * loader.c (mono_method_get_header): Do most of the work outside the
9390         loader lock, to avoid assembly load hook deadlocks.
9391
9392         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
9393         (mono_metadata_parse_type_full): Ditto.
9394
9395 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
9396
9397         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
9398         Make the stack depth fixed. Ensure proper argument passing to the backtrace
9399         funtions. Finally, use a lock to produce well ordered output.
9400
9401         The lock looks silly, as all calls to the corlib mempool should be guarded
9402         with the loader lock, but for some reason this fact doesn't help. 
9403
9404         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
9405
9406 2008-12-02  Mark Probst  <mark.probst@gmail.com>
9407
9408         * socket-io.c: 64 bit big-endian fixes.
9409
9410 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
9411
9412         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
9413         targets that require strict compatibility between the types.
9414
9415         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
9416         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
9417         Kill the strict argument and create a new one valuetype_must_be_boxed.
9418
9419         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
9420         state that all valuetypes must be boxed.
9421
9422         Fixes #448560.
9423
9424 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
9425
9426         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
9427         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
9428
9429         Contributed under MIT/X11 license.
9430
9431 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
9432
9433         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
9434         the inflate_generic_type machinery should handle it.
9435
9436         This avoids a crash when the field's flags is zero and it's type is
9437         a primitive.
9438         What happens is that mono_metadata_parse_type_full will see that opt_attrs
9439         is zero and will return one of the cached built-in primitive types. Since
9440         those types live in read-only memory, the code that copies it crashes.  
9441
9442 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9443
9444         * object.c: Don't put function descriptors into generalized IMT
9445         thunks.
9446
9447 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9448
9449         * class.c: Enable generic code sharing on PPC64.
9450
9451 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9452
9453         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
9454         from mini/mini.c.
9455
9456         * generic-sharing.c: Allocate the method template slists from the
9457         image mempool so it doesn't leak.
9458
9459 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
9460
9461         * class.c (generic_array_methods): Release the linked list.
9462
9463 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9464
9465         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
9466         invocation to g_utf16_to_utf8().
9467
9468 2008-11-26  Mark Probst  <mark.probst@gmail.com>
9469
9470         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
9471         arguments on big endian archs.
9472
9473 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9474
9475         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
9476         the type name (test added in corlib).
9477
9478 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9479
9480         * pedump.c: initialize perf. counters. Fixes a segv.
9481
9482 2008-11-25  Martin Baulig  <martin@ximian.com>
9483
9484         * mono-debug-debugger.c
9485         (mono_debugger_runtime_invoke): Return the exception object if an
9486         exception was thrown.  Visual Studio displays the exception object
9487         in the locals window.
9488
9489 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9490
9491         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
9492         ftnptr.
9493
9494 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9495
9496         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
9497         MONO_TYPE_U are sizeof (gpointer), too.
9498
9499 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9500
9501         * marshal.c (mono_type_native_stack_size): Fixed size and
9502         alignment for reference types.
9503
9504 2008-11-23  Mark Probst  <mark.probst@gmail.com>
9505
9506         * class.c (mono_class_generic_sharing_enabled): Disable generic
9507         code sharing for PPC64.
9508
9509 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
9510
9511         * icall.c (mono_method_get_equivalent_method): Make sure
9512         method->klass->methods is inited before looping over it.
9513
9514 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
9515
9516         * object.c: when calling ExecuteAssembly in a newly created domain,
9517         the configuration file and application base are already set up.
9518         Bug #446353 take 2 fixed.
9519
9520 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
9521
9522         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
9523         Fixes #444715. Fix a warning.
9524
9525 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
9526
9527         * appdomain.c: write the full path of the assembly to the .ini file
9528         created when "shadow-copying"
9529         Bug #446353 fixed.
9530
9531 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
9532
9533         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
9534         if signature==FALSE.
9535
9536 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9537
9538         * marshal.h : Fix the cygwin build.
9539            marshal.c:12442: undefined reference to `_IID_IMarshal'
9540           
9541         Code is contributed under MIT/X11 license.
9542
9543 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9544
9545         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
9546           free threaded marshaler when QueryInterface is called on a COM callable
9547           wrapper requesting the IMarshal interface.
9548           
9549         Code is contributed under MIT/X11 license.
9550
9551 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
9552
9553         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
9554
9555         * reflection.c (mono_type_get_object): Special case the very common
9556         void type.
9557
9558         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
9559         hold typeof(void).
9560
9561 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
9562
9563         * process.h : Adding method declaration for
9564           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9565           
9566         * process.c : Adding implementation for
9567           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9568           
9569         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
9570           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9571
9572         Code is contributed under MIT/X11 license.
9573
9574 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
9575
9576         * appdomain.c (unload_thread_main): Clean up threadpool by
9577         calling mono_thread_pool_remove_domain_jobs.
9578
9579         * domain-internals.h (struct _MonoDomain): Add new fields to
9580         help coordinate the cleanup of the threadpool.
9581
9582         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
9583         that cleans up the threadpool of all jobs associated with an appdomain.
9584         It does that by cleaning up the queues and making sure all active
9585         threads are accounted.
9586
9587         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
9588         unloaded or in the process of. Take this is such way that there is
9589         no race condition between another thread starting the unload and the
9590         current thread acknowledging it.
9591
9592         * threadpool.c (async_invoke_thread): Same.
9593
9594         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
9595         firing the new thread.
9596
9597         * threadpool.c (start_tpthread): Same.
9598
9599         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
9600
9601         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
9602
9603 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
9604
9605         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9606         Add support for DuplicateHandle.
9607         
9608         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9609         Add support for DuplicateHandle.
9610         
9611         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9612         Add support for DuplicateHandle.
9613
9614         Code is contributed under MIT/X11 license.
9615
9616 2008-11-06  Mark Probst  <mark.probst@gmail.com>
9617
9618         * class-internals.h: Make min_align into a whole byte.
9619
9620         * class.c: Set min_align for SIMD types to 16.
9621
9622 2008-11-05  Geoff Norton  <gnorton@novell.com>
9623
9624         * attach.c: Default the attacher to enabled for all cases including
9625         embedded.
9626
9627 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9628
9629         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
9630         change r117650.
9631
9632 2008-11-04  Mark Probst  <mark.probst@gmail.com>
9633
9634         * monitor.c, monitor.h: New function for querying offsets of
9635         members of MonoThreadsSync.
9636
9637 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9638
9639         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
9640         to speed up this function and to avoid the boundless memory growth caused by
9641         the signature_dup () calls.
9642
9643 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
9644
9645         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
9646         wrapper.
9647
9648         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
9649         by 1 bit.
9650
9651         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
9652
9653 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9654
9655         * appdomain.c:
9656         * domain-internals.h: made mono_set_private_bin_path_from_config()
9657         "internal".
9658         * object.c: call the above function after setting the configuration
9659         file path for the root domain.
9660         Fixes bug #314478.
9661
9662 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9663
9664         * assembly.c: when the assembly is loaded from an absolute path, end
9665         basedir with a directory separator.
9666         Bug #440781 fixed.
9667
9668 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9669
9670         * monitor.c (mono_monitor_get_fast_enter_method): If
9671         CompareExchange is not available, don't create the fastpath
9672         instead of asserting.  (The method is missing in the 1.1 profile.)
9673
9674 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9675
9676         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
9677
9678         * monitor.c, monitor.h: Code for generating Monitor.Enter and
9679         Monitor.Exit IL fastpaths.
9680
9681 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9682
9683         * class.c (mono_class_create_from_typedef): Added Vector2ul.
9684
9685 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9686
9687         * class.c (mono_class_create_from_typedef): Added Vector2l.
9688
9689 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9690
9691         * class.c (mono_class_create_from_typedef): Added Vector2d.
9692
9693 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
9694
9695         * appdomain.c: translate \ into / for cache_path.
9696         * domain-internals.h: new mono_is_shadow_copy_enabled().
9697         * icall.c: (fill_reflection_assembly_name) do the same path
9698         manipulations that get_code_base does.
9699         (get_code_base) use mono_is_shadow_copy_enabled.
9700
9701 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
9702
9703         * appdomain.c: shadow-copied assemblies go to CachePath +
9704         ApplicationName when both are set. DynamicBase has nothing to do with
9705         shadow copies.
9706         Bug #406877 fixed.
9707
9708 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
9709
9710         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
9711         STANDALONESIG table.
9712
9713         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
9714         standalone signatures.
9715
9716         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
9717         comparison code: instead of comparing the signatures using a custom
9718         equals function, transform them to a common signature and compare that. This
9719         works better with AOT.
9720
9721 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
9722
9723         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
9724
9725         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
9726         call for generic instances.
9727         (mono_class_setup_properties): Call setup_properties () before accessing
9728         gklass->properties.
9729
9730         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9731         over the virtual methods of a class using metadata if possible, avoiding the
9732         creation of MonoMethod's for non-virtual methods.
9733         
9734         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9735         get_virtual_methods () to iterate over the virtual methods of classes.
9736
9737 2008-10-25  Martin Baulig  <martin@ximian.com>
9738
9739         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
9740
9741 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9742
9743         * class.c (mono_class_create_from_typedef): Added Vector4i.
9744
9745 2008-10-24  Mark Probst  <mark.probst@gmail.com>
9746
9747         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
9748         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
9749         special-casing applies to eliminate the call completely.
9750
9751 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9752
9753         * class.c (mono_class_create_from_typedef): Added Vector8s.
9754
9755 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
9756
9757         * class.c (mono_class_create_from_typedef): Added Vector16sb.
9758
9759 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9760
9761         * icall.c: get rid of annoying warning.
9762
9763 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9764
9765         * threadpool.c: in 1.x, if you change the background status of the
9766         threadpool thread, it's not reset.
9767         Remove unnecessary calls to SetState.
9768
9769 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9770
9771         * threadpool.c: asynchronously create a set of idle threads upon first
9772         use of the threadpool. SetMinThreads will now start the appropriate
9773         number of idle threads if they are not already running. The default is
9774         1 threadpool thread per CPU. Increased the maximum number of threads
9775         per CPU to 10.
9776
9777 2008-10-22  Martin Baulig  <martin@ximian.com>
9778
9779         Revert r116521 from Zoltan, it breaks the debugger:
9780
9781         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9782         over the virtual methods of a class using metadata if possible, avoiding the
9783         creation of MonoMethod's for non-virtual methods.
9784         
9785         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9786         get_virtual_methods () to iterate over the virtual methods of classes.
9787
9788 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9789
9790         * threads.c: when creating a threadpool thread, set its state to
9791         'background'.
9792         * threadpool.c: reset the background state of a threadpool thread
9793         after finishing each work item
9794         Bug #437888 fixed.
9795
9796 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9797
9798         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9799         
9800         * class.c (mono_class_setup_vtable_general): Add an optimized version for
9801         generic instances which works by inflating the methods in the container
9802         class's vtable.
9803
9804         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9805         variant which doesn't make a copy if no inflation was done.
9806         (mono_class_setup_fields): Use it.
9807
9808         * metadata.c (mono_metadata_get_shared_type): New helper function to
9809         return a shared instance of a given MonoType.
9810
9811         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9812         a copy of most non-generic types.
9813
9814 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9815
9816         * threadpool.c: remove one more GetSystemInfo () call.
9817
9818 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9819
9820         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9821         use the code in mono-proclib.h to get processor information.
9822
9823 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9824
9825         * appdomain.c: fixed the logic that determines whether assemblies in a
9826         directory are "shadow-copied" or not. Bug #433483 fixed.
9827
9828 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9829
9830         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9831         warning.
9832
9833 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9834
9835         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9836         returning a vtype.
9837
9838         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9839         reflection.c: Use mono_field_get_name () for accessing a field's name.
9840
9841         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9842         class.c
9843
9844         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9845         field.
9846
9847         * loader.c (find_method_in_class): Reenable the metadata optimization by
9848         not using it for generic instances.
9849
9850         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9851         data/def_type fields from MonoClassField into a separate structure.
9852         (struct MonoClassField): Remove data/def_type fields.
9853         (struct _MonoClass): Add a 'field_def_values' array to store the default
9854         values/RVA for fields.
9855
9856         * class.c reflection.c: Update after the changes.
9857         
9858         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9859         for accessing field->data.
9860
9861         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9862
9863         * loader.c (find_method_in_class): Revert the last change for now as
9864         it breaks Mono.C5 unit tests.
9865
9866         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9867         'field_generic_types' and 'field_objects' which contain the information
9868         previously stored in MonoInflatedField.
9869         (MonoInflatedField): Delete.
9870         (struct _MonoClassField): Delete 'generic_info' field.
9871
9872         * reflection.c: Store the information which was previously in 
9873         field->generic_info in MonoDynamicGenericClass instead.
9874
9875         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9876         MonoClassField changes.
9877
9878 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9879
9880         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9881         store the value inside the data array of the MonoMethodWrapper.
9882         This saves memory, is faster and fixes the lifetime issues (methods
9883         were never removed from the hash previously). May also fix bug#436996.
9884
9885 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9886
9887         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9888         generic instances, compute the type from the generic definition instead of
9889         looking in field->generic_info.
9890
9891         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9892         for inflated fields, the only user was get_fieldref_token () which no
9893         longer needs it.
9894
9895         * class.c (mono_class_init): Revert the last change as it seems to cause
9896         crashes.
9897
9898         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9899         bytes on 64 bit platforms.
9900
9901         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9902         
9903         * object.c (mono_class_create_runtime_vtable): Don't initalize
9904         field->data/field->def_type here, it is done lazily by 
9905         mono_class_get_field_default_value ().
9906
9907         * icall.c (ves_icall_get_enum_info): Call 
9908         mono_class_get_field_default_value () instead of directly accessing
9909         field->data and field->def_type.
9910
9911         * object.c (get_default_field_value): Ditto.
9912
9913         * class.c (mono_field_get_data): Ditto.
9914         
9915         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9916         call for generic instances.
9917
9918         * loader.c (find_method_in_class): If klass != from_class, then inflate
9919         the method with the context of from_class, since the caller assumes this.
9920
9921 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9922
9923         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9924         for accessing method->slot.
9925
9926 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9927
9928         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9929
9930 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9931
9932         * class.c (mono_method_get_vtable_index): Use
9933         mono_method_get_vtable_slot () for accessing method->slot.
9934
9935         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9936         accessing klass->methods.
9937
9938         * class.c (mono_method_get_vtable_slot): New helper function.
9939         (mono_class_get_vtable_entry): Ditto.
9940         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9941         accessing method->slot.
9942
9943         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9944         method to get_inflated_method ().
9945
9946         * class.c (mono_class_get_inflated_method): New helper method to obtain
9947         a method of an inflated class without calling setup_methods ().
9948         (mono_class_get_cctor): Use get_inflated_method.
9949
9950         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9951         
9952         * marshal.c image.c: Lazily create all the marshal caches.
9953
9954         * image.c (mono_image_init): Move initialization of runtime_invoke
9955         caches to marshal.c.
9956
9957         * marshal.c (get_cache): New helper function to lazily initialize a 
9958         wrapper cache.
9959         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9960
9961         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9962
9963 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9964
9965         * loader.c: fixed check for interface type.
9966
9967 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9968
9969         * appdomain.c: check for NULL setup before it's referenced.
9970
9971 p
9972 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9973
9974         * class.c: remove the unused old vtable setup code.
9975
9976 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9977
9978         * class.c: don't depend on interface order in
9979         setup_interface_offsets (bug #435777).
9980         * reflection.c: sort the InterfaceImpl table (patch from
9981         Jb Evain  <jbevain@novell.com>).
9982
9983 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9984
9985         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9986         the low level assemblies lock.
9987
9988 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9989
9990         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9991         object.c, reflection.c, socket-io.c, threads.c: introduced
9992         mono_framework_version () to return the major framewrok version,
9993         changed the code that was using more complex patterns to use it.
9994         Return the correct value for PlatformID for OSX.
9995
9996 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9997
9998         * icall-def.h, process.h, process.c: added an icall to get info about
9999         processes using mono-proclib.
10000
10001 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
10002
10003         * mono-perfcounters.c: use the mono-proclib functions to
10004         access process information.
10005
10006 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
10007
10008         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
10009         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
10010         reflection.c: remove rawbuffer usage: mmap support is more sanely
10011         provided by utils/mono-mmap.
10012
10013 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
10014
10015         * gc.c: use posix semaphores when possible so that
10016         mono_gc_finalize_notify() is signal safe.
10017
10018 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
10019
10020         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
10021         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
10022         be #ifdef-ed out, the linker will remove the rest.
10023
10024         * marshal.c: Implement DISABLE_COM.
10025
10026         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
10027
10028 2008-10-11  Miguel de Icaza  <miguel@novell.com>
10029
10030         * locales.c (string_invariant_compare_char): Optimization: do not
10031         call g_unichar_type unless we actually need the information.
10032
10033 2008-10-10  Mark Probst  <mark.probst@gmail.com>
10034
10035         * object.c, class-internals.h: Also create remoting trampolines
10036         for generic methods.  Pass the domain to the remoting trampoline
10037         creation function, too.
10038
10039 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
10040
10041         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
10042
10043 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
10044
10045         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
10046         Vector4ui.
10047
10048 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
10049
10050         * assembly.c:
10051         * locales.c: remove the use of g_strdown. Fixes bug #322313.
10052
10053 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
10054
10055         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
10056         for the least possible amount of time (extending the fix in r113458).
10057
10058 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
10059
10060         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
10061
10062 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
10063
10064         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
10065         as possible simd intrinsic types.
10066         Optimized the test to check for the common prefix first.
10067
10068 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
10069
10070         * class.c: back out part of a broken optimization committed on
10071         May 23th (bug #433908).
10072
10073 2008-10-09  Mark Probst  <mark.probst@gmail.com>
10074
10075         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
10076         Win32.  Should fix #432388 for most cases until we have the new
10077         profiler on Win32.
10078
10079 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
10080
10081         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
10082         instead of using inst->id so the hash is stable for AOT.
10083
10084 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
10085
10086         * appdomain.c:
10087         * icall.c: create a .ini file for shadow-copied assemblies that
10088         contains the location of the original assembly. Use this to return the
10089         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
10090         Also fix the number of '/' for windows when returning the CodeBase.
10091         Fixes bug #430920.
10092
10093 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10094
10095         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
10096
10097         Code is contributed under MIT/X11 license.
10098
10099 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10100
10101         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
10102           if if the class vtable needs initialized.
10103
10104         Code is contributed under MIT/X11 license.
10105
10106 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10107
10108         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
10109           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
10110           STRING->BSTR, and CLASS->INTERFACE.
10111
10112         Code is contributed under MIT/X11 license.
10113
10114 2008-10-07  Marek Habersack  <mhabersack@novell.com>
10115
10116         * sysmath.h: changed the declaration of the
10117         ves_icall_System_Math_Round2 icall by adding an extra
10118         away_from_zero parameter.
10119
10120         * sysmath.c (ves_icall_System_Math_Round2): added support for
10121         away from zero rounding. The icall now takes an extra boolean
10122         parameter to signal that away from zero operation is requested.
10123
10124 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
10125
10126         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
10127         the delegate klass so it can work with full-aot.
10128         (mono_marshal_get_delegate_end_invoke): Ditto.
10129         (mono_marshal_get_delegate_invoke): Ditto.
10130
10131 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
10132
10133         * gc.c, attach.h, attach.c: remove a bad pattern:
10134         add_finalizer_callback () is not implemented correctly, it can't
10135         without adding more overhead to the finalizer loop and it's not
10136         even needed, since we know exactly what we need to call, so there is
10137         no need to do so through an expensive function pointer.
10138
10139 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
10140
10141         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
10142         for the no-gc case.
10143         * attach.c (mono_attach_init): Remove the #ifdef.
10144
10145 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
10146
10147         * attach.c (mono_attach_init): Don't use
10148         mono_gc_add_finalizer_thread_callback when compiling without GC.
10149         Fixes #432306.
10150         
10151         Code is contributed under MIT/X11 license.
10152
10153 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
10154
10155         * class.c (mono_class_create_from_typedef): Remove the 
10156         #ifndef DISABLE_SIMD stuff.
10157
10158 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
10159
10160         * class-internals.h (MonoClass): Added simd_type bit field.
10161
10162         * class.c (mono_class_create_from_typedef): Check if type is a simd
10163         intrinsic.
10164
10165 2008-10-03  Mark Probst  <mark.probst@gmail.com>
10166
10167         * object.c (mono_method_add_generic_virtual_invocation): Only add
10168         instantiations to the thunk whose count is at least as large as
10169         the threshold.
10170
10171 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
10172
10173         * icall.c: changed the Type of the exception thrown when trying to
10174         invoke a constructor on an abstract class. Part of the fix for bug
10175         #324185.
10176
10177 2008-10-02  Mark Probst  <mark.probst@gmail.com>
10178
10179         * class.c, class-internals.h (mono_method_get_vtable_index): New
10180         function which returns the index into the vtable and properly
10181         handles inflated virtual generic methods.
10182
10183 2008-10-01  Mark Probst  <mark.probst@gmail.com>
10184
10185         * object.c, domain.c, object-internals.h, domain-internals.h:
10186         Generalize IMT thunk machinery to also handle thunks for virtual
10187         generic method invokes.  When a virtual generic method is invoked
10188         more than a number of times we insert it into the thunk so that it
10189         can be called without lookup in unmanaged code.
10190
10191         * generic-sharing.c, class-internals.h: Fetching a
10192         MonoGenericInst* for a method from an (M)RGCTX.
10193
10194 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
10195
10196         * marshal.c (emit_marshal_string): Applied a variant of a patch by
10197         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
10198         marshalling. Fixes #431304.
10199
10200 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
10201
10202         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
10203           handle when ref is specified without In or Out.
10204
10205         Code is contributed under MIT/X11 license.
10206
10207 2008-09-30  Mark Probst  <mark.probst@gmail.com>
10208
10209         * loader.c (mono_get_method_constrained): Don't expand method with
10210         the class's context, because it's already a method of that class.
10211
10212 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
10213
10214         * attach.c : should be correct build fix.
10215
10216 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
10217
10218         * attach.c: Fix the previous change.
10219
10220 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
10221
10222         * attach.c : quick w32 build fix.
10223
10224 2008-09-27  Miguel de Icaza  <miguel@novell.com>
10225
10226         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
10227         crashes MonoDevelop: #430455.
10228
10229 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
10230
10231         * domain-internals.h (struct _MonoDomain): Move most fields used only by
10232         the JIT do MonoJitDomainInfo in ../mini/mini.h.
10233
10234         * domain.c: Remove initialization/cleanup of the removed fields.
10235
10236 2008-09-27  Mark Probst  <mark.probst@gmail.com>
10237
10238         * class.c (mono_class_generic_sharing_enabled): Enable generic
10239         code sharing for PPC.
10240
10241 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
10242
10243         * attach.c : Fixing the Windows builds.
10244
10245         Code is contributed under MIT/X11 license.
10246
10247 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
10248
10249         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
10250         the default generic sharing mode to 'all'.
10251
10252 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10253
10254         * generic-sharing.c, class-internals.h: New function for checking
10255         whether a method needs a static RGCTX invoke wrapper.  A few
10256         funtions moved from mini/generic-sharing.c.
10257
10258         * icall.c: New function used.
10259
10260 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10261
10262         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10263         Static RGCTX invoke wrapping applies to value type methods, too.
10264
10265         * class.c (mono_class_setup_vtable_general): In generic-shared
10266         value types, wrap methods with a static RGCTX invoke wrapper.
10267
10268 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
10269
10270         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
10271         osx build.
10272
10273 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
10274
10275         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
10276         register a callback which is called when the finalizer thread is woken
10277         up.
10278         (finalizer_thread): Call the callback if it exists.
10279
10280         * attach.h attach.c: New files, implementing the attach mechanism.
10281
10282         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
10283         
10284         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
10285         by the previous change.
10286
10287 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
10288
10289         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
10290         loader.c, marshal.c, metadata-internals.h, metadata.c,
10291         method-builder.c, object.c, reflection.c: introduced specific functions
10292         to allocate from the domain and image mempools and cleaned up most of
10293         the code to use them (still missing a few in reflection.c).
10294         Keep the loader bytes counter updated.
10295
10296 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
10297
10298         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
10299         loader-related counters.
10300
10301 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
10302
10303         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
10304         added more MS-compatible counters.
10305
10306 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
10307
10308         * class.c (mono_class_setup_fields): Call setup_fields before accessing
10309         class->blittable. Fixes #428217.
10310
10311 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
10312
10313         * reflection.c (mono_image_get_field_on_inst_token): Call 
10314         field_encode_signature () since that handles custom modifiers too.
10315         Fixes #424663.
10316
10317 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
10318
10319         * reflection.c (add_custom_modifiers): New helper function to merge custom
10320         modifiers stored in objects to a MonoType.
10321         (fieldref_encode_signature): Encode custom modifiers.
10322         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
10323         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
10324
10325 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
10326
10327         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
10328         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
10329         64-bit IL only images because imports are not resolved for IL only images.
10330         Special thanks to Bill Holmes for finding this bug and testing the patch.
10331         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
10332
10333         Contributed under MIT/X11 license.
10334
10335 2008-09-19  Miguel de Icaza  <miguel@novell.com>
10336
10337         * mono-config.c (dllmap_start): Add support for the bits keyword
10338         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
10339
10340 2008-09-19  Mark Probst  <mark.probst@gmail.com>
10341
10342         * reflection.c (inflate_mono_method): When the class the method is
10343         to be inflated for is itself not inflated, just return the method.
10344
10345 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
10346
10347         * mono-perfcounters.c: use more user friendly process instance names.
10348
10349 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
10350
10351         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
10352           handle "[in] ref" and "[in][out] ref" cases.
10353
10354         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
10355           to mono_mb_create_method.  This was causing problems calling native to
10356           managed passing Variants by value.
10357
10358         Code is contributed under MIT/X11 license.
10359
10360 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
10361
10362         * class.c (can_access_internals): Call mono_assembly_load_friends ()
10363         before accessing the friend_assembly_names field.
10364
10365         * assembly.c (mono_assembly_load_friends): Make this callable multiple
10366         times.
10367         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
10368         called lazily when it is needed.
10369
10370         * metadata-internals.h (struct _MonoAssembly): Add 
10371         'friend_assembly_names_inited' flag.
10372
10373 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
10374
10375         * mono-perfcounters-def.h: fix the types of a few counters.
10376         * mono-perfcounters.c: implemented the instance names getter
10377         and a few bugfixes.
10378
10379 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
10380
10381         * culture-info-table.h : regenerated.
10382
10383 2008-09-17  Robert Jordan  <robertj@gmx.net>
10384
10385         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
10386         context bound objects. Fixes #415577.
10387
10388         Code is contributed under MIT/X11 license.
10389
10390 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
10391
10392         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
10393         implementation (bug #423582).
10394
10395 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
10396
10397         * object.c (mono_object_get_virtual_method): Handle the case method->slot
10398         is not set. Fixes #426309.
10399
10400 2008-09-16  Jb Evain  <jbevain@novell.com>
10401
10402         * class.c (mono_class_from_name): fix the exported type look up
10403         when the type is defined in a referenced assembly.
10404
10405 2008-09-16  Jb Evain  <jbevain@novell.com>
10406
10407         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
10408         increment the next index counter on each iteration to make that work
10409         for more than one type forwarder. Unmanaged part to fix #422929.
10410
10411 2008-09-15  Mark Probst  <mark.probst@gmail.com>
10412
10413         * object-internals.h: enum ComInterfaceType in
10414         MonoInterfaceTypeAttribute is guint32, not guint16.
10415
10416 2008-09-12  Mark Probst  <mark.probst@gmail.com>
10417
10418         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
10419         writing code.
10420
10421 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10422
10423         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
10424         not gboolean.
10425
10426 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10427
10428         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
10429         Endianness fixes for MonoSymbolFileOffsetTable.
10430
10431 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10432
10433         * process.c (complete_path) : Removing quotes from the 
10434           input path.  The glib file routines do not handle file paths
10435           that have quotes around them.
10436
10437         Code is contributed under MIT/X11 license.
10438
10439 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10440
10441         * socket-io.h : Adding a comment to provide locations where 
10442           changes to MonoSocketAsyncResult need to be synced.
10443
10444         Code is contributed under MIT/X11 license.
10445
10446 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
10447
10448         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
10449         parameters as well. Fixes #425001.
10450
10451 2008-09-08  Miguel de Icaza  <miguel@novell.com>
10452
10453         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
10454         windows build.
10455
10456 2008-09-07  Miguel de Icaza  <miguel@novell.com>
10457
10458         * console-io.c: Add support for tracking the window size if it
10459         changes.
10460
10461         The setup is very simple: the TtySetup function will now return a
10462         pointer to a location in memory that tracks the current console
10463         size.  The managed code checks its current value every time its
10464         queried against the last value set, and updates accordingly.
10465
10466         With this setup we can work with multiple consoles, and we do not
10467         require to poke into managed code from a signal handler.
10468
10469         Additionally, the environment for COLUMNS and LINES is now handled
10470         in unmanaged code.
10471
10472         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
10473
10474 2008-09-07  Mark Probst  <mark.probst@gmail.com>
10475
10476         * marshal.c (mono_type_native_stack_size): Treat
10477         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
10478
10479 2008-09-04  Jb Evain  <jbevain@novell.com>
10480
10481         * class.c (mono_class_is_assignable_from): fix assignability of nullables
10482         to nullables.
10483
10484 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
10485
10486         * verify.c (verify_type_compatibility_full): Revert change
10487         to allow converting a native int to unmanaged pointer be verifiable
10488         under non-strict mode.
10489         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
10490
10491         * verify.c: Added some TODOs.
10492
10493 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
10494
10495         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
10496           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
10497           Changed to use GlobalAlloc for the memory returned on Windows platforms.
10498
10499         Code is contributed under MIT/X11 license.
10500
10501 2008-09-02  Jb Evain  <jbevain@novell.com>
10502
10503         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
10504
10505 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
10506
10507         reflection.c (typebuilder_setup_fields): Handle classes with
10508         explicit size.
10509
10510 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
10511
10512         class.c (mono_class_setup_events): Add memory barrier due to
10513         double checked locking.
10514         
10515         class.c (mono_class_setup_properties): Same.
10516
10517 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
10518
10519         * class.c (mono_class_is_assignable_from): Fix the build.
10520         
10521         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
10522         before accessing klass->interface_bitmap. Fixes #421744.
10523
10524 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
10525
10526         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
10527         the runtime into no-exec mode, useful when running the AOT compiler.
10528
10529         * appdomain.c gc.c object.c: Avoid executing managed code when running
10530         in no-exec mode.
10531         
10532         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
10533
10534         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
10535         special case when the mono_assembly_loaded () returns NULL because the 
10536         search hook is not installed.
10537
10538 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
10539
10540         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
10541         crashes in bstr marshalling on linux.
10542
10543 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10544
10545         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
10546         with more than one parameter.
10547
10548 2008-08-24  Miguel de Icaza  <miguel@novell.com>
10549
10550         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
10551         start/stop flow control as well when turning off ICANON (allows
10552         C-s and C-q to be read by Console.ReadKey).
10553
10554 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10555
10556         * class.c (mono_class_init): Move the initialization of nested classes
10557         into mono_class_get_nested_types (). Fixes #418433.
10558
10559         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
10560         flag.
10561
10562         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
10563         iterating tough the nested classes of a class.
10564
10565 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
10566
10567         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
10568         on arm.
10569
10570 2008-08-22  Miguel de Icaza  <miguel@novell.com>
10571
10572         * console-io.c (sigcont_handler): Support signal chaining for
10573         SIGCONT.
10574
10575         (console_set_signal_handlers): Use best practices with sigaction,
10576         clear the structure before using it. 
10577
10578 2008-08-22  Robert Jordan  <robertj@gmx.net>
10579
10580         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
10581         Fix the Windows build.
10582
10583 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
10584
10585         * class.c (mono_class_generic_sharing_enabled): Make the default
10586         sharing mode 'corlib'.
10587
10588 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
10589
10590         * console-io.c (console_set_signal_handlers): Fix a warning.
10591
10592         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
10593         method normally, the JIT will take care of avoiding recursion.
10594
10595 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10596
10597         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
10598
10599         Code is contributed under MIT/X11 license.
10600
10601 2008-08-20  Miguel de Icaza  <miguel@novell.com>
10602
10603         * console-io.c (sigcont_handler): We need to restore the entire
10604         termios state, not only the original settings, as things like echo
10605         can be controlled after this (Booish exposes this issue with its
10606         own ReadLine implementation).
10607
10608         Additionally, we need to set the terminal back into keypad_xmit
10609         mode.
10610         
10611         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
10612         string as a paramter as well.   Otherwise we get different
10613         keyboard sequences.
10614
10615 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
10616
10617         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
10618         delegates with byref out parameter passing. Fixes #351520.
10619
10620         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
10621         a generic context.
10622         (mono_type_get_desc): Add the type arguments for GENERICINST.
10623         (mono_method_full_name): Stringify the class name using mono_type_full_name
10624         so it picks up generic arguments.
10625
10626 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
10627
10628         * console-io.c: Removed debug output.
10629
10630 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
10631
10632         reflection.c (mono_reflection_create_runtime_class): Alloc
10633         the nested classes linked list using the dynamic image mempool.
10634         Fixes leak in corlib compilation.
10635
10636 2008-08-19  Miguel de Icaza  <miguel@novell.com>
10637
10638         * console-io.c: Fix incredibly annoying behavior on the console
10639         after resuming execution after control-z.   This affected every
10640         console application.
10641
10642 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
10643
10644         * mempool-internals.h: Header for mono private mempool functions. The first
10645         two function are for allocating glib linked lists using pools.
10646
10647         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
10648
10649         * Makefile.am: Added mempool-internals.h.
10650
10651 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
10652
10653         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
10654         (mono_domain_free): Ditto.
10655
10656         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
10657         be used by the JIT to store its domain-specific information, instead of putting
10658         it directly into MonoDomain.
10659
10660         * domain.c (mono_install_create_domain_hook): New helper function to install
10661         a hook which initializes domain->runtime_info.
10662
10663         * domain.c (mono_install_free_domain_hook): Ditto.
10664         
10665 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
10666
10667         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
10668         asserting if the ares parameter is null.
10669
10670         * mono-perfcounters.c: Fix warnings.
10671
10672         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
10673         is not needed, don't check for interruptions either.
10674         (mono_marshal_get_delegate_end_invoke): Ditto.
10675
10676 2008-08-15  Marek Habersack  <mhabersack@novell.com>
10677
10678         * mono-perfcounters.c (predef_readonly_counter): added support for
10679         reading the ASP.NET Requests Queued counter from another process.
10680
10681 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10682
10683         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
10684         MonoImage to simplify the AOT code.
10685
10686 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
10687
10688         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
10689         marshalling. Fixes #416078.
10690
10691 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10692         
10693         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
10694         it is set, looking up the icall address is deferred to the JIT, since 
10695         in embedded scenarios, the icall might not be registered in the runtime
10696         doing the AOT compilation. Backported from the 2.0 branch.
10697
10698 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10699
10700         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
10701         Fixes #415621.
10702
10703 2008-08-05  Marek Habersack  <mhabersack@novell.com>
10704
10705         * Makefile.am: added support for cross-compilation.
10706
10707 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
10708
10709         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
10710
10711 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
10712
10713         * mono-perfcounters.c: jitted methods and jitted bytes counters.
10714
10715 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
10716
10717         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
10718         mono-perfcounters.c: performance counters implementation.
10719
10720 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
10721
10722         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
10723         to gpointer, letting the AOT code decide what to store in it.
10724
10725 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
10726
10727         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
10728           mono_class_setup_methods if the methods are not initialized.
10729
10730         Code is contributed under MIT/X11 license.
10731
10732 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10733
10734         * verify.c: Remove some debug code I commited by accident.
10735
10736         * verify.c (mono_method_is_valid_in_context): Change the return value
10737         to make possible to distinguish between invalid and unverifiable.
10738
10739         * verify.c (verifier_load_method): Don't return NULL for unverifiable
10740         methods.
10741
10742 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10743
10744         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
10745         constraints. Fixes regression in gtest-253.
10746
10747 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10748
10749         * verify.c (mono_verifier_verify_class): Don't allow generic types
10750         with explicit layout.
10751
10752         * verify.c (mono_method_verify): Check locals and argument types.
10753
10754 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
10755
10756         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
10757         wait if the thread is in StopRequested state.
10758
10759         * class.c (mono_class_from_name): Refactor the module searching code into
10760         a separate function so it can be reused in the AOT case too.
10761
10762 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
10763
10764         * verify.c (mono_type_is_valid_in_context): Improve the error message.
10765         Check both the type and it's generic type definition for loader errors.
10766         
10767         * verify.c (mono_method_is_valid_in_context): Don't generate another
10768         error when a type errors occur, this leads to the wrong exception been
10769         thrown.
10770
10771 2008-07-28  Dick Porter  <dick@ximian.com>
10772
10773         * icall-def.h
10774         * process.c
10775         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
10776         New internal calls to duplicate and close a process handle.
10777
10778 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
10779
10780         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
10781
10782 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10783
10784         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
10785
10786 2008-07-27  Robert Jordan  <robertj@gmx.net>
10787
10788         * class.c (mono_class_init): Don't compute class.has_finalize for
10789         valuetypes. Fixes #412477.
10790
10791 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
10792
10793         * verify.c: Implement constraint equivalence checking.
10794         This is required when a generic parameter is used as
10795         argument to a constrained one.
10796
10797         Fixes #410637.
10798
10799 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10800
10801         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10802
10803         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10804
10805         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10806         synch with managed object layout.
10807
10808 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10809
10810         * verify.c (do_branch_op): Handle valuetypes and generic
10811         arguments properly.
10812
10813         * verify.c (do_cmp_op): Same.
10814
10815         Fixes #410383.
10816
10817 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10818
10819         * generic-sharing.c: Fix memory leaks.
10820
10821         * class.c, class-internals.h: Make
10822         mono_class_inflate_generic_type_with_mempool() non-static.
10823
10824 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10825
10826         * pedump.c (dump_verify_info): Dump full class name.
10827
10828 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10829
10830         * generic-sharing.c: Removed some old code that didn't do anything.
10831
10832 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10833         * profiler.c: Added runtime_initialized_event,
10834         mono_profiler_install_runtime_initialized and
10835         mono_profiler_runtime_initialized. This new hook tells the profiler
10836         when the runtime is sufficiently initialized to be able to call
10837         mono_thread_attach on the root appdomain.
10838         * profiler.h, profiler-private.h: Likewise.
10839
10840 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10841
10842         * verify.c (do_cast): Do boxing for generic arguments as well.
10843
10844         * class.c (is_nesting_type): Drop generic instantiations before
10845         checking for nesting.
10846
10847         * class.c (can_access_instantiation): Allow access to generic
10848         arguments.
10849
10850 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10851
10852         * verify.c (verify_class_for_overlapping_reference_fields):
10853         On some cases, the field size might be zero, guard against that.
10854         Fix the explicit layout check to work as expected.
10855
10856 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10857
10858         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10859         mono_thread_resume () during shutdown, since the thread we want to abort
10860         might be suspended.
10861
10862 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10863
10864         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10865         warning.
10866
10867         * debug-mono-symfile.c: Fix a warning.
10868
10869         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10870
10871         * object.c (mono_class_vtable): Check if exception_type is set, and return
10872         NULL as defined by the function comments.
10873
10874 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10875
10876         * mempool.c: Use malloc for every single mempool allocation if the
10877         configure option is set.  This makes it easier to track mempool
10878         allocations with tools like Valgrind.
10879
10880 2008-07-22  Jb Evain  <jbevain@novell.com>
10881
10882         * reflection.c (create_dynamic_mono_image): emit the same
10883         metadata version that SL2 does when creating a SL2 image.
10884
10885 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10886
10887         * icall-def.h:
10888         * icall.c: New icall System.Enum:get_hashcode. This function
10889         avoids the overhead of boxing the enum to the underlying type.
10890
10891 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10892
10893         * reflection.c (mono_method_get_object): Don't let static RGCTX
10894         invoke wrappers get into MonoReflectionMethods.
10895
10896 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10897
10898         * object-internals.h:
10899         * object.c: New mono_runtime_class_init_full function
10900         that makes throwing the exception optinal.
10901
10902         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10903         for the case where the exception object is supplied.
10904
10905 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10906
10907         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10908         old ld versions.
10909
10910         Contributed under MIT/X11 license.
10911
10912 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10913
10914         * string-icalls.c (ves_icall_System_String_InternalSplit):
10915         Optimize array allocation by caching the MonoClass of the
10916         array type.
10917
10918         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10919
10920         * reflection.c (mono_param_get_objects): Same.
10921
10922 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10923
10924         * icall-def.h:
10925         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10926         It inflates the given type using the class context.
10927
10928 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10929
10930         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10931         the vtable if it already exists.
10932
10933         * object-internals.h: Add mono_class_try_get_vtable as part of the
10934         internal API.
10935
10936         * reflection.c (mono_type_get_object): Use the MonoObject from the
10937         vtable when possible. Reduces locking contention on reflection heavy
10938         code.
10939
10940 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10941
10942         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10943         g_bit_nth_msf () since that macro is not implemented in eglib.
10944
10945 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10946
10947         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10948         on platforms which do not support it.
10949
10950 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10951
10952         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10953
10954 2008-07-11  Martin Baulig  <martin@ximian.com>
10955
10956         * mono-debug-debugger.h
10957         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10958
10959         * mono-debug-debugger.c
10960         (_mono_debugger_interruption_request): New global volatile variable.
10961         (mono_debugger_check_interruption): New public function.
10962
10963         * threads.c
10964         (mono_thread_current_check_pending_interrupt): Call
10965         mono_debugger_check_interruption().
10966         (mono_thread_interruption_checkpoint_request): Likewise.
10967
10968 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10969
10970         * verify.c: Add more type checks for loaded types. Verify the result
10971         handle from ldtoken.
10972
10973 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10974
10975         * loader.c (field_from_memberref): Don't crash if the field
10976         wasn't found.
10977
10978 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10979
10980         * verify.c: Verify if type and method instantiations
10981         don't have invalid VAR or MVAR arguments.
10982
10983 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10984
10985         * verify.c: Fix double free of function pointer list.
10986
10987 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10988
10989         * object.c (mono_string_to_utf8): Comment the new code as it
10990         breaks under eglib.
10991
10992 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10993
10994         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10995
10996 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10997
10998         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10999           is not throw too many times.
11000
11001         Code is contributed under MIT/X11 license.
11002
11003 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
11004
11005         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
11006         debugging is turned off.
11007
11008 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
11009
11010         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
11011
11012 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11013
11014         * class-internals.h, class.c: Added new generic sharing option:
11015         Share only stuff in System.Collections.Generic, which is now the
11016         default.
11017
11018 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11019
11020         * generic-sharing.c, class-internals.h: New function for getting a
11021         generic method in a generic class given the corresponding method
11022         for a different instantiation of the class.  Partly refactored
11023         from mini-trampolines.c.
11024
11025         * class.c: Make sure generic methods have a class_inst if they are
11026         part of a generic class.
11027
11028         * metadata.c (mono_type_stack_size_internal): Handle type
11029         variables.
11030
11031 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11032
11033         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
11034         Signifies whether information on the this/vtable/mrgctx variable
11035         is available.
11036
11037 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11038
11039         * object.c, object-internals.h, icall.c: New function
11040         mono_delegate_ctor_with_method(), which does the same as
11041         mono_delegate_ctor(), but takes an explicit method argument
11042         instead of taking the method from the jit info.
11043
11044         * marshal.c: When creating a delegate with an inflated method take
11045         the "this" argument as the target class for the castclass.
11046
11047 2008-07-03  Mark Probst  <mark.probst@gmail.com>
11048
11049         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
11050         mono_jit_info_table_find() to perform very badly in some cases.
11051
11052 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
11053
11054         * icall.c (type_from_typename): Handle 'string'.
11055
11056         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
11057         wrappers into the wrapper_hash, since the key is not a MonoMethod.
11058
11059 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
11060
11061         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
11062
11063         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
11064         number of available managed allocator types.
11065
11066         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
11067         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
11068
11069 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
11070
11071         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
11072         which is a low level lock protecting just the 'jit_code_hash' hash table.
11073
11074         * domain.c: Initialize+cleanup jit_code_hash_lock.
11075         
11076 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
11077
11078         * coree.c (mono_load_coree): Set coree_module_handle global variable only
11079         after initialization.
11080
11081         * coree.h: Make MonoFixupExe internal.
11082
11083         Contributed under MIT/X11 license.
11084
11085 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
11086
11087         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
11088         because that is platform independent. Check NumberOfRvaAndSizes in PE32
11089         as well.
11090         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
11091         image being loaded is a CLI image and _CorValidateImage gets called.
11092
11093         * coree.h: Add MonoLoadImage.
11094
11095         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
11096         instead of LoadLibrary.
11097
11098         Contributed under MIT/X11 license.
11099
11100 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
11101
11102         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
11103         for any primitive type.
11104
11105 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
11106
11107         * object.c (mono_array_new_specific): Optimize this and the other allocation
11108         functions a bit.
11109         
11110         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
11111         domains too if mono_dont_free_domains is set.
11112
11113         * domain-internals.h (mono_dont_free_domains): New internal option controlling
11114         whenever to free appdomain data after it has been unloaded.
11115
11116         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
11117         
11118 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
11119
11120         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
11121         (mono_method_get_equivalent_method): Fix a warning.
11122
11123         * object.c (mono_message_init): Avoid looking up array types for each call.
11124
11125 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
11126
11127         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
11128         call.
11129
11130         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
11131         even more.
11132
11133         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
11134         each iteration.
11135
11136         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
11137         fields of an enum.
11138
11139 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
11140
11141         * object.c (mono_value_box): Fix boxing of nullables.
11142
11143 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
11144
11145         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
11146         mono_module_handle that is defined by the linker; no initialization required.
11147         * coree.h: Remove mono_module_handle, add __ImageBase, update
11148         mono_image_open_from_module_handle.
11149         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
11150         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
11151         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
11152         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
11153         to 4 GB away from image base address. IA64 version is not tested but was very
11154         easy to implement and should work if we ever need it.
11155         * domain.c (mono_init_internal): Avoid system error message boxes.
11156         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
11157         with has_entry_point. Handle do_mono_image_load fauilre correctly.
11158         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
11159         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
11160         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
11161
11162         Contributed under MIT/X11 license.
11163
11164 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11165
11166         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
11167         as part of the private mono API.
11168         
11169         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
11170         Do proper argument checking for methods that belong to generic classes.
11171         Do proper type resolution for GMFH/2.
11172         Fixes #377324.
11173         
11174 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11175
11176         * verify.c (do_switch): Fix a memory corruption bug with
11177         the jump index is out of bound.
11178
11179 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11180
11181         * verify.c: Disable debug code.
11182
11183 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11184
11185         * reflection.c (mono_image_get_methodbuilder_token): Use
11186         mono_image_get_methodspec_token_for_generic_method_definition
11187         instead of mono_image_get_memberref_token. We cache more memberef
11188         entries now.
11189
11190 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11191
11192         * verify.c: Inflate exception clause types.
11193         Fixes #402606.
11194         
11195 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11196
11197         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
11198         name.
11199
11200         * reflection.c (mono_image_get_ctorbuilder_token): Same.
11201
11202         * reflection.c (mono_image_create_method_token): Same.
11203
11204 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11205
11206         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
11207         It does the same as mono_image_get_methodref_token but works on
11208         MethodBuilder.
11209
11210         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
11211         and always generate a methodspec. This follows the old behavior and fixes
11212         the regressions in System.Core. 
11213
11214 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
11215
11216         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
11217         don't event mono_class_get () succeeds. Fixes #402182.
11218
11219 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
11220
11221         * metadata-internals.h: Added MonoDynamicImage::methodspec
11222         hashtable to store methodspec tokens created for MethodBuilders.
11223
11224         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
11225         MethodBuilders as open instantiations if a methodspec was requested.
11226
11227         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
11228
11229         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
11230
11231         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
11232
11233         Fixes bug #349190.
11234
11235 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
11236
11237         * loader.c (method_from_methodspec): Avoid crashing if the
11238         method lookup fails.
11239
11240 2008-06-20  Dick Porter  <dick@ximian.com>
11241
11242         * socket-io.c (get_socket_assembly): Cope with Moonlight network
11243         classes being in a different assembly.  Fixes bug 399184.
11244
11245 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
11246
11247         * loader.c (mono_loader_init): Make this callable multiple times.
11248         (mono_dllmap_insert): Call mono_loader_init () so this works even before
11249         the runtime is initialized. Fixes #401755.
11250
11251 2008-06-19  Dick Porter  <dick@ximian.com>
11252
11253         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
11254         Fixes bug 349688.
11255
11256 2008-06-19  Dick Porter  <dick@ximian.com>
11257
11258         * socket-io.c:
11259         * icall-def.h: Implement Socket generic Send() and Receive()
11260         methods.  Fixes bug 395168.
11261
11262 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
11263
11264         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
11265
11266         Contributed under MIT/X11 license.
11267
11268 2008-06-18  Martin Baulig  <martin@ximian.com>
11269
11270         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
11271         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
11272         set to 80.0.  The debugger <-> runtime interface is now frozen as
11273         well.   
11274
11275         * mono-debug.c
11276         (mono_debug_debugger_version): Bump to 4.
11277
11278 2008-06-18  Martin Baulig  <martin@ximian.com>
11279
11280         * debug-mono-symfile.c
11281         (load_symfile): Don't check the minor version.
11282
11283         * debug-mono-symfile.h: Bump the version number to 50.0.
11284
11285 2008-06-18  Martin Baulig  <martin@ximian.com>
11286
11287         * debug-mono-symfile.c
11288         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
11289         minimum required version.
11290
11291 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
11292
11293         * reflection.c (mono_custom_attrs_from_property): Fix support for
11294         retriveving cattrs of dynamic inflated generic types.
11295
11296         * reflection.c (mono_custom_attrs_from_event): Same.
11297
11298         * reflection.c (mono_custom_attrs_from_field): Same;
11299
11300         * reflection.c (typebuilder_setup_events): Same cattrs of events.
11301
11302         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
11303         Moved to metadata.c.
11304
11305         * metadata.c: New functions to retrive the equivalent field, event
11306         of property from the generic type definition.
11307
11308         * metadata-internals.h: Added new functions from metadata.c.
11309
11310 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
11311
11312         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
11313         to cached in a mempool is used.
11314
11315         * metadata.c (free_generic_class): In some situations field generic_info type
11316         is not properly dup'ed and leads to double free'ing.
11317
11318         Fixes #400643.
11319
11320 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11321
11322         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
11323         this arguments (will be needed later for generic methods).
11324         Collect stats.
11325
11326 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11327
11328         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
11329         Create a static RGCTX invoke wrapper for methods which require it.
11330
11331 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11332
11333         * object.c, class-internals.h: New function for checking whether
11334         an individual field is special static.
11335
11336 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
11337
11338         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
11339         linear search since the table is sorted.
11340
11341         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
11342         Fixes #324180.
11343
11344 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
11345
11346         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
11347         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
11348
11349         * gc.c (mono_domain_finalize): Allow an infinite timeout.
11350
11351         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
11352         
11353         * threads.c (mono_thread_request_interruption): Get rid of locking, use
11354         InterlockedCompareExchange to query and modify 
11355         thread->interruption_requested.
11356
11357         * object-internals.h (struct _MonoThread): Change interruption_requested
11358         to a gint32 so it can be modified by atomic operations. Add 
11359         'critical_region_level' from the managed side, change small_id to a guint32,
11360         add new set of 'unused' fields.
11361
11362         * appdomain.c: Bump corlib version.
11363
11364 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
11365
11366         * class.c (mono_class_from_name): Search modules as well. Fixes
11367         #322332.
11368
11369 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11370
11371         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
11372         templates.  Templates are generalized with an additional type_argc
11373         argument.  RGCTX templates have type_argc==0, MRGCTX templates
11374         have type_argc>0.
11375
11376         * domain-internals.h, domain.c: New hash table for looking up
11377         MRGCTXs.
11378
11379         * metadata.c, metadata-internals.h: Rename hash and equal
11380         functions for MonoGenericInst's and make them public.
11381
11382         * class-internals.h: New data structures for the MRGCTX.  Macros
11383         for distinguishing slots in the RGCTX and the MRGCTX.
11384
11385 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11386
11387         * object.c (mono_method_get_imt_slot): Put the same methods of
11388         different instantiations of the same generic interface in the same
11389         IMT slots, to make generic sharing simpler.
11390
11391 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11392
11393         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
11394
11395         * metadata.c (mono_metadata_field_info_with_mempool): Added.
11396         This function works just like mono_metadata_field_info, but
11397         accept a mempool as argument to be used allocating memory.
11398
11399         * marshal.c (mono_marshal_load_type_info): Use new function
11400         to load marshal data into image mempool.
11401
11402 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11403
11404         * class.c (mono_class_inflate_generic_type_with_mempool):
11405         This function allows to inflate a generic type using
11406         a mempool.
11407
11408         * class.c (inflate_generic_type): Take a mempool as argument
11409         and use it to do type dup'ing.
11410
11411         * class.c (mono_class_setup_fields): Field type for generic
11412         generic classes are allocated from the image mempool.
11413
11414         * metadata.c (free_generic_class): Inflated field type is
11415         now allocated in the image mempool.
11416
11417 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11418
11419         * threads.c (thread_cleanup): Free MonoThread::name.
11420
11421 2008-06-12  Marek Habersack  <mhabersack@novell.com>
11422
11423         * appdomain.c (ensure_directory_exists): avoid unnecessary
11424         mkdir(2) calls when the shadow directory already exists.
11425         (mono_make_shadow_copy): copy also satellite assemblies from the
11426         private bin directories.
11427
11428 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11429
11430         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
11431         
11432         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
11433         a page boundary. Fixes #396219.
11434
11435 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11436
11437         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
11438         due to double-checked locking.
11439
11440 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11441
11442         * assembly.c (build_assembly_name): Release memory on failure.
11443
11444         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
11445
11446 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11447
11448         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
11449         memory on failure.
11450
11451 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11452
11453         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
11454         memory on failure.
11455
11456 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11457
11458         * loader.c (field_from_memberref): Check if field signature type is equal
11459         to the non-inflated type of the field. Fixes #398980.
11460
11461 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11462
11463         * assembly.c (mono_assembly_load_from_full): Call 
11464         mono_assembly_load_friends () outside the assemblies lock, since it can
11465         acquire the loader lock. Fixes #323696.
11466
11467         * reflection.c (resolve_object): Inflate the inst with the context for
11468         FieldOnTypeBuilderInst. Fixes #399010.
11469
11470 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11471
11472         * reflection.c (mono_image_get_field_on_inst_token): Don't
11473         inflate the field to encode it's signature. If it's a
11474         VAR or MVAR it should stay that way in the signature.
11475         Fixes #399047.
11476
11477 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11478
11479         * reflection.c (resolve_object): Release memory of inflated types.
11480
11481 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11482
11483         * loader.c (mono_method_get_signature_full): Remove assert about
11484         loading a methodspec to a generic method. We have such methods, such as
11485         System.Threading.Interlocked::CompareExchange<T>.
11486         This assert was removed since it crashes the verifier when it checks
11487         methods calling CompareExchange<T>.
11488
11489 2008-06-10  Marek Safar  <marek.safar@gmail.com>
11490
11491         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
11492         of Type array and not MonoType.
11493
11494 2008-06-10  Marek Habersack  <mhabersack@novell.com>
11495
11496         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
11497         <lupus@ximian.com>
11498
11499 2008-06-10  Martin Baulig  <martin@ximian.com>
11500
11501         * debug-mono-symfile.h
11502         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
11503         changes to the file format, but we were generating incorrect
11504         source file indices in the line number table due to a bug, which
11505         made backtraces report an incorrect source file.
11506
11507 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11508
11509         * mono-debug.c: Moved mono_debug_free_method_jit_info from
11510         mini/debug-mini.c to here.
11511
11512         * mono-debug.c (il_offset_from_address): Free memory from find_method.
11513
11514         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
11515         use it to release structs returned by mono_debug_find_method.
11516
11517 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
11518
11519         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
11520         since it needs to set method->slot for all interface methods.
11521
11522 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11523
11524         * class-internals.h: Forgot to add.
11525
11526 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11527
11528         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
11529
11530         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
11531         Lookup the custom attributes from property_hash.
11532
11533         * reflection.c (mono_save_custom_attrs): Save the custom attributes
11534         in property_hash. Allocate all data using the image mempool.
11535
11536         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
11537         for dynamic_custom_attrs to checks if the image is dynamic.
11538
11539 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11540
11541         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
11542         assemblies array.
11543         
11544         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
11545         runtime functions while holding the domain assemblies lock.
11546
11547 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11548
11549         * verify.c: Reapplied the last bit of the reverted changes.
11550
11551 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11552
11553         * verify.c: Reapplied more of the reverted changes.
11554
11555 2008-06-09  Martin Baulig  <martin@ximian.com>
11556
11557         * debug-mono-symfile.c (load_symfile): Check the major version
11558         first; if it's wrong, don't print the minor version in the error message.
11559
11560 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11561
11562         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
11563         lock instead of the domain lock to avoid deadlocks, since the thread might
11564         already hold the loader lock.
11565
11566         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
11567         (mono_thread_attach): Ditto.
11568
11569         * monitor.c: Use a TLS variable for holding the current thread id instead
11570         of calling pthread_self ().
11571         (mono_monitor_init_tls): New internal function to initialize the TLS
11572         variable.
11573         (mono_monitor_try_enter_internal): Put the owner == id check after the
11574         owner == 0 check.
11575
11576         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
11577         missed optimizations when using gcc-4.3.
11578
11579 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
11580
11581         * reflection.c (mono_dynamic_image_free): Free the memory
11582         used by MonoGenericParam in MonoDynamicImage::gen_param.
11583
11584         * reflection.c (mono_reflection_setup_generic_class): Allocate
11585         container from mempool.
11586
11587         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
11588         container from mempool.
11589
11590 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11591
11592         * threads.c (mono_set_pending_exception): New internal function to set the
11593         pending exception of the current thread.
11594         (mono_thread_get_and_clear_pending_exception): Check for 
11595         thread->pending_exception as well.
11596
11597         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
11598
11599         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
11600         it can trigger a collection.
11601
11602 2008-06-06  Martin Baulig  <martin@ximian.com>
11603
11604         Merged the `debugger-kahalo' branch.
11605
11606         * mono-debug.h
11607         (MONO_DEBUGGER_VERSION): Bumped to 72.
11608
11609         * debug-mono-symfile.h
11610         (MonoSymbolFileMethodIndexEntry): Removed.
11611         (MonoSymbolFileMethodEntry): New public typedef.
11612         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
11613         (MonoSymbolFileSourceEntry): Remove everything except `index' and
11614         `data_offset'.
11615         (MonoSymbolFileMethodEntry): Removed.
11616         (MonoSymbolFileLexicalBlockEntry): Removed.
11617         (MonoSymbolFileLineNumberEntry): Removed.
11618         (MonoDebugLexicalBlockEntry): Removed.
11619         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
11620         removed `num_il_offsets' and `il_offsets'.
11621         (MonoSymbolFile): Replace `version' with `major_version' and
11622         `minor_version'.
11623         (MONO_SYMBOL_FILE_VERSION): Replace with
11624         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
11625         `MONO_SYMBOL_FILE_MINOR_VERSION'.
11626
11627         * debug-mono-symfile.c
11628         (mono_debug_symfile_lookup_location): Add support for the new line
11629         number table format.
11630
11631 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11632
11633         * metadata.c (free_generic_class): Release the inflated
11634         MonoClass of dynamic generic classes if it's not a generic
11635         type definition.
11636
11637 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11638
11639         * verify.c: Reapplied more of the reverted changes.
11640
11641 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11642
11643         * reflection.c (lookup_custom_attr): Clean the cached flag or
11644         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
11645         for SRE types.
11646
11647 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11648
11649         * verify.c: Reapplied a small part of the reverted changes.
11650
11651 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11652
11653         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11654
11655         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
11656         previously in managed code.
11657         (mono_monitor_exit): Ditto.
11658         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
11659
11660         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
11661         the managed definition.
11662
11663 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11664
11665         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
11666
11667 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11668
11669         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
11670         
11671         * monitor.c: Add some micro optimizations.
11672
11673         * icall.c (type_from_typename): Handle 'bool'.
11674
11675 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11676
11677         * verify.c: Implement constructor verification per P III 1.8.1.4.
11678         Fixes #396716.
11679
11680 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11681
11682         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
11683         holding the assemblies lock here too.
11684
11685 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11686
11687         * verify.c: Kill stack_top function.
11688
11689 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11690
11691         * verify.c: Kill stack_get function.
11692
11693 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11694
11695         * verify.c (mono_method_verify): Last change broke the build. Fixed.
11696
11697 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11698
11699         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
11700         more reliable.
11701
11702         * verify.c (mono_method_verify): Inflate params and locals to avoid
11703         mismatch when checking for compatibility.
11704
11705 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
11706
11707         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
11708         Length prefix should be size in bytes. Fix bug #339530.
11709         
11710         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
11711         Length prefix should be size in bytes. Fix bug #339530.
11712
11713         Code is contributed under MIT/X11 license.
11714
11715 2008-06-05  Bill Holmes <billholmes54@gmail.com>
11716
11717         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
11718
11719         Contributed under MIT/X11 license.
11720
11721 2008-06-05  Martin Baulig  <martin@ximian.com>
11722
11723         * mono-debug-debugger.c
11724         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
11725
11726 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
11727
11728         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
11729         while holding the assemblies lock to prevent deadlocks. Handle the case
11730         where the search hook returns NULL but the assembly was still loaded.
11731         Fixes #323696.
11732
11733         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
11734         modify domain state.
11735
11736 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
11737
11738         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
11739         * Makefile.am (pedump_LDADD): Post-process object files and
11740         add dtrace-generated object file, if necessary.
11741
11742         Code is contributed under MIT/X11 license.
11743
11744 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11745
11746         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
11747
11748 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11749
11750         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
11751
11752 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11753
11754         * threads.c: Try to free everything from the delayed free table
11755         when shutting down threads, and set the variable to NULL after the
11756         table is freed so that calling
11757         mono_thread_hazardous_try_free_all() when shutting down the root
11758         domain doesn't crash.
11759
11760 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11761
11762         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
11763         the caller if resulting type was inflated.
11764
11765         * class.c (mono_class_create_from_typespec): Free the MonoType if it
11766         was inflated.
11767
11768         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
11769
11770
11771 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
11772
11773         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
11774         class library tests.
11775
11776         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
11777         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
11778         #396989.
11779
11780 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11781
11782         * domain.c, domain-internals.h: The JIT infos are now freed by the
11783         JIT info table code.  They are freed immediately if there only a
11784         single JIT info table in circulation.  If there is more, the free
11785         is delayed via a queue.
11786
11787         * threads.c, threads-types.h: New hazard pointer function for
11788         freeing all freeable delayed items in one sitting.
11789
11790 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11791
11792         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11793
11794         * reflection.c (typebuilder_setup_properties): Same.
11795
11796         * reflection.c (typebuilder_setup_events): Same.
11797
11798 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11799
11800         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11801         and use it for allocating memory.
11802
11803         * reflection.c (mono_marshal_spec_from_builder): Same.
11804
11805         * reflection.c: Change code to use new signatures.
11806
11807         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11808
11809 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11810
11811         * decimal.c (rescale128): Put back one line which was accidently commented
11812         out.
11813         
11814         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11815         to cause crashes.
11816
11817 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11818
11819         * reflection.c (mono_reflection_generic_class_initialize): Name must
11820         be always malloc'ed so we can free it later on. Do this for field, property
11821         and event.
11822
11823         * metadata.c (free_generic_class): Free field, property and event names.
11824
11825 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11826
11827         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11828         instead of g_memdup.
11829
11830         * reflection.c (typebuilder_setup_fields): Same.
11831
11832 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11833
11834         * decimal.c (rescale128): Optimize this function a bit more.
11835
11836 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11837
11838         * metadata.c (free_generic_class): Release some memory from
11839         SRE generic classes.
11840
11841 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11842
11843         * reflection.c (mono_image_get_generic_field_token): No reference
11844         to name is kept, free it.
11845
11846         * reflection.c (mono_reflection_generic_class_initialize): Free
11847         more memory of the inflated field.
11848
11849 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11850
11851         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11852         code.
11853
11854 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11855
11856         * reflection.c (mono_dynamic_image_free): Release memory used by
11857         MonoDynamicImage::array_methods elements.
11858
11859         * reflection.c (assembly_add_win32_resources): Release memory after
11860         encoding.
11861
11862 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11863
11864         * decimal.c (log2_32): Use an optimized version for this function too.
11865         
11866         * decimal.c (log2_64): Fix this on 32 bit machines.
11867
11868 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11869
11870         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11871
11872         * class.c (mono_metadata_signature_deep_dup): Same.
11873
11874         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11875         a mempool.
11876
11877         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11878
11879         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11880
11881         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11882
11883         * class-internals.h: Update signatures to take a MonoMemPool.
11884
11885 2008-06-02  Dick Porter  <dick@ximian.com>
11886
11887         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11888         * icall-def.h: Add
11889         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11890         FormatMessage API to get the error text.  Fixes bug 321827.
11891
11892 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11893
11894         * decimal.c: Add some micro optimizations to make decimal operations faster.
11895
11896 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11897
11898         * reflection.c (method_encode_clauses): Take a mempool
11899         as parameter and use it to allocate the clause array.
11900
11901         * reflection.c (mono_image_get_field_on_inst_token): Free
11902         the inflated type after encoding it.
11903
11904         * reflection.c (mono_dynamic_image_free): Free each element
11905         of MonoDynamicImage::gen_params.
11906
11907         * reflection.c (reflection_methodbuilder_to_mono_method):
11908         Allocate the generic param array from the mempool.
11909         Allocate signature params from the mempool.
11910
11911         * reflection.c (mono_reflection_generic_class_initialize):
11912         Free inflated fields after been used.
11913
11914 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11915
11916         * icall.c: Reapply the memory leak fixes as they no
11917         longer make mono crash.
11918
11919 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11920
11921         * reflection.c (mono_type_get_object): Don't store the suplied
11922         MonoType with type_hash. A caller which pass a type that
11923         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11924         might end with a pointer to freed memory.
11925         The solution is to use byval_arg or this_arg from the associated
11926         MonoClass of the supplied type.
11927
11928 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11929
11930         * icall.c: Revert the rest of the last change as it breaks the build too.
11931
11932 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11933
11934         * icall.c: Revert a leak fix as it's breaking the build.
11935
11936 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11937
11938         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11939
11940 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11941
11942         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11943
11944 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11945
11946         * icall.c: Fix some memory leaks.
11947
11948 2008-05-29  Dick Porter  <dick@ximian.com>
11949
11950         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11951         async socket operations from the pending list when a socket
11952         closes.  Leaving it until the threadpool services the event
11953         exposes a race condition when a socket descriptor is reused.
11954         Fixes bug 377589.
11955
11956 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11957
11958         * object.c: Fix negative index check for array alocation.
11959
11960 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11961
11962         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11963         This check is performed by the verifier for IL created delegates
11964         and by Delegate::CreateDelegate for programatically created ones.
11965         Fixes #372406.
11966
11967 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11968
11969         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11970         Fix code to use mono_array_size_t instead of int.
11971
11972         Based on patch by Luis F. Ortiz.
11973         Contributed under X11 license.
11974         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11975
11976 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11977
11978         * icall.c: Added ves_icall_System_Array_GetLongLength and
11979         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11980         arrays.
11981
11982         * icall.h: Export both new functions.
11983
11984         Based on patch by Luis F. Ortiz.
11985         Contributed under X11 license.
11986         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11987
11988 2008-05-28  Martin Baulig  <martin@ximian.com>
11989
11990         The debugger now requires exactly r103463.
11991
11992         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11993         This version is not supported by the debugger, wait for 72.
11994
11995 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11996
11997         * object.h: Changed array related functions to use
11998         mono_array_size_t instead of guint32. Forgot to commit this file.
11999
12000         Patch by Luis F. Ortiz.
12001         Contributed under X11 license.
12002         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12003
12004
12005 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
12006
12007         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
12008         don't define it. Use the number literal instead.
12009
12010 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12011
12012         * icall.c: Changed array related functions to use
12013         mono_array_size_t instead of guint32.
12014
12015         * icall.c (ves_icall_System_Array_GetLength): Check for length
12016         overflow under MONO_BIG_ARRAYS.
12017
12018         Based on patch by Luis F. Ortiz.
12019         Contributed under X11 license.
12020         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12021
12022 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12023
12024         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
12025
12026         Based on patch by Luis F. Ortiz.
12027         Contributed under X11 license.
12028         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12029
12030 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12031
12032         * object.c, object.h: Changed array related functions to use
12033         mono_array_size_t instead of guint32.
12034
12035         Patch by Luis F. Ortiz.
12036         Contributed under X11 license.
12037         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12038
12039 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12040
12041         * object.h: Introduced mono_array_size_t typedef. This must be used
12042         in all places an array length is expected. This is 64bits wide if
12043         MONO_BIG_ARRAYS is enabled.
12044
12045         Patch by Luis F. Ortiz.
12046         Contributed under X11 license.
12047         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12048
12049 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
12050
12051         * security-manager.c class.c: Set the class exception info by calling
12052         mono_class_set_failure ().
12053
12054         * class.c (mono_class_get_exception_data): New accessor function.
12055         (mono_class_set_failure): Store exception_data in the property hash.
12056
12057         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
12058         the struct as a property.
12059
12060         * loader.c (mono_get_method_full): Store the lookup result for method
12061         tokens in method_cache, the others in methodref_cache to decrease the memory
12062         usage of hash tables.
12063
12064         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
12065         (mono_image_init): method_cache is lazy inited now.
12066
12067         * metadata-internals.h (struct _MonoImage): Change method_cache to
12068         a MonoValueHashTable, add a separate methodref_cache.
12069
12070 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
12071
12072         * number-formatter.h: Fix tables to avoid arithemtic overflow in
12073           Double.ToString as exposed by Bug #383531.
12074
12075 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
12076
12077         * number-formatter.h: Make some tables static.
12078
12079         * class.c (mono_method_set_generic_container): New accessor function.
12080         (mono_method_get_generic_container): Ditto.
12081
12082         * class-internals.h (struct _MonoMethod): Remove rarely used 
12083         'generic_container' field, store it in the property hash instead. Add 
12084         'is_generic' boolean field instead.
12085
12086         * image.c (mono_image_init): Initialize property_hash.
12087         (mono_image_close): Destroy property_hash.
12088
12089         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
12090         hold rarely used fields of runtime structures belonging to this image.
12091
12092         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
12093         to get/set method->generic_container.
12094
12095         * loader.c (mono_get_method_from_token): Avoid loading the method header for
12096         generic methods.
12097
12098 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
12099
12100         * class.c (mono_class_inflate_generic_method_full): Don't increase
12101         mono_stats.inflated_method_count for methods found in the cache.
12102
12103         * threads.c (mono_thread_request_interruption): Add a comment about 
12104         QueueUserAPC ().
12105
12106 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
12107
12108         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
12109         interface_offsets_packed table.
12110         
12111         * class.c (mono_class_init): Remove some dead code.
12112
12113         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
12114         mono_class_setup_vtable () when CAS is active to detect security problems.
12115
12116 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
12117
12118         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
12119
12120         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
12121         parameters as it's irrelevant for delegate checking.
12122
12123 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
12124
12125         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
12126
12127         * class.c (mono_class_init): Control the creation of a generic vtable using
12128         a global which is true by default, but set to false by the runtime startup code.
12129         
12130         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
12131         Disabled for now since it breaks the embedding API.
12132         Move the setup of class->methods for arrays to mono_class_setup_methods ().
12133         (mono_class_setup_methods): Add a memory barrier.
12134
12135         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
12136         when mono_class_init () doesn't compute the generic vtable.
12137         
12138 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
12139         * profiler.c: Added mono_profiler_install_statistical_call_chain,
12140         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
12141         to support call chains (backtrace) in the stat profiler.
12142         * profiler.c, profiler-private.h: Likewise.
12143
12144 2008-05-22  Mark Probst  <mark.probst@gmail.com>
12145
12146         * generic-sharing.c: Init generic class when a method of it is
12147         requested via a runtime generic context.
12148
12149 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
12150
12151         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
12152
12153         * reflection.c (mono_type_get_object): Add a FIXME.
12154
12155         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
12156
12157         * class.c (mono_class_get_method_by_index): New helper function, returning an
12158         entry in the class->methods array.
12159
12160 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12161
12162         * class.c (mono_class_init): Only do the array optimization for szarrays. 
12163         Avoid creating a generic vtable for generic instances as well.
12164         (mono_class_get_method_from_name_flags): Don't search in the metadata for
12165         generic instances.
12166
12167 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
12168
12169         * loader.c (mono_get_method_constrained): Inflate the signature
12170         with class context. Fix #325283.
12171
12172 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12173
12174         * object.c (mono_class_create_runtime_vtable): Add a comment.
12175
12176         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
12177         where needed.
12178         (setup_interface_offsets): Handle the case when this is called twice for arrays.
12179         (mono_class_setup_vtable_general): Add an assert.
12180         (mono_class_init): Avoid creating a generic vtable for arrays.
12181
12182         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
12183         here, let mono_class_init () do that.
12184
12185         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
12186         interfaces in mscorlib.
12187
12188         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
12189         interfaces. Add some comments.
12190         (mono_class_init): Call mono_class_setup_methods () here since it is no
12191         longer called by mono_class_setup_vtable ().
12192
12193         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
12194         not set in class->vtable.
12195         (mono_class_create_runtime_vtable): Reenable the disabled code.
12196
12197         * object.c (mono_class_create_runtime_vtable): Disable the last change for
12198         now as it causes some test failures.
12199
12200         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
12201         if using the vtable trampoline. Also remove some strange code which put the
12202         generic methods themselves into the vtable slots. Remove the AOT init_vtable
12203         stuff as it is no longer needed.
12204
12205 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
12206
12207         * pedump.c: Give make --verify all option check code as well.
12208         Using --verify code won't check for metadata now.
12209
12210 2008-05-19  Martin Baulig  <martin@ximian.com>
12211
12212         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
12213
12214         * mono-debug.c
12215         (_mono_debug_using_mono_debugger): New global variable; it's set
12216         directly by the debugger, so mono_debug_using_mono_debugger() also
12217         works after attaching.
12218
12219 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
12220
12221         * object.c (mono_class_create_runtime_vtable): Use memory barriers
12222         as we do double checked locking on MonoClass::runtime_info and
12223         MonoClassRuntimeInfo::domain_vtables.
12224
12225 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
12226
12227         * debug-helpers.c (print_field_value): Fix a warning.
12228
12229 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
12230
12231         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
12232         set in the AOT case.
12233
12234 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
12235
12236         * class.c (mono_class_setup_vtable_general): Use memory barriers
12237         as we do double checked locking on MonoClass::vtable.
12238
12239 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
12240
12241         * reflection.c (resolve_object): Inflate only if the generic context
12242         is not null. Fixes #389886.
12243
12244 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
12245
12246         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
12247         instead of g_free.
12248
12249         Code is contributed under MIT/X11 license.
12250
12251 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12252
12253         * class.c: Revert unrelated change.
12254
12255 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12256
12257         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
12258         a generic instantiation, use mono_class_from_mono_type instead of playing
12259         with MonoType directly.
12260
12261 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12262
12263         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
12264         checks must ignore generic instantiations, so mono_class_has_parent is not
12265         suitable. Fixes #390128.
12266
12267 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
12268
12269         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
12270         it to avoid registering tokens during metadata generation. Fixes #390023.
12271
12272 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
12273
12274         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
12275         consistent.
12276
12277         Contributed under MIT/X11 license.
12278
12279 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
12280
12281         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
12282         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
12283         to fixup the EXE image.
12284         (mono_cleanup): Use mono_close_exe_image.
12285         (mono_close_exe_image): New function.
12286         * image.c: Include "marshal.h".
12287         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
12288         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
12289         counting when the image is loaded outside of mono_image_open_full. Set status
12290         based on GetLastError.
12291         * coree.c: Include required headers. Add init_from_coree.
12292         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
12293         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
12294         (_CorExeMain): Set init_from_coree.
12295         (CorExitProcess): Only call ExitProcess for now.
12296         (CorBindToRuntimeEx): New stub implementation.
12297         (CorBindToRuntime): New function.
12298         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
12299         (MonoFixupExe): ILONLY executables require no fixups.
12300         (mono_set_act_ctx): New function to set activation context.
12301         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
12302         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
12303         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
12304         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
12305         as MONO_INTERNAL.
12306         * domain-internals.h: Add mono_close_exe_image.
12307
12308         Contributed under MIT/X11 license.
12309
12310 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
12311
12312         * metadata.c (mono_metadata_compute_size): Correctly calculate field
12313         size for generic param and event tables. Fixes #388977.
12314
12315 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
12316
12317         * loader.c (mono_method_signature): Use memory barriers because of the double
12318         checked locking pattern.
12319
12320         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
12321         aborting or aborted as well. Fixes #376391.
12322         
12323         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
12324         existing runtime state in the Suspend handler during shutdown.
12325
12326 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
12327
12328         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
12329
12330         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
12331         which are starting up or shutting down.
12332
12333         * threads.c (mono_threads_set_shutting_down): Don't return a value since
12334         this function never returns if the runtime is already shutting down.
12335
12336         * icall.c (ves_icall_System_Environment_Exit): Update after 
12337         mono_threads_set_shutting_down () signature change.
12338         
12339 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
12340
12341         * class.c: Added can_access_instantiation to verify if the instantiation
12342         is visible. Fix access check for nested types as they returned TRUE
12343         before doing type and generic instantiation visibility checks.
12344
12345 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
12346
12347         * reflection.c (mono_reflection_create_generic_class): The created type
12348         must have a different container from its TypeBuilder. Otherwise they
12349         will end sharing generic arguments, which is wrong.
12350
12351         Due to the sharing, making a generic instance of the created type using
12352         the TypeBuider generic arguments resulted in the generic type definition
12353         been returned, which is wrong as well.
12354
12355         As a bonus the code was leaking the type_params array. This memory should
12356         be allocated from the image mempool.
12357
12358         This fixes bug #354047.
12359
12360 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
12361
12362         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
12363         to here         as they are now used in assembly.c new code.
12364         Added a skipverification flag to MonoAssembly.
12365         New internal function mono_assembly_has_skip_verification.
12366
12367         * assembly.c: New function mono_assembly_has_skip_verification. It checks
12368         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
12369         part of #387274.
12370
12371 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12372
12373         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
12374         needed. Fixes #387034.
12375
12376         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
12377
12378 2008-05-06  Miguel de Icaza  <miguel@novell.com>
12379
12380         * assembly.c (mono_assembly_load_reference): Prevent crash while
12381         disassembling Silverlight 2.0 executables while we still do not
12382         have GACed libraries.
12383
12384 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12385
12386         * reflection.c: Special case generic type definitions as well. Fixes #383444.
12387
12388 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
12389
12390         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
12391         of the dynamic case. Fixes #387404.
12392
12393 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12394
12395         *verify.c (mono_verifier_is_class_full_trust): If under
12396         verify_all and the verifier mode was not set, only
12397         gac and corlib types are fulltrust. This makes --verify-all
12398         usable to detect unverifiable code, which is the expected
12399         use case.
12400
12401 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12402
12403         * verify.h: Ops, commited the header with debug
12404         enabled.
12405
12406 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12407
12408         * verify.c (merge_stack): Use the new value on unverifiable
12409         stack merges.
12410
12411         * verify.c (verify_type_compatibility_full): Comparison
12412         of nullable types can't use mono_class_is_assignable_from.
12413
12414         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
12415         that makes all verification errors be reported.
12416
12417         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
12418         mono_method_verify.
12419
12420 2008-05-05  Robert Jordan  <robertj@gmx.net>
12421
12422         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
12423         support for value types. See #386415.
12424
12425         * object.c: comments.
12426
12427         Code is contributed under MIT/X11 license.
12428
12429 2008-05-05  Martin Baulig  <martin@ximian.com>
12430
12431         * debug-mono-symfile.h
12432         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
12433         for old pre-terrania symbol files.
12434
12435 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12436
12437         * mono-config.c: Add ppc64 architecture.
12438
12439         Code is contributed under MIT/X11 license.
12440
12441 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12442
12443         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
12444           PPC64 uses function descriptors as well.
12445
12446         Code is contributed under MIT/X11 license.
12447
12448 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
12449
12450         * object.c (compute_class_bitmap): Ignore literal static fields.
12451
12452         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
12453         var has an invalid format.
12454         (describe_ptr): Add some sanity checks for the vtable.
12455         (add_nursery_frag): Clear unused nursery fragments.
12456         (major_collection): Clear all remaining nursery fragments.
12457
12458 2008-05-03  Robert Jordan  <robertj@gmx.net>
12459
12460         * image.c, metadata-internals.h: add thunk_invoke_cache.
12461
12462         * marshal.c, marshal.h: implement
12463         mono_marshal_get_thunk_invoke_wrapper ().
12464
12465         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
12466
12467         Code is contributed under MIT/X11 license.
12468
12469 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12470
12471         * verify.c (do_leave): Empty the stack.
12472
12473 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12474
12475         * class.c (mono_class_is_assignable_from): Variance
12476         doesn't work between reference and value types. For example,
12477         given type C<T+>, C<int32> is not assignable to C<object>.
12478         Break the argument checking loop on first error. 
12479
12480 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
12481
12482         * icall.c : base64_to_byte_array() needs some more strict
12483           check for sequence of '=' characters. Patch by Santa
12484           Marta (http://deee.g.hatena.ne.jp/santamarta).
12485
12486           Contributed under MIT/X11 license.
12487           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
12488
12489 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
12490
12491         * domain.c: Disable LoadLibrary support to fix Win32 build.
12492
12493         Code is contributed under MIT/X11 license.
12494
12495 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
12496
12497         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
12498         to help with cache behaviour.
12499
12500 2008-05-01  Miguel de Icaza  <miguel@novell.com>
12501
12502         * appdomain.c (mono_domain_from_appdomain): Add new accessor
12503         method. 
12504
12505 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
12506
12507         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
12508
12509 2008-05-01  Dick Porter  <dick@ximian.com>
12510
12511         * process.c (process_get_fileversion): Only pass 16 bits of
12512         language ID to VerLanguageName.  Fixes bug 381204.
12513
12514 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12515
12516         * verify.c (mono_method_verify): Fix the comparison
12517         operator for code bounds check.
12518
12519 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12520
12521         * verify.c (mono_method_verify): Check the bounds of
12522         all access of the code array.
12523
12524 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
12525
12526         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
12527
12528 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
12529
12530         * image.c (mono_image_strong_name_position): Fix return value when the rva is
12531         not valid.
12532
12533 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
12534
12535         * loader.c (mono_get_method_from_token, mono_method_signature): Add
12536         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
12537         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
12538         fixup main EXE images when using mono.exe for mixed-mode assembly support.
12539         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
12540         mono_runtime_load.
12541         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
12542         runtime initialization from metadata.
12543         * assembly.c: Remove obsolete ceGetModuleFileNameA.
12544         (mono_set_rootdir): Use mono_get_module_file_name.
12545         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
12546         handles.
12547         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
12548         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
12549         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
12550         MonoCLIImageInfo. Add support for module handles.
12551         (load_cli_header): Update mono_cli_rva_image_map signature.
12552         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
12553         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
12554         (mono_image_rva_map): Add support for module handles.
12555         (mono_image_ensure_section_idx): Add support for module handles.
12556         (mono_image_close): Add support for module handles.
12557         (do_load_header): Add support for module handles.
12558         (mono_image_open_from_module_handle): New function for internal use.
12559         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
12560         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
12561         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
12562         handles.
12563         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
12564         * image.h: Add mono_image_fixup_vtable.
12565         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
12566         support.
12567         * coree.h: New file.
12568         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
12569         unsupported native code.
12570         (mono_marshal_set_callconv_from_modopt): New function splitted from
12571         mono_marshal_get_managed_wrapper.
12572         (mono_marshal_get_managed_wrapper): Use
12573         mono_marshal_set_callconv_from_modopt.
12574         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
12575         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
12576         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
12577         that results in a deadlock when the runtime is loaded in _CorDllMain.
12578         * Makefile.am: Add coree.c and coree.h.
12579
12580         Contributed under MIT/X11 license.
12581
12582 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12583
12584         * generic-sharing.c: Search for type arguments in array element
12585         types as well.
12586
12587 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12588
12589         * class-internals.h, generic-sharing.c: New, small runtime generic context.
12590
12591         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
12592
12593         * object.c: Don't setup the RGCTX when the vtable is created,
12594         because we're setting it up lazily now.
12595
12596 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
12597
12598         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
12599         64 bit support.
12600
12601 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12602
12603         * verify.c (verify_class_for_overlapping_reference_fields): 
12604         If class is under fulltrust allow reference types to overllap
12605         if they have the same RVA.
12606
12607 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12608
12609         * pedump.c: Added new flag valid-only, that makes the verifier
12610         behaves just like --security=validil. It won't fail type load
12611         due to unverifiable restrictions.
12612
12613 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12614
12615         * class-internals.h (struct MonoMethod): Added a verification_success
12616         field to cache verifier executions. Reduced MonoMethod:slot size by
12617         one bit.
12618
12619 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
12620
12621         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
12622         instead of a 'vt' argument to save an indirection and to allow these to be used
12623         for valuetypes.
12624         (scan_vtype): New helper function to scan an area using a gc descriptor.
12625         (mono_gc_wbarrier_value_copy): Implement this.
12626         (handle_remset): Add support for REMSET_VTYPE.
12627         (find_in_remset_loc): Ditto.
12628         (mono_gc_base_init): Allow some debugging options to be controlled through the
12629         use of the MONO_GC_DEBUG env variable.
12630         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
12631         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
12632
12633 2008-04-23  Martin Baulig  <martin@ximian.com>
12634
12635         * domain.c (mono_domain_create): Move the call to
12636         mono_debug_domain_create() down, after allocating the domain id.
12637
12638 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12639
12640         verify.c (verify_class_for_overlapping_reference_fields): Skip
12641         static fields while verifying for overlapping fields as they
12642         don't matter at all.
12643
12644 2008-04-23  Marek Habersack  <mhabersack@novell.com>
12645
12646         * domain-internals.h: added a declaration of
12647         mono_make_shadow_copy.
12648
12649         * assembly.c (mono_assembly_open_full): shadow copying of
12650         assemblies moved to here, so that all the assemblies within the
12651         application domain's private binary directories can be
12652         processed. Fixes bug #380546
12653
12654         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
12655         mono_make_shadow_copy and made non-static. The decision whether
12656         to shadow-copy an assembly is made based on its location - it's
12657         copied if it's in one of the private application domain binary
12658         directories and its different to the target file in the shadow
12659         directory. Fixes bug #380546
12660
12661 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
12662
12663         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
12664
12665         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
12666         types.
12667
12668         * reflection.c (mono_image_create_token): Handle 
12669         Method/ConstructorOnTypeBuilderInst.
12670         (resolve_object): Ditto.
12671         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
12672         so it can be called from resolve_object. Also handle the case when the inflated
12673         class already has its methods setup.
12674
12675 2008-04-21  Martin Baulig  <martin@ximian.com>
12676
12677         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
12678
12679 2008-04-20  Geoff Norton  <gnorton@novell.com>
12680
12681         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
12682         pointer dereference.
12683
12684 2008-04-15  Marek Habersack  <mhabersack@novell.com>
12685
12686         * appdomain.c (try_load_from): if IOMAP is in effect, call the
12687         portability API to look up the assembly file. Fixes behavior in
12688         situations when the application has a bin/ directory, but the
12689         assembly search patch refers to Bin/ (and thus the requested file
12690         name is Bin/SomeLibrary.dll). Fixes bug #379888
12691
12692 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
12693
12694         verify.c (mono_type_is_generic_argument): Extracted this check
12695         from a dozen places to here.
12696
12697         verify.c: Fixed all issues related to boxing generic arguments
12698         and their constraints.
12699
12700 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
12701
12702         verify.c (mono_class_interface_implements_interface): Fix win32 build.
12703
12704 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
12705
12706         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
12707         isn't finished yet. Fixes #363447.
12708
12709 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
12710
12711         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
12712         Fixes #346419.
12713
12714 2008-04-13  Jb Evain  <jbevain@novell.com>
12715
12716         * domain.c: update the 2.1 profile versions.
12717         Merged from the Moonlight 2 branch.
12718
12719 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
12720
12721         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
12722         mscorlibs for the non-refonly case as well.
12723
12724         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
12725         in mono_assembly_load_from_full (). Fixes #378924.
12726
12727 2008-04-11  Geoff Norton  <gnorton@novell.com>
12728
12729         * icall.c: The global extern environ doesn't exist on Mac.  We
12730         need to call NSGetEnviron instead.
12731
12732 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12733
12734         verify.c: Add generic method constraint verification.
12735
12736 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12737
12738         class.c (mono_class_inflate_generic_method_full): Add a long
12739         explanation to the is_mb_open hack. Remove the FIXME.
12740
12741 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12742
12743         * verify.c (mono_method_verify): Mark all unknown opcodes
12744         as invalid. Mark jmp as unverifiable.
12745
12746 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12747
12748         * verify.c: Add code to do type constraint verification on class instances.
12749
12750         * verify.c (mono_verifier_verify_class): Use the type constraint 
12751         verification code.
12752
12753 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12754
12755         * class.c (mono_class_get_field_default_value): Don't pass cindex
12756         as hint to mono_metadata_get_constant_index. The local is not initialized
12757         and should contain garbage most of the time. This could only work
12758         with a lot of luck.
12759
12760 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12761
12762         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
12763
12764 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12765
12766         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
12767
12768         * class.c (mono_class_from_generic_parameter): Save the token of the
12769         generic param in MonoClass::sizes.generic_param_token.
12770
12771         * reflection.c (mono_custom_attrs_from_class): If the class type is
12772         VAR or MVAR retrieve the attributes of the generic param.
12773
12774 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12775
12776         * class.c (mono_class_init): Do class verification if the verifier
12777         is enabled.
12778
12779 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12780
12781         * verify-internal.h: Added mono_verifier_verify_class.
12782
12783         * verify.c: Added mono_verifier_verify_class. It checks for
12784         classes with explicit layout that have overlapping reference fields.
12785
12786         * pedump.c: Init the verifier state prior to verification. Fixed
12787         command line arguments.
12788
12789 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12790
12791         * Makefile.am: Added verify-internals.h, hopefully fix the build.
12792
12793 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12794
12795         * verify-internals.h: Fix a warning.
12796
12797 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12798
12799         * verify-internals.h: New header with the verifier configuration
12800         extracted from mini.c.
12801
12802         * verify.c: Implemented the new functions exported by verify-internals.h.
12803
12804 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12805
12806         * verify.c: Add proper verification of ckfinite.
12807
12808 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12809
12810         * verify.c (do_conversion): Improved error message to something
12811         more meanfull.
12812
12813         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12814         with primitive types.
12815
12816 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12817
12818         * verify.c: Added tail prefix checking. Marked icall
12819         as unverifible.
12820
12821 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12822
12823         * verify.c: Fix the detection of branches to the middle
12824         of an instruction.
12825
12826 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12827
12828         * verify.c: Implemented verification of volatile. and
12829         unaligned. prefix. Check if a type is valid after retrieving it.
12830
12831 2008-04-01  Dick Porter  <dick@ximian.com>
12832
12833         * process.c (process_get_fileversion): If there's no string block,
12834         set the file language to en_US.  Fixes the other new part of bug
12835         374600.
12836
12837 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12838
12839         * class.c: New functions mono_method_can_access_field_full and
12840         mono_method_can_access_method_full. They perform type visibility
12841         and type site check.
12842
12843         * class-internal.h: Added exported functions.
12844
12845         * verify.c: Use new functions to implement proper visibility checks.
12846
12847 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12848
12849         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12850
12851 2008-03-28  Dick Porter  <dick@ximian.com>
12852
12853         * process.c (process_get_fileversion): Use the first language ID
12854         we see, rather than insisting on an invariant language.  Fixes bug
12855         374600.
12856
12857 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12858
12859         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12860         the streams to fix reading of invalid memory later.
12861
12862         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12863         to ease debugging.
12864
12865 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12866
12867         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12868         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12869
12870 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12871         * threads.h: Added MonoThreadManageCallback type and
12872         mono_thread_set_manage_callback prototype
12873         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12874         (used to store the mono_thread_manage callback).
12875         * threads.c: Added mono_thread_set_manage_callback, and handle
12876         "MonoThread->manage_callback" in build_wait_tids.
12877
12878 2008-03-26  Dick Porter  <dick@ximian.com>
12879
12880         * process.c (process_get_fileversion): Set FileVersionInfo strings
12881         to Empty when the resource doesn't have the particular info.
12882         Fixes bug 355717.
12883
12884 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12885
12886         * verify.c (mono_method_verify): Proper prefix validation.
12887
12888 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12889
12890         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12891         itself in a separate argument instead of throwing them. Fixes #373448.
12892
12893         * appdomain.c: Bump corlib version.
12894
12895 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12896
12897         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12898
12899 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12900
12901         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12902         version macros.
12903
12904 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12905
12906         * generic-sharing.c, class-internals.h: Code for putting
12907         reflection types into the runtime generic context.
12908
12909 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12910
12911         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12912         Fixes #340662. 
12913
12914
12915 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12916
12917         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12918
12919         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12920
12921         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12922
12923         * verify.c (do_cast): Let the result value keep the boxed status.
12924
12925         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12926
12927 2008-03-17  Jb Evain  <jbevain@novell.com>
12928
12929         * reflection.c: when running on a 2.0 runtime, emit
12930         unconditionally the #~ header version as 2.0, and the
12931         CLI header version as 2.5, for symmetry's sake with csc.
12932
12933 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12934
12935         * class.c: Remove the unused cache_interface_offsets stuff.
12936
12937         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12938         profiler.c: Fix warnings.
12939
12940 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12941
12942         * generic-sharing.c, class-internals.h: Support for putting
12943         methods into the runtime generic context.
12944
12945 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12946
12947         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12948         classes which are generic instances of not-yet finished typebuilders. Fixes
12949         #351172.
12950
12951         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12952
12953 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12954
12955         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12956
12957         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12958         field, replace it with a hash table in MonoDynamicImage.
12959
12960         * reflection.c (inflate_mono_method): Access the generic definition object from
12961         image->generic_def_objects instead of imethod->reflection_info.
12962
12963         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12964
12965         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12966         
12967         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12968         function in reflection.c so it is easier to keep in sync with the dynamic image
12969         creation code.
12970
12971         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12972         mono_image_close ().
12973
12974 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12975
12976         * class.c (mono_class_generic_sharing_enabled): Disable generic
12977         sharing for all architectures except AMD64 and x86 to fix build.
12978
12979 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12980
12981         * verify.c: Use the generic definition MonoGenericContext when available.
12982         Remove code for checking generics instance compatibility in favor of
12983         mono_class_is_assignable_from.
12984
12985 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12986
12987         * marshal.c, marshal.h, metadata-internals.h, image.c,
12988         wrapper-types.h: New wrapper for invoking a shared static method
12989         without having to pass the runtime generic context argument.
12990
12991 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12992
12993         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12994
12995 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12996
12997         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12998         
12999         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
13000         create a token from a FieldOnTypeBuilderInst.
13001         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
13002         (resolve_object): Ditto.
13003
13004         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
13005         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
13006
13007 2008-03-14  Martin Baulig  <martin@ximian.com>
13008
13009         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
13010
13011         * debug-mono-symfile.h
13012         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
13013         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
13014
13015 2008-03-10  Martin Baulig  <martin@ximian.com>
13016
13017         * debug-mono-symfile.h
13018         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
13019         `lexical_block_table_offset'.
13020         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
13021         `lexical_blocks'.
13022         (MonoSymbolFile): Added `version'.
13023
13024         * mono-debug.h
13025         (MonoDebugLexicalBlockEntry): Removed.
13026         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
13027         `lexical_blocks'.
13028
13029         * mono-debug.c (mono_debug_add_method): Don't compute lexical
13030         blocks here; the debugger now does this internally.
13031
13032 2008-02-27  Martin Baulig  <martin@ximian.com>
13033
13034         * object.c (mono_runtime_exec_main): Call
13035         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
13036         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
13037
13038 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
13039
13040         * verify.c (verify_type_compatibility_full): Allow native int to be converted
13041         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
13042
13043 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
13044
13045         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
13046         ldftn with a virtual method.
13047
13048 2008-03-13  Geoff Norton  <gnorton@novell.com>
13049
13050         * decimal.c:  Only include memory.h if the platform has it.
13051
13052 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
13053
13054         * assembly.c, class.c, metadata-internals.h: make sure public key
13055         tokesns are compared in a case-insensitive way. Also, all
13056         the lookups in the GAC use a lowercase public key token
13057         (gaacutil already does the lowercasing on install). Fixes
13058         bug #369541.
13059
13060 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
13061
13062         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
13063         and return value.
13064
13065 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
13066
13067         * image.c: when someone loads a mscorlib from a file, return the
13068         currently loaded mscorlib (fixes bug #369253).
13069
13070 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
13071
13072         * class.c: handle types with no parents by forcing them to have
13073         System.Object as a parent and marking them as broken (this currently
13074         allows the first part of bug #369173 to work as well, likely because
13075         we don't check for typeload exceptions everywhere yet).
13076
13077 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
13078
13079         * class.c: more complete check that types belong to corlib
13080         (fixes second part of bug #369173).
13081
13082 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
13083
13084         * generic-sharing.c:  Including glib.h for the MSVC builds to define
13085           "inline" to "__inline" before including mono-membar.h.
13086           
13087         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
13088           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
13089           MSVC builds.
13090
13091         Contributed under MIT/X11 license.
13092
13093 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
13094
13095         * verify.c (do_invoke_method): Remove return type validation.
13096
13097         * verify.c (do_ret): Do return type validation at return site instead of
13098         call site.
13099
13100 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
13101
13102         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
13103
13104         * verify.c: Some todos cleaned and improved a few error messages.
13105
13106 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
13107
13108         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
13109
13110 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
13111
13112         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
13113         system types correctly.
13114
13115         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
13116         function.
13117
13118 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
13119
13120         * assembly.c (build_assembly_name): Fix a warning.
13121
13122 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
13123
13124         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
13125         the called function takes an object type argument. Fixes storing or
13126         valuetypes across remoting as well as reducing memory usage.
13127         * image.c, metadata-internals.h: remove now unused ldfld_remote and
13128         stfld_remote wrapper caches.
13129
13130 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
13131
13132         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
13133         is not found.
13134
13135         * reflection.c (mono_image_register_token): New helper function to save
13136         a token->object mapping.        
13137
13138         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
13139         managed code.
13140
13141         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
13142         one dimension arrays. Fixes #367670.
13143         (mono_reflection_get_type_internal): Ditto.
13144
13145 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
13146
13147         * marshal.c: mono_load_remote_field_new() always returns object.
13148         so use the proper signature (fixes bug #366445).
13149
13150 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
13151         
13152         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
13153         add an 'inline_failure' flag instead.
13154
13155 2008-03-04  Mark Probst  <mark.probst@gmail.com>
13156
13157         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
13158         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
13159         contains the location of "this", used for exception handling.
13160
13161 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
13162
13163         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
13164         their size on all platforms for perf reasons.
13165
13166 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13167
13168         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
13169         object-internal.h
13170
13171         * object-internal.h: Same.
13172
13173 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13174
13175         * reflection.h: Fix the build I just broke.
13176
13177 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13178
13179         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
13180         Test if a token is valid, this remove explicit usage of 
13181         MonoDynamicImage::tokens from the verifier code.
13182
13183         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
13184
13185         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
13186         instead of direct access to MonoDynamicImage::tokens.
13187
13188 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13189
13190         * verify.c (token_bounds_check): Fix the build I just broke.
13191
13192 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13193
13194         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
13195
13196         * verify.c (verifier_load_method): Fixed the errors message.
13197
13198         * verify.c (mono_method_verify): Fixed a debug message.
13199
13200 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
13201
13202         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
13203         mono-perfcounters.h, class-internals.h: support for predefined
13204         writable counters, query of categories and counters, bugfixes.
13205
13206 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
13207
13208         * verify.c (do_refanytype): Verify the refanytype opcode.
13209
13210         * verify.c (mono_method_verify): Use do_refanytype.
13211
13212 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
13213
13214         * verify.c (do_mkrefany): Verify the mkrefany opcode.
13215
13216         * verify.c (mono_method_verify): Use do_mkrefany.
13217
13218 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
13219
13220         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
13221         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
13222         implementation.
13223
13224 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
13225
13226         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
13227         the type load exception.
13228
13229 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
13230
13231         * verify.c: Added a few FIXME for method signatures
13232
13233         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
13234         of mono_method_get_signature and get vararg call working. Removed unused
13235         checks for return value.
13236
13237         * verify.c (do_refanyval): Verify the refanyval opcode.
13238
13239         * verify.c (mono_method_verify): Implemented verification of arglist and
13240         use do_refanyval.
13241
13242 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
13243
13244         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
13245         vtypes to marshal.c.
13246
13247         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
13248         it works for AOT as well.
13249
13250 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
13251
13252         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
13253         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
13254         the system time is adjusted.
13255
13256 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
13257
13258         * icall.c, icall-def.h: use the new time functions (fixes the
13259         non-monotonic behaviour of TickCount).
13260
13261 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
13262
13263         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
13264         it breaks the build.
13265         
13266         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
13267         cattr is not finished yet.
13268
13269 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
13270
13271         * verify.c: Proper token validation for field, method and type.
13272
13273 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
13274
13275         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
13276
13277         * loader.c (method_from_memberref): Generate type load error instead of method missing
13278         if the type is not found.
13279
13280 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
13281
13282         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
13283         some of the conversions caused the generation of a marshal directive exception.
13284
13285 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
13286
13287         verify.c: Report which exception should be thrown by the JIT.
13288         Added a lot of FIXME notes.
13289
13290 2008-02-22  Mark Probst  <mark.probst@gmail.com>
13291
13292         * generic-sharing.c: Runtime generic context slots are not
13293         instantiated on init anymore.  Instead, provide function to do the
13294         instantiating on demand.
13295
13296         * class-internals.h: Added vtable to runtime generic context.
13297         Macros for encoding direct and indirect slot offsets in one
13298         guint32.
13299
13300 2008-02-21  Mark Probst  <mark.probst@gmail.com>
13301
13302         * object.c, generic-sharing.c: Moved some generic sharing code
13303         from object.c to generic-sharing.c.
13304
13305         * generic-sharing.c: Added support for extensible runtime generic
13306         context.
13307
13308         * metadata-internals.h: Two new hash tables in MonoImage for
13309         extensible runtime generic context support.
13310
13311         * domain.c: Unregister generic vtables upon domain unloading.
13312
13313         * image.c: Destroy new hash tables upon image unloading.
13314
13315         * metadata.c: Unregister generic subclasses upon image unloading.
13316
13317         * class-internals.h: New data structure for runtime generic
13318         context template.  New fields in the runtime generic context for
13319         extensible part.
13320
13321         * Makefile.am: Added generic-sharing.c.
13322
13323 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
13324
13325         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
13326         there is a pending loader exception, raise it.
13327
13328         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13329         same.
13330
13331         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
13332         same.
13333
13334         Fixes #363450.
13335
13336 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
13337
13338         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
13339
13340         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
13341         
13342         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
13343         ref-only requests for compatibility with MS.
13344
13345 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
13346
13347         * reflection.c (mono_custom_attrs_from_method): Don't silently
13348         return an empty list for generic method instances.
13349         (mono_custom_attrs_from_param): Likewise.
13350
13351 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
13352             Raja R Harinath  <harinath@hurrynot.org>
13353
13354         Fix #354757
13355         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
13356         * class.c (mono_class_inflate_generic_method_full): Initialize it
13357         when a fully-open method is instantiated.
13358         * metadata.c (inflated_method_equal, inflated_method_hash): Update
13359         to new field.
13360         * reflection.c (inflate_mono_method): Don't create a temporary context.
13361
13362 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
13363
13364         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13365         Compute correct value, to prepare for imethod->reflection_info going away.
13366
13367 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
13368
13369         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
13370
13371 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
13372
13373         * verify.c: Implement skip visibility flag.
13374
13375 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
13376
13377         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
13378         which contains an extra field to tell the kind of exception that should be thrown.
13379
13380         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
13381
13382 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
13383
13384         * loader.c (mono_method_get_param_names): Initialize 'klass' after
13385         'method' is updated.
13386
13387 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
13388
13389         * class.c (mono_class_layout_fields): Set class->min_align for classes using
13390         explicit layout as well. Fixes #360375.
13391
13392 2008-02-11  Geoff Norton  <gnorton@novell.com>
13393
13394         * loader.c: Guard and dereference against inflated generic methods
13395
13396 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
13397
13398         * class.c: Include Retargetable spec in assembly name.
13399         * assembly.c: Always include PublicKeyToken spec in assembly name
13400         (with value "null" if assembly is not signed), and include
13401         Retargetable spec.
13402         * icall-def.h: Added icall for Assembly.get_fullname.
13403         * icall.c: Added icall returning the fullname of an assembly.
13404
13405 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
13406
13407         * class.c (mono_class_setup_vtable_general): Add a missing call to
13408         mono_class_setup_methods () which is needed in the AOT case.
13409
13410 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
13411
13412         * verify.c (mono_type_get_stack_name): Added. Return the name for the
13413         stack type of the given MonoType.
13414
13415         * verify.c (verify_type_compatibility_full): Handle the void type.
13416
13417         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
13418         way stack merging works.
13419
13420         * verify.c (store_local): Improved verification message.
13421
13422         * verify.c (do_branch_op): If the merging is invalid, the method
13423         is unverifiable and not invalid. Improved error message.
13424
13425         * verify.c (merge_stacks): Properly merge a boxed valuetype and
13426         a reference type diferent than System.Object. Improved error
13427         message.
13428
13429 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
13430
13431         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
13432
13433         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
13434         type of an enum even if the argument is byref.
13435
13436         * verify.c: Replace all explicit uses of enumtype and enum_basetype
13437         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
13438
13439         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
13440
13441         *verify.c (verify_type_compatibility_full): Make enum types
13442         compatible with their base types.
13443
13444         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
13445         types are compatible for the special case of a boxed valuetype and
13446         System.Object.
13447
13448         * verify.c (verify_stack_type_compatibility): The function
13449         is_compatible_boxed_valuetype was extracted from here.
13450
13451         * verify.c (push_arg): Only set ctx->has_this_store if the method
13452         is not static.
13453
13454         * verify.c (do_ldelem): Fixed a typo in an error message and added
13455         strict check for mixing int32 and native int as the array type
13456         and ldelem type.
13457
13458         * verify.c (merge_stacks): Consider boxed valuetypes in the
13459         compatibility checks.
13460
13461 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
13462         * profiler.h: (MonoGCEvent): Added start-stop the world events.
13463
13464 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13465         *class.c: use_new_interface_vtable_code: renamed the env var to have
13466         a "MONO_" prefix, and fix the logic to enable it by default.
13467
13468 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13469         *class.c:
13470         mono_class_setup_vtable_general: rewrote the way in which interface
13471         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
13472         makes the code more maintainable.
13473         For now the old code is still there, and can be activated setting
13474         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
13475
13476 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
13477
13478         * verify.c: guarded some debug functions around and #ifdef.
13479
13480         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
13481
13482 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
13483
13484         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
13485         changes for now since they seem to break too many things.
13486
13487 2008-02-05  Mark Probst  <mark.probst@gmail.com>
13488
13489         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
13490         mono_marshal_find_nonzero_bit_offset): Added macro and function
13491         for finding the byte- and bit-offset of a bitfield within a
13492         struct.
13493
13494 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
13495
13496         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
13497         (mono_marshal_get_struct_to_ptr): Ditto.
13498
13499         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
13500         cctor_signature.
13501
13502 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
13503
13504         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
13505         between methods for non-corlib types.
13506
13507 2008-02-02  Geoff Norton  <gnorton@novell.com>
13508
13509         * loader.c (mono_method_get_param_names): Populate the parameter name for 
13510         generic parameters as well. (Fixes #342536)
13511
13512 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
13513
13514         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
13515
13516         * verify.c (do_invoke_method): Fix for calling with byref structs.
13517
13518         * verify.c (do_cast): push a boxed value type based on the type token and not
13519         the type of stack.
13520
13521 2008-01-31  William Holmes  <billholmes54@gmail.com>
13522
13523         * process.c (process_module_string_read): Check the size returned form 
13524           VerQueryValue to avoid out of memory exception. 
13525
13526 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
13527
13528         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13529         Handle properly modules which are not in the moduleref table. Fixes
13530         #356938.
13531
13532 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
13533
13534         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
13535         the dynamic case which is now in managed code.
13536         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
13537
13538         * marshal.c (mono_string_to_bstr): Fix a warning.
13539         (init_com_provider_ms): Ditto.
13540
13541         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
13542
13543         * exception.c (mono_get_exception_out_of_memory): New helper function.
13544
13545 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
13546
13547         * marshal.c: Add support for BSTR marshalling
13548         using other COM systems.
13549
13550         Code is contributed under MIT/X11 license.
13551
13552 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13553
13554         * object.c (mono_runtime_invoke_array): reverted previous
13555         commit as it breaks the build.
13556
13557 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13558
13559         * object.c (mono_runtime_invoke_array): Verify arguments for
13560         invalid types. Fixes #348522.
13561
13562 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13563
13564         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
13565         non-final virtual calls using call. 
13566
13567         * verify.c (do_invoke): fixed some TODOs.
13568
13569         * verify.c (push_arg): set has_this_store for "ldarga 0".
13570
13571 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
13572
13573         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
13574         which belong to an inflated class. Fixes #356531.
13575
13576 2008-01-26  Robert Jordan  <robertj@gmx.net>
13577
13578         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
13579         which resort to FindFirstFile when a certain error condition
13580         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
13581         Code is contributed under MIT/X11 license.
13582
13583 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
13584
13585         * marshal.c (emit_marshal_string): Fix out string marshalling
13586         to use specified encoding. Fixes #323900.
13587
13588         Code is contributed under MIT/X11 license.
13589
13590 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
13591
13592         * class.c (mono_class_inflate_generic_method_full): Don't modify
13593         iresult->context after cache check.
13594
13595 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
13596
13597         * class.c (mono_class_inflate_generic_method_full): Change the
13598         struct assignments to memcpy for better visibility and add some comments.
13599
13600 2008-01-23  Dick Porter  <dick@ximian.com>
13601
13602         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
13603         procedure, and make it work on windows.
13604
13605 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
13606
13607         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
13608         a MonoReflectionTypeBuilder since it is always of that type.
13609
13610         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
13611
13612         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
13613
13614         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
13615         
13616         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
13617
13618         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
13619
13620         * reflection.c (mono_reflection_create_runtime_class): Remove already created
13621         instantiations from the type cache.
13622
13623 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13624
13625         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
13626
13627         * verify.c (do_unbox_value): push a controled mutability managed pointer.
13628
13629 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13630
13631         * verify.c (do_ldstr): added, verifies if the #US token is valid.
13632
13633         * verify.c (mono_method_verify): removed old TODO
13634
13635 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13636
13637         * verify.c (do_newobj): add visibility check.
13638
13639 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13640
13641         * verify.c (do_load_function_ptr): add visibility check.
13642
13643 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
13644         *class.c:
13645         mono_generic_class_get_class: hook profiler events.
13646         mono_field_get_offset: added to support heap-shot in the new profiler.
13647         *class.h: exported mono_field_get_offset.
13648         * reflection.c:
13649         mono_reflection_setup_internal_class: hook profiler events.
13650
13651 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
13652
13653         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
13654         argument here too and use it to avoid checking for pending exceptions if 
13655         possible.
13656
13657 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
13658
13659         * assembly.c (build_assembly_name): add arg for passing the assembly
13660         flags. Do not consider a PublicKey with value "null" valid.
13661         (mono_assembly_name_parse_full): added boolean argument that will be
13662         set if the assembly name contains a PublicKeyToken spec. Added support
13663         for the Retargetable spec for which only Yes or No are allowed as valid
13664         value. Consider assembly name invalid if Retargetable spec is set, but
13665         either version, culture or public key (token) are not specified.
13666         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
13667         with implementation in assembly.c.
13668         * icall.c (fill_reflection_assembly_name): also copy assembly flags
13669         from MonoAssemblyName.
13670         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
13671         introduced argument for mono_assembly_name_parse_full to know if the
13672         assembly name has a PublicKeyToken spec, and if it has instruct
13673         fill_reflection_assembly_name to use default value for keyToken (if
13674         PublicKeyToken is null).
13675
13676 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13677
13678         * verify.c (mono_method_verify): fixed ovf ops with
13679         float values. They are unverifiable now.
13680
13681 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13682
13683         * class.c (set_failure_from_loader_error): add BadImageException to the
13684         list of exceptions that can cause a type to fail to load.
13685
13686         * class.c (mono_class_get_exception_for_failure): same.
13687
13688 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
13689
13690         * verify.c (in_any_exception_block): added, check if offset
13691         is part of any exception handling clause.
13692
13693         * verify.c (get_stack_type): added VAR and MVAR types.
13694
13695         * verify.c (do_stobj): better error messages.
13696
13697         * verify.c (do_cpobj): added, check cpobj.
13698
13699         * verify.c (do_initobj): added, check initobj.
13700
13701         * verify.c (do_sizeof): added, check sizeof.
13702
13703         * verify.c (do_localloc): added, check localloc.
13704
13705         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
13706
13707 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
13708
13709         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
13710         save_lmf/restore_lmf opcodes.
13711
13712         * threads.c (mono_threads_install_notify_pending_exc): New function to
13713         install a callback notifying the JIT there is a pending exception on a thread.
13714         (mono_thread_request_interruption): Call the new callback.
13715         (mono_thread_get_and_clear_pending_exception): New function to return the
13716         exception pending on a thread.
13717
13718         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
13719         to turn off checking for pending exceptions.
13720         (mono_marshal_get_native_wrapper): Ditto.
13721
13722 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13723
13724         * threads-types.h: Get rid of the unnecessary extern declarations.
13725
13726 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
13727
13728         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
13729         return field from parent class if not private.
13730         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
13731         returns fields from parent class if they are not private.
13732         (method_nonpublic): added function to determine if a given method
13733         should be considered non-public. Returns false for private methods
13734         on parent class, and internal methods from parent on the 1.0 profile.
13735         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
13736         use method_nonpublic function to determine whether method should be
13737         returned.
13738         (property_accessor_public): use newly introduced method_nonpublic
13739         function to determine whether accessor is non-public. 
13740         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
13741         event from parent class if not private. Only return static event if
13742         Static flag is set, and only return static event from parent class if
13743         FlattenHierarchy flag is set.
13744         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
13745         include non-private events from parent class.
13746
13747 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13748
13749         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
13750         warning.
13751
13752 2008-01-16  Wade Berrier <wberrier@novell.com>
13753
13754         * security.c: Add assembly.h header to appease some warnings
13755
13756 2008-01-16  Dick Porter  <dick@ximian.com>
13757
13758         * process.c (process_module_string_read): Remove trailing null
13759         when saving string.
13760
13761 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13762
13763         * class-internals.h: A new data structure describing the layout of
13764         a runtime generic context (MonoRuntimeGenericContextTemplate).
13765
13766         * metadata-internals.h: Added a hash table to MonoDomain that maps
13767         from open generic classes to their runtime generic context
13768         templates.
13769
13770         * object.c: Building of the runtime generic context, including
13771         proper handling of generic type arguments of superclasses.
13772         Building of the runtime generic context according to the template.
13773
13774 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13775
13776         * class.c (mono_class_setup_fields): Set field.count for generic instances.
13777         Fixes #350856.
13778
13779         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
13780         mono_portability_find_file (). Fixes #325466.
13781         (mono_image_get_public_key): Fix a warning.
13782
13783 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13784
13785         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
13786         Fixes #353550.
13787         (mono_class_from_name_case): Ditto.
13788
13789 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
13790
13791         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13792           common storage for the tables used in the System/NumberFormatter class.
13793
13794 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
13795
13796         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13797
13798 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
13799
13800         * verify.c (get_boxable_mono_type): check if the token is valid.
13801
13802         * verify.c (set_stack_value): changed to add an error if an
13803         invalid type is set on stack. Changed all callers due to signature change.
13804
13805         * verify.c (do_stobj): implement stobj validation.
13806
13807 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13808
13809         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13810         set container->is_method, it was set earlier.
13811
13812         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13813         generic methods.
13814
13815         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13816         is_method of the generic container to TRUE for methods.
13817
13818 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13819
13820         * metadata.c (type_in_image): Handle type parameters properly.
13821
13822         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13823         memory ownership of this structure.
13824
13825 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13826
13827         * verify.c (get_boxable_mono_type): make typedref types been just
13828         unverifiable. check for void type.
13829
13830         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13831
13832         * verify.c (do_load_function_ptr): accept method spec tokens.
13833
13834 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13835
13836         * marshal.c (mono_class_native_size): Always set *align even if this is called
13837         recursively.
13838
13839 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13840
13841         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13842         out-of-date.
13843
13844 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13845
13846         * verify.c: removed some old unused tables. A huge bunch of small fixes
13847         to things found while testing the verifier with mono basic.
13848
13849         * verify.c (dump_stack_value): dump null literal flag to.
13850
13851         * verify.c (verify_type_compatibility_full): fix comparison
13852         for types that have a generic super type.
13853
13854         * verify.c (verify_stack_type_compatibility): fix compatibility
13855         between null literals and reference types. fix compatibility between
13856         boxed valuetypes and object. fix corner case test for enums.
13857
13858         * verify.c (do_cmp_op): proper verification of cgt.un in case
13859         of reference types.
13860
13861         * verify.c (do_invoke_method): fix error message.
13862
13863         * verify.c (do_store_indirect
13864
13865         * verify.c (check_is_valid_type_for_field_ops): proper verification
13866         of managed pointers to valuetypes and boxed valuetypes. proper verification
13867         of null literals.
13868
13869         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13870         allow token to be a reference type.
13871
13872         * verify.c (do_cast): proper handling of boxes valuetypes.
13873
13874         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13875         in object[].
13876
13877         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13878         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13879         fixed the decoding of unbox_any
13880
13881 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13882
13883         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13884
13885 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13886
13887         * verify.c (do_newobj): do delegate verification.
13888
13889         * verify.c (verify_delegate_compatibility): perform delegate
13890         verification.
13891
13892         * verify.c (verify_ldftn_delegate): perform tests related to
13893         ldftn delegates.
13894
13895         * verify.c (mono_delegate_signature_equal): perform the
13896         slightly diferent signature comparison required by delegates.
13897
13898         * metadata.c (mono_metadata_type_equal_full): added and exported
13899         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13900         allows signature only comparison.
13901
13902         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13903         as MONO_INTERNAL.
13904
13905 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13906
13907         * verify.c: added a bunch of stack_slot_* functions to
13908         make access to stack slot type easier. This is required to
13909         allow optional flags, like null literal, boxed value and
13910         this pointer.
13911         All access paths to IlStackDesc::stype have been changed 
13912         to use these new funcions.
13913         Removed a bunch of unused functions and cleared all warnings.
13914         This patch introduces the usage of the this pointer and 
13915         boxed value flags.
13916
13917 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13918
13919         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13920
13921 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13922
13923         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13924         match managed version.
13925
13926         * appdomain.c: Bump corlib version.
13927         
13928         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13929         argument.
13930
13931 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13932
13933         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13934         Set public key token to zero-length byte array if assembly is not
13935         strongnamed.
13936
13937 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13938
13939         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13940         writing a vtype array elem.
13941
13942 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13943
13944         * assembly.c (build_assembly_name): return FALSE if length of token is
13945         not 16 (if not "null").
13946         (mono_assembly_name_parse_full): return FALSE if value of version,
13947         culture, token or key is 0.
13948         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13949         specify whether public key and public key token must be set to default
13950         value (zero-length byte array) if not available. Set versioncompat to
13951         SameMachine. If public key is available or the default is set, then
13952         set PublicKey flag.
13953         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13954         is available, use empty byte array as default value. On the 2.0
13955         profile, use default value for public key token if not set.
13956         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13957         profile, use default value for public key if not set. On the 2.0
13958         profile, use default value for public key token if not set.
13959         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13960         default values for public key and public key token.
13961
13962 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13963
13964         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13965         field to keep it in synch with the managed object.
13966
13967         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13968         delegates. Fixes #351520.
13969
13970         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13971         contains defined memory.
13972         
13973         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13974
13975         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13976         
13977         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13978         of the GC data structures.
13979
13980         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13981
13982         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13983         
13984         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13985         barrier.
13986         (mono_array_clone_in_domain): Ditto.
13987         (mono_array_clone_in_domain): Ditto.
13988
13989         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13990         (cache_culture): Use a write barrier.
13991
13992         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13993         (ves_icall_get_property_info): Ditto.
13994
13995         * object.h (MONO_STRUCT_SETREF): New macro.
13996
13997         * class-internals.h (MonoStats): Add some GC statistics.
13998
13999         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
14000
14001 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
14002
14003         * exception.c (mono_exception_from_name_two_strings):
14004         Break from loop after method is found.
14005
14006 2008-01-04  Dick Porter  <dick@ximian.com>
14007
14008         * process.c (process_module_string_read): Rename variable to
14009         reflect correct usage, after fixing bug 345972.
14010
14011 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
14012
14013         * verify.c (mono_type_create_fnptr_from_mono_method): 
14014         created a MonoType function pointer instance to be used during
14015         verification. The verifier releases this memory at end.
14016
14017         * verify.c (mono_method_is_constructor): extracted repeated
14018         checks for constructor into a single class.
14019
14020         * verify.c (do_push_field): use new extracted method
14021         for constructor check.
14022
14023         * verify.c (do_newobj): same.
14024
14025         * verify.c (do_ldftn): renamed to do_load_function_ptr
14026         and make it verify ldvirtftn too.
14027
14028         * verify.c (mono_method_verify: proper verification
14029         of ldvirtftn. release created MonoMethod instances.
14030
14031 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
14032
14033         * verify.c (token_bounds_check): added.
14034
14035         * verify.c (do_ldftn): added.
14036
14037         * verify.c (mono_method_verify): proper verificartion of ldftn.
14038
14039 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
14040
14041         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
14042         than the table row count. It's the resposibility of the caller to
14043         make the bounds check and raise the correct error.
14044
14045         * metadata.c (mono_metadata_decode_row_col): Same.
14046
14047         * loader.c (mono_get_method_from_token): perform bounds check
14048         on token for methoddef table.
14049
14050 2007-12-29  Miguel de Icaza  <miguel@novell.com>
14051
14052         * icall.c
14053         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
14054         assert into a negative result, the managed code already coped with
14055         that.
14056
14057         Some folks on Windows reported this error. 
14058
14059 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
14060
14061         * appdomain.c: Bump corlib version.
14062         * icall.c:
14063         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
14064         CultureInfo.CreateCulture to create CultureInfo for name.
14065         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
14066         create CultureInfo for name. Fixes bug #347174.
14067
14068 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
14069
14070         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
14071         flags.
14072
14073         * verify.c (is_valid_branch_instruction): allow branching to the
14074         first instruction of the protected block.
14075
14076         * verify.c (is_valid_cmp_branch_instruction): same.
14077
14078         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
14079         avoid double initialization.
14080
14081         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
14082         detect which cases the eval stack should just be copied.
14083
14084         * verify.c (mono_method_verify): check if the eval stack
14085         is empty when entering a protected block.
14086
14087 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
14088
14089         * verify.c: added is_clause_in_range, is_clause_inside_range,
14090         is_clause_nested and verify_clause_relationship. They perform
14091         the verifications stated in P1 12.4.2.7.
14092
14093         * verify.c (mono_method_verify): remove some unused variables,
14094         add the new exception clause checks, add instruction border
14095         checks for protected block start/end, improved some error 
14096         messages and fixed a bug in the way invalid instruction access
14097         is detected.
14098
14099 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
14100
14101         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
14102         from GC 7.0 if available.
14103
14104         * object.c: Remove an unused define.
14105         
14106         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
14107
14108         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
14109
14110         * null-gc.c (mono_gc_make_descr_for_array): Implement.
14111
14112         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
14113
14114         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
14115         to take the same arguments as the other make_descr functions.
14116
14117         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
14118
14119         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
14120         directly.
14121
14122         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
14123         mini.c.
14124
14125         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
14126         call to boehm-gc.c.
14127
14128         * boehm-gc.c (mono_gc_register_root): Fix a warning.
14129
14130         * null-gc.c (mono_gc_register_root): Fix a warning.
14131
14132         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
14133
14134         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
14135         (mono_gc_base_init): Call GC_init ().
14136
14137         * null-gc.c: Define mono_gc_register_root () as a no-op.
14138
14139         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
14140
14141 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
14142
14143         * verify.c: add prototype for merge_stacks at top
14144
14145         * verify.c (do_switch): added.
14146
14147         * verify.c (merge_stacks): on some cases the stack merging
14148         was not happening properly. Unequal stack sizes at merge
14149         points should be invalid.
14150
14151         * verify.c (mono_method_verify): added more debug info on stack state.
14152         verify switch properly.
14153
14154 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
14155
14156         * method-builder.h: New file, moved the mono_mb_ declarations here from 
14157         marshal.h.
14158
14159         * boehm-gc.c marshal.c: Include method-builder.h.
14160
14161         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
14162
14163         * marshal.c: Remove some code which is now in method-builder.c.
14164
14165 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
14166
14167         * method-builder.c: New file, extraction of the method builder functionality 
14168         from marshal.c.
14169
14170         * marshal.c: Move the mb functions into method-builder.c.
14171
14172         * marshal.h marshal.c: Export some mono_mb_... functions.
14173
14174         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
14175
14176         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
14177         the caller.
14178
14179         * class.c (mono_class_get_full): Check the token type in the dynamic case.
14180
14181         * loader.c (mono_field_from_token): Ditto.      
14182
14183         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
14184         type as well.
14185         
14186         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
14187         Fixes #342565.
14188
14189         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
14190         a helper function for setting it.
14191
14192         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
14193
14194         
14195         * assembly.c: Significally simplify code now that referenced assemblies are 
14196         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
14197
14198         * threads.h: Don't include  the internal threads-types.h header file. Fixes
14199         #349952.
14200
14201 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
14202
14203         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
14204         instructions that were target of branches or are at protected block boundaries.
14205
14206         * verify.c (in_same_block): handle filter clauses.
14207
14208         * verify.c (is_valid_branch_instruction): added. checks the target of
14209         instructions br or brtrue/false.
14210
14211         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
14212         binary branch instructions such as beq and bge.
14213
14214         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
14215         and made it pin the instruction as been part of the exception block.
14216
14217         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
14218         of in_same_block.
14219
14220         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
14221         of in_same_block.
14222
14223         * verify.c (do_ret): ret from a protected block is unverifiable and
14224         not invalid.
14225
14226         * verify.c (do_static_branch): verify br and br.s instructions.
14227
14228         * verify.c (merge_stacks): add extra param to support detection
14229         of branches in the middle of instructions.
14230         
14231         * verify.c (mono_method_verify): verify branches and exception blocks
14232         that target the middle of instructions. Proper verification of br and br.s.
14233
14234 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
14235
14236         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
14237         skip_visibility field.
14238         (reflection_methodbuilder_from_dynamic_method): Ditto.
14239
14240         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
14241         registrations. Fixes #348193.
14242
14243         * threads.h: Move the internal mono_thread_get_pending_exception () to
14244         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
14245
14246 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
14247
14248         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
14249         icall registration. Fixes #348193.
14250
14251         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
14252         for corlib classes into object. Fixes #349621.
14253
14254 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
14255
14256         * icall.c (property_accessor_nonpublic): new function to determine
14257         whether an accessor allows a property to be considered non-public.
14258         Returns false for private accessor(s) from parent class, and internal
14259         accessor(s) from parent on 2.0 profile (and higher).
14260         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
14261         to determine whether property should be included if NonPublic flag
14262         is set. Fixes bug #349078.
14263
14264 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
14265
14266         * verify.c (init_stack_with_value): added.
14267
14268         * verify.c (mono_method_verify): extracted common
14269         code for exception initialization into init_stack_with_value.
14270
14271         * verify.c (mono_method_verify): initialize the exception
14272         for handler clauses as well.
14273
14274         * verify.c (mono_method_verify): fix the exception clause
14275         ordering rules, it should use handler end offset and not
14276         start offset.
14277
14278 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
14279
14280         * rawbuffer.c: remove useless warning.
14281
14282 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
14283
14284         * threads.h, threads-types.h: move functions to the correct header
14285         (fixes bug#349952).
14286
14287 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14288
14289         * verify.c (mono_method_verify): proper verification
14290         of exception handling clauses ranges and fallthru in
14291         and out of protected blocks.
14292
14293 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14294
14295         * verify.c (mono_method_verify): fixed compilation issue.
14296
14297 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14298
14299         * verify.c (mono_method_verify): a printf slipped in, changed
14300         to use verifier debug macro.
14301
14302 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
14303
14304         * verify.c (is_correct_leave): check for filter clauses.
14305
14306         * verify.c (do_filter): added.
14307
14308         * verify.c (mono_method_verify): property verification of leave.
14309
14310
14311 2007-12-18  Mark Probst  <mark.probst@gmail.com>
14312
14313         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
14314         Win32 build, until we figure out how to do the proper thing on
14315         Win32.
14316
14317 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
14318
14319         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
14320         by the previous patch.
14321         
14322         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
14323         the assembly resolve handler for refonly assemblies.
14324
14325 2007-12-17  Mark Probst  <mark.probst@gmail.com>
14326
14327         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
14328         Make sure only one thread is allowed to commence shutdown, and
14329         don't allow new threads to be started once shutdown is in
14330         progress.
14331
14332 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
14333
14334         * verify.c (is_correct_endfilter): added.
14335
14336         * verify.c (is_unverifiable_endfilter): added.
14337
14338         * verify.c (do_endfilter): added.
14339
14340         * verify.c (mono_method_verify): property verification of endfilter
14341         and fixed a corner case or endfinally.
14342
14343 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
14344
14345         * verify.h: new flags to support fail fast of unverifiable code and
14346         do non-strict verification. Non-strict verification is required to
14347         have MS runtime compatibility. There are a huge amount of unverifiable
14348         code that it accepts as verifiable. The strict mode verifies the code
14349         as the specs says.
14350         Non-strict mode will be required in cases where code needs to be
14351         accepted as verifiable but fails under strict mode.
14352
14353         * pedump.c: added support to fail fast and non-strict verification.
14354
14355         * verify.c: added support for both fail fast and non-strict verification.
14356
14357 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
14358
14359         * verify.c (is_correct_endfinally): added.
14360
14361         * verify.c (mono_method_verify): property verification of endfinally.
14362
14363 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14364
14365         * verify.c (in_any_block): check for filter clauses.
14366
14367         * verify.c (is_correct_rethrow): added.
14368
14369         * verify.c (mono_method_verify): property verification of rethrow.
14370
14371         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
14372
14373 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14374
14375         * verify.c (do_throw): added.
14376
14377         * verify.c (mono_method_verify): property verification of throw
14378
14379 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
14380
14381         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
14382         assemblies. Fixes #346425.
14383
14384 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
14385
14386         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
14387         FieldBuilders.
14388
14389         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
14390
14391         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
14392         prevent asserts when this is called with a token which might not be valid.
14393
14394         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
14395         lookup_dynamic_token_class with valid_token == FALSE.
14396
14397         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
14398
14399         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
14400
14401         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14402         
14403 2007-12-10  Mark Probst  <mark.probst@gmail.com>
14404
14405         * gc.c: Don't delay threadpool thread finalization unless Mono is
14406         shutting down.
14407
14408 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14409
14410         * threads.c: turn an assert into a non-fatal warning.
14411
14412 2007-12-09  Robert Jordan  <robertj@gmx.net>
14413
14414         * icall.c (GetVirtualMethod): Add missing argument validation.
14415
14416 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14417
14418         * verify.c (do_cast): added.
14419
14420         * verify.c (mono_method_verify): property verification of castclass and isinst.
14421
14422
14423 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14424
14425         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
14426
14427         * verify.c (do_stelem): added.
14428
14429         * verify.c (mono_method_verify): property verification of stelem.X.
14430
14431 2007-12-07  Mark Probst  <mark.probst@gmail.com>
14432
14433         * class.c, class-internals.h: Introduce an environment variable
14434         (MONO_GENERIC_SHARING) through which the extent of generic code
14435         sharing can be controlled (share all classes, share only corlib
14436         classes, or share nothing).
14437
14438         * object.c: Only create runtime generic context for classes for
14439         which sharing is enabled.
14440
14441 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14442
14443         * verify.c (do_ldelem): refactor it to work with ldelem.any.
14444
14445         * verify.c (mono_method_verify): property verification of ldelem.any.
14446
14447 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14448
14449         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
14450         added ldelem.X opcodes.
14451
14452         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
14453
14454         * verify.c: proper verification of ldelem.X 
14455
14456 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
14457
14458         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
14459
14460 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14461
14462         * verify.c (mono_method_verify): null literal requires special handling,
14463         the value pushed on stack need to be flagged as so.
14464
14465         * verify.c (do_ldelema): Verify ldelema properly.
14466
14467 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14468
14469         * verify.c: Verify ldlen properly.
14470
14471 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
14472
14473         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
14474         to the target object's type. Fixes #346160.
14475
14476 2007-12-05  Dick Porter  <dick@ximian.com>
14477
14478         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
14479         Solaris needs the same workaround as BSD-derived systems.  Fixes
14480         bug 323524, patch by Burkhard Linke
14481         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
14482
14483 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
14484
14485         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
14486         handle to use when error dialog is shown; otherwise, update mask
14487         to show no error dialog when an error occurs.
14488
14489 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
14490
14491         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
14492
14493         * class.c (mono_class_get_field_default_value): New helper function to initialize
14494         field->def_type and field->data.
14495
14496 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
14497
14498         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
14499         the general one.
14500
14501         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
14502
14503         * marshal.c: Avoid depending on delegate->method_info being set.
14504
14505         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
14506         
14507         * object.c (mono_delegate_ctor): Set delegate->method.
14508
14509         * object-internals.h (struct _MonoDelegate): Add 'method' field.
14510
14511         * appdomain.c: Bump corlib version.
14512
14513 2007-11-27  Raja R Harinath  <harinath@gmail.com>
14514
14515         * metadata.c (mono_generic_inst_equal_full): Short-circuit
14516         equality check if we're comparing canonicalized MonoGenericInsts.
14517
14518 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
14519
14520         * class.c (generic_array_methods): Call mono_class_setup_methods () before
14521         accessing class->methods.
14522
14523 2007-11-22  Dick Porter  <dick@ximian.com>
14524
14525         * threads.c: Ensure that the synch_cs is set before trying to use
14526         it.
14527
14528 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
14529
14530         * profiler.c: r89126 broke the statistial profiler, unbreak.
14531
14532 2007-11-22  Martin Baulig  <martin@ximian.com>
14533
14534         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
14535
14536         * mono-debug.c
14537         (mono_debug_debugger_version): Bump to 3.
14538         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
14539         -> mono_debugger_class_initialized().
14540
14541         * mono-debug-debugger.c
14542         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
14543
14544         * class.c
14545         (mono_debugger_start_class_init_func): Removed.
14546         (mono_debugger_class_loaded_methods_func): Added.
14547         (mono_class_setup_methods): Call it here.
14548
14549 2007-11-22  Martin Baulig  <martin@ximian.com>
14550
14551         * mono-debug.c
14552         (mono_debug_add_delegate_trampoline): New public method.
14553         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
14554
14555         * mono-debug.h
14556         (MonoSymbolTable): Added `global_data_table'.
14557         (MonoDebuggerTypeKind): Removed.
14558
14559 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
14560
14561         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
14562         these methods.
14563
14564         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14565         
14566 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14567
14568         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
14569
14570 2007-11-20  Martin Baulig  <martin@ximian.com>
14571
14572         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
14573
14574         * mono-debug-debugger.c
14575         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
14576         (mono_debugger_remove_breakpoint): Likewise.
14577         (mono_debugger_check_breakpoints): Likewise.
14578         (mono_debugger_register_class_init_callback): New public method.
14579         (mono_debugger_remove_class_init_callback): Likewise.
14580         (mono_debugger_add_type): Likewise.
14581
14582         * mono-debug-debugger.h
14583         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
14584
14585 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
14586
14587         * class.c: more interface implementations needed for the
14588         array enumerator (fixes bug #341112).
14589
14590 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
14591
14592         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
14593         fix ParamName of ArgumentNullExceptions.
14594
14595 2007-11-17  Miguel de Icaza  <miguel@novell.com>
14596
14597         * reflection.c (mono_reflection_encode_sighelper): Generate the
14598         modopts and modreqs.   I have a useless test that crashes monodis,
14599         but that shows the code working.
14600
14601 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
14602
14603         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
14604         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
14605
14606 2007-11-15  Dick Porter  <dick@ximian.com>
14607
14608         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
14609         When joining a thread, it's the thread that's calling Join that
14610         gets WaitSleepJoin state not the target.  Fixes the standalone
14611         test case in bug 334740, and hopefully the whole bug too.
14612
14613 2007-11-15  Dick Porter  <dick@ximian.com>
14614
14615         * process.c: Read file version info from the files pointed at by
14616         process modules, not the current process.  Fixes bug 315969.
14617
14618         Use windows typedef names in some places to fix warnings on the
14619         windows build.
14620
14621 2007-11-15  Mark Probst  <mark.probst@gmail.com>
14622
14623         * image.c, metadata-internals.h: Added a generic_class_cache hash
14624         to MonoImage for looking up generic classes when sharing generics.
14625
14626 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14627
14628         * sgen-gc.c: warning cleanups.
14629
14630 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
14631
14632         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
14633         inherited properties.
14634
14635 2007-11-14  Mark Probst  <mark.probst@gmail.com>
14636
14637         * object.c, class-internals.h: Added more information to the
14638         runtime generic context.
14639
14640 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
14641
14642         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
14643         instead of just the target method. Generalize the abstract method handling to
14644         handle any non-static method.
14645
14646         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14647         mono_marshal_get_delegate_invoke () signature change.
14648
14649 2007-11-13  Mark Probst  <mark.probst@gmail.com>
14650
14651         * class.c, class-internals.h: Made
14652         mono_type_get_basic_type_from_generic () public.  Fixed member
14653         access check for shared generics.
14654
14655         * loader.c: Don't insert field into field cache if it's part of a
14656         non-inflated generic class.
14657
14658         * domain.c, domain-internals.h: The generic sharing context is now
14659         part of the jit info data structure.  Added two accessor
14660         functions.
14661
14662 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
14663
14664         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
14665         the array Get/Set/Address methods, since the JIT inlines them.
14666
14667         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
14668
14669         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
14670         (mono_image_init): Initialize runtime_invoke_direct_cache.      
14671
14672         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14673         mono_marshal_get_delegate_invoke signature change.
14674
14675         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
14676         an additional argument. Add support for invoking abstract methods.
14677
14678         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
14679
14680         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
14681
14682 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14683
14684         * class.c: Do field layout for open generic classes as well.
14685
14686 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14687
14688         * gc.c, gc-internal.h: Don't finalize threadpool threads with
14689         other objects, because the threadpool is still around.  Put them
14690         in a list instead and after finalizing all other objects in the
14691         root domain shut down the thread pool and then finalize the
14692         threads.  Fixes bug #337383.
14693
14694         * threads.c, thread-types.h: New mono_thread_create_internal()
14695         function for marking a thread with the threadpool flag before it
14696         started.  Set synch_cs to NULL after freeing it.
14697
14698         * threadpool.c: Mark threadpool threads before they start.
14699
14700 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14701
14702         * reflection.h, reflection.c: don't export random functions
14703         and lazy load dbnull and missing objects.
14704
14705 2007-11-07  Jonathan Chambers <joncham@gmail.com>
14706
14707         * class.c: Initialize COM types if COM interfaces
14708         are present (not just COM classes).
14709         
14710         Code is contributed under MIT/X11 license.
14711
14712 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14713         * reflection.c:
14714         create_dynamic_mono_image: hook module profiler events (dynamic case).
14715         mono_image_basic_init: hook assembly profiler events (dynamic case).
14716
14717 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14718         * profiler.c:
14719         simple_appdomain_unload: completely terminate the profiler
14720         instead of only processing the statistical samples.
14721         simple_shutdown: make sure this is really called exactly once,
14722         even in multithreaded applications, and always listen to
14723         appdomain events.
14724         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
14725         here, the "[un]load" functions will do it.
14726         Fixes bugs #333791 and #325261.
14727
14728 2007-11-07  Geoff Norton  <gnorton@novell.com>
14729
14730         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
14731         rather than depend on __APPLE__.
14732
14733 2007-11-07  Mark Probst  <mark.probst@gmail.com>
14734
14735         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
14736
14737 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
14738
14739         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
14740         UTF16 MonoString. Fix the crash from bug #335488
14741
14742 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
14743
14744         * marshal.c: Correct (for non-Win32 OS) length != size in 
14745         mono_string_from_bstr. Fix #339530.
14746
14747 2007-11-06  Geoff Norton  <gnorton@novell.com>
14748
14749         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
14750         to succeed
14751
14752 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
14753
14754         * process.c: Added run-time GetProcessId API detection for Windows.
14755
14756 2007-11-04  Miguel de Icaza  <miguel@novell.com>
14757
14758         * reflection.c  (mono_param_get_objects): If a parameter has the
14759         attribute [System.Runtime.InteropServices.Optional] we should
14760         set the DefaultValue of the ParameterInfo to be
14761         System.Reflection.Missing instead of DBNull.
14762
14763         See bug #339013.
14764
14765         (mono_get_reflection_missing_object): New method,
14766         returns the System.Reflection.Missing.Value singleton instance.
14767
14768 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14769
14770         * culture-info-table.h : regenerated.
14771
14772 2007-11-02  Jonathan Chambers <joncham@gmail.com>
14773
14774         * icall.c: Use GetEnvironmentStrings on windows
14775         so we are using the same environment block as 
14776         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
14777         #333740.
14778         
14779         Code is contributed under MIT/X11 license.
14780
14781 2007-10-31  Martin Baulig  <martin@ximian.com>
14782
14783         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
14784
14785         * mono-debug-debugger.h
14786         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
14787
14788 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
14789
14790         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
14791         classes.
14792
14793 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
14794
14795         * culture-info-table.h : regenerated.
14796
14797 2007-10-30  Robert Jordan  <robertj@gmx.net>
14798
14799         * icall-def.h, icall.c:
14800         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14801
14802         Code is contributed under MIT/X11 license.
14803
14804 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14805
14806         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14807         inflated class instead of inflating them again.
14808         
14809         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14810         dynamic case.
14811
14812         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14813         Call setup_supertypes () after klass->parent is set.
14814         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14815
14816         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14817         for inflated instances of not yet created dynamic generic classes.
14818         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14819         times from inflated_method.
14820         (methodbuilder_to_mono_method): Ditto.
14821
14822 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14823
14824         * gc.c: code cleanup and removed old untested option of not creating the
14825         finalizer thread.
14826
14827 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14828
14829         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14830         creating a jump trampoline for dynamic methods.
14831
14832 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14833
14834         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14835         generic TypeBuilders when called from another method of the same type (bug #335131).
14836
14837
14838 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14839
14840         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14841         doesn't seem to work perfectly.
14842         
14843         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14844         called multiple times.
14845         (methodbuilder_to_mono_method): Ditto.
14846         (resolve_object): Inflate FieldBuilder's.
14847
14848 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14849
14850         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14851         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14852         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14853
14854 2007-10-26  Dick Porter  <dick@ximian.com>
14855
14856         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14857         Thread initialisation changes
14858
14859 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14860
14861         * verify.c: fix compatibility check between arrays and System.Array
14862
14863 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14864
14865         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14866         too. Fixes #336999.
14867
14868 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14869
14870         * object.c (mono_value_box): Use typed allocation here.
14871
14872 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14873
14874         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14875         trampoline instead of compiling the method right away.
14876
14877         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14878
14879 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14880
14881         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14882         related fields for dynamic classes. Fixes #334493.
14883
14884 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14885
14886         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14887         
14888         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14889
14890         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14891         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14892
14893         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14894
14895         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14896         if needed.
14897         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14898
14899 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14900
14901         * marshal.c: Use correct key when removing item
14902         from ccw_hash.
14903         
14904         Code is contributed under MIT/X11 license.
14905
14906 2007-10-17  William Holmes  <billholmes54@gmail.com>
14907
14908         *marshal.c: Adding a case to marshal booleans to U1
14909
14910         Code is contributed under MIT/X11 license.
14911
14912 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14913
14914         * class.c (mono_class_from_name): Search the modules compromising dynamic
14915         assemblies. Fixes #331601.
14916
14917 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14918
14919         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14920         exception if the type name contains an assembly component. Fixes #334203.
14921
14922         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14923         modules inside dynamic assemblies. Fixes #334200.
14924         
14925         * reflection.c: Set image->public_key and image->public_key_length;
14926
14927         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14928         fields.
14929
14930         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14931         
14932 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14933
14934         * metadata.c: Implemented correct comparing of generic classes.
14935         An inflated generic class can be equal to a non-inflated one if it
14936         is inflated with generic type variables as type arguments.  Fixes
14937         bug #333798.
14938
14939 2007-10-15  Dick Porter  <dick@ximian.com>
14940
14941         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14942         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14943         81646.
14944
14945         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14946         instead of a monitor lock.  This means that monitor_try_enter and
14947         co can set the thread state safely.
14948         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14949         thread_interrupt_requested, so interrupt actually works.
14950
14951         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14952         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14953         state accessor function
14954
14955 2007-10-15  Martin Baulig  <martin@ximian.com>
14956
14957         * mono-debug.h
14958         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14959         the debugger with the current runtime.
14960
14961 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14962
14963         * object.c, object-internals.h: added the ability to set a single
14964         trampoline for all the slots in a vtable.
14965
14966 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14967
14968         * marshal.c: deal with a possible race condition during multicast
14969         delegate invocation.
14970
14971 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14972
14973         * class.c: ensure value type methods don't have the synchronized
14974         flag set.
14975
14976 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14977
14978         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14979         breaks the build.
14980
14981 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14982
14983         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14984         to take an options parameter so that empty entries can be removed during
14985         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14986
14987 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14988
14989         * marshal.c: make sure we don't store the signature from a dynamic
14990         method into the runtime invoke cache (bug #327189).
14991
14992 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14993
14994         * marshal.c: make sure the wrapper methods are properly initialized.
14995
14996 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14997
14998         * metadata.c, metadata-internals.h: Generalized
14999         mono_type_stack_size() to mono_type_stack_size_internal() which
15000         takes an additional argument specifying whether it allows open
15001         types.
15002
15003 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
15004
15005         * verify.c (do_invoke_method): handle typedbyref params
15006         correctly and check for unverifiable return values.
15007
15008         * verify.c (do_newobj): fix a warning.
15009
15010 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
15011
15012         * verify.c: don't tread typedbyref as allways unverifable,
15013         so uses, like (ld/st)loc.0 are valid. verify for the cases
15014         that it matters, like boxing related operations.
15015
15016 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
15017
15018         * verify.c: add verification of the newobj opcode. verification
15019         of delegate instantation still missing due ldftn and virldftn not
15020         pushing the function type on stack
15021
15022 2007-10-08  Mark Probst  <mark.probst@gmail.com>
15023
15024         * class-internals.h: Runtime generic context data structure
15025         definition.
15026
15027         * object.c: Initialization of runtime generic context at runtime
15028         vtable creation time.
15029
15030 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
15031         * class.c (mono_class_create_from_typedef,
15032         mono_class_from_generic_parameter, mono_ptr_class_get,
15033         mono_fnptr_class_get, mono_bounded_array_class_get)
15034         * domain.c (mono_domain_create, mono_domain_free)
15035         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
15036         * image.c (do_mono_image_load, mono_image_close):
15037         Hooked up load-unload profiler events.
15038
15039 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
15040
15041         * domain.c: track statistics about the actual amount of native code
15042         allocated.
15043
15044 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15045
15046         * class.c: the valuetype enumerators don't have the additional
15047         supertypes interfaces.
15048
15049 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15050
15051         * class.c: need more interfaces setup for the IEnumerator<T>
15052         object created for arrays (tests/ienumerator-interfaces.2.cs).
15053
15054 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
15055
15056         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
15057
15058 2007-10-05  Alp Toker  <alp@atoker.com>
15059
15060         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
15061         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
15062         #315863.
15063
15064 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
15065
15066         * verify.c (verify_type_compatibility_full): verification of
15067         compatibility improved, validates correctly non-strict checks between
15068         native int and I4 types different than (unsigned)int32.
15069
15070         * verify.c (do_store_indirect): added, do all verification of
15071         ldind.X opcodes. 
15072
15073         * verify.c (get_load_indirect_mono_type): renamed to
15074         get_indirect_op_mono_type, as it now returns the MonoType for 
15075         ldind.X and stind.X opcodes.
15076
15077 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
15078
15079         * reflection.c: Fix the encoding of generic type definition for
15080         TypeBuilders.
15081
15082         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
15083         mono_image_typedef_or_ref but allows to specify if typespec lookups should
15084         be made. Typespec check is done prior to typeref cache lookup.
15085
15086         * reflection.c (mono_image_typedef_or_ref): now just delegate to
15087         mono_image_typedef_or_ref_full.
15088
15089         * reflection.c (encode_generic_class): encode the generic class
15090         directly instead of calling encode_type.
15091
15092         * reflection.c (encode_type): encode the generic type definition
15093         MonoClass as a generic instantiation.
15094
15095         * reflection.c (create_typespec): cache typespec tokens in
15096         the assembly->typespec cache. Don't create typespec for a generic
15097         instance MonoClass. Create typespec for the generic type defintion.
15098
15099         * reflection.c (create_generic_typespec): encode the generic
15100         class directly instead of calling encode_type.
15101
15102         * reflection.c (mono_image_create_token): encode the generic
15103         type definition not using a typespec for MonoType instances.
15104
15105
15106 2007-10-04  Raja R Harinath  <rharinath@novell.com>
15107
15108         Fix #328812
15109         * class.c (mono_image_init_name_cache): Don't return nested
15110         'protected internal' classes.
15111         (mono_class_from_name_case): Likewise.
15112
15113 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
15114
15115         * icall-def.h, icall.c : get_bundled_machine_config() is now the
15116           common function used by both DefaultConfig in System.dll and
15117           InternalConfigurationHost in System.Configuration.dll.
15118
15119 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15120
15121         * class.c: automatically add to vectors only a few essential explicit
15122         generic interfaces. The rest of the interfaces that arrays should
15123         provide are currently implicitly added (but still not lazily, see the
15124         design in the discussion of bug#325495 for the details of what is
15125         needed for that). Additionally, implicit interfaces are assigned the
15126         same vtable slot as the explicit interfaces (as they are compatible):
15127         this enables huge memory savings since we don't need to instantiate
15128         as many memthods and as large vtables anymore. Also, Since
15129         GetEnumerator<T> returns an instance of a type that is required to
15130         support a similarly large set of interfaces as arrays, we add
15131         implicit interfaces and interface offset sharing support to those
15132         types, too. This change adds all the required interfaces so that
15133         the anonarray.cs test case in the bug report works (we don't add
15134         all the interfaces to arrays of arrays 3-level deep and more because
15135         of the memory requirements explained in the bug and since they are much
15136         less common: the lazy-loading support will enabled them to work, too).
15137
15138 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
15139
15140         * verify.c (merge_stacks): major clean up, all type compatibility
15141         checks are done by verify_type_compatibility. This fix my earlier lack
15142         of understanding of the CLR type system and merge_stacks no longer looks
15143         scary.
15144
15145         * verify.c: fixed some bad spelling.
15146
15147 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
15148
15149         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
15150         a given stack slock.
15151         
15152         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
15153         verify_type_compatibility_full. This removed a near indentical function and fixed
15154         handling of Int32 and IntPtr across all opcodes.
15155
15156 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15157
15158         * class.c: only vectors have the additional generic interfaces.
15159
15160 2007-10-01  Jonathan Chambers <joncham@gmail.com>
15161
15162         * mono-config.c: Use g_strcasecmp instead of
15163         strcasecmp like everywhere else to fix
15164         compilation with MSVC.
15165         
15166         Code is contributed under MIT/X11 license.
15167
15168 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15169
15170         * object.c, object-internals.h: refactored the IMT code to enable
15171         building a single slot at a time and lazily creating the IMT trampolines
15172         and thunks.
15173
15174 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
15175
15176         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
15177
15178         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
15179         Fixes #328501.
15180         
15181 2007-09-29  Raja R Harinath  <harinath@gmail.com>
15182
15183         * loader.c (method_from_methodspec): Rearrange to avoid
15184         un-necessary exposition.  Don't assert out if the method's
15185         declaring type is a generic type definition.
15186
15187 2007-09-28  Martin Baulig  <martin@ximian.com>
15188
15189         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
15190
15191 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
15192
15193         * class-internals.h: optimize field layout of MonoClass to
15194         requires less cachelines at runtime and save a few bytes on 64 bit
15195         systems.
15196
15197 2007-09-28  Jb Evain  <jbevain@novell.com>
15198
15199         * reflection.c: when encoding type names in custom attributes,
15200         if the type is a closed generic type, its generic arguments
15201         have to be serialized as AssemblyQualifiedName, so that when
15202         they are deserialized, it's possible to re-create them properly.
15203         Fixes #329450.
15204
15205
15206 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15207
15208         * object.c, class-internals.h: added delegate-creation counter.
15209
15210 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
15211
15212         * class.c: cleanup of the code that synthetizes interfaces for
15213         arrays in 2.0: saves quit a bit of corlib mempool memory.
15214         Code to fix bug #325495 ifdeffed out for now until the issues
15215         with memory usage and O(n^2) behaviour are fixed.
15216
15217 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15218
15219         * marshal.c: when possible, do not duplicate the name of the methods
15220         in the method builder and in the generated MonoMethod.
15221
15222 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
15223         * verify.c: added support for type checking ldind_* opcodes.
15224
15225 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
15226
15227         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
15228         which is used to distinguish the fully open instantiation of a TypeBuilder
15229         with the rest. This temporary hack is required to restore the property that
15230         the fully open instantiation is the same type of the generic type definition.
15231
15232         * class-internals.h (mono_generic_class_is_generic_type_definition):
15233         new function as part of the internal API.
15234
15235         * class.c (inflate_generic_type): return NULL when the generic inst is
15236         fully open. The fully open generic type is now the same as the generic type
15237         definition for non TypeBuilder types.
15238
15239         * class.c (mono_generic_class_get_class): removed assert since it is
15240         no longer valid, gklass->cached_class can point to the generic type definition.
15241
15242         * class.c (mono_generic_class_is_generic_type_definition): new.
15243
15244         * metadata.c (mono_generic_class_hash): added is_tb_open field
15245         to the hash calculation.
15246
15247         * metadata.c (free_generic_class): if the generic class is associated
15248         with the generic type definition, its field will come from the mempool and
15249         must not be freed.
15250
15251         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
15252         new, this function identifies the corner case of a TypeBuilder fully open
15253         instantiation.
15254
15255         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
15256         for lookup. Set gclass->cached_class to be the container class in case of
15257         the fully open instantiation of non TypeBuilder types.
15258
15259         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
15260         to compare generic classes.
15261
15262         * reflection.c (method_encode_methodspec): remove assert that
15263         no longer is valid.
15264
15265         * reflection.c (mono_reflection_generic_class_initialize): add
15266         an aditional assert to ensure the proper type is used.
15267
15268 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
15269
15270         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
15271         to enjoy it.
15272
15273 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
15274
15275         * verify.c (push_arg): Fixed support for ldarga
15276         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
15277         MonoType used as first arg in case of instance calls.
15278
15279 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
15280
15281         * verify.c: Support for verifying VAR and MVAR types, 
15282
15283 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
15284
15285         * icall.c (ves_icall_get_property_info): Set the reflected type of the
15286         accessors correctly.
15287
15288 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
15289
15290         * threads.c: support OSX and other systems in
15291         mono_thread_get_stack_bounds (bug #328026).
15292
15293 2007-09-25  Martin Baulig  <martin@ximian.com>
15294
15295         * mono-debug.h
15296         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
15297
15298 2007-09-24  Martin Baulig  <martin@ximian.com>
15299
15300         * mono-debug.h
15301         (MonoDebugClassEntry): Moved the definition of this struct into
15302         mono-debug.c to make it private.
15303
15304         * mono-debug.c
15305         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
15306         type table per symbol file, we don't need to store the symfile id
15307         any longer.
15308
15309 2007-09-24  Martin Baulig  <martin@ximian.com>
15310
15311         Create one type table per symbol file, since a `MonoClass *' gets
15312         invalid when its image is unloaded.
15313
15314         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
15315         (MonoDebugHandle): Added `type_table'.
15316
15317 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15318
15319         * mempool.c, mempool.h: added mono_mempool_new_size () API
15320         to be able to specify a smaller initial size for the pool.
15321         Adjusted the code to slowly increase pool size before using
15322         the previous default size.
15323         * image.c: use a small initial size for image mempools.
15324
15325 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
15326
15327         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
15328         Fixes ##320990.
15329
15330         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
15331         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
15332
15333 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
15334
15335         * metadata.c (mono_type_create_from_typespec): Remove an invalid
15336         free. Fixes #327438.
15337
15338 2007-09-21  Raja R Harinath  <harinath@gmail.com>
15339
15340         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
15341         generic instantiations, etc.
15342         <MONO_TYPE_ARRAY>: Likewise.
15343
15344 2007-09-21  Martin Baulig  <martin@ximian.com>
15345
15346         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
15347         these structs were never defined.
15348         (MonoDebugHandle): Removed the `_priv' field, it was never used.
15349
15350 2007-09-21  Martin Baulig  <martin@ximian.com>
15351
15352         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
15353
15354 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
15355
15356         * image.c: removed the guid hash tables: we can get the same info
15357         without the additional memory usage hit (partially fixes also bug #327052).
15358
15359 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15360
15361         * profiler.h, profiler-private.h, profiler.c: add a new profiler
15362         event to handle unloading methods. After the event is called, the
15363         corresponding MonoMethod* must be considered invalid.
15364         * loader.c (mono_free_method): call the new mono_profiler_method_free
15365         event.
15366
15367 2007-09-20  Mark Probst  <mark.probst@gmail.com>
15368
15369         * domain-internals.h: New flag in MonoJitInfo which marks shared
15370         generic methods.  New hash table (shared_generics_hash) in
15371         MonoDomain to keep track of shared generic methods.  Prototypes
15372         for functions to register and lookup shared generic methods.
15373
15374         * domain.c: Support for registering and looking up shared generic
15375         methods via a hash table (shared_generics_hash) in MonoDomain.
15376
15377         * class-internals.h: New exception to signal failure of shared
15378         compilation of a generic method.  New counters for generics
15379         sharing in MonoStats.
15380
15381 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
15382
15383         * image.c, metadata-internals.h: don't keep a file descriptor open
15384         for loaded assemblies (bug#325988).
15385
15386 2007-09-19  Raja R Harinath  <rharinath@novell.com>
15387
15388         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
15389         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
15390         use the corresponding datatypes.
15391         (type_in_image): Update to changes.
15392         (CleanForImageUserData): Simplify.
15393         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
15394         Avoid quadratic behaviour in handling the "stolen" list by
15395         separating the filter predicate out, and by prepending the stolen
15396         items rather than appending them.
15397         (steal_ginst_in_image): Likewise.
15398         (mono_metadata_clean_for_image): Update to changes.
15399
15400 2007-09-19  Martin Baulig  <martin@ximian.com>
15401
15402         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
15403
15404 2007-09-19  Martin Baulig  <martin@ximian.com>
15405
15406         * mono-debug.c (mono_debug_cleanup): Don't call
15407         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
15408
15409 2007-09-19  Raja R Harinath  <harinath@gmail.com>
15410
15411         Fix crash on 'make run-test' in mcs/errors
15412         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
15413         Avoid more potential allocations in mono_class_from_mono_type.
15414         (ginst_in_image): Update to changes.
15415         (gclass_in_image): Rearrange slightly.
15416
15417 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15418
15419         * class.c (mono_class_init): Move the code that sets up class->methods to 
15420         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
15421
15422         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
15423         canonical instance of an inflated generic signature.
15424         (mono_type_create_from_typespec): Remove an invalid free.
15425
15426         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
15427
15428 2007-09-18  Marek Habersack  <mhabersack@novell.com>
15429
15430         * domain-internals.h: added a declaration of the
15431         mono_assembly_load_full_nosearch internal function.
15432
15433         * assembly.c (mono_assembly_load_with_partial_name): use
15434         mono_try_assembly_resolve return value properly.
15435         (mono_assembly_load_full_nosearch): copied the function body from
15436         mono_assembly_load_full, without the code to invoke assembly
15437         search hooks.
15438         (mono_assembly_load_full): calls the above new function and if the
15439         assembly is not resolved, invokes the search hooks.
15440
15441         * appdomain.c (mono_runtime_init): restore the global postload
15442         assembly search handlers.
15443
15444 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15445
15446         * class.c (mono_class_init): Make sure class->methods and class->properties
15447         are never NULL in the generics case.
15448
15449         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
15450
15451 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
15452
15453         * metadata.c (free_generic_class): Disable some code to fix the build.
15454
15455         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
15456
15457         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
15458         from the image mempool.
15459
15460         * metadata.c (free_generic_class): Free more data from the inflated class.
15461
15462         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
15463
15464         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
15465         mempool.
15466         (mono_type_create_from_typespec): Ditto.
15467
15468         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
15469         MonoImage to the caller.
15470         (mono_init_internal): Save the opened image in a global variable.
15471         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
15472
15473         * reflection.c (resolve_object): Fix a leak.
15474
15475         * metadata.c: Fix the freeing of data in the generics caches.
15476         
15477         * metadata.c (free_generic_inst): Comment this out to fix the build.
15478         (free_generic_class): Ditto.
15479
15480         * metadata.c: Free cached generic methods, instantinations and classes when
15481         they are removed from the caches.
15482         (mono_metadata_free_type): Free the type itself.
15483
15484         * class.c: Free the result of mono_class_inflate_generic_type () in a few
15485         places.
15486
15487 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15488
15489         * boehm-gc.c: restrict managed allocs to __thread supporting
15490         architectures.
15491
15492 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
15493
15494         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
15495         (mono_generic_class_get_class): Fix a leak.
15496
15497         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
15498         mono_metadata_free_type ().
15499         (mono_metadata_inflate_generic_inst): Fix a leak.
15500
15501 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15502
15503         * mono-debug.c (free_header_data): Fix a leak missed earlier.
15504
15505         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
15506         mempool.
15507
15508         * mono-debug.c (mono_debug_close_image): Fix call to 
15509         g_hash_table_remove ().
15510
15511 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15512
15513         * icall-def.h: redirect all the string ctor to the managed
15514         CreateString () methods.
15515         * string-icalls.c, string-icalls.h: removed dead code for string
15516         ctors and icalls.
15517
15518 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15519
15520         * mono-debug.c: Fix memory leaks.
15521
15522 2007-09-14  Jonathan Chambers <joncham@gmail.com>
15523
15524         * threads-types.h: Implement mono_hazard_pointer_set and 
15525         mono_hazard_pointer_clear macros using do/while(0) to fix
15526         compilation with MSVC.
15527         
15528         Code is contributed under MIT/X11 license.
15529
15530 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15531
15532         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
15533         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
15534
15535 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15536
15537         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
15538         icalls.
15539
15540 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15541
15542         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
15543         managed-code allocated as well.
15544
15545 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15546
15547         * class.c (mono_class_is_assignable_from): Add support for generic variance.
15548
15549 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15550
15551         * boehm-gc.c: fixed the build after the AOT changes.
15552
15553 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15554
15555         * wrapper-types.h: Add an ALLOC wrapper type.
15556
15557         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
15558         reference managed allocator methods.
15559
15560 2007-09-12  Marek Safar  <marek.safar@gmail.com>
15561
15562         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
15563         of Type array and not MonoType, a fix suggested by Hari.
15564         
15565 2007-09-12  Jonathan Chambers <joncham@gmail.com>
15566
15567         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
15568         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
15569         
15570         Code is contributed under MIT/X11 license.
15571
15572 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15573
15574         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
15575
15576 2007-09-12  Marek Habersack  <mhabersack@novell.com>
15577
15578         * image.c (do_mono_image_open): if assembly file fails to open and
15579         MONO_IOMAP is in effect, try to find the path in a
15580         case-insensitive way.
15581
15582         * appdomain.c (mono_runtime_init): do not install postload hooks -
15583         tests show that MS.NET doesn't use anything of that sort to
15584         trigger the AppDomain.AssemblyResolve event.
15585         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
15586         made non-static.
15587         (mono_runtime_init): init portability helpers here.
15588
15589         * assembly.c (mono_assembly_load_with_partial_name): if other   
15590         attempts fail, trigger the AppDomain.AssemblyResolve event handler
15591         to resolve the assembly.
15592
15593         * domain-internals.h: added mono_try_assembly_resolve and marked
15594         it as internal.
15595
15596 2007-09-11  Jb Evain  <jbevain@novell.com>
15597
15598         * object-internals.h (MonoReflectionDynamicMethod): add
15599         a `MonoReflectionType *owner` field. The owner is used
15600         * reflection.c:
15601         (mono_reflection_create_dynamic_method): use the owner of the dynamic
15602         method as the class declaring the dynamic method.
15603         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
15604         dynamic method to the declaring type of the methodbuilder.
15605
15606 2007-09-11  Mark Probst  <mark.probst@gmail.com>
15607
15608         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
15609         rules for calling methods via reflection.
15610
15611 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
15612
15613         * reflection.c (resolve_object): Add support for MonoGenericClass. 
15614         Inflate MonoType's.
15615
15616 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15617
15618         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
15619         provide a managed method that does fast allocations without needing
15620         a managed->unmanaged transition. Boehm GC implementation currently
15621         enabled for ptrfree objects on sane architectures.
15622
15623 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15624
15625         * marshal.c, marshal.h: exported a couple of useful functions and
15626         added mono_mb_get_label () to easily handle backward branches.
15627
15628 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
15629
15630         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
15631
15632 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15633
15634         * loader.c (find_method): Fixed the regression introduced while
15635         fixing bug #81466.
15636
15637 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
15638
15639         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
15640         well.
15641         
15642         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
15643         icall.c reflection.c: Pass a MonoGenericContext argument to 
15644         mono_lookup_dynamic_token ().
15645
15646         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
15647         #82744.
15648         
15649 2007-09-09  Robert Jordan  <robertj@gmx.net>
15650
15651         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
15652         for generic methods.
15653
15654         * object.c (mono_object_get_virtual_method): Handle generic methods.
15655         Fixes bug #78882.
15656
15657         Code is contributed under MIT/X11 license.
15658
15659 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15660
15661         * image.c: fix locking in mono_image_load_file_for_image ().
15662
15663 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
15664
15665         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
15666         used only as a cache: added an icall to fill it.
15667
15668 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
15669
15670         * reflection.h: exposed mono_reflection_free_type_info
15671         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
15672         since mono_reflection_bind_generic_parameters makes a copy of it.
15673         * reflection.c (free_type_info): subinfos should be freed.
15674         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
15675         made non static.
15676         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
15677         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
15678         this fixes #82695 and #81726.
15679    
15680
15681 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
15682
15683         * process.h, process.c:  added support for user profile/info in
15684           ProcessStartInfo. For now only Windows works.
15685
15686 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15687
15688         * metadata.c: consider the generic arguments when comparing
15689         signatures (bug #82614).
15690
15691 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15692
15693         * cil-coff.h, image.c: updated assembly loader to cope with the
15694         PE32+ 64 bit file format.
15695
15696 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15697
15698         * assembly.c, class.c, domain.c, loader.c: remove useless
15699         inclusion of cil-coff.h.
15700
15701 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
15702
15703         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
15704         if interface is marked with CoClassAttribute. 
15705    
15706         Code is contributed under MIT/X11 license.
15707
15708 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15709
15710         * sgen-gc.c: ensure no object from the to space is copied again or finalized
15711         if it's seen twice in major collections.
15712
15713 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15714
15715         * sgen-gc.c: big objects are not copied to the gray area, but they
15716         need to be considered for scanning, too, if they are brought alive
15717         by an object ready for finalizations or a survived one.
15718
15719 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15720
15721         * sgen-gc.c: properly account the number of disappearing links when
15722         they are nullified.
15723
15724 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15725
15726         * sgen-gc.c: share the code to scan the registered roots between the
15727         different types of collections.
15728
15729 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15730
15731         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
15732
15733 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15734
15735         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
15736         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
15737
15738 2007-08-28  Mark Probst  <mark.probst@gmail.com>
15739
15740         * security-manager.c (mono_security_manager_get_methods):
15741         LinkDemandSecurityException now has 2 arguments instead of 3.
15742
15743 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
15744
15745         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
15746         platforms which need it.
15747
15748 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15749
15750         * sgen-gc.c: unregister thread data structures with a pthread_key_t
15751         dtor.
15752
15753 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15754
15755         * threads.c: free the thread static data on thread exit.
15756
15757 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
15758
15759         * class.c: walk the hierarchy to find the generic definition for
15760         a class (fixes runtime part of bug #82498).
15761
15762 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15763
15764         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
15765         ...
15766
15767         * image.c (mono_image_close): Here. Hopefully fixes #82510.
15768
15769 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15770
15771         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
15772
15773 2007-08-24  Robert Jordan  <robertj@gmx.net>
15774
15775         * appdomain.c: don't perform the ':'->';' substitution on Win32.
15776
15777 2007-08-24  Jb Evain  <jbevain@novell.com>
15778
15779         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
15780         for byref types.
15781
15782 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15783
15784         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
15785         #82286.
15786
15787 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15788
15789         * assembly.c: Fix a warning.
15790         
15791 2007-08-23  Marek Habersack  <mhabersack@novell.com>
15792
15793         * appdomain.c: parse the <runtime> section looking for the probing
15794         element with the 'privatePath' attribute, which sets additional
15795         directories in which the runtime should look for assemblies.
15796
15797 2007-08-23  Robert Jordan  <robertj@gmx.net>
15798
15799         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15800         Fixes #82499.
15801
15802 2007-08-23  Martin Baulig  <martin@ximian.com>
15803
15804         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15805         _mono_debug_init_corlib() and remove it from the header file.
15806
15807 2007-08-23  Martin Baulig  <martin@ximian.com>
15808
15809         * mono-debug-debugger.c
15810         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15811         don't notify the debugger about it.
15812
15813         * mono-debug-debugger.h
15814         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15815
15816 2007-08-23  Robert Jordan  <robertj@gmx.net>
15817
15818         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15819         Code is contributed under MIT/X11 license.
15820
15821 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15822
15823         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15824
15825 2007-08-22  Martin Baulig  <martin@ximian.com>
15826
15827         * mono-debug.c: Store debugging info on a per-domain basis and
15828         free it on domain unload.  Add support for unloading symbol files.
15829
15830         * mono-debug.h
15831         (MonoDebugList): New typedef.
15832         (MonoSymbolTable):
15833         - add `data_tables and `type_table'.
15834         - replace 'symbol_files' and `num_symbol_files' with a
15835           `MonoDebugList *'.
15836         (mono_debug_data_table): Removed.
15837         (mono_debug_list_add): New public function.
15838         (mono_debug_list_remove): New public function.
15839         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15840         (mono_debug_init_2_memory): Renamed into
15841         mono_debug_open_image_from_memory().
15842         (mono_debug_close_image): New public function.
15843         (mono_debug_domain_create): Likewise.
15844         (mono_debug_domain_unload): Likewise.
15845         (MONO_DEBUGGER_VERSION): Bump to 60.
15846
15847         * mono-debug-debugger.h
15848         (MonoDebuggerEvent):
15849         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15850         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15851         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15852         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15853           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15854         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15855           meaning.
15856         (mono_debugger_add_symbol_file): Removed.
15857         (mono_debugger_add_type): Removed.
15858         (mono_debugger_lookup_type): Removed.
15859         (mono_debugger_lookup_assembly): Removed.
15860
15861         * domain.c
15862         (mono_domain_create): Call mono_debug_domain_create().
15863         (mono_init_internal): Call mono_debug_init_corlib().
15864
15865         * assembly.c
15866         (mono_assembly_close): Call mono_debug_close_image().
15867
15868 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15869
15870         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15871         mmap call.
15872
15873 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15874
15875         * sgen-gc.c: ensure section->pin_queue_end is initialized
15876         correctly when non pinning objects in the section have been found.
15877
15878 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15879
15880         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15881         containing a list of directories separated by ':'. MSDN docs say
15882         the directories should be separated with ';'. Part of a bugfix for
15883         bug #81446
15884
15885 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15886
15887         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15888         it should MonoType and not MonoClass.
15889
15890 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15891
15892         * culture-info-table.h : regenerated.
15893
15894 2007-08-20  William Holmes  <billholmes54@gmail.com>
15895
15896         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15897          to call ReplaceFile Kernel32 on windows or in io-layer.
15898         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15899         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15900          as an internal call.
15901
15902         Code is contributed under MIT/X11 license.
15903
15904 2007-08-20  Jb Evain  <jbevain@novell.com>
15905
15906         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15907         and MONO_EXCEPTION_FIELD_ACCESS.
15908
15909         * debug-helpers.[c|h]: new mono_field_full_name function.
15910
15911 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15912
15913         * class.c: Removed class_security_level() and moved it to
15914         security-core-clr.c.
15915
15916         * security-core-clr.c, security-core-clr.h: class_security_level()
15917         is now public and renamed to mono_security_core_clr_class_level().
15918         It also looks for security attributes in the classes a class is
15919         nested in.
15920
15921 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15922
15923         * security-core-clr.c, security-core-clr.h: CoreCLR security
15924         utility functions.
15925
15926         * Makefile.am: Added security-core-clr.[ch].
15927
15928         * security-manager.c, security-manager.h: Functions and enum for
15929         setting and getting the security mode.
15930
15931         * class.c: CoreCLR security checks.
15932
15933 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15934
15935         * icall-def.h, process.c, process.h: implemented icall to get
15936         user/system processor times.
15937
15938 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15939
15940         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15941         reader-lock-free jit_info_table.
15942
15943 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15944
15945         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15946
15947         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15948
15949         * object-internals.h (MonoException): Add missing _data member.
15950
15951 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15952
15953         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15954         checking that only methods with matching qname or fqname are picked
15955         from implemented interfaces.
15956
15957 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15958
15959         * verify.c (do_newarr):added, do type verification of
15960         newarr ops, push the right value on the eval stack.
15961         * verify.c (mono_method_verify): use do_newarr
15962
15963
15964 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15965
15966         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15967         factored the common code into get_boxable_mono_type, which
15968         is now using mono_type_get_full, this fixed byref related tests.
15969
15970 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15971
15972         * class.c: added mono_type_get_full, this function has the same
15973         behavior of mono_class_get_full but the returned MonoType has
15974         all metadata of the associated token in case of a typespec token.
15975         * class.c: added mono_type_retrieve_from_typespec, used by 
15976         mono_type_get_full to retrieve the token type.
15977         * class.c (mono_class_create_from_typespec): changed to use
15978         mono_type_retrieve_from_typespec.
15979         * class.c (mono_ldtoken): changed to use mono_type_get_full
15980         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15981         * class-internals.h: exported mono_type_get_full for internal use.
15982
15983 2007-08-16  Jb Evain  <jbevain@novell.com>
15984
15985         * domain.c (supported_runtimes): add entry for
15986         the 'moonlight' runtime version.
15987
15988 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15989
15990         * verify.c (mono_method_verify): small typo sliped in.  
15991
15992 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15993
15994         * verify.c (do_unbox_value): added, do type verification of
15995         unboxing ops
15996         * verify.c (mono_method_verify): use do_unbox_value
15997
15998
15999 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
16000
16001         * verify.c (dump_stack_value): fixed typo, was printing string
16002         instead of object on stack.
16003         * verify.c (do_box_value): moved the byref check up as it leads
16004         to invalid code and should be done earlier.
16005         * verify.c: improved error messages for and ldobj
16006
16007 2007-08-15  William Holmes  <billholmes54@gmail.com>
16008
16009         * marshal.c (emit_marshal_custom): Omit the call to 
16010           marshal_native_to_managed when calling native to managed 
16011           and the argument is specified as an out argument.
16012
16013         Code is contributed under MIT/X11 license.
16014
16015 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
16016
16017         * verify.c: fixed the type checks for generics, function pointers and vectors.
16018         Added type verification for ldobj and ldtoken. The verifier
16019         would segfault if header or signature of a method contained references
16020         to non-existant types.
16021
16022 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
16023
16024         * marshal.c (cominterop_get_ccw): Patch from
16025         Bill Holmes to no walk up interface hierarchy. 
16026         All parent methods should be present in the interface for COM.
16027    
16028         Code is contributed under MIT/X11 license.
16029
16030 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
16031
16032         * marshal.c (emit_marshal_com_interface): Patch from
16033         Bill Holmes to handle COM Interfaces as return values
16034         for native->managed calls.
16035    
16036         Code is contributed under MIT/X11 license.
16037
16038 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
16039
16040         * marshal.c (cominterop_get_idispatch_for_object): Implement
16041         for runtime callable wrappers.
16042    
16043         Code is contributed under MIT/X11 license.
16044
16045 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
16046
16047         * pedump.c (main): changed from mono_init to mono_init_from_assembly
16048         so 2.0 types are accessible
16049
16050
16051 2007-08-13  Miguel de Icaza  <miguel@novell.com>
16052
16053         * domain.c (mono_init_internal): Call mono_assembly_load_friends
16054         once we load mscorlib.   Due to the order in which we initialize,
16055         the mono_assembly_load_full routine that loads mscorlib did not
16056         load friends.   We now load it once we load the
16057         mono_defaults.internals_visible_class class. 
16058
16059         * assembly.c: Expose the mono_load_friend_assemblies method.
16060
16061 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
16062
16063         * verify.c: improved the handling of boxing, better
16064         type checking for unary ops and conversion. Fix bug
16065         regarding managed pointer compatibility checking
16066
16067 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
16068
16069         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
16070
16071         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
16072
16073 2007-08-09  Raja R Harinath  <rharinath@novell.com>
16074
16075         * reflection.c (dup_type): Remove.
16076         * class.c (dup_type): Remove.
16077         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
16078         instead of the dodgy 'dup_type'.
16079         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
16080         handle the case where 'dup_type' needed the second argument.
16081
16082 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
16083
16084         * domain.c: Fix a warning.
16085
16086 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
16087
16088         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
16089         checking that methods with the same fqname are not overridden
16090         with a method from an ancestor.
16091
16092 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
16093
16094         * threads.c (free_thread_static_data_helper): Avoid a crash if
16095         thread->static_data is not yet set.
16096
16097 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
16098
16099         * marshal.c: Use correct image when emitting
16100         native wrapper for COM calls.
16101    
16102         Code is contributed under MIT/X11 license.
16103
16104 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
16105
16106         * icall-def.h, security.c, security.h :
16107           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
16108
16109 2007-08-07  Martin Baulig  <martin@ximian.com>
16110
16111         * mono-debug-debugger.h
16112         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
16113
16114         * domain.c (mono_domain_free): Call
16115         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
16116
16117 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
16118
16119         * verify.c (check_underflow, check_overflow): error message now returns IL offset
16120         * verify.c (in_same_block): code should test if either offset is inside the clauses
16121         * verify.c (mono_method_verify): push the exception into the eval stack of exception
16122         and filter blocks
16123
16124 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
16125
16126         * image.c (mono_image_close): Fix a leak.
16127
16128         * object.c (mono_runtime_invoke_array): Avoid using alloca.
16129
16130         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
16131
16132 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
16133
16134         * domain.c, threads.c, threads-types.h: fix memory retention issue
16135         with thread static variables not being cleared on domain unload.
16136         Reuse thread static slots after domain unload.
16137
16138 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
16139
16140         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
16141         nullable type.
16142
16143         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
16144         now done in mono_runtime_invoke_array.
16145
16146         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
16147         receiver is a nullable type.
16148
16149         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
16150         generic parameter.
16151
16152 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
16153
16154         * marshal.c: Implement COM Objects as return type for 
16155         managed->unmanaged calls. Added Release calls for COM Object
16156         out/return values in managed->unmanaged calls.
16157
16158         Code is contributed under MIT/X11 license.
16159
16160 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
16161
16162         * threads.h, threads-type.h: move the hazard pointer declarations
16163         to the private header.
16164
16165 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
16166
16167         * file-io.c, appdomain.c: memory leak fixes.
16168
16169 2007-08-02  Dick Porter  <dick@ximian.com>
16170
16171         * socket-io.c
16172         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
16173         SO_REUSEADDR setting into io-layer/sockets.c.
16174
16175 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
16176
16177         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
16178         from Object when called on a generic parameter. Fixes #82211.
16179
16180 2007-08-01  Dick Porter  <dick@ximian.com>
16181
16182         * file-io.c (convert_share): Test FileShare values bit-by-bit.
16183         Fixes bug 79250 yet again.
16184
16185 2007-07-30  Martin Baulig  <martin@ximian.com>
16186
16187         Merged the `debugger-dublin' branch.
16188
16189         * mono-debug.h
16190         (MonoDebugDataTable): New typedef.
16191         (MonoDebugMethodAddressList): New typedef.
16192         (MonoDebugWrapperData): Removed.
16193         (MonoDebugSymbolTable): Removed `current_data_table',
16194         `current_data_table_size', `current_data_table_offset'.
16195         (MonoDebugDataItemType): Moved into mono-debug.c.
16196         (MonoDebugMethodJitInfo): Remove `address'.
16197         (mono_debug_data_table): New global variable.
16198         (mono_debug_lookup_method_addresses): New public function.
16199         (mono_debug_find_method): Take a `MonoMethod *', not a
16200         `MonoDebugMethodInfo *'.
16201
16202         * mono-debug.c: Drop support for the old symbol tables.
16203
16204 2007-06-28  Martin Baulig  <martin@ximian.com>
16205
16206         * mono-debug.c (mono_debug_debugger_version): New public variable.
16207
16208 2007-07-31  William Holmes  <billholmes54@gmail.com>
16209
16210         * metadata.c Changed mono_type_create_from_typespec to not insert
16211           the type into the hash map until after
16212           do_mono_metadata_parse_type has completed.
16213         Fixes Bug #82194
16214         Code is contributed under MIT/X11 license.
16215
16216 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
16217
16218         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
16219         generic parameter. Fixes #82211.
16220
16221 2007-07-27  Jb Evain  <jbevain@novell.com>
16222
16223         * pedump.c (dump_metadata, dump_metadata_header): dump
16224         versions contained in the metadata header.
16225
16226 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
16227
16228         * threads.c: register small_id_table with the GC.
16229
16230 2007-07-27  Mark Probst  <mark.probst@gmail.com>
16231
16232         * threads.c, threads.h, class-internals.h, object-internals.h:
16233         Hazard pointers, to be used by lock-free parallel algorithms.
16234
16235 2007-07-26  Dick Porter  <dick@ximian.com>
16236
16237         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
16238         routine on non-windows platforms, as I've not managed to think of
16239         a non-kludgy way of doing this.  Finishes off bug 78739.
16240
16241 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
16242
16243         * object.c: properly setup interface_bitmap in proxy vtables.
16244
16245 2007-07-25  Marek Habersack  <mhabersack@novell.com>
16246
16247         * appdomain.c (get_shadow_assembly_location): do not use TickCount
16248         to create unique shadow copy target directories, use the domain's
16249         serial number instead. Each domain gets a unique target directory
16250         that way.
16251
16252         * domain.c (mono_domain_create): added code to increment domain
16253         shadow copy serial number and cache the value in the current
16254         domain structure.
16255
16256         * domain-internals.h (struct _MonoDomain): added a new field -
16257         shadow_serial to hold the serial number used in generation of
16258         shadow-copy directories. This is to make sure that the directory
16259         name is unique for each and every domain created. We avoid a race
16260         condition with overriding assemblies already in use by other app
16261         domains.
16262
16263 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
16264
16265         * class.c (mono_bounded_array_class_get): fixed memory leak when 
16266         binding generic parameters.
16267
16268 2007-07-24  Raja R Harinath  <rharinath@novell.com>
16269
16270         * metadata.c (do_mono_metadata_parse_generic_class): Use
16271         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
16272         error.
16273
16274 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
16275
16276         * loader.c, class-internals.h, reflection.c: removed the per-method
16277         generics hashtable: we use the global one through the call of
16278         mono_class_inflate_generic_method ().
16279
16280 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16281
16282         * class.c, metadata.c, class-internals.h: introduce yet another
16283         generics global cache for inflated methods (fixes 98% of the perf
16284         issue in bug #81806).
16285
16286 2007-07-23  Raja R Harinath  <rharinath@novell.com>
16287
16288         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
16289         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
16290         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
16291         return a MonoGenericInst containing (a copy) of those types.
16292         (mono_metadata_inflate_generic_inst): Update to changes.
16293         (mono_metadata_parse_generic_inst): Likewise.
16294         (mono_get_shared_generic_inst): Likewise.
16295         * reflection.c (mono_class_bind_generic_parameters): Likewise.
16296         (mono_reflection_bind_generic_method_parameters): Likewise.
16297         * metadata-internals.h: Likewise.
16298         * icall.c (free_generic_context): Kill.
16299         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
16300
16301         * reflection.c (reflection_methodbuilder_to_mono_method): Use
16302         mono_metadata_type_dup.
16303         * marshal.c (mono_mb_create_method): Likewise.
16304
16305         * metadata.c (mono_metadata_type_dup): Rename from
16306         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
16307         MonoImage.  Handle a few more cases, esp. when no mempool is given.
16308         * marshal.c, metadata-internals.h: Update to changes.
16309
16310 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
16311
16312         * class.c: fixed a small leak for array classes and removed warning.
16313
16314 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
16315
16316         * loader.c (mono_method_get_param_token): Make this work on generic methods.
16317         Return 0x8000000 for return parameters. Fixes #82161.
16318
16319 2007-07-21  Marek Habersack  <grendello@gmail.com>
16320
16321         * appdomain.c (get_shadow_assembly_location): append the current
16322         ticks value to the path. Avoids overwriting the same assemblies by
16323         several threads at the same time.
16324
16325 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
16326         and Raja R Harinath  <rharinath@novell.com>
16327
16328         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16329         Simplify slightly.
16330         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
16331         property for testing if a method is a generic method definition.
16332
16333 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
16334
16335         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
16336
16337 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16338
16339         * verify.c: used function from private branch, reverted to the one in class.h 
16340
16341 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16342
16343         * verify.c: a typo slipped in and the code wont compile
16344
16345 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16346
16347         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
16348         disabled box instruction as it is doing the wrong thing
16349         improved stack dump messages, now it is easier to debug type related issues
16350
16351
16352 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
16353
16354         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
16355
16356 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16357
16358         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
16359         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
16360         grouped with class and valuetype. This change will simply 
16361         the code as it should be handled just like unmanaged pointers.
16362
16363 2007-07-19  Mark Probst  <mark.probst@gmail.com>
16364
16365         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
16366
16367 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16368
16369         * verify.c: several stack merge issues fixed, reference comparisons now
16370         check the type size. strict type check now works correctly.
16371         added more uses of IS_MANAGED_POINTER macro.
16372         fixed issues pointed by running the test suite against .net.
16373         
16374
16375 2007-07-19  Mark Probst  <mark.probst@gmail.com>
16376
16377         * class.c, loader.c, class-internals.h: Removed the
16378         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
16379         defines.
16380
16381         * icall.c: Better error checking in some internal reflection
16382         methods.
16383
16384 2007-07-18  William Holmes  <billholmes54@gmail.com>
16385
16386         * filewatcher.c : removed unused variable 'filename' in 
16387           ves_icall_System_IO_FSW_SupportsFSW
16388
16389 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
16390
16391         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
16392         obsolete, removed.
16393
16394 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
16395
16396         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
16397         
16398         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
16399
16400 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
16401
16402         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
16403         Implement generics support.
16404         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16405
16406         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
16407         type_args and method_args arguments.
16408         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
16409         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16410         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
16411
16412 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
16413
16414         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
16415           It adds a rootimage parameter to mono_reflection_get_type_internal,
16416           adds new function mono_reflection_get_type_with_rootimage and use
16417           the rootimage to resolve the types instead of the current image
16418
16419 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
16420
16421         * culture-info-table.h: Forgot to update after r78304.
16422
16423 2007-07-13  Raja R Harinath  <rharinath@novell.com>
16424
16425         * class.c (mono_class_is_open_constructed_type)
16426         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
16427
16428 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
16429
16430         * class.c (mono_bounded_array_class_get):  method fails if used with
16431         an incomplete TypeBuilder enum (no basetype field), fixed it by 
16432         avoiding calculating the size for such array as it cannot be instantiated.
16433         Fix bug #82015
16434
16435 2007-07-12  Raja R Harinath  <rharinath@novell.com>
16436
16437         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
16438         field.
16439         * metadata.c, reflection.c: Update to changes.
16440
16441 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
16442
16443         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
16444         mono_class_is_valid_enum, they are used to valide a enum when loading.
16445         * reflection.c: used new functions to throw TypeLoadException when and
16446         invalid enum is build with TypeBuilder. Fixes #82018
16447   
16448 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
16449
16450         * object.c: forgot commit of mono_class_setup_methods () to access
16451         iface->methods.
16452         * object-internals.h: added a few more handy fields to
16453         MonoIMTCheckItem.
16454
16455 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
16456
16457         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
16458         iface->methods.
16459
16460 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
16461
16462         * class-internals.h, object-internals.h, object.c: IMT-based
16463         interface invocation core from Massimiliano Mantione
16464         (massi@ximian.com) with a reworked arch-specific interface,
16465         bsearch implementation and a few bugfixes and memory savings by me.
16466
16467 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
16468
16469         * class.c (mono_class_create_from_typedef): mono would segfault if 
16470         an enum did not have a __value field. It now throws a TypeLoadException
16471         for such cases. Fix bug #82022
16472
16473 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16474
16475         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
16476
16477 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16478
16479         * class.c (mono_class_init): If a class is already inited but has
16480         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
16481
16482 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16483
16484         * class.c: Properly handle the case of an unimplemented interface
16485         method.  Fixes: 81673.
16486
16487 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
16488
16489         * class-internals.h, object.c: cleanup patch from massi: use
16490         MonoVTable->interface_bitmap since the vtable interfaces offset array
16491         is going away.
16492
16493 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16494
16495         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
16496         GetMDStreamVersion icall instead.
16497
16498 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
16499
16500         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
16501         not use mono_dl_build_path() with a full library name: makes
16502         fallbacks to libgaim and libfam work.
16503
16504 2007-07-06  William Holmes  <billholmes54@gmail.com>
16505
16506         * assembly.c: Added a continue statement in probe_for_partial_name when
16507          parse_assembly_directory_name fails.  Fixes : 82002
16508
16509 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
16510
16511         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
16512         and added a verification  for TYPEDBYREF.
16513         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
16514         make native int interchangeable with int32 and some small cleanup and formating.
16515         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
16516         handle byref of byref.
16517         * verify.c (push_local): handle byref of byref.
16518         * verify.c (do_binop): invalid mix of values is unverifiable
16519         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
16520         added visibility checks
16521         * verify.c (field related method): added visibility checks
16522         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
16523
16524 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
16525
16526         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
16527         string.
16528
16529 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
16530
16531         * profiler.c (mono_profiler_load): Fix an off-by-one error.
16532
16533         * marshal.c (emit_marshal_string): When returning a string from managed code,
16534         allways make a copy even for unicode strings. Fixes #81990.
16535
16536 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
16537
16538         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
16539         of byref generic inst types (bug #81997).
16540
16541 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
16542
16543         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
16544         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
16545
16546 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
16547
16548         * marshal.c (emit_marshal_string): Add support for unicode strings in
16549         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
16550
16551 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
16552
16553         * verify.c: field load/store are now verified, missing only access checks now
16554
16555 2007-06-28  Martin Baulig  <martin@ximian.com>
16556
16557         * mono-debug.c (mono_debug_debugger_version): New public variable.
16558
16559 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
16560
16561         * locales.c: When constructing DateTimeFormat or NumberFormat for
16562         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
16563         MonoCultureInfo contructed from the current locale is always
16564         read-only and has UseUserOverride set to true. All MonoCultureInfo
16565         instances returned for GetCultures have both IsReadOnly and
16566         UseUserOverride set to true. Fixes part of bug #81930.
16567
16568 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
16569
16570        * icall-def.h: Update System.__ComObject icalls
16571        * marshal.c: Avoid managed transition (and object creation)
16572        when looking up COM interface in RCW.
16573        * marshal.h: Ditto.
16574        
16575        Code is contributed under MIT/X11 license.
16576
16577 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
16578
16579         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
16580         to avoid crashes during assembly unloading.
16581
16582 2007-06-22  Raja R Harinath  <rharinath@novell.com>
16583
16584         Fix MethodInfo.IsGenericMethodDefinition
16585         * reflection.c (mono_reflection_bind_generic_method_parameters):
16586         Rearrange code to ensure we always uses a generic method definition.
16587         * class.c (mono_class_inflate_generic_method_full): Set
16588         'generic_container' field only for generic method definitions.
16589         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16590         Use presense of 'generic_container' field as indication of being a
16591         generic method definition.
16592
16593 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
16594
16595         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16596
16597         * object-internals.h: Reflect changes in the layout of the managed Delegate
16598         class.
16599         
16600         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
16601         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
16602         runtime memory used by the dynamic method. Fixes #77146.
16603
16604 2007-06-21  Dick Porter  <dick@ximian.com>
16605
16606         * file-io.h: 
16607         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
16608         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
16609         81767.
16610
16611 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16612
16613         * reflection.c (method_encode_methodspec): Add a tripwire.
16614         * class.c (inflate_generic_type): The fully open generic type is
16615         not the same as the generic type definition.
16616
16617 2007-06-21  Martin Baulig  <martin@ximian.com>
16618
16619         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
16620
16621         * mono-debug-debugger.h
16622         (MonoDebuggerBreakpointInfo): Removed.
16623         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
16624         (mono_debugger_remove_breakpoint): Likewise.
16625         (mono_debugger_breakpoint_callback): Likewise.
16626         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
16627
16628 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16629
16630         * metadata.c (mono_metadata_lookup_generic_class): The fully open
16631         generic type is not the same as the generic type definition.
16632         * class.c (mono_generic_class_get_class): Likewise.
16633
16634 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
16635
16636         * icall.c: The second argument to 
16637         System.Reflection.MethodBase.GetMethodFromHandleInternalType
16638         is a MonoType not a MonoClass.
16639
16640 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16641
16642         * verify.c: support for function pointers in the verifier
16643
16644 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16645
16646         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
16647
16648 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
16649
16650         * assembly.c: removed Mono.Data.SqliteClient from the list of
16651         forward-compatible assemblies as it breaks the ABI (bug #81899).
16652
16653 2007-06-19  Raja R Harinath  <rharinath@novell.com>
16654
16655         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
16656         lookup/update with the loader lock.
16657         * reflection.c (mono_class_bind_generic_parameters): No need to
16658         protect mono_metadata_lookup_* with the loader lock.
16659         * class.c (inflate_generic_type): Likewise.
16660         
16661         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
16662         on a generic instantiated type.
16663
16664 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
16665
16666         *verify.c: produce meanfull error messages on verification error
16667         *verify.c: fixed some cases of verification errors reported as validation errors
16668         *pedump.c: fixed the error name array, now it shows validation errors properly
16669         *verify.h: fixed the contant that should be used for verification errors
16670
16671 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
16672
16673         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
16674         for bug #77596, 81858 and 80743 (generics data structures on domain
16675         unload).
16676
16677 2007-06-15  Raja R Harinath  <rharinath@novell.com>
16678
16679         Avoid allocating 'MonoGenericContext' on the heap.
16680         * class-internals (_MonoMethodInflated::context): Make field
16681         inline, not a pointer.
16682         * loader.c (method_from_methodspec): Allocate 'new_context' on the
16683         stack.  Use the context embedded within the inflated method as the
16684         hash key, rather than 'new_context'.
16685         * class.c (inflate_generic_context): Simplify.  Return a struct
16686         rather than allocating on the heap.
16687         (mono_class_inflate_generic_method_full): Update to changes.  Now,
16688         doesn't salt away a copy of the context -- simplifying the
16689         lifetime rules of a 'MonoGenericContext *'.
16690         (mono_method_get_context): Return pointer to embedded context.
16691         (setup_generic_array_ifaces): Allocate temporary context on stack.
16692         * reflection.c (inflate_mono_method): Likewise.
16693         (mono_reflection_bind_generic_method_parameters): Likewise.
16694         Use the context embedded within the inflated method as the hash key.
16695
16696         Avoid a source of allocation of 'MonoGenericContext'.
16697         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
16698         and 'cached_context' fields into embedded 'MonoGenericContext' field.
16699         * class.c: Update to changes.
16700         (mono_generic_class_get_context): Simplify drastically.  Now just
16701         returns a pointer to the field.
16702         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
16703         argument as a const pointer.
16704         (mono_metadata_generic_context_equal): Likewise.
16705         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
16706         Update to changes.
16707
16708 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
16709
16710         * verify.c improved the handling of brtrue/brfalse, factored out common code
16711
16712 2007-06-14  Raja R Harinath  <rharinath@novell.com>
16713
16714         Kill MonoGenericMethod.
16715         * class-internals.h (MonoGenericContext::method_inst): Rename from
16716         'gmethod' and convert to a MonoGenericInst.
16717         (MonoGenericMethod): Remove.
16718         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
16719         * loader.c (method_from_methodspec): Update to changes.  Use a
16720         MonoGenericContext as the key to the hashtable.
16721         * metadata.c (mono_metadata_generic_context_equal): Rename from 
16722         'mono_metadata_generic_method_equal' and take MonoGenericContext.
16723         (mono_metadata_generic_context_hash): Likewise from
16724         'mono_metadata_generic_method_hash'.  Change hash function.
16725         (mono_metadata_load_generic_params): Update to changes.
16726         (mono_get_shared_generic_method): Remove.
16727         * metadata-internals.h (mono_get_shared_generic_method): Remove.
16728         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
16729         (inflate_generic_context): Likewise.
16730         (mono_class_inflate_generic_method_full): Likewise.
16731         (setup_generic_array_ifaces): Likewise.
16732         (mono_class_create_from_typespec): Likewise.
16733         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
16734         (method_encode_methodspec): Update callsite.
16735         (reflection_methodbuilder_to_mono_method): Update to changes.
16736         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
16737         MonoGenericContext as the key to the hashtable.
16738         (inflate_mono_method): Update to changes.
16739
16740         * class-internals.h (MonoGenericMethod::container): Remove.
16741         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16742
16743 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
16744
16745         * profiler-private.h, profiler.c, profiler.h: added API to profile
16746         exception events.
16747
16748 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16749
16750         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
16751
16752 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16753
16754         * verify.c: method invocation is now validated, now we verify parameter types on stack.
16755         Fixed overflow and underflow not aborting the verification process.
16756
16757 2007-06-13  Mark Probst  <mark.probst@gmail.com>
16758
16759         * class-internals.h (MonoStats): Added stats entries for dynamic
16760         code allocations.
16761
16762 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
16763
16764         * loader.c (mono_free_method): Free header->locals and header->clauses.
16765
16766         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
16767         dynamic case.
16768
16769         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
16770
16771         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
16772
16773 2007-06-12  Raja R Harinath  <rharinath@novell.com>
16774
16775         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
16776         the tables.
16777
16778 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16779
16780         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
16781
16782 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16783
16784         MonoGenericMethod on a diet
16785         * class-internals.h (_MonoMethodInflated::reflection_info): Move
16786         here ...
16787         (_MonoGenericMethod::reflection_info): ... from here.
16788         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
16789         Update to changes.
16790         * reflection.c (inflate_mono_method): Likewise.
16791         (mono_reflection_bind_generic_method_parameters): Likewise.
16792
16793 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16794
16795         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16796         *verify.c: factored long ldarg forms to share code with short forms
16797
16798 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16799
16800         *verify.c: fixed code formating factored some duplicate code
16801         into a new function
16802
16803         *verify.h: fixed binary incompatibility introduced earlier
16804
16805         *pedump.c: fixed formating
16806
16807 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16808
16809         Fix assertion when disassembling Mono.C5.dll
16810         * loader.c (method_from_methodspec): Avoid inflating a method
16811         twice with the same context.  If the methodref is inflated, use
16812         the declaring method instead.
16813
16814         * class.c (mono_class_from_generic_parameter): Fix case similar to
16815         bug #81830 handled below, but for method containers.
16816
16817 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16818
16819         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16820         get_shared_generic_class.  Directly inflate the instance.
16821         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16822         (inflate_generic_class): Delete.
16823         (get_shared_generic_class): Delete.  Move setting of
16824         'cached_class' and 'cached_context' ...
16825         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16826
16827         * metadata.c (mono_metadata_lookup_generic_class): Change
16828         signature to take the components of a MonoGenericClass rather than
16829         an allocated MonoGenericClass.  Change semantics to be intern-like.
16830         * reflection.c (mono_class_bind_generic_parameters): Update to
16831         changes.  Make locking region tighter.
16832         * class.c (inflate_generic_class): Update to changes.
16833         (get_shared_generic_class): Likewise.
16834         * metadata-internals.h: Likewise.
16835
16836         * reflection.c (mono_class_bind_generic_parameters): Take and
16837         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16838         (mono_reflection_bind_generic_parameters): Use
16839         'mono_class_bind_generic_parameters' rather than duplicate the code.
16840         * class.c (mono_bounded_array_class_get): Update to changes.
16841         * object-internals.h: Likewise.
16842
16843         * reflection.c (mono_class_bind_generic_parameters): Only support
16844         parameterizing generic type definitions.  Remove support for other
16845         open types.
16846
16847 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16848
16849         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16850
16851         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16852         in the dynamic case.
16853
16854 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16855
16856         * threads.c: When cleaning up thread, reset the Background bit.
16857         Fixes bug #81720.
16858
16859 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16860
16861        * metadata.c: Move variable declarations to top of scope.
16862        * verify.c: Move variable declarations to top of scope.
16863
16864        Code is contributed under MIT/X11 license.
16865
16866 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16867
16868         * reflection.c (mono_class_bind_generic_parameters): Replace
16869         open-coded loop with mono_metadata_inflate_generic_inst.
16870
16871         * class.c (get_shared_generic_class): Don't call
16872         mono_get_shared_generic_inst.  Use the container's own
16873         'class_inst'.
16874
16875         * metadata.c (mono_metadata_load_generic_params): Move
16876         initialization of 'context' field here from ...
16877         * class.c (mono_class_create_from_typedef): ... here, and ...
16878         * loader.c (mono_get_method_from_token): ... here.
16879
16880         * class.c (get_shared_generic_class): Rename from
16881         mono_get_shared_generic_class and make static.
16882         (mono_get_shared_generic_inst): Move to metadata.c.
16883         * loader.c (mono_get_shared_generic_method): Likewise.
16884         * class-internals.h, metadata-internals.h: Update to changes.
16885
16886         Fix #81830
16887         * class.c (mono_class_from_generic_parameter): Don't assume a
16888         generic container owner exists.  Generic containers from monodis
16889         don't have any.
16890
16891 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16892
16893         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16894         * verify.h: new typedefs to returns the non-verifiable status
16895         * verify.c: initial implementation of generics, stack merging and object compatibility check
16896
16897 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16898
16899         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16900         a MonoInternalHashTable again (fixed bug in internal hash table
16901         code).
16902
16903 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16904
16905         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16906         MonoInternalHashTable again (fixed bug in internal hash table
16907         code).
16908
16909 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16910
16911         * class.c, image.c, class-internals.h, domain.c,
16912         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16913         changes.  Have to figure out what makes them break the SWF
16914         regression.
16915
16916 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16917
16918         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16919         a MonoInternalHashTable now.
16920
16921 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16922
16923         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16924         MonoInternalHashTable now.
16925
16926 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16927
16928         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16929         invoke_impl code.
16930
16931         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16932
16933         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16934         dependent trampoline.
16935
16936         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16937
16938         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16939
16940 2007-05-29  Robert Jordan  <robertj@gmx.net>
16941
16942         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16943
16944 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16945
16946         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16947
16948 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16949
16950        * marshal.c: Fix interface lookup loops for
16951        cominterop_get_com_slot_for_method and 
16952        cominterop_get_method_interface. Only need to lookup
16953        if type is a class, else use interface type method is on.
16954
16955        Code is contributed under MIT/X11 license.
16956
16957 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16958
16959         * reflection.c: HasSecurity can be present even if no specially 
16960         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16961         SecurityAttribute). Fix CAS regression tests on buildbot.
16962
16963 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16964
16965        * appdomain.c: Add configure checks for header files.
16966        * image.c: Add configure checks for header files.
16967        * file-io.c: Add configure checks for header files.
16968        * debug-mono-symfile.c: Add configure checks for header files.
16969        * threadpool.c: Add configure checks for header files.
16970        * console-io.c: Add configure checks for header files.
16971        * profiler.c: Add configure checks for header files.
16972        * rawbuffer.c: Add configure checks for header files.
16973        * icall.c: Add configure checks for header files.
16974        * rand.c: Add configure checks for header files.
16975        * socket-io.c: Add configure checks for header files.
16976
16977        Code is contributed under MIT/X11 license.
16978
16979 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16980
16981         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16982         assertion as it breaks the build.
16983         
16984         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16985
16986         * reflection.c (lookup_custom_attr): Make a copy here too.
16987
16988         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16989         dynamic images.
16990
16991         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16992         images.
16993
16994         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16995         info.
16996
16997 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16998
16999         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
17000         (load_cattr_value): Ditto.
17001
17002 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
17003
17004         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
17005
17006 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
17007
17008         * threads.c: In "start_wrapper", set apartment_state to MTA if
17009         apartment_state is Unknown and we're running on 2.0 profile or
17010         higher.
17011         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
17012         to main method, then set apartment_state to Unknown on 1.0 profile,
17013         and MTA on 2.0 profile.
17014
17015 2007-05-16  Jb Evain  <jb@nurv.fr>
17016
17017         * class-internals.h (MonoDefaults): Add an attribute_class and
17018           customattribute_data_class.
17019         * domain.c (mono_init_internal): Populate them.
17020         * reflection.c: Use them to remove duplicates. Make a vew
17021         MonoClass variables `static'.
17022
17023 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
17024
17025         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
17026         step in implementing IMT, so that all isinst checks now can go
17027         through the bitmap.
17028         This was needed because vtables for TransparentProxy need to look
17029         like the vtable of the "target" class, so they need to point to
17030         its interface bitmap directly.
17031
17032         * object.c: inside "mono_class_create_runtime_vtable" and
17033         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
17034
17035 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17036
17037         * object-internals.h
17038           culture-info.h : added territory field in MonoCulture and
17039           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
17040         * locales.c : fill territory field above too.
17041         * culture-info-table.h : regenerated.
17042
17043 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
17044
17045         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
17046         Fixes #81599.
17047
17048 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
17049
17050         * object.c: Always initialize apartment, even if 
17051         there is no custom attributes on entry point.
17052         
17053         Code is contributed under MIT/X11 license.
17054
17055 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
17056
17057         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
17058         * metadata.c: If no encoding is set, check for unicode
17059         on class.
17060         
17061         Code is contributed under MIT/X11 license.
17062
17063 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
17064
17065         * threads.c: Handle if mono_thread_current returns NULL 
17066         
17067         Code is contributed under MIT/X11 license.
17068
17069 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
17070
17071         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
17072         in start_wrapper. Added mono_thread_init_apartment_state and
17073         mono_thread_cleanup_apartment_state.
17074         * object.c: Initialize thread apartment state on main thread
17075         by checking for STAThreadAttribute on entry point.
17076         * object-internals.h: Add apartment_state field to MonoThread.
17077         * threads-types.h: Add unmanaged definition of 
17078         System.Threading.ApartmentState, MonoThreadApartmentState.
17079         
17080         Code is contributed under MIT/X11 license.
17081         
17082 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
17083
17084         * class.c: Fix windows build.
17085         * class-internals.h: Fix windows build.
17086         
17087         Code is contributed under MIT/X11 license.
17088
17089 2007-05-08  Robert Jordan  <robertj@gmx.net>
17090
17091         * process.c (CreateProcess_internal):
17092         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
17093         .CreateNoWindow was specified. Fixes #81496.
17094
17095 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
17096
17097         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
17098         step in implementing IMT, replaced it with two compact arrays
17099         (interfaces_packed and interface_offsets_packed) and a bitmap that
17100         is used for isinst checks (interface_bitmap).
17101
17102         * class.c: (compare_interface_ids): compare function to pass to
17103         bsearch when looking for an interface with a given id.
17104         (mono_class_interface_offset): reimplemented using bsearch on
17105         interfaces_packed, getting the offset from interface_offsets_packed.
17106         (print_implemented_interfaces): utility debugging function.
17107         (setup_interface_offsets): reworked to initialize interfaces_packed,
17108         interface_offsets_packed and interface_bitmap.
17109
17110         * object.c: replaced all accesses to "MonoClass.interface_offsets"
17111         with uses of interfaces_packed and interface_offsets_packed.
17112
17113 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
17114
17115         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
17116         mono_class_interface_offset prototype to wrap all accesses to
17117         "MonoClass.interface_offsets".
17118
17119         * class.c: Implemented mono_class_interface_offset, and wrapped all
17120         accesses to "MonoClass.interface_offsets".
17121
17122         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
17123         "MonoClass.interface_offsets".
17124
17125 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
17126
17127         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
17128         GetMethodFromHandle overloads (bug #78637).
17129
17130 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
17131
17132         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
17133         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
17134
17135 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
17136
17137         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
17138         #81498.
17139
17140         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
17141         gracefully.
17142         (mono_custom_attrs_from_index): Ditto.
17143
17144         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
17145         Fixes #81501.
17146
17147 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
17148
17149         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
17150         is now allocated from a mempool.
17151
17152 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
17153
17154         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
17155         caller holds threads_lock, leading to deadlocks. Fixes #81476.
17156
17157 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
17158
17159         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
17160         mono_loader_clear_error () too late. Fixes #81463.
17161
17162 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
17163
17164         * culture-info-table.h : regenerated.
17165
17166 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
17167
17168         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
17169         is missing.
17170
17171 2007-04-25  Dick Porter  <dick@ximian.com>
17172
17173         * Makefile.am: Put the mingw enforced-optimisation back into the
17174         PLATFORM_WIN32 section.
17175
17176 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
17177
17178         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
17179         patch.
17180
17181         * image.c (mono_image_load_module): New API function to load a module reference.
17182
17183         * image.c (load_modules): Load modules lazily. Fixes #80812.
17184
17185         * class.c (mono_class_from_typeref): Use mono_image_load_module.
17186         
17187         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
17188
17189         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
17190         to mono_image_load_module_dynamic.
17191
17192 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
17193
17194         * marshal.c: Fix calling convention for CCW on non-windows
17195         platforms. STDCALL on windows, CDECL everywhere else to work 
17196         with XPCOM and MainWin COM.
17197         
17198         Code is contributed under MIT/X11 license.
17199
17200 2007-04-23  Martin Baulig  <martin@ximian.com>
17201
17202         Fix #80969.
17203
17204         * loader.c
17205         (method_from_memberref): Added `gboolean *used_context' argument.
17206         (mono_get_method_from_token): Likewise.
17207         (mono_get_method_full): Don't insert the method in the cache when
17208         `used_context' is true.
17209
17210 2007-04-23  Raja R Harinath  <rharinath@novell.com>
17211
17212         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
17213
17214         * reflection.c (mono_reflection_bind_generic_parameters): Don't
17215         create new MonoTypes for returned types.
17216         * class.c (mono_generic_class_get_class): Export mono-internal.
17217         * class-internals.h: Update to changes.
17218
17219 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
17220
17221         * threadpool.c, threadpool.h, icall-def.h: patch from
17222         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
17223
17224 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
17225
17226         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
17227         
17228         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
17229
17230         * threads.c (mono_thread_get_stack_bounds): New helper function.
17231
17232         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
17233         Correctly compute stack bounds when attaching. Fixes #81394.
17234
17235 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
17236
17237         * reflection.c: fix handling of doubles in custom attributes
17238         for the arm-fpa format (bug #81368).
17239
17240 2007-04-18  Raja R Harinath  <rharinath@novell.com>
17241
17242         * reflection.c (assembly_add_win32_resources): Mildly relax an
17243         bounds check to let the end pointer point just past the end of the
17244         allocated buffer.  (may fix #81384)
17245
17246 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
17247
17248         * culture-info-table.h : regenerated.
17249
17250 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
17251
17252         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
17253         the thread is aborted early.
17254
17255 2007-04-05  Dick Porter  <dick@ximian.com>
17256
17257         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
17258         FindFirstFile()/FindNextFile() to find entries.  This lets the
17259         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
17260         81038.
17261
17262         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
17263         the parameters of
17264         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
17265
17266 2007-04-04  Martin Baulig  <martin@ximian.com>
17267
17268         * debug-helpers.c
17269         (mono_method_desc_full_match): Add support for nested classes.
17270
17271 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
17272
17273         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
17274
17275 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
17276
17277         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
17278         waiting for too many threads.
17279
17280 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
17281
17282         * environment.c: Fix return value check on uname so we can get the 
17283         executing version on Solaris operating systems.
17284
17285 2007-03-28  Jb Evain  <jbevain@gmail.com>
17286
17287         * class.c (mono_type_get_name_recurse): Complete the
17288         fix for the creation of assembly qualified names for
17289         pointer types. Fixes #81208.
17290
17291 2007-03-27  Dick Porter  <dick@ximian.com>
17292
17293         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
17294         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
17295         changed.
17296
17297         * threads.c
17298         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
17299         the value of ReleaseMutex().
17300
17301 2007-03-27  Dick Porter  <dick@ximian.com>
17302
17303         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
17304         in little-endian order, not network endian, so must be converted
17305         to host endian here.  Fixes bug 80593.
17306
17307 2007-03-22  Jb Evain  <jbevain@gmail.com>
17308
17309         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
17310         qualified names for pointer types. Fixes #81208.
17311
17312 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
17313
17314         * marshal.c: Add support for PreserveSigAttribute. 
17315         
17316         Code is contributed under MIT/X11 license.
17317
17318 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
17319
17320         * process.c: Fix endianness issues. Fixes #81126.
17321
17322         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
17323         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
17324
17325         * image.c (mono_image_lookup_resource): Make this work on big-endian
17326         machines.Change API contract so the caller needs to free the return value.
17327         
17328         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
17329         API change.
17330         
17331 2007-03-14  Martin Baulig  <martin@ximian.com>
17332
17333         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
17334         mono_type_get_desc() as well.
17335
17336 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
17337
17338         * icall.c:  Fix environ access in VS.  
17339         
17340 2007-03-13  Alp Toker  <alp@atoker.com>
17341
17342         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
17343         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
17344         #63841.
17345
17346 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
17347
17348         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
17349         circular references among dynamic methods. Fixes #81091.
17350
17351         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
17352
17353 2007-03-09  Martin Baulig  <martin@ximian.com>
17354
17355         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
17356
17357 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
17358
17359         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
17360         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
17361         
17362         Code is contributed under MIT/X11 license.
17363         
17364 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
17365
17366         * loader.c: Reapply patch for bug #79424.
17367
17368 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
17369
17370         * metadata.c (mono_type_to_unmanaged): Only convert object to
17371         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
17372
17373 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
17374
17375         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
17376         (and incorrectly set) is_reference field from MonoGenericInst.
17377
17378 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
17379
17380         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
17381         a little earlier.
17382
17383         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
17384
17385         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
17386
17387 2007-03-05  Miguel de Icaza  <miguel@novell.com>
17388
17389         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
17390         FileOptions.1 value to mean "temporary", map that to
17391         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
17392
17393         Fixes 80688
17394
17395 2007-03-03  Marek Habersack  <mhabersack@novell.com>
17396
17397         * appdomain.c: implement MS .Net style shadow copying. Copies of
17398         the assemblies are made in a subdirectory of the dynamic base
17399         directory, the assembly names are preserved.
17400         Copy .mdb and .config files along with the assemblies being shadowed.
17401
17402 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17403
17404         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
17405         (emit_marshal_handleref): Ditto.
17406
17407         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
17408         on Visual C++. Fixes #80671.
17409
17410 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
17411
17412         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
17413         for clone operations.
17414
17415 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17416
17417         * marshal.c: Fix warnings.
17418
17419 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
17420
17421         * loader.c: allow case-insensitive matching of the dll name
17422         in dllmap handling when prefixed with "i:".
17423
17424 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
17425
17426         * threads.c: Fix #ifdef for dummy_apc function for VS.
17427
17428 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
17429
17430         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
17431
17432 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
17433         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
17434         giving precedence to the methods with a fully qualified name
17435         (InterfaceName.MethodName) when building the interface sections
17436         of the vtable.
17437
17438 2007-02-16  Dick Porter  <dick@ximian.com>
17439
17440         * threadpool.c (append_job): Fix fast-path array handling, so it's
17441         less likely the array will grow exponentially when the load is
17442         heavy.
17443
17444 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17445
17446         * metadata-internals.h, loader.c: fix dllmap lookup order
17447         for non-function maps, too, and prepare for fallback code.
17448
17449 2007-02-12  Robert Jordan  <robertj@gmx.net>
17450
17451         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
17452         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
17453         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
17454         GlobalFree. Fixes a part of bug #77075.
17455
17456 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
17457
17458         * loader.c: implemented typedef parent in field memberref.
17459
17460 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
17461
17462         * marshal.c: Fix warnings and remember to call Release on
17463         IUnknown of RCW.
17464         
17465         Code is contributed under MIT/X11 license.
17466
17467 2007-02-10  Miguel de Icaza  <miguel@novell.com>
17468
17469         * class-internals.h: Add MonoHandleRef definition, and
17470         handleref_class to mono_defaults. 
17471
17472         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
17473         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
17474
17475         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
17476         (do nothing on this stage)
17477         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
17478         (emit_marshal_handleref): New method, used for argument handling
17479         of HandleRefs. 
17480
17481 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
17482
17483         * class.c (mono_class_setup_parent): Lazily init com types.
17484         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
17485         init com types.
17486         * object.c (mono_remote_class_vtable): Lazily init com types.
17487         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
17488         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
17489         * domain-internals.h: Expose mono_init_com_types.
17490         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
17491         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
17492         Add support for COM Callable Wrapper marshalling.
17493         * marshal.h: Add icall definitions.
17494         * gc.c: Handle freeing of CCWs in finalizer code.
17495         
17496         Code is contributed under MIT/X11 license.
17497
17498 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
17499
17500         * reflection.c: changed all the signature encoding code to use
17501         a variable-sized buffer.
17502
17503 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17504
17505         * marshal.c: locking fixes: never take the loader lock
17506         or other runtime locks when holding the marshal lock
17507         (fixes bug#80664).
17508
17509 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
17510
17511         * marshal.c: make the delegate function pointer mapping
17512         work for the moving GC.
17513
17514 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
17515
17516         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
17517         for bug #80618.
17518
17519 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17520
17521         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
17522         gmodule.
17523
17524 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
17525
17526         * threadpool.c: made the code moving-GC safe.
17527
17528 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
17529
17530         * assembly.c, boehm-gc.c, class-internals.h, class.c,
17531         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
17532         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
17533         warning cleanup.
17534         * reflection.c: warning cleanup, some threading and moving GC fixes.
17535
17536 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
17537
17538         * class.c, loader.c: create the needed Set/Get/Address array methods
17539         as well as the .ctors in mono_class_init (), fixes bug #80567.
17540
17541 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
17542
17543         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
17544         we doesn't decrease its alignment. Should fix the sparc build.
17545
17546 2007-01-24  Dick Porter  <dick@ximian.com>
17547
17548         * socket-io.c
17549         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17550         Create the returned object if we need to ignore an unsupported
17551         socket option.  Fixes a segfault reported by Atsushi.
17552
17553 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
17554
17555         * class.c, object.c: restrict GC-tracked fields to
17556         UIntPtr fields used inside corlib, so we provide better
17557         type info to the GC and also allow broken packing as in
17558         bug #80580.
17559
17560 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
17561
17562         * sgen-gc.c: removed duplicated function.
17563
17564 2007-01-19  Miguel de Icaza  <miguel@novell.com>
17565
17566         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
17567         value that means that the value is not supported, but that we
17568         should not return a failure, but instead report this as a
17569         successful operation.
17570
17571 2007-01-19  Raja R Harinath  <rharinath@novell.com>
17572
17573         Fix tests/bug79956.2.il
17574         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
17575         (mono_generic_class_get_class): If the generic definition in an
17576         enum, copy over other fields related to it.
17577
17578 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
17579
17580         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
17581         genericinst enums (bug #79215).
17582
17583 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
17584         * class.c: Fix bug 80307.
17585
17586 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
17587
17588         * image.c: if the file table is not present, try to load
17589         all the modules, since we don't have info about them
17590         having or not metadata (bug #80517).
17591         * assembly.c: allow mono_assembly_load_references () to
17592         work for netmodules.
17593
17594 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17595
17596         * image.c, metadata-internals.h, object.c: execute module
17597         cctors when running on the 2 runtime if present (bug #80487).
17598
17599 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
17600
17601         * icall.c: optimized InitializeArray() on bigendian.
17602
17603 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
17604
17605         * icall.c: fix for the broken ARM FPA double format.
17606
17607 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
17608
17609         * icall.c: handle endian issues for r4 and r8 types, too, in
17610         the InitializeArray() icall.
17611
17612 2007-01-15  Miguel de Icaza  <miguel@novell.com>
17613
17614         * loader.c (mono_loader_error_prepare_exception): Clear the error
17615         once we have extracted the information from it, do this before we
17616         call into the JIT's class loading mechanisms.
17617
17618         * object.c (mono_class_create_runtime_vtable): Do not clear the
17619         loader error before calling mono_class_get_exception_for_failure
17620         as the loader error is needed inside
17621         mono_class_get_exception_for_failure to throw the error (thinko).
17622
17623         Fixes #80521
17624         
17625 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
17626
17627         * reflection.c: align fields rva data so it's faster to load at
17628         runtime.
17629
17630 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17631
17632         Prepare to simplify GenericMethod handling.
17633         * class-internals.h (mono_method_get_context): New accessor function.
17634         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
17635         rather than directly accessing '->context' field.
17636
17637         * class-internals.h (_MonoGenericParam.method): Move ...
17638         (_MonoGenericContainer): ... here.  Add into union with klass field.
17639         * class.c, icall.c, loader.c, metadata.c, reflection.c:
17640         Update to changes.
17641
17642 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
17643
17644         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
17645         the wrapper type enum and reduce relocations.
17646
17647 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17648
17649         * reflection.c (inflate_mono_method): Reuse method instantiation
17650         from the generic method, if available.
17651
17652 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17653
17654         * marshal.c (emit_marshal_variant): Fix conv_arg
17655         type in last commit, based on whether parameter is byref.
17656         
17657 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17658
17659         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
17660         marshalling.
17661         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
17662         MONO_TYPE_OBJECT back for VARIANT support.
17663
17664 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17665
17666         * marshal.c, marshal.h, icall-def.h: Implement 
17667         Marshal.ReAllocCoTaskMem.
17668
17669 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
17670
17671         * marshal.c: memory retention fixes: use the proper
17672         image cache for runtime_invoke method lookups.
17673
17674 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
17675
17676         * mempool.c: added code to help debug mempool allocations.
17677
17678 2007-01-11  Dick Porter  <dick@ximian.com>
17679
17680         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
17681         support (experimenting with faking it with IP_MTU_DISCOVER for
17682         systems that don't have IP_DONTFRAGMENT.)
17683         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
17684         icall.
17685
17686         * icall-def.h: new System.Net.Sockets.Disconnect icall.
17687
17688         * socket-io.h: Add new fields to MonoSocketAsyncResult
17689         corresponding to the new ones in Socket.cs.
17690
17691 2007-01-11  Raja R Harinath  <rharinath@novell.com>
17692
17693         Fix IronPython regression mentioned in #80249
17694         * metadata.c (do_mono_metadata_parse_generic_class): Clear
17695         'cached_context' field, since it may have been initialized as a
17696         side-effect of metadata parsing.
17697
17698         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
17699         (_MonoGenericClass.cached_class): Move here and rename from lone
17700         remaining field of ...
17701         (_MonoInflatedGenericClass): ... this.  Remove.
17702         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
17703         to changes.
17704
17705         Fix mcs/tests/test-128.cs regression.
17706         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
17707         2007-01-10 change below.
17708         [MONO_TYPE_OBJECT]: Recurse into array case.
17709
17710 2007-01-11  Raja R Harinath  <harinath@gmail.com>
17711
17712         * class-internals.h (mono_get_inflated_generic_class): Remove.
17713         * class.c (mono_get_inflated_generic_class): Remove.
17714         (mono_generic_class_get_class): Rename from
17715         mono_class_create_generic.
17716         (mono_class_from_mono_type) [GENERICINST]: Use it.
17717         * reflection.c, metadata.c: Update to changes.  Use
17718         'mono_class_from_mono_type'.
17719
17720 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
17721
17722         * reflection.c: use passed type when encoding an array element
17723         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
17724
17725 2007-01-09  Robert Jordan  <robertj@gmx.net>
17726
17727         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
17728         result arguments (someDelegate.EndInvoke (unrelatedAres)).
17729         Fixes bug #80392.
17730
17731 2007-01-09  Raja R Harinath  <rharinath@novell.com>
17732
17733         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
17734
17735         * object.c (set_value): Avoid aliasing between type->data.klass
17736         and type->data.generic_class.
17737
17738         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
17739
17740 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17741
17742         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
17743         between type->data.klass and type->data.generic_class.
17744
17745 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
17746
17747         * marshal.c: In MS.NET, StringBuilder objects are not copied by
17748         value in out parameters.
17749
17750 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17751
17752         Simplify invariant for MonoGenericClass::klass field.
17753         * class.c (mono_class_create_generic): Verify 'klass' is null.
17754         * metadata.c (do_mono_metadata_parse_generic_class): Don't
17755         initialize 'klass' field.
17756
17757 2007-01-05  Raja R Harinath  <rharinath@novell.com>
17758
17759         Ongoing work to avoid redundant data and simplify invariants.
17760         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
17761         'generic_class', and change type to a GenericInst.
17762         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
17763         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
17764
17765 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
17766
17767         * class.c : skip io-layer under PLATFORM_WIN32.
17768
17769 2007-01-03  Tor Lillqvist  <tml@novell.com>
17770
17771         Fix #80305: In a bundled executable, look in the bundled exe
17772         assembly to determine the runtime version. Add the possibility to
17773         bundle also the machine.config file.
17774         
17775         * assembly.c (mono_assembly_open_from_bundle): Make
17776         non-static. Allow being called even if we have no bundled
17777         assemblies, and return NULL right away in that case.
17778
17779         * domain-internals.h: Declare mono_assembly_open_from_bundle()
17780         here.
17781
17782         * domain.c (app_config_parse): Take an assembly exe file name as
17783         parameter instead of a config file name. Check for a bundled
17784         config file for that assembly by calling
17785         mono_config_string_for_assembly_file() (see below) before looking
17786         for one in the file system.
17787         (get_runtimes_from_exe): Corrsponding change to call of
17788         app_config_parse().
17789         (get_runtimes_from_exe): Check for bundled assembly exe file first
17790         by calling mono_assembly_open_from_bundle(). If no bundled
17791         assembly exe file is found, call mono_image_open() as before to
17792         look it up in the file system.
17793
17794         * mono-config.c: Add variable bundled_machinec_onfig.
17795         (mono_config_string_for_assembly_file): New function.
17796         (mono_config_for_assembly): Move code snippet that looks for a
17797         bundled assembly .config file into the above new function. Call
17798         it.
17799         (mono_register_machine_config, mono_get_machine_config): New
17800         functions to set and retrieve
17801
17802         * assembly.h: Declare mono_register_machine_config().
17803
17804         * mono-config.h: Declare mono_get_machine_config() and
17805         mono_config_string_for_assembly_file().
17806
17807         * icall.c: No declaration of environ necessary on Win32. It is
17808         declared (as a macro expanding to a function call) in stdlib.h.
17809         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17810         New internal mono function. Returns the value of
17811         mono_get_machine_config() as a Mono string.
17812
17813         * icall-def.h: Add get_bundled_machine_config().
17814
17815 2007-01-04  Raja R Harinath  <rharinath@novell.com>
17816
17817         Remove redundant field
17818         * class-internals.h (_MonoGenericContext.container): Remove field.
17819         * loader.c (mono_method_get_signature_full): Don't parse a
17820         "container" for a signature parse when the signature is inflated
17821         immediately.
17822         (method_from_methodspec): Likewise, for a generic_inst.
17823         * class.c, metadata.c, reflection.c: Update to changes.
17824
17825 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17826
17827         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17828         'cached_context', and change semantics -- it starts off NULL, and
17829         is initialized on demand.
17830         * class.c (mono_generic_class_get_context): New accessor to
17831         replace 'context' field accesses.
17832         (mono_class_get_context): New helper.
17833         (*): Update to changes.
17834         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17835
17836 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17837
17838         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17839         before the memcpy.   Fixes Marshal2 regression.
17840
17841 2007-01-02  Jb Evain  <jbevain@gmail.com>
17842
17843         * blob.h: add a MONO_TYPE_ENUM definition
17844         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17845         fix the encoding of arrays of enums in custom attributes.
17846
17847         Fixes #79666.
17848
17849 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17850
17851         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17852         string is null terminated, but only cut the string short if it
17853         overflows the buffer.   
17854         
17855         (mono_string_to_byvalstr): Also fix this routine.   The code here
17856         was not properly terminating a string (it was only terminated
17857         because of the previous catch-all memset). 
17858
17859         I left the memset, because I do not know if applications expect
17860         the runtime to clear this region. 
17861
17862         Fixes #79944.
17863
17864         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17865         Clear the error before returning to unmanaged code to prevent the
17866         runtime from being confused later on (fixes  80420).
17867         (ves_icall_type_from_name): Always call mono_loader_clear_error
17868         after parsing a type that could have failed.
17869         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17870
17871         * loader.c (mono_loader_clear_error): Fix indentation.
17872
17873 2006-12-28  Martin Baulig  <martin@ximian.com>
17874
17875         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17876
17877 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17878
17879         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17880         getting a token for an EnumBuilder.
17881
17882 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17883
17884         * reflection.c: be more careful in case resource generation
17885         fails to create the data array.
17886
17887 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17888
17889         * sgen-gc.c: write barrier for clone and fix unregister handles.
17890
17891 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17892
17893         * reflection.c: some fixes needed in the generics code for the moving GC.
17894
17895 2006-12-22  Robert Jordan  <robertj@gmx.net>
17896
17897         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17898         account. Fixes bug #80299.
17899
17900 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17901
17902         Fix WaitHandle usage in delegates.
17903         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17904         * object.c (mono_wait_handle_new): Use the property set method to
17905         initialize the handle.
17906         (mono_wait_handle_get_handle): New.
17907         * threadpool.c (mono_async_invoke): Use it.
17908         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17909         Likewise.
17910         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17911
17912 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17913
17914         * marshal.c (emit_marshal): Call emit_marshal_variant and
17915         emit_marshal_com_interface when applicable.
17916         (emit_marshal_variant, emit_marshal_com_interface): Add
17917         methods for this case and remove if's from emit_marshal_object.
17918         
17919 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17920
17921         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17922
17923 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17924
17925         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17926         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17927         and GlobalFree on Windows. Remove FIXME.
17928
17929 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17930
17931         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17932         implementation for managed objects.
17933
17934 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17935
17936         * object.c: implemented code to be used for checking
17937         that no reference field overlaps with non-references.
17938
17939 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17940
17941         * threadpool.c: fix queue code to be compatible with the
17942         moving GC.
17943
17944 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17945
17946         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17947         in structures by throwing ArgumentNullException.
17948
17949         (emit_marshal_safehandle): Also when they are null parameters.
17950
17951         (emit_marshal_safehandle): Add support for ref
17952         SafeHandles parameters
17953
17954 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17955
17956         * profiler.c: updated to use the mono-dl API instead of
17957         gmodule.
17958
17959 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17960
17961         * profiler.c: updated to use the mono-dl dynamic loading
17962         API instead of gmodule.
17963
17964 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17965
17966         * profiler.c: use readlink, older versions of glib don't have
17967         g_file_read_link ().
17968
17969 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17970
17971         * profiler.c: try to detect the path to mono if libc fails to provide
17972         a useful name (bug #80286).
17973
17974 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17975
17976         Fix #80242
17977         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17978         instance, use the generic type definition instead.
17979         (ves_icall_Type_GetNestedTypes): Likewise.
17980         * class.c (mono_class_create_generic): Always set the
17981         nested_classes of a generic instance to NULL, even if the generic
17982         type definition has nested types.
17983
17984 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17985
17986         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17987         and fix on Linux.
17988         
17989 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17990
17991         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17992         my arguments were in the wrong order.   I also fixed the Windows
17993         version which seems to have had the same issue.
17994
17995         (mono_free_bstr): On Unix, this is g_free.
17996         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17997         conversions (for the tests in corlib to pass).
17998
17999 2006-12-14  Miguel de Icaza  <miguel@novell.com>
18000
18001         * marshal.c (emit_ptr_to_object_conv): For now, ignore
18002         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
18003         exception if a ref SafeHandle in a struct has changed).
18004         
18005         (emit_struct_conv): Do not perform layout checks for classes
18006         derived from SafeHandle, as those are specially handled. 
18007
18008         (emit_object_to_ptr_conv): Add support for
18009         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
18010
18011         (emit_marshal_safehandle): Implement conversion of return values
18012         of safehandles (MARSHAL_ACTION_CONV_RESULT).
18013         
18014         * threads.c: WaitHandle now is compiled with two different handles
18015         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
18016         for 2.0.
18017         
18018         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
18019         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
18020         these routines to cope with both kinds of fields.
18021
18022 2006-12-12  Miguel de Icaza  <miguel@novell.com>
18023
18024         * metadata.c (mono_type_to_unmanaged): Handle the case where
18025         type->data.klass is a SafeHandle, and in that case, return the
18026         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
18027         MONO_MARSHAL_CONV_SAFEHANDLE. 
18028
18029 2006-12-11  Miguel de Icaza  <miguel@novell.com>
18030
18031         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
18032         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
18033         calling emit_marshal_object.
18034
18035         (emit_marshal_safehandle): Implement marshalling of
18036         SafeHandle parameters (no ref support yet).
18037
18038         (MarshalAction): Document the defines as I implement
18039         them for SafeHandle.
18040
18041         (emit_marshal_object): indentation police.
18042
18043         * class-internals.h: Define MonoSafeHandle.
18044         Add safehandle_class to MonoDefaults type.
18045
18046         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
18047         list of classes to check for fields. 
18048
18049         * domain.c (mono_init_internal): Add SafeHandle to the list of
18050         mono_defaults loaded.
18051
18052 2006-12-15  Raja R Harinath  <rharinath@novell.com>
18053
18054         Fix #80253
18055         * reflection.c (mono_reflection_bind_generic_parameters): If the
18056         generic type definition is a type builder, ensure that it is fully
18057         initialized before instantiating it.  Kill some dead code.
18058
18059 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
18060
18061         * object.c: clear the loader_error () before loading
18062         more metadata stuff (bug #80258).
18063
18064 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
18065
18066         * icall.c, icall-defs.h: type modifiers icalls for
18067         parameters and properties.
18068
18069 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
18070
18071         * object.c, icall.c: fixed warnings.
18072
18073 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
18074
18075         * marshal.c: fixed a couple of leaks and coding style in a few places.
18076
18077 2006-12-08  Dick Porter  <dick@ximian.com>
18078
18079         * process.c: Cope with NULL ProcessStartInfo arguments on windows
18080         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
18081         80173.
18082
18083 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
18084
18085         * process.c: ProcessStartInfo may have only filename set and
18086         arguments can be NULL.
18087
18088 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18089
18090         * icall.c: fix leak found by Robert Jordan.
18091
18092 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
18093
18094         * marshal.c, marshal.h: generate managed method to access an element
18095         of a multi-dimensional array.
18096
18097 2006-11-30  Paolo Molaro (lupus@ximian.com)
18098
18099         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
18100
18101 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
18102
18103         * icall.c: back out GetFields () fix until the serialization code is
18104         fixed to not depend on the incorrect behaviour.
18105
18106 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
18107
18108         * profiler.c: provide defaults if none are set.
18109
18110 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
18111
18112         * Makefile.am, attrdefs.h: new public header file with
18113         constants for attributes for use by embedders.
18114
18115 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
18116
18117         * icall.c: GetFields () fix for bug #80064.
18118
18119 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
18120
18121         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
18122         removed long unused icalls.
18123
18124 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
18125   
18126         * marshal.c: 
18127                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
18128                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
18129                 can be generated without a delegate class.
18130                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
18131         
18132         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
18133
18134 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18135
18136         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
18137         #80069.
18138
18139 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18140
18141         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
18142         icall-def.h: added icalls needed by System.GC.
18143
18144 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
18145
18146         * loader.c: ensure the class in catch clauses is handled
18147         correctly for generics methods (fixes bug#79980).
18148
18149 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
18150
18151         * monitor.h, monitor.c: added mono_locks_dump () function
18152         to help debug deadlocks involving managed locks.
18153
18154 2006-11-13  Dick Porter  <dick@ximian.com>
18155
18156         * file-io.c (get_file_attributes): If the file is a symlink try
18157         and get the stat data for the target, but also add the
18158         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
18159         the specs for the windows symlink support, but will probably have
18160         to be reworked when I have test data from a vista machine.  Fixes
18161         bug 79887.
18162
18163 2006-11-13  Dick Porter  <dick@ximian.com>
18164
18165         * gc.c (mono_domain_finalize): 
18166         * marshal.c (mono_delegate_begin_invoke): 
18167         * threadpool.c (socket_io_init, mono_thread_pool_init)
18168         (mono_thread_pool_finish): 
18169         * monitor.c (mono_monitor_try_enter_internal): 
18170         * threads.c (mono_thread_resume, mono_thread_init)
18171         (mono_thread_suspend_all_other_threads)
18172         (mono_thread_execute_interruption): 
18173         * appdomain.c (mono_domain_unload): Check for NULL error returns
18174         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
18175         75733.
18176
18177 2006-11-11  Miguel de Icaza  <miguel@novell.com>
18178
18179         * process.c
18180         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
18181         Only close the handle if the value of the handle is not
18182         INVALID_HANDLE_VALUE.  This just makes the process a bit more
18183         robust.
18184
18185         Improvement for #75733, so that we do not run into this problem. 
18186
18187         
18188         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
18189         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
18190         internal variables.  Fixes #79462 
18191         
18192
18193 2006-11-09  Dick Porter  <dick@ximian.com>
18194
18195         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
18196         Use poll() not select().  Fixes bug 79397.
18197
18198 2006-11-09  Raja R Harinath  <rharinath@novell.com>
18199
18200         Fix #79872
18201         * assembly.c (mono_assembly_load_from_full): Check that the given
18202         image has an assembly manifest.
18203
18204 2006-11-09  Ankit Jain  <jankit@novell.com>
18205
18206         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
18207         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
18208         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
18209
18210 2006-11-07  Dick Porter  <dick@ximian.com>
18211
18212         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
18213         Put the old resolver behaviour back for pre-2.0 profiles.
18214
18215 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
18216
18217         * threadpool.c: precise GC and locking fixes.
18218
18219 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
18220
18221         * class.c: don't load types that have an explicit unaligned
18222         managed reference. Provide better info in the TypeLoad exception.
18223         Part of the fix for bug #79744.
18224         * object.c: use the correct check for class type load issues.
18225
18226 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18227
18228         * class.c: enforce alignment of fields with managed references
18229         even when Pack=1 is forced by the user (bug #77788).
18230
18231 2006-11-03  Dick Porter  <dick@ximian.com>
18232
18233         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
18234         If the address reverse lookup fails, return it as the hostname
18235         anyway.  Fixes bug 79721.
18236
18237 2006-11-03  Dick Porter  <dick@ximian.com>
18238
18239         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
18240         Fix build on Windows.
18241
18242 2006-11-02  Dick Porter  <dick@ximian.com>
18243
18244         * icall-def.h: 
18245         * object-internals.h: 
18246         * exception.c (mono_get_exception_thread_interrupted): 
18247         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
18248         Fixes bug 74525.
18249
18250         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
18251         Check for pending Thread.Interrupt.
18252
18253 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
18254         * loader.c: Fixed bug 79684.
18255
18256 2006-10-27  Dick Porter  <dick@ximian.com>
18257
18258         * file-io.c (get_file_attributes): Force symlinks to directories
18259         to be returned as a regular file.  Fixes bug 79733.
18260 2006-10-26  Dick Porter  <dick@ximian.com>
18261
18262         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
18263         CreateFile to open a directory then we need to set the
18264         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
18265
18266 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
18267
18268         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
18269         friends.
18270
18271 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18272
18273         * sgengc.c: small cleanup of timer code.
18274
18275 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18276
18277         * sgen-gc.c: fix some warnings and start adding support for
18278         complete object removal on domain unload.
18279
18280 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
18281
18282         * assembly.c: build_assembly_name should not consider a version
18283         number without build or revision number invalid. Fixes bug #79715.
18284
18285 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
18286
18287         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
18288         call kernel32 function OutputDebugString directly.
18289         
18290         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
18291         
18292 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
18293
18294         * reflection.c: small cleanup, using a function to insert a MonoString
18295         in the string heap.
18296
18297 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
18298
18299         * reflection.c: moving GC fixes.
18300
18301 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
18302
18303         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
18304         all the objects with finalizers belonging to an unloading appdomain.
18305
18306 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
18307
18308         * sgen-gc.c: added ability to allocate even when the nursery is fully
18309         pinned and fixed a couple of bugs.
18310
18311 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
18312
18313         * threads.h: Revert the last change for now.
18314
18315         * threads.h (mono_thread_get_pending_exception): Rename this to
18316         mono_thread_get_undeniable_exception ().
18317
18318 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
18319
18320         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
18321         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
18322         when fname does not refer to valid assembly. This result in a more
18323         meaningful error message.
18324         * exception.c: added mono_get_exception_bad_image_format2 which 
18325         constructs a BadImageFormatException using the ctor taking a custom
18326         message and the file name. Passing in a NULL msg results in a default
18327         message.
18328         * exception.h: define mono_get_exception_bad_image_format2 function.
18329         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
18330         when file name pointed to an invalid IL image. Use 
18331         mono_get_exception_file_not_found2 to construct FileNotFoundException,
18332         as this results in a more meaningful error message.
18333
18334 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
18335
18336         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
18337         #79465.
18338
18339 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
18340
18341         * metadata.c (mono_type_size): Change the align parameter to guint32 for
18342         consistency with the other _size functions.
18343         (mono_type_stack_size): Ditto.
18344
18345         * class.c object.c icall.c: Fix warnings caused by the above change.
18346
18347         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
18348
18349         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
18350
18351         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
18352
18353 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
18354
18355         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
18356         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
18357         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
18358         threadpool.h, threads-types.h: mark more internal functions.
18359
18360 2006-10-11  Dick Porter  <dick@ximian.com>
18361
18362         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
18363         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
18364         reproduce the bug even before applying the fix.)
18365
18366 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
18367
18368         * reflection.c: allow retrieving attributes for arguments in generic
18369         methods (bug #79241).
18370
18371 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
18372
18373         * debug-mono-symfile.c: properly check fopen () result (found by
18374         coverity).
18375
18376 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
18377
18378         * reflection.c: make error message clearer and fixed two
18379         issuelets found by Coverity.
18380
18381 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
18382
18383         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
18384
18385 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18386
18387         * object-internals.h, gc-internal.h, profiler-private.h:
18388         mark internal functions.
18389
18390 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18391
18392         * reflection.c: put data in the text section.
18393         * icall.c: recognize more types in type_from_typename ().
18394         * process.c, marshal.c: added some GC FIXMEs.
18395
18396 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18397
18398         * loader.c: check for NULL before initializing.
18399
18400 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
18401
18402         * gc.c (finalizer_thread): Use a non-alertable wait here.
18403
18404         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
18405         until the correct solution is found.
18406
18407 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18408
18409         * reflection.c (mono_module_get_object): Avoid an assert when operating on
18410         modules with no metadata. Fixes #79596.
18411
18412         * image.c (load_metadata_ptrs): Put back the error message when
18413         the #- heap is encountered since the support is not complete yet.
18414
18415 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18416
18417         * gc.c: do not allow the user to SuppressFinalize () a
18418         delegate because it would leak the trampoline if present.
18419
18420 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18421
18422         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
18423         PropertyPtr table.
18424
18425 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
18426
18427         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
18428
18429         * metadata.c (mono_metadata_get_param_attrs): Ditto.
18430
18431         * row-indexes.h: Add definitions for *Ptr tables.
18432
18433         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
18434
18435         * metadata.c (mono_metadata_translate_token_index): New helper function to
18436         translate table indexes used in uncompressed metadata.
18437         (mono_metadata_decode_table_row): Ditto.
18438         (mono_metadata_decode_table_row_col): Ditto.
18439
18440         * metadata.c: Add table schema for *Ptr tables.
18441
18442         * class.c loader.c: Use the new helper function to access the affected metadata
18443         tables.
18444         
18445         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
18446         #38532.
18447         
18448 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
18449
18450         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
18451         sequences which can be unbounded in size. Fixes #79583.
18452
18453 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
18454
18455         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
18456         static initialization.
18457
18458         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
18459
18460         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
18461
18462         * domain.c (mono_domain_free): Free up type_init_exception_hash.
18463
18464         * object.c (mono_runtime_class_init): Implement correct semantics when a static
18465         ctor fails, i.e. throw the same exception on subsequent accesses.
18466         
18467 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
18468
18469         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
18470         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
18471         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
18472         Handle marshalling of interfaces and VARIANTs contained in structs.
18473         
18474         Code is contributed under MIT/X11 license.
18475         
18476 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
18477
18478         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
18479         
18480         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
18481         mempool.
18482
18483 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18484
18485         * console-io.c: ignore previous SIGINT handler.
18486
18487 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
18488
18489         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
18490         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
18491         #79460, #79461, #79485.
18492
18493         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
18494
18495         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
18496         #79217.
18497
18498 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
18499
18500         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
18501         could be generated from it.
18502
18503 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
18504
18505         * rand.c: fix read loop to correctly handle EINTR.
18506
18507 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18508
18509         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
18510         internal calls are defined to keep methods closer to the declaring
18511         type and allow a significant reduction in runtime relocations and
18512         memory usage.
18513
18514 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
18515
18516         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
18517         exception message to have FileNotFoundException use the default
18518         assembly load error message. Fixes bug #79426.
18519         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
18520
18521 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18522
18523         * threadpool.c: (start_thread_or_queue) use the root domain when
18524         creating the thread instead of the async object one.
18525
18526 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
18527
18528         * class.c, object.c, class-internals.h, reflection.c:
18529         for arrays, store element_size inside MonoClass (speedup
18530         for array object creation).
18531
18532 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
18533
18534         * icall.c: fixed CodeBase to use the file name and not the module
18535         name (bug #79365).
18536
18537 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18538
18539         * mono-debug.c, mono-debug.h: export find_method as
18540         mono_debug_find_method ().
18541
18542 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18543
18544         * debug-helpers.c, class-internals.h: added a few functions useful
18545         when debugging under gdb.
18546
18547 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18548
18549         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
18550         characters that need special handling.
18551
18552 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
18553
18554         * mono-config.c: make the os/cpu specification more flexible,
18555         allowing lists and negation.
18556
18557 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
18558
18559         * marshal.c: COM Interop fixes. Handle case where method->klass.
18560         is interface. Handle BSTR/MonoString when null. Use CDECL as 
18561         calling convention on non-windows platforms. This is for
18562         compatibility with XPCOM and MainWin COM.
18563         
18564         Code is contributed under MIT/X11 license.
18565         
18566
18567 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
18568
18569         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
18570         correctly. Fixes #79217.
18571
18572         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
18573
18574 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
18575
18576         * mono-config.c: allow both an os and cpu attribute for dllmap
18577         and dllentry elemnets to enable a single config file to be used
18578         for multiple architectures.
18579
18580 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
18581
18582         * loader.c: MonoLoaderError was cleared too soon on load failure.
18583         Fixes bug #79424.
18584
18585 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
18586
18587         * icall.c: use the defining class vtable when accessing a
18588         static field, not a pobblibly derived class.
18589
18590 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
18591
18592         * icall.c string-icalls.c: Remove references to unicode.h.
18593
18594         * unicode.h unicode.c Makefile.am: Remove these unused source files.
18595
18596         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
18597
18598         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
18599         indicating the image where custom marshaller types should be looked up.
18600         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
18601         custom marshallers, instead of corlib. Fixes #79425.
18602
18603 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
18604
18605         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
18606
18607 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
18608
18609         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
18610         Implement Environment.ProcessorCount.
18611         
18612         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
18613         Implement Environment.ProcessorCount.
18614         
18615         * icall.c: 
18616         Add Environment.ProcessorCount icall.
18617         
18618         Patch by Jason McFall.
18619
18620 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18621
18622         * assembly.c: don't append .exe/.dll when the filename already contains
18623         one of those extensions.
18624
18625 2006-09-12  Martin Baulig  <martin@ximian.com>
18626
18627         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
18628         to array interfaces.
18629
18630 2006-09-11  Martin Baulig  <martin@ximian.com>
18631
18632         * reflection.c (mono_image_build_metadata): Create the
18633         MethodImpl's after emitting all types and methods, so we don't
18634         need another fixup pass for them.
18635
18636 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
18637
18638         * class.c (mono_class_from_name_case): Fix regression introduced by the last
18639         change.
18640
18641 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
18642
18643         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
18644         unload.
18645
18646 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
18647
18648         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
18649         args is not set. Fixes #78926.
18650
18651 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
18652
18653         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
18654
18655         * image.c (load_class_names): Move this to class.c, and rename it to 
18656         'mono_image_init_name_cache'.
18657         (load_modules): Fix a warning.
18658
18659         * class.c icall.c image.c: Initialize image->name_cache lazily.
18660
18661         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
18662         on its name using information in the AOT file.
18663
18664         * class.c (mono_class_from_name): Use the new hook function.
18665
18666 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
18667
18668         * reflection.c (mono_param_get_objects): Handle enum default parameter values
18669         correctly.
18670
18671         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
18672         Fixes #79289.
18673         
18674 2006-09-06  Martin Baulig  <martin@ximian.com>
18675
18676         * icall.c (mono_lookup_internal_call): Small fix.
18677
18678 2006-09-05  Raja R Harinath  <rharinath@novell.com>
18679
18680         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
18681         double g_free.
18682
18683 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
18684
18685         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
18686         when --debug is specified.
18687
18688 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
18689
18690         * class.c (setup_generic_array_ifaces): Fix a warning.
18691
18692 2006-09-04  Miguel de Icaza  <miguel@novell.com>
18693
18694         * Temporarily remove the patch to assemly.c that checks the
18695         assembly versions as it breaks our gacutil.
18696
18697 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
18698
18699         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
18700
18701         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
18702         a net 1.0 runtime.
18703
18704         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
18705         created using the default ctor. Fixes #79152.
18706         (mono_string_builder_to_utf16): Ditto.
18707
18708 2006-09-01  Martin Baulig  <martin@ximian.com>
18709
18710         Fix handling of the generic array interfaces.
18711
18712         * class-internals.h
18713         (MonoDefaults): Removed `generic_array_class' and added
18714         `generic_ilist' class.
18715
18716         * class.c
18717         (mono_bounded_array_class_get): Add the new generic array interfaces.
18718         (setup_generic_array_ifaces): New static method; create vtable
18719         entries for each method in the generic array interfaces.
18720
18721         * metadata.c
18722         (select_container): Allow "parent-less" generic methods.
18723
18724         * marshal.c
18725         (mono_marshal_get_generic_array_helper): New public method.
18726
18727         * icall.c
18728         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
18729         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
18730         moved the interncall into System.Array.
18731
18732 2006-09-01  Raja R Harinath  <rharinath@novell.com>
18733
18734         A few more cases of avoiding work on types with ->byref set.
18735         Has the real fix for #79238
18736         * icall.c (is_generic_parameter): New helper.
18737         (ves_icall_Type_GetGenericParameterPosition): Use it.
18738         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
18739         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
18740         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18741         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
18742         reference types.
18743         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
18744         reference types.
18745         (ves_icall_Type_get_IsGenericInstance): Likewise.
18746         (ves_icall_Type_get_IsGenericType): Likewise.
18747
18748 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
18749
18750         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
18751         class if possible.
18752
18753         * mempool.h (mono_mempool_get_allocated): New helper function.
18754
18755         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
18756         change.
18757
18758         * mempool.c: Fix warnings and the calculation of stats.
18759
18760         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
18761
18762         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
18763
18764         * loader.c (mono_get_method_from_token): Update method_count stat.
18765
18766         * class-internals.h (MonoStats): Add some stats.
18767
18768 2006-08-31 Robert Jordan  <robertj@gmx.net>
18769
18770         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
18771         with managed variants.
18772         All code is contributed under the MIT/X11 license.
18773         
18774 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
18775
18776         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
18777         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
18778
18779         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
18780
18781         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
18782         with cycles in classes.
18783
18784         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
18785
18786         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
18787         missing a [MarshalAs] directive. Fixes #79203.
18788
18789         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
18790         klass->marshal_info. Fixes #79217.
18791
18792 2006-08-30  Martin Baulig  <martin@ximian.com>
18793
18794         Committing a patch from Joachim Ante <joe@otee.dk>:
18795         Add support for binary data symbol stores.
18796
18797         * debug-mono-symfile.c
18798         (mono_debug_open_mono_symbol_file): Renamed into
18799         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18800         arguments.
18801
18802         * mono-debug.c
18803         (mono_debug_open_image): Added `raw_contents' and `size' args.
18804         (mono_debug_init_2_memory): New public function.
18805
18806 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18807
18808         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18809
18810 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18811
18812         * appdomain.c: implement support for ShadowCopyFiles.
18813
18814 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18815
18816         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18817         when value is NULL (and should remove CID #51).
18818
18819 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18820
18821         * image.c: moved 2 functions to ../utils.
18822
18823 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18824
18825         * gc.c: cope with the target object of a GC handle being NULL
18826         (bug #78877).
18827
18828 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18829
18830         * class.c: recursively check parent's explicit implementations
18831         of interface methods (fixes bug #79125).
18832
18833 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18834
18835         * filewatcher.c: Avoid warnings when building, do not redefine
18836         constants that are defined.
18837
18838         Remove warnings.
18839
18840 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18841
18842         * image.c: don't fail when the link points to an absolute path.
18843
18844 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18845
18846         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18847         Fix CID #3.
18848
18849 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18850
18851         * image.c (full_path): A new method used to obtain the actual path
18852         of an assembly even in the presence of symbolic links.  
18853
18854         This is necessary for the case where we are running a binary that
18855         has been GACed, but we are using the "published" path name
18856         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18857         file in the GAC.
18858
18859         This was the source of the failure for the `xsp' command with the
18860         recent AppDomain changes, as far as the runtime was concerned,
18861         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18862         $prefix/mono/gac/blah/version/blah.exe.
18863
18864         (do_mono_image_open): use full path
18865
18866 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18867
18868         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18869
18870 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18871
18872         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18873         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18874
18875 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18876
18877         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18878         small structures. Fixes #78990.
18879
18880 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18881
18882         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18883
18884         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18885
18886 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18887
18888         * appdomain.c:
18889         * marshal.c: don't load all the assemblies from a domain into newly
18890         created ones. The new domains might have different rules and load
18891         assemblies from different locations. Fixes bug #76757.
18892
18893         Patch by Lluis. Conflicts resolved by Brian Crowell.
18894
18895 2006-08-16  Alp Toker  <alp@atoker.com>
18896
18897         * socket-io.c: First half of the fix for #79084.
18898         Set sa_size to the length of the content, not that of the struct.
18899         Don't add NULL suffix to the content, this should be done in
18900         managed code if needed.
18901
18902 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18903
18904         Fix part of #79012
18905         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18906         mono_metadata_parse_type returns NULL.
18907
18908 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18909
18910         * normalization-tables.h : new file for string normalization data.
18911         * locales.c, locales.h, icall.c :
18912           added load_normalization_resource() for string normalization,
18913           and icall as well.
18914         * Makefile.am : added normalization-tables.h to the sources.
18915
18916 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18917
18918         * marshal.c: Add more helper functions to reduce code duplication and use them
18919         everywhere.
18920
18921 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18922
18923         * marshal.c: Fix non-x86 stdcall warnings.
18924         
18925         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18926         them everywhere.
18927
18928 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18929
18930         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18931         type check on multi-dimensional arrays. Fixes #79000.
18932
18933 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18934
18935         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18936         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18937         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18938         * class-internals.h: add is_com_object to class structure.
18939         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18940         null checks to COM object marshalling. Fix .ctor call on RCW.
18941         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18942         
18943         All code is contributed under the MIT/X11 license.
18944
18945 2006-08-09  Dick Porter  <dick@ximian.com>
18946
18947         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18948         racing mono_monitor_allocator_lock() somewhere, so don't delete
18949         the critical section for now.  Found by running and exiting
18950         monodevelop.
18951
18952 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18953
18954         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18955         (ves_icall_System_ComObject_FindInterface): Ditto.
18956         (ves_icall_System_ComObject_CacheInterface): Ditto.
18957
18958         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18959         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18960
18961 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18962
18963         * threadpool.c: treat pipes from process asynchronous reads as sockets
18964         when reading from them, so we get select/poll or epoll to wait for
18965         data.
18966
18967 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18968
18969         * loader.c: Fix a typo (CID #233) in the null check.
18970
18971 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18972
18973         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18974         Hopefully fixes #78949.
18975         
18976         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18977         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18978         bytes. Fixes #78972.
18979
18980 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18981
18982         * filewatcher.c: we need to set errno here.
18983
18984 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18985
18986         * filewatcher.c: let Win32Exception get the error value.
18987
18988 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18989
18990         * filewatcher.c: translate errno into win32 errors for Win32Exception
18991         to know what happened.
18992
18993 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18994
18995         * threadpool.c: Fix more warnings.
18996
18997         * assembly.c (search_loaded): Fix warnings.
18998
18999         * threadpool.c (mono_thread_pool_finish): Fix warnings.
19000         (mono_async_invoke): Ditto.
19001
19002 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
19003
19004         * object.c (mono_remote_class_vtable): Need to create proxy vtable
19005         entries for __ComObject type in addition to ComImport types.
19006         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
19007         about hash table.
19008         
19009         All code is contributed under the MIT/X11 license.
19010
19011 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
19012
19013         * image.c: avoid tentative loading of modulerefs that contain
19014         no metadata (P/Invoke library names).
19015
19016 2006-07-28  Dick Porter  <dick@ximian.com>
19017
19018         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
19019         mono_loader_lock() somewhere, so don't delete the critical section
19020         for now.  Found by running and exiting monodevelop.
19021
19022 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19023
19024         * filewatcher.c: define the inotify syscalls when we're building on
19025         linux and have sys/syscall.h. The build system might not have support
19026         for inotify but the target system might have it.
19027
19028 2006-07-26  Miguel de Icaza  <miguel@novell.com>
19029
19030         * domain.c: Documentation updates.
19031
19032         * loader.c (mono_free_method): Do not release the method
19033         information if we are being profiled, as profilers will use this
19034         information at shut down to present some data to the user.
19035
19036         This is needed so that the profiler does not crash, as the
19037         profiler tends to keep MonoMethods around, and they might become
19038         invalid if we free these.
19039
19040         (mono_get_method_constrained): Return the original CIL stream
19041         method as well, so verification can be performed against it.
19042
19043 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19044
19045         * filewatcher.[ch]: support for inotify file system watcher.
19046         * icall.c: add new internal calls for the inotify file system watcher.
19047
19048 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19049
19050         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
19051         #78888.
19052
19053 2006-07-20  Dick Porter  <dick@ximian.com>
19054
19055         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
19056         warning.
19057
19058 2006-07-20  Dick Porter  <dick@ximian.com>
19059
19060         * threads.c (start_wrapper): Do the thread cleanup while we still
19061         hold a reference to its object.  Fixes bug 78123.
19062
19063 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
19064
19065         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
19066         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
19067           "managed-to-managed".
19068         * icall.c: Redirect string constructors that take sbyte* to
19069           ves_icall_System_String_ctor_RedirectToCreateString.
19070         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
19071           to CreateString () methods with matching signature.
19072         * reflection.c: Use original security informations for
19073           MONO_WRAPPER_MANAGED_TO_MANAGED.
19074         * security-manager.c: Use original security informations for
19075           MONO_WRAPPER_MANAGED_TO_MANAGED.
19076         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
19077           that is a placeholder and only its address should be used.
19078         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
19079           that is a placeholder and only its address should be used.
19080
19081 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
19082
19083         Begin implementing COM Interop.
19084         * appdomain.c: Increment corlib version.
19085         * class.c: Set ComImport classes' parent to __ComObject.
19086         * loader.c: Mark cominterop methods as such.
19087         * domain.c: Add __ComObject class to MonoDefaults structure.
19088         * image.c: Add 2 hashtables to the image for COM Interop related methods
19089         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
19090         using the mempool allocator
19091         
19092         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
19093         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
19094         declaration for mono_metadata_type_dup_mp.
19095         
19096         * debug-helpers.c: Added strings for two additional wrapper types
19097         * object.c: Create proxy objects for ComImport classes
19098         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
19099         and added __ComObject class to MonoDefaults structure.
19100         
19101         * object-internals.h: Finish MonoRealProxy definition, and add definition of
19102         MonoComInteropProxy and MonoComObject.
19103         
19104         * marshal.c: Added support for COM Interop
19105         (signature_cominterop): Converts managed signature to corresponding
19106         unmanaged COM signature.
19107         (cominterop_get_function_pointer): gets unmanaged function pointer via
19108         COM object vtable
19109         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
19110         (cominterop_get_method_interface): returns interface type that method is defined on
19111         (mono_mb_emit_cominterop_call): emits native call to function pointer
19112         gotten from vtable
19113         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
19114         that matches signature of unmanaged function.
19115         (cominterop_get_native_wrapper): wrapper around adjusted method call.
19116         (cominterop_get_invoke): forwards call from proxy to __ComObject
19117         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
19118         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
19119         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
19120         
19121         * marshal.h: Added Marshal icall declarations.
19122         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
19123         so we can access them in finalizer
19124         
19125 2006-07-14  Dick Porter  <dick@ximian.com>
19126
19127         * object.c (mono_type_initialization_cleanup): Fix a race
19128         condition by temporarily commenting out the critical section
19129         deletion.
19130
19131 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
19132
19133         * reflection.c (create_custom_attr): Fix some warnings.
19134         (create_custom_attr_data): Ditto.
19135         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
19136         types. Fixes #78855.
19137
19138 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
19139
19140         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
19141
19142         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
19143
19144 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
19145
19146         * reflection.c (resolve_object): Add support for DynamicMethod.
19147
19148         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
19149         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
19150
19151 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
19152
19153         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
19154         don't leak GPtrArray's pdata has we have no use (nor free) for it.
19155
19156 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
19157
19158         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
19159         Fixes #77888.
19160
19161 2006-06-30  Raja R Harinath  <rharinath@novell.com>
19162
19163         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
19164         slightly: remove a shadow local variable.
19165
19166 2006-06-29  Raja R Harinath  <rharinath@novell.com>
19167
19168         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
19169         definition that introduces the virtual function slot.
19170         Also fix Coverity #105.
19171
19172 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
19173
19174         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
19175         for dynamic assemblies. Fixes #78724.
19176
19177 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
19178
19179         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
19180         Fixes #78722.
19181
19182 2006-06-21  Martin Baulig  <martin@ximian.com>
19183
19184         * reflection.c
19185         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
19186         fixes #76484.
19187
19188 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
19189
19190         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
19191
19192 2006-06-20  Raja R Harinath  <rharinath@novell.com>
19193
19194         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
19195         nor TYPEREFs.
19196         * class.c (mono_class_create_from_typespec): Add 'context' argument.
19197         Inflate result if necessary.
19198         (mono_class_get_full): Remove old version.  Rename from
19199         'mono_class_get' and add 'context' argument.  Pass it to
19200         ..._create_from_typespec.
19201         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
19202         (mono_ldtoken): Revert change below.
19203
19204 2006-06-20  Martin Baulig  <martin@ximian.com>
19205
19206         * class.c (mono_ldtoken): Don't pass the generic context to
19207         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
19208
19209 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
19210
19211         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
19212         and later freeing it. Fixes #78638.
19213
19214 2006-06-15  Miguel de Icaza  <miguel@novell.com>
19215
19216         * icall.c (mono_class_get_throw): Revert over-zealous error
19217         throwing, the caller for mono_class_get_throw will cope with
19218         errors when classes are not properly initialized already.
19219
19220         The code still copes with loader exceptions though.
19221
19222         Fixes the regression in reftype1 and reftype3 from the CAS tests.
19223         
19224 2006-06-14  Miguel de Icaza  <miguel@novell.com>
19225
19226         Fixes the `make run1' version of RuntimeAbort (to be commited,
19227         source is in Bugzilla).
19228         
19229         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
19230         FALSE on class loading failure instead of returning true.
19231
19232         * class.c (mono_class_create_from_typedef): It is possible for
19233         mono_metadata_interfaces_from_typedef_full to fail if a class is
19234         not found, cope with this.
19235         
19236
19237 2006-06-14  Dick Porter  <dick@ximian.com>
19238
19239         * socket-io.c: 
19240         * process.c: Fix a bunch of signed/unsigned warnings from gcc
19241         4.1.1
19242
19243 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
19244
19245         * culture-info-table.h : oops, forgot to make it nsync with r61548.
19246
19247 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19248
19249         * icall.c: Another fix for building mono in Visual Studio.
19250
19251 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19252
19253         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
19254         
19255 2006-06-09  Martin Baulig  <martin@ximian.com>
19256
19257         * debug-mono-symfile.c: Put this back and really fix it this
19258         time. Sorry for all the trouble.
19259
19260 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
19261
19262         * icall.c (mono_class_get_throw): Fix a warning.
19263         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
19264         ReflectionTypeLoadException if needed. Fixes #78606.
19265
19266         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
19267         (mono_class_init): Ditto.
19268
19269         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
19270         ref_only exceptions.
19271         (mono_loader_clear_error): Make this work even if there is no error.
19272
19273 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
19274
19275         * object-internals.h marshal.c marshal.h icall.c: Implement method 
19276         Marshal.GetComSlotForMethodInfo using internal call.
19277
19278 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
19279
19280         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
19281         a function for signalling it.
19282
19283         * class.c (mono_class_from_typeref): Use the new kind of loader error when
19284         a referenced assembly is not found.
19285
19286         * loader.c (mono_loader_error_prepare_exception): Add support for 
19287         LOADER_ERROR_ASSEMBLY. Fix formatting.
19288
19289 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
19290
19291         * domain.c appdomain.c class-internals.h marshal.c: Add support 
19292         for VARIANT marshalling on windows and increment corlib version
19293         since Variant struct was added.
19294
19295 2006-06-03  Miguel de Icaza  <miguel@novell.com>
19296
19297         * debug-mono-symfile.c: Revert Martin's previous patch which broke
19298         stack trace line information:
19299
19300         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
19301         (Martin) when looking up B which is between A and C, return A not C.
19302
19303         Bug is #78573.
19304
19305         Thanks to Alexander Olk for tracking this down.
19306
19307 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
19308
19309         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
19310         
19311         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
19312         avoid clobbering its value.
19313         (mono_string_to_lpstr): Fix a warning on windows.
19314
19315 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
19316
19317         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
19318
19319         * reflection.c loader.c: Removed references to 'dummy' flag.
19320
19321         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
19322
19323         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
19324         it gets GC tracking.
19325
19326         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
19327         GC tracking.
19328         
19329         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
19330
19331         * marshal.c threadpool.c: Update callers of mono_async_result_new.
19332
19333         * appdomain.c: Bump corlib version.
19334
19335 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
19336
19337         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
19338         CEE_STIND_REF when working with object references.
19339
19340 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
19341
19342         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
19343         Fixes #78539.
19344
19345 2006-05-30  Miguel de Icaza  <miguel@novell.com>
19346
19347         * loader.c (method_from_memberref): Fix argument value for
19348         mono_loader_set_error_method_load (I was passing the MonoClass
19349         instead of the class name char *).
19350
19351 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
19352
19353         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
19354         CEE_STIND_REF when working with object references.
19355
19356 2006-05-30  Martin Baulig  <martin@ximian.com>
19357
19358         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
19359         mono_method_full_name() change and replace the ':' with a '.'
19360         here.
19361
19362 2006-05-30  Martin Baulig  <martin@ximian.com>
19363
19364         * debug-mono-symfile.c
19365         (mono_debug_symfile_lookup_location): Fix the algorithm:
19366         when looking up B which is between A and C, return A not C.
19367
19368 2006-05-29  Martin Baulig  <martin@ximian.com>
19369
19370         * mono-debug.h
19371         (MonoDebugMethodInfo): Make the typedef public.
19372         (MonoDebugSourceLocation): New public struct.
19373
19374         * mono-debug.c
19375         (mono_debug_source_location_from_address): Removed.
19376         (mono_debug_source_location_from_il_offset): Removed.
19377         (mono_debug_il_offset_from_address): Removed.
19378         (mono_debug_address_from_il_offset): Removed.
19379         (mono_debug_lookup_method): New public function.
19380         (mono_debug_lookup_source_location): New public function; replaces
19381         the old mono_debug_source_location_from_*() functions; see the
19382         inline documentation.
19383         (mono_debug_free_source_location): New public function.
19384         (mono_debug_print_stack_frame): New public function; see the
19385         inline documentation.
19386
19387         * debug-mono-symfile.c
19388         (mono_debug_find_source_location): Renamed into
19389         mono_debug_symfile_lookup_location(); only take a
19390         `MonoDebugMethodInfo *' and an `offset' argument; added inline
19391         documentation.
19392         (mono_debug_find_method): Renamed into
19393         mono_debug_symfile_lookup_method().
19394
19395 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
19396
19397         * assembly.c (mono_assembly_open_full): Dont overwrite the status
19398         returned by mono_image_open_full ().
19399
19400         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
19401         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
19402         #78517.
19403
19404         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
19405         #78518.
19406
19407 2006-05-27  Miguel de Icaza  <miguel@novell.com>
19408
19409         * class.c (mono_class_from_typeref): handle missing images
19410         earlier, deals with bug #78418.   Refactor code; 
19411
19412         Fix a warning introduced in my previous commit (some stale code
19413         from before I revisited my patch).
19414
19415         * class.c (mono_class_create_from_typedef): On failure, remove the
19416         class from the MonoImage->class_cache as the class is not
19417         initialized;   Fixes the leak pointed out by Paolo.
19418
19419 2006-05-25  Dick Porter  <dick@ximian.com>
19420
19421         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
19422         DeleteCriticalSections until I figure out which one may still be
19423         sometimes locked when mono_thread_cleanup is called.
19424
19425 2006-05-24  Dick Porter  <dick@ximian.com>
19426
19427         * threads.c (mono_thread_cleanup): Move the threading cleanup out
19428         of mono_thread_manage and back into its own function, so it can be
19429         called after the finalizer thread has finished.
19430
19431         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
19432
19433 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
19434
19435         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
19436         Fixes #78495.
19437
19438         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
19439         with non-blittable elements.
19440         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
19441
19442 2006-05-24  Martin Baulig  <martin@ximian.com>
19443
19444         * mono-debug-debugger.h (MonoDebuggerEvent): Added
19445         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
19446
19447         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
19448         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
19449         `mono_debugger_event_handler' to NULL.
19450
19451 2006-05-24  Martin Baulig  <martin@ximian.com>
19452
19453         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
19454
19455 2006-05-24  Martin Baulig  <martin@ximian.com>
19456
19457         * mono-debug-debugger.h
19458         (mono_debugger_create_notification_function): Added
19459         `MonoCodeManager *' argument.
19460
19461 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
19462
19463         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
19464
19465 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
19466
19467         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
19468         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
19469         implementation.
19470
19471 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
19472
19473         * icall.c: precise GC support: objects can't be stored in unmanaged
19474         memory anymore, even if they are kept alive by other references: since
19475         they can move the GC needs to be able to always find them.
19476
19477 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
19478
19479         * object.c: precise GC support for static fields. Support
19480         for moving GCs: write barriers and pinned allocation for interned
19481         strings.
19482
19483 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
19484
19485         * domain.c, domain-internals.h: precise GC support for the MonoDomain
19486         structure.
19487
19488 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
19489
19490         * class.c, gc.c: sgen and precise GC updates.
19491
19492 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
19493
19494         * marshal.h, marshal.c: added write barrier wrapper and precise type
19495         fixes.
19496
19497 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
19498
19499         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
19500         support.
19501
19502 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
19503
19504         * reflection.c: precise and sgen GC updates.
19505
19506 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
19507
19508         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
19509
19510 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
19511
19512         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
19513
19514 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
19515
19516         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
19517         MONO_TYPE_OBJECT. Fixes #78462.
19518
19519 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
19520
19521         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
19522         and blittable types.
19523
19524 2006-05-17  Miguel de Icaza  <miguel@novell.com>
19525
19526         * class.c (mono_class_get_exception_for_failure): Implement parts
19527         of a TODO: if the loader error is set (instead of the class
19528         error), we return a Loader exception that can be properly thrown
19529         elsewhere.
19530
19531         This was exposed by some Winforms 2.0 code that I tried to run
19532         (Atsushi pointed me to it).
19533
19534 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
19535
19536         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
19537         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
19538         
19539         * marshal.c (emit_marshal_vtype): Add limited support for 
19540         UnmanagedType.LPStruct. Fixes #78427.
19541
19542         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
19543         Applied a patch from kangaroo to fix #77523.
19544
19545 2006-05-17  Martin Baulig  <martin@ximian.com>
19546
19547         * threads.c
19548         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
19549         (debugger_thread_created): Removed.
19550         (debugger_thread_exited): Removed.
19551
19552 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
19553
19554         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19555
19556         * object-internals.h (MonoReflectionResource): Sync with managed version.
19557
19558 2006-05-12  Wade Berrier <wberrier@novell.com>
19559
19560         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
19561
19562 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
19563
19564         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
19565         functions try to allocate from the image mempool.
19566
19567 2006-05-12  Dick Porter  <dick@ximian.com>
19568
19569         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
19570
19571 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
19572
19573         * object.c: The FieldGetter and FieldSetter methods require the full
19574         name of the class, not only the name. Fixes bug #78277.
19575
19576 2006-05-11  Miguel de Icaza  <miguel@novell.com>
19577
19578         * loader.c (method_from_memberref): Do not pass the NULL klass to
19579         mono_loader_set_error_() methods.  Pass the non-NULL value
19580         (class). 
19581
19582 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
19583
19584         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
19585         (mono_assembly_close): Null out assembly->image->references after freeing it.
19586
19587         * image.c (mono_image_close): Free image->references.
19588         
19589         * reflection.c (mono_image_basic_init): Fix a small memory leak.
19590
19591 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19592
19593         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
19594         before checking if it's NULL (g_assert).
19595
19596 2006-05-10  Martin Baulig  <martin@ximian.com>
19597
19598         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
19599         I thought I already killed that two months ago, but now it somehow reappeared.
19600
19601 2006-05-10  Martin Baulig  <martin@ximian.com>
19602
19603         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
19604
19605 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
19606
19607         * reflection.c: Allocate memory for dynamically created methods in the image
19608         mempools.
19609
19610 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19611
19612         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
19613         don't use the ad pointer before checking if it's NULL (g_assert).
19614
19615 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
19616
19617         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
19618         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
19619
19620         * marshal.c: Allocate all signatures from mempools.
19621
19622         * marshal.c: Allocate some more signatures from mempools.
19623
19624 2006-05-09  Miguel de Icaza  <miguel@novell.com>
19625
19626         * object.c (mono_load_remote_field): The code used to provide a
19627         temporary variable for returning results if the user did not
19628         provide a result pointer.  But our temporary variable was allocted
19629         on the satck.
19630
19631         Fix calling code to always pass a result area.   Coverity ID 103.
19632
19633 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
19634
19635         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
19636         value, not the old. Fixes #78312.
19637         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
19638
19639         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
19640         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
19641         per-image cache.
19642
19643         * assembly.c (mono_assembly_close): Free image->references.
19644
19645         * assembly.c (mono_assembly_names_equal): Fix a warning.
19646         (mono_assemblies_cleanup): Cleanup more global data.
19647
19648         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
19649
19650         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
19651         ptr_cache and image->modules.
19652
19653         * image.c (mono_image_init): Allocate array_cache lazily.
19654         
19655 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19656
19657         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
19658         behavior was changed recently and has bad side effects.
19659
19660 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
19661
19662         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
19663         
19664         * assembly.c (mono_assembly_close): Remove a debug printf.
19665
19666         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
19667
19668         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
19669         to also allow for temporary references between mono_image_open ()/close ().
19670
19671         * domain.c (get_runtimes_from_exe): Add a FIXME.        
19672
19673 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
19674
19675         * marshal.c: Fix support for dynamic methods.
19676
19677         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
19678
19679         * marshal.c (mono_marshal_cleanup): New cleanup function.
19680
19681         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
19682         image mempools.
19683
19684         * class.c (mono_class_init): Fix leaking class->nested_classes.
19685
19686         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
19687
19688         * image.c (mono_image_init): Initialize the new cashes.
19689
19690         * image.c (mono_image_close): Destroy the new cashes.
19691
19692         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
19693
19694         * mempool.c (mono_mempool_strdup): New helper function.
19695
19696         * class-internals.h: Add prototype for mono_loader_unlock ().
19697
19698         * domain.c (mono_jit_info_table_find): Fix a warning.
19699         (mono_debugger_check_runtime_version): Ditto.
19700
19701         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
19702         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
19703         functions to these modules.
19704
19705         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
19706         metadata modules.
19707         
19708         * marshal.c (mono_free_bstr): Fix a warning.
19709
19710         * assembly.c (mono_assembly_open_full): Fix another small leak.
19711
19712         * object.c: Fix some unload leaks in the remoting code.
19713
19714         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
19715         function.
19716
19717         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
19718
19719         * reflection.c: Fix some unload leaks in dynamic assemblies.
19720
19721 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
19722
19723         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
19724         * marshal.h: Add BSTR support on Win32
19725         * icall.c: Add BSTR icalls
19726         * metadata.h: Add BSTR enums
19727
19728 2006-04-28  Miguel de Icaza  <miguel@novell.com>
19729
19730         Work to catch the crash from #76795 and turn it into an
19731         exception.   As I stubbed out pieces of the VisualBasic support,
19732         I found a number of places where the code was failing and I added
19733         checks to those places. 
19734         
19735         * metadata.c (do_mono_metadata_parse_generic_class): Make this
19736         function return a status code.  If we fail to parse the signature
19737         from mono_metadata_parse_generic_inst, return FALSE.
19738
19739         * loader.c (mono_get_method_from_token): If we fail to load the
19740         method (mono_class_get) return NULL.   
19741
19742         * (method_from_memberref): Return NULL if we are unable to parse
19743         the method signature
19744
19745         (mono_loader_error_prepare_exception): Since we now use the
19746         loader_error flag internally to stop processing, and obtaining
19747         exceptions that might be thrown will walk this code path the
19748         proper way of going from a MonoLoaderError into a
19749         MonoException was convoluted.   This new routine encapsulates the
19750         process of turning the error into an exception and *clearing* the
19751         error afterwards.
19752         
19753 2006-04-27  Miguel de Icaza  <miguel@novell.com>
19754
19755         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
19756         with missing assemblies), and to cope with:
19757
19758                 * Missing fieldref from a non-existing assembly.
19759                 * Missing methodref from a non-existing assembly.
19760
19761         The first batch of work to address *some* of the issues from 76661.
19762         
19763         * object.c (mono_class_create_runtime_vtable): If we fail to
19764         initialize the class raise the exception here. 
19765
19766         * metadata.c (mono_class_get_overrides_full): If any methods fail
19767         to load return the failure to the caller.
19768
19769         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
19770         flagging assemblies that failed to load.   
19771
19772         Do not crash if we are unable to load the assembly.
19773
19774         (mono_assembly_close): Do nothing with REFERENCE_MISSING
19775         assemblies. 
19776
19777         * loader.c (mono_loader_set_error_type_load): Change the
19778         convention to always pass unallocated strings, so we make our own
19779         copies (I know our own code had duplicated strings before, but
19780         this keeps the normal conventions).
19781         (method_from_memberref): Call mono_loader_set_error_method_load
19782         for all possible failures of loading the class. 
19783         Remove assert, turn into a loader error.
19784
19785         (mono_loader_error_to_exception): Move this routine from mini
19786         (mini_loader_error_to_exception) there was no need to have that in
19787         mini. 
19788
19789         * class.c (mono_class_from_typeref): If we were not able to load
19790         the assembly with mono_assembly_load_reference, call the
19791         mono_loader_set_error_type_load to register the problem.
19792
19793         (mono_class_setup_fields): If we fail to load the type from
19794         mono_metadata_parse_type_full, call mono_class_set_failure and
19795         break from the loop.
19796
19797         If class->exception_type is set, we do not layout the fields as
19798         that might crash the runtime, and instead return (from breaking
19799         from the previous loop).
19800
19801         (mono_class_setup_vtable): This now returns a boolean indicating
19802         whether the table was properly setup.   The decision is driven by
19803         mono_class_get_overrides_full which might run into non-existing
19804         methods. 
19805         
19806         (mono_class_init): Returns TRUE on success or FALSE if there was a
19807         problem in loading the type (incorrect assemblies, missing
19808         assemblies, methods, etc).
19809
19810         When we call mono_class_setup_fields we also check for a potential
19811         error inside this call (either a class exception or a general
19812         loader exception).
19813
19814         (mono_class_create_from_typedef): If the parent fails to load
19815         (calling mono_class_get_full) return NULL.
19816         
19817         ** Important **
19818
19819         calls to mono_metadata_parse_type_full should be checked
19820         everywhere and set the mono_class_set_failure
19821         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19822
19823         The current patch checks the places where my manually constructed
19824         tests show the errors are showing up, but we should do it
19825         everywhere. 
19826
19827         ** Important2 **
19828
19829         mono_class_init return values should be tested everywhere, like
19830         the previous case this is something that we should audit
19831         everywhere and not only on the cases exposed by the tests I
19832         created. 
19833
19834 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19835
19836         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19837         boolean parameter and instead pass the information on `options'
19838         parameter (FileOptions).
19839
19840         * icall.c: Register the new signature for MonoIO.Open.
19841
19842         * debug-helpers.c (dis_one): Trying to understand how coverity
19843         works.  Fix Run 5, item 78.
19844
19845 2006-04-26  Dick Porter  <dick@ximian.com>
19846
19847         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19848         dereference.
19849
19850 2006-04-25  Martin Baulig  <martin@ximian.com>
19851
19852         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19853
19854         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19855         debugger_thread_created().
19856         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19857         special way.
19858         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19859         (mono_debugger_finalize_threads): New function; undo the effects
19860         of mono_debugger_init_threads().
19861         (mono_debugger_create_all_threads): Removed.
19862
19863 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19864
19865         * image.c (mono_image_close): Tidy up trace messages.
19866
19867         * assembly.c (mono_assembly_close): Ditto.
19868
19869         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19870         no longer references an already freed assembly. Fixes #78168.
19871
19872 2006-04-21  Dick Porter  <dick@ximian.com>
19873
19874         * threads.c (mono_thread_detach): Fix reference counting when
19875         detaching threads.
19876
19877 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19878
19879         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19880         #78155.
19881
19882 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19883
19884         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19885         (mono_type_to_stind): Ditto.
19886
19887         * marshal.c: Use the new helper functions to simplify code.
19888
19889         * image.c (mono_image_close): Add some code for help debug assembly unloading
19890         problems.
19891
19892         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19893         image mempool.
19894
19895         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19896         assembly was already loaded in another appdomain. Fixes #78083.
19897
19898 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19899
19900         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19901         referenced assemblies.
19902         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19903
19904         * domain.c (mono_domain_free): Add a trace message.
19905
19906         * appdomain.c (add_assemblies_to_domain): Ditto.        
19907
19908         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19909         field.  
19910
19911 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19912
19913         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19914
19915 2006-04-12  Martin Baulig  <martin@ximian.com>
19916
19917         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19918         `USE_INCLUDED_LIBGC'.   
19919
19920 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19921
19922         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19923         the patch contains ../ and a small directory name later. Hopefully fixes
19924         #78035.
19925
19926 2006-04-10  Martin Baulig  <martin@ximian.com>
19927
19928         Clean up the debugger's thread-handling code.
19929
19930         The debugger's thread-handling code has been moved from
19931         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19932         over the `threads' hash, keep track of exiting threads and also
19933         use proper locking.
19934
19935         We can now debug XSP and XSP based applications with the debugger.
19936
19937         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19938
19939         * threads.h
19940         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19941         (mono_install_thread_callbacks): Likewise.      
19942
19943         * threads.c (mono_thread_callbacks): Removed.
19944         (debugger_thread_created, debugger_thread_exited): New static functions.
19945         (start_wrapper): Call debugger_thread_created().
19946         (thread_cleanup): Call debugger_thread_exited().
19947         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19948         (mono_debugger_init_threads): New public function.
19949         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19950         iterate directly over the `threads' hash and also use proper locking.
19951
19952         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19953
19954         * mono-debug-debugger.h
19955         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19956
19957 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19958
19959         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19960         argument type=array. Fixes #78057.
19961
19962 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19963
19964         * culture-info-table.h : regenerated. Fixed bug #69652.
19965
19966 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19967
19968         * loader.c metadata.c: Reapply a variant r59116.
19969         
19970         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19971
19972         * class.c (mono_class_setup_interface_offsets): New internal function.
19973
19974         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19975         interfaces too. Fixes #77398.
19976
19977         * reflection.c (encode_cattr_value): Add support for 
19978         parameter type=object, argument type=array.
19979         (load_cattr_value): Ditto. Fixes #77916.
19980
19981         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19982         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19983
19984         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19985         a byval char array and CharSet is Ansi.
19986
19987         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19988
19989 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19990
19991         * metadata.c: Add some locking comments.
19992         
19993         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19994         mempool.
19995         (mono_metadata_free_method_signature): Don't free the signature itself.
19996
19997         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19998
19999         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
20000         reference the same MonoImage.
20001         (mono_assembly_load_from_full): Add an assert.
20002
20003 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
20004
20005         * image.c (mono_image_close): Don't put the image we are about to free into the
20006         loaded_images_guid_hash.
20007
20008         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
20009         to reduce code duplication.
20010
20011         * marshal.c: Register the native functions called by this module as icalls, to
20012         somewhat centralize the creation of MonoMethodSignature's.
20013
20014         * loader.c (mono_method_signature): Add a cache for method signatures.
20015
20016         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
20017         the parameter attributes of a method.
20018         (mono_metadata_parse_method_signature_full): Refactored the computation of
20019         parameter attributes into a separate function. Also avoid one allocation in
20020         most cases.
20021
20022         * assembly.c (mono_assembly_close): Ditto.
20023
20024         * image.c (mono_image_close): Log trace messages with INFO level.
20025
20026         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
20027
20028         * image.c reflection.c: Correct reference counting of image modules.
20029         
20030         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
20031         of this function from the image mempool.
20032         
20033         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
20034         to allow more cached types to be used.
20035
20036         * mono-debug.c (mono_debug_add_method): Appled patch from
20037         David S. Miller  <davem@sunset.davemloft.net>: Access 
20038         minfo->lexical_blocks[] entry elements using read32().
20039
20040 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
20041
20042         * loader.c (mono_free_method): No longer free the method header for non-dynamic
20043         methods as it is allocated from the mempool.
20044
20045         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
20046         image mempool.
20047
20048         * metadata-internals.h: Add comments describing the reference counting scheme
20049         used for MonoImage and MonoAssembly.
20050
20051         * image.c assembly.c reflection.c: Rework reference counting of images and 
20052         assemblies so they are freed when the runtime is shut down. Free some 
20053         additional memory structures when an image is unloaded.
20054         
20055 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
20056
20057         * class.c loader.c reflection.c: Allocate more data structures in
20058         the image mempool.
20059
20060 2006-03-31  Miguel de Icaza  <miguel@novell.com>
20061
20062         * icall.c
20063         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
20064         build on pre glib 2.4 systems.
20065
20066 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
20067
20068         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
20069
20070         * icall.c: Fix some warnings.
20071
20072 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
20073
20074         * culture-info-table.h : regenerated.
20075
20076 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
20077
20078         * threads.c, object-internals.h, verify.c: changed the culture caching
20079         code to use a normal MonoArray for storage so the GC can keep track of
20080         them easily. Fixed bits of the cache logic, too and simplified the
20081         code.
20082
20083 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
20084
20085         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
20086         thread for non-Boehm GCs.
20087
20088 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
20089
20090         * domain.c, object.c, domain-internals.h: reduce the amount of memory
20091         needed to keep track of the data for static fields.
20092
20093 2006-03-29  Raja R Harinath  <rharinath@novell.com>
20094
20095         Fix #75172
20096         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
20097         for interface classes.  Use 'num_methods' instead.
20098         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
20099         before using '->vtable_size' field.
20100
20101 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
20102
20103         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
20104         doesn't contain managed pointers, so use a normal hashtable.
20105
20106 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
20107
20108         * reflection.c, class-internals.h, domain.c: fixed handling of types
20109         used as values for objects in custom attributes (bug #77915):
20110
20111 2006-03-24  Martin Baulig  <martin@ximian.com>
20112
20113         * class.c (mono_class_setup_fields): Added support for generic
20114         instances; fixes #77580.
20115
20116 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20117
20118         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
20119
20120 2006-03-24  Dick Porter  <dick@ximian.com>
20121
20122         * file-io.c (get_file_attributes): More stat macro breakage.
20123         Fixes bug 77759.
20124
20125 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
20126
20127         * profiler.c: added the file=filename option in the default profiler
20128         to output the profile data to filename.
20129
20130 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20131
20132         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
20133         bug #77877.
20134
20135 2006-03-22  Martin Baulig  <martin@ximian.com>
20136
20137         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
20138         allocated `MonoClassField *' in `fb->handle'.
20139
20140 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
20141
20142         * class.c, image.c, metadata-internals.h: implemented new mechanism to
20143         allocate interface ID to save memory and allow better ID reuse on
20144         appdomain unload. setup_generic_vtable () removal from Martin.
20145
20146 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
20147
20148         * object.h, appdomain.c, domain.c, exception.c, icall.c,
20149         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
20150         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
20151         write barriers for reference stores with managed objects accessed with
20152         C structures in the runtime and in embedding programs.
20153
20154 2006-03-20  Raja R Harinath  <rharinath@novell.com>
20155
20156         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
20157         'interface_id' and 'max_interface_id' fields of MonoClasses
20158         representing open generic types.
20159
20160 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
20161
20162         * object.h, object.c, icall.c: added functions to deal with
20163         storing valuetypes that contain references in managed objects.
20164         * reflection.c, string-icalls.c, threads.c, marshal.c: small
20165         fixes and comments around uses of mono_array_addr ().
20166
20167 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
20168
20169         * object.h, icall.c, monitor.c: object.GetHashCode ()
20170         implementation that supports the moving garbage collector.
20171
20172 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
20173
20174         * icall.c, threads-types.h, threads.c: implemented finalizer for
20175         LocalDataStoreSlot.
20176
20177 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
20178
20179         * metadata.c (mono_type_size): Add a fixme.
20180         (mono_type_stack_size): Ditto.
20181
20182         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
20183         'type_forwarders' field.
20184
20185         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
20186         attribute from net 2.0.
20187
20188         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
20189         from class.c.
20190
20191         * class.c (mono_class_setup_fields): Fix a warning.
20192         
20193         * class.c (mono_class_from_name): Add support for assemblyref entries
20194         in the EXPORTEDTYPE table.
20195
20196         * reflection.c: Add support for handling type forwarders under net 2.0.
20197
20198         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
20199         
20200 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
20201
20202         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
20203         overwriting entries in ModuleBuild->types, also clean up the code
20204         a little. Fixes #77774.
20205
20206 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
20207
20208         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
20209         load friend assembly info when present.
20210
20211 2006-03-14  Raja R Harinath  <rharinath@novell.com>
20212
20213         Fix crasher on gtest-158.cs.
20214         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
20215         the return value if the MonoClass we want is yet in an
20216         inconsistent state.
20217         * class.c (mono_class_create_from_typedef): Add an comment
20218         explaining an order dependency between mono_class_setup_parent and
20219         mono_class_setup_mono_type.
20220
20221 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
20222
20223         * class.c: documentation updates and events bug fix.
20224
20225 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
20226
20227         * class.c: some cleanup, locking fixes.
20228
20229 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
20230
20231         * class.c: fix the generics code to setup nested
20232         type info to the instantiated type (bug #77770).
20233
20234 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
20235
20236         * marshal.c: fixed a few type correctness issues.
20237
20238 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20239
20240         * loader.c: the Set/Get/Addrtess array methods should be public.
20241
20242 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
20243
20244         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
20245         
20246         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
20247         info->wrapper.
20248
20249 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
20250
20251         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
20252
20253         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
20254
20255         * mempool.c (mono_mempool_alloc): Speed this up a bit.
20256         (mono_mempool_alloc0): Ditto.
20257
20258 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20259
20260         * socket-io.c:
20261         (create_object_from_sockaddr): it was allocating 4 extra bytes
20262         for the AF_UNIX data. Fixes bug #77747.
20263
20264 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
20265
20266         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
20267
20268 2006-03-09  Dick Porter  <dick@ximian.com>
20269
20270         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
20271         Fixes bug 76966 again.
20272
20273 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
20274
20275         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
20276         names from r57532
20277         * appdomain.c: Bumped corlib version to 48 (due to r57532)
20278
20279 2006-03-07  Martin Baulig  <martin@ximian.com>
20280
20281         * object.c
20282         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
20283
20284 2006-03-07  Martin Baulig  <martin@ximian.com>
20285
20286         * class.c
20287         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
20288         regression introduced in r56970; see gtest-252.cs.
20289
20290         * loader.c (mono_get_method_constrained): Correctly handle generic
20291         methods; see gtest-253.cs.
20292
20293 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
20294
20295         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
20296
20297 2006-03-04  Martin Baulig  <martin@ximian.com>
20298
20299         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
20300         compute the parent type at runtime, just like we're already doing
20301         it for interfaces.
20302
20303         * reflection.c
20304         (mono_reflection_bind_generic_parameters): Don't compute the
20305         parent type anymore.
20306
20307         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
20308
20309 2006-03-04  Martin Baulig  <martin@ximian.com>
20310
20311         * mono-debug-debugger.h
20312         (mono_debugger_create_notification_function): Allocate memory at
20313         runtime and return a pointer to it.
20314
20315 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
20316
20317         * assembly.c: Fix windows build.
20318         
20319         * assembly.c: Fix build.
20320
20321         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
20322
20323         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
20324         
20325 2006-03-03  Dick Porter  <dick@ximian.com>
20326
20327         * process.c
20328         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20329         Check parameters before dereferencing them.  Fixes Aaron's part of
20330         bug 77393.
20331
20332 2006-03-03  Raja R Harinath  <rharinath@novell.com>
20333
20334         Fix performance regression.
20335         * loader.c (find_method_in_class): Add 'from_class' argument.
20336         Rename 'klass' argument to 'in_class'.  The signature is compared
20337         against the method in 'in_class', and the corresponding method is
20338         returned from 'from_class'.
20339         (find_method): Walk both 'in_class' and 'from_class' in parallel.
20340         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
20341         type definition and generic instantiation in parallel.
20342         (mono_get_method_constrained): Update to changes.
20343
20344 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
20345
20346         * threads.c: make sure the domain is correct, too when doing
20347         mono_thread_attach ().
20348
20349 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
20350
20351         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
20352         windows. Fixes #77683.
20353
20354 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
20355
20356         * object.h, *: introduced specific way to set elements of an array
20357         of references to be used as write barrier. Still need to audit the
20358         uses of mono_array_addr.
20359
20360 2006-03-01  Miguel de Icaza  <miguel@novell.com>
20361
20362         * object-internals.h: New field to cache the assmebly name, patch
20363         from Tambet Ingo (tambet@ximian.com)
20364
20365 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
20366
20367         * decimal.h, class-internals.h, metadata-internals.h,
20368         file-io.h: mark a few function declarations as internal, to
20369         reduce the number of PLT entries.
20370
20371 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20372
20373         * file-io.c: fix typo in warning message.
20374
20375 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
20376
20377         * loader.c: on unix, lookup the "*A" version of a function
20378         if charset is auto as a second option before failing.
20379
20380 2006-02-28  Raja R Harinath  <rharinath@novell.com>
20381
20382         * class.h (mono_class_inflate_generic_method): Revert to two
20383         argument version.
20384         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
20385         (mono_class_inflate_generic_method_full): Add.
20386         * class.c (mono_class_inflate_generic_method_full): Rename from
20387         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
20388         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
20389         * loader.c, reflection.c: Update to changes.
20390
20391 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
20392
20393         * icall.c: const fixes and small improvements.
20394
20395 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20396
20397         * threadpool.c: for asynchronous connect(), enable the same workaround
20398         for BSD 6 as for the Mac. Fixes bug #77637.
20399
20400 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
20401
20402         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
20403         formatted classes. Fixes #77524.
20404
20405 2006-02-24  Raja R Harinath  <rharinath@novell.com>
20406
20407         * class.c (inflate_generic_type): Add a couple more
20408         micro-optimizations.
20409         (inflate_generic_context): Don't use the 'gmethod' from
20410         'inflate_with'.
20411         (mono_class_inflate_generic_method): If the method has generic
20412         parameters, but the passed-in context doesn't have a 'gmethod',
20413         create one.  Use the possibly simplified generic instantiation
20414         from the declaring class instead of the one passed in.
20415
20416 2006-02-24  Raja R Harinath  <harinath@gmail.com>
20417
20418         Make generic method signature and method header handling lazy.
20419         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
20420         (inflate_generic_header): Likewise.
20421         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
20422         parameter to avoid inflating types.
20423         (mono_get_inflated_method): Empty out.
20424         * class.h (mono_class_inflate_generic_method): Update to changes.
20425         * loader.c (mono_get_method_from_token): Don't parse signature for
20426         generic methods, nor methods of generic classes.
20427         (mono_method_signature): Rename from 'mono_method_signature'.
20428         Inflate signature on demand.
20429         (mono_method_get_header): Inflate method header on demand.
20430         * reflection.c: Update to changes.
20431
20432 2006-02-23  Raja R Harinath  <rharinath@novell.com>
20433
20434         * metadata.c (mono_metadata_inflate_generic_inst): If the
20435         instantiation is closed, don't bother expanding it in the new
20436         context.
20437         * class.c (inflate_generic_class): If the generic instantiation
20438         doesn't change after inflation, return the argument itself.
20439         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
20440         Add bounds checks.
20441         (inflate_generic_context): If neither the generic class nor the
20442         generic method instantiations change, return the original context.
20443         * reflection.c (mono_method_get_object): Do
20444         'mono_get_inflated_method' before accessing the ->klass field.
20445         (inflate_mono_method): Don't create a MonoGenericMethod unless
20446         necessary.
20447         (inflate_method): Don't pass a constructed type as the declaring
20448         type of a methodbuilder.
20449
20450 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
20451
20452         * object.c: fix memory overwrite.
20453
20454 2006-02-22  Dick Porter  <dick@ximian.com>
20455
20456         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
20457         it doesn't work any more.
20458         (mono_threads_request_thread_dump): Fix unused variable warnings.
20459
20460 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20461
20462         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
20463         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
20464         the public header file.
20465
20466 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
20467
20468         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
20469
20470 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
20471
20472         * class-internals.h, object.c: reduce the size of MonoVTable
20473         and store the interface_offsets array at negative offsets.
20474
20475 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
20476
20477         * metadata.c: tweak table descriptors data structures to reduce
20478         size and runtime relocations.
20479
20480 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20481
20482         * marshal.c: fix some types and opcodes to be type-safe
20483         in marshaling wrappers.
20484
20485 2006-02-21  Ankit Jain  <jankit@novell.com>
20486
20487         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
20488
20489 2006-02-21  Raja R Harinath  <rharinath@novell.com>
20490
20491         * metadata.c (get_constraints): Relax debugging checks for monodis.
20492
20493 2006-02-21  Ankit Jain  <jankit@novell.com>
20494
20495         * metadata.c (mono_metadata_load_generic_params): Move the code
20496         checking for ambiguous generic params from here to mono/dis/get.c
20497         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
20498
20499 2006-02-21  Raja R Harinath  <harinath@gmail.com>
20500
20501         Fix assertion triggered when compiling nemerle.
20502         * class.c (mono_get_shared_generic_inst): Rename from
20503         get_shared_inst and make non-static.
20504         * loader.c (mono_get_shared_generic_method): New.  Used to create
20505         the MonoGenericContext-equivalent of a MonoGenericContainer.
20506         (mono_get_method_from_token): Initialize the 'context' field of
20507         the created MonoGenericContainer.
20508         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
20509         * metadata.c (get_constraints): Add sanity check.
20510         * class-internals.h: Add new internal methods.
20511
20512         * reflection.c (verify_safe_for_managed_space): New sanity check.
20513         Currently checks that owner-less generic parameters aren't allowed
20514         in managed space.
20515         (mono_type_get_object): Use it.
20516         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
20517         that are now in mono_type_get_object.
20518         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
20519
20520 2006-02-19  Raja R Harinath  <harinath@gmail.com>
20521
20522         * metadata.c (mono_type_create_from_typespec): Rename from
20523         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
20524         argument and caching of types in the generic container.
20525         (unwrap_arrays, find_generic_param): Remove.
20526         * metadata-internals.h: Update.
20527         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
20528
20529 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
20530
20531         * class.c (mono_class_get_exception_for_failure): Fix a warning.
20532
20533         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
20534         return values. Fixes #77581.
20535
20536         * class.c (mono_fnptr_class_get): Switch name and name_space.
20537
20538         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
20539         classes and add support for [In, Out] attributes.
20540         (mono_marshal_free_asany): Ditto. Fixes #77524.
20541
20542 2006-02-18  Raja R Harinath  <harinath@gmail.com>
20543
20544         * class.c (mono_class_from_generic_parameter): Make more robust to
20545         incomplete MonoGenericContainers from monodis.
20546
20547 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20548
20549         * class-internals.h: added some more exception types.
20550         * class.c, metadata.c: added a few checks to handle missing
20551         types.
20552
20553 2006-02-17  Raja R Harinath  <rharinath@novell.com>
20554
20555         Use owner-less generic-params some more.
20556         * class.c (my_mono_class_from_generic_parameter): Remove.
20557         (mono_class_from_generic_parameter): Handle null image,
20558         param->name and param->owner.
20559         (mono_class_from_mono_type): Update.
20560         (mono_class_create_from_typespec): Remove 'container' parameter.
20561         If that parameter is non-null, the result is always inflated by
20562         'mono_class_get_full' anyway.
20563         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
20564         parameter.
20565         (mono_class_get_full): Update.
20566
20567         * class.c (inflate_generic_type) [GENERICINST]: If the generic
20568         instance is not open, don't bother inflating.
20569         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
20570         parse metadata for inflated classes.
20571         (_mono_class_get): Change GenericContext* parameter to
20572         GenericContainer*.
20573         (mono_class_create_from_typespec): Likewise.  Simplify, and
20574         implement trivially.  All the cases are handled in
20575         mono_class_from_mono_type.  Don't inflate returned class.
20576         (mono_class_get_full): Delegate GENERICINST optimization to
20577         inflate_generic_type.
20578         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
20579
20580 2006-02-16  Dick Porter  <dick@ximian.com>
20581
20582         * socket-io.c (create_object_from_sockaddr): Fix typo.
20583         (create_sockaddr_from_object): Check array lengths before
20584         potentially accessing items off the end.
20585         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
20586         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
20587         (ves_icall_System_Net_Sockets_Socket_Send_internal)
20588         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
20589         length checks to avoid wraparound overflows.
20590         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
20591         contents of the array of sockets
20592         (hostent_to_IPHostEntry2)
20593         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
20594         Check return value of inet_ntop ().
20595         (addrinfo_to_IPHostEntry): Fix typo
20596
20597 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20598
20599         Type metadata parsing doesn't use generic-instantiation information.
20600         * metadata.c (mono_metadata_parse_array_full): Change
20601         MonoGenericContext* parameter to MonoGenericContainer*.
20602         (mono_metadata_parse_type_full): Likewise.
20603         (mono_type_create_from_typespec_full): Likewise.
20604         (mono_metadata_parse_mh_full): Likewise.
20605         (mono_metadata_parse_generic_inst): Likewise.
20606         (do_mono_metadata_parse_generic_class): Likewise.
20607         (do_mono_metadata_parse_type): Likewise.
20608         * metadata-internals.h: Update to changes.
20609         * class.c (mono_class_find_enum_basetype): Likewise.
20610         (mono_class_setup_fields): Likewise.
20611         (mono_class_create_from_typespec): Likewise.
20612         * loader.c (method_from_methodspec): Likewise.
20613         (mono_get_method_from_token): Likewise.
20614         (mono_method_get_header): Likewise.
20615
20616 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20617
20618         * marshal.c: handle additional GENERICINST case (patch from
20619         Thong Nguyen <tum@veridicus.com>).
20620         Fix a few cases where LDIND_I/STIND_I was used for references.
20621
20622 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20623
20624         * reflection.c (mono_reflection_get_token): Remove unused variable.
20625
20626 2006-02-16  Martin Baulig  <martin@ximian.com>
20627
20628         * reflection.c (mono_reflection_get_token): Add support for fields
20629         in instantiated generic types.
20630
20631         * icall.c
20632         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
20633
20634 2006-02-15  Martin Baulig  <martin@ximian.com>
20635
20636         * icall.c
20637         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
20638         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
20639         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
20640         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
20641
20642 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
20643
20644         * class.c, metadata.c, metadata.h, object.c, icall.c,
20645         marshal.c: changed mono_type_get_underlying_type () to do
20646         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
20647         Fixed handling of instantiated generic valuetypes (bug #75479).
20648
20649 2006-02-15  Raja R Harinath  <rharinath@novell.com>
20650
20651         * metadata.c (mono_metadata_decode_signed_value): Simplify.
20652         Delegate to mono_metadata_decode_value, and work on the returned value.
20653
20654         * icall.c (ves_icall_MonoType_GetGenericArguments):
20655         Add consistency check here too.
20656         
20657 2006-02-15  Ankit Jain  <jankit@novell.com>
20658
20659         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
20660         char/short etc.
20661
20662 2006-02-15  Ankit Jain  <jankit@novell.com>
20663
20664         * metadata.c (mono_metadata_decode_signed_value): New function to decode
20665         signed values, used only for representing lower bounds of arrays.
20666         (mono_metadata_parse_array_full): Use new
20667         mono_metadata_decode_signed_value to decode lower bounds.
20668
20669 2006-02-14  Martin Baulig  <martin@ximian.com>
20670
20671         * reflection.c
20672         (mono_reflection_get_token): Support "MonoGenericMethod" and
20673         "MonoGenericCMethod" and allow generic instances / methods.
20674
20675 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
20676
20677         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
20678         to obtain the terminal size using an ioctl.
20679
20680         * object.c (mono_nullable_init): Revert this as nullable reference
20681         types are not valid.
20682         (mono_nullable_box): Ditto.
20683
20684 2006-02-09  Dick Porter  <dick@ximian.com>
20685
20686         * threads.c (mono_thread_detach): Drop a reference to the thread
20687         we're detaching.
20688
20689 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
20690
20691         * object.c (mono_nullable_init): Handle nullable reference types.
20692         (mono_nullable_box): Ditto. Fixes #77446.
20693
20694 2006-02-07  Martin Baulig  <martin@ximian.com>
20695
20696         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
20697
20698 2006-02-07  Ankit Jain  <jankit@novell.com>
20699
20700         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
20701         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
20702         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
20703         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
20704         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
20705         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
20706
20707 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
20708
20709         * class.c (mono_class_create_generic): Set type_token as well.
20710
20711         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
20712         compatible with MS.
20713
20714 2006-02-02  Martin Baulig  <martin@ximian.com>
20715
20716         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
20717         has never been used so far.
20718
20719 2006-02-02  Martin Baulig  <martin@ximian.com>
20720
20721         * mono-debug-debugger.h: Changed comment at the top of this file;
20722         the header is not installed, but it's safe to #include it from
20723         within the JIT.
20724
20725         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
20726         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
20727
20728 2006-02-02  Martin Baulig  <martin@ximian.com>
20729
20730         * mono-debug.h
20731         (MonoSymbolTable): Removed the `metadata_info' field.
20732
20733         * mono-debug.c
20734         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
20735
20736         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20737         (mono_debugger_add_builtin_types): Removed.
20738         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
20739         (mono_debugger_create_notification_function): We now operate on a
20740         pre-allocated area; take a `gpointer' and return `void'.
20741
20742         * mono-debug-debugger.c
20743         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
20744         (mono_debugger_add_builtin_types): Removed.
20745
20746 2006-02-02  Martin Baulig  <martin@ximian.com>
20747
20748         * threads.c (mono_debugger_create_all_threads): New public method.
20749
20750 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20751
20752         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
20753         breaks on several platforms.
20754
20755 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
20756
20757         * assembly.c: the VS.NET build doesn't supply default values for
20758         MONO_ASSEMBLIES and MONO_CFG_DIR.
20759
20760 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
20761
20762         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
20763         helper function.
20764
20765         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
20766
20767         * loader.c (method_from_memberref): Fix a warning.
20768
20769         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
20770
20771         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
20772         with explicit layout. Fixes #77433.
20773
20774 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
20775
20776         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
20777         max_interface_id is initialized before using it. Fixes #77398.
20778         (ves_icall_Type_GetInterfaces): Ditto.
20779
20780 2006-01-30  Raja R Harinath  <rharinath@novell.com>
20781
20782         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20783         allocate memory for parameter attributes when parsing memberref
20784         signatures.
20785         * loader.c (mono_loader_set_error_method_load): Don't warn.
20786         (method_from_memberref): Ensure MissingMethodException gets thrown
20787         if method is not found.  Make warning more informative.
20788
20789 2006-01-29  Raja R Harinath  <harinath@gmail.com>
20790
20791         Fix #77397
20792         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20793         return true if is byref.
20794         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20795         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20796         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20797
20798 2006-01-27  Raja R Harinath  <rharinath@novell.com>
20799
20800         Fix tests/find-method.2.il
20801         * loader.c (find_method, find_method_in_class): Remove is_inflated
20802         argument.  Revert 2006-01-18 change.
20803         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20804         is generic, search for method in its generic definition.
20805         * class.c (mono_class_setup_vtable_general): Print generic
20806         arguments of generic types in debugging printf.
20807
20808 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20809
20810         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20811
20812         * threads.c (mono_threads_request_thread_dump): New helper function.
20813
20814 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20815
20816         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20817
20818 2006-01-25  Ankit Jain  <jankit@novell.com>
20819
20820         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20821         move definition to ..
20822         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20823         
20824 2006-01-25  Ankit Jain  <jankit@novell.com>
20825             Raja R Harinath  <rharinath@novell.com>
20826
20827         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20828         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20829         as necessary.
20830
20831 2006-01-25  Martin Baulig  <martin@ximian.com>
20832
20833         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20834         `MonoDebuggerThread' into debug-debugger.c.
20835
20836 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20837
20838         * profiler.c: fix printing of data.
20839
20840 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20841
20842         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20843           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20844
20845 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20846
20847         * object.c: fix deadlock related to string interning.
20848
20849 2006-01-23  Martin Baulig  <martin@ximian.com>
20850
20851         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20852
20853         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20854
20855 2006-01-23  Martin Baulig  <martin@ximian.com>
20856
20857         * mono-debug.h: Moved the prototypes of some functions which are
20858         used by the JIT here from mono-debug-debugger.h.
20859
20860 2006-01-21  Martin Baulig  <martin@ximian.com>
20861
20862         * Makefile.am: Don't install mono-debug-debugger.h.
20863
20864 2006-01-21  Martin Baulig  <martin@ximian.com>
20865
20866         * mono-debug-debugger.h: Enforce the private status of this header
20867         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20868         Moved some stuff from mono-debugger-jit-wrapper.h here.
20869
20870 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20871
20872         * class.c (mono_class_from_typeref): Add a sanity test to help
20873         catch lack of assembly load/search hooks.
20874
20875 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20876
20877         * marshal.c (emit_struct_conv): Relax the fields with same offset
20878         check even more. Fixes #77230.
20879
20880 2006-01-18  Martin Baulig  <martin@ximian.com>
20881
20882         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20883         argument; if false, we compare the uninstantiated signatures.
20884         (method_from_memberref): Compare the uninstantiated signatures;
20885         fixes #76417.
20886
20887 2006-01-18  Robert Jordan  <robertj@gmx.net>
20888
20889         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20890         Clear the weak link. Fixes bug #77170.
20891
20892         * gc.c (mono_gchandle_free):
20893         Reflect *-gc.c changes (tiny optimization).
20894
20895 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20896
20897         * metadata.c (mono_metadata_signature_dup): Applied patch from
20898         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20899         Fixes #77288.
20900
20901 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20902
20903         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20904         marshalling from native to managed code. Fixes #77230.
20905
20906 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20907
20908         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20909         connect. Fixes bug #77020.
20910
20911 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20912
20913         * class.c: fixed id assignement for nested interfaces (bug #77275).
20914         Added also better info for --print-vtable debugging.
20915
20916 2006-01-12  Martin Baulig  <martin@ximian.com>
20917
20918         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20919         interfaces on-the-fly; fixes #76625.
20920
20921         * class-internals.h
20922         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20923         don't need that anymore.
20924
20925 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20926
20927         * socket-io.c
20928         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20929         To avoid initing the nested_classes when not needed I turned the
20930         PeerCredData as a toplevel internal class, as it has to be shared
20931         anyways. 
20932
20933         Fixes the CASA issue.
20934
20935 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20936
20937         * domain.c: Accessors for MonoJitInfo
20938
20939         * profiler-private.h: Add jitinfo to the end jit hook
20940
20941         * profiler.[ch]: Define new hooks, called after jitting which give
20942         the MonoJitInfo that was compiled
20943
20944 2006-01-10  Martin Baulig  <martin@ximian.com>
20945
20946         * class.c (mono_class_setup_events): Add support for generic
20947         classes; fixes #76440.
20948
20949 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20950
20951         Fix #77160.
20952         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20953         on passed-in method.
20954
20955 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20956
20957         * object.c (mono_runtime_invoke_array): Add Nullable support.
20958
20959         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20960
20961 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20962
20963         * file-io.c: Don't consider sockets as directory and avoid an endless
20964         loop. Fix bug #76966.
20965
20966 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20967
20968         * object.c (mono_nullable_init): New helper function.
20969         (mono_nullable_box): Ditto.
20970
20971         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20972
20973         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20974
20975         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20976         
20977 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20978
20979         * class.c (mono_class_is_assignable_from): Make T assignable to 
20980         Nullable<T>.
20981
20982 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20983
20984         * appdomain.c: Bump corlib version to 46.
20985         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20986         serialization purpose) and changed ves_icall_System_Reflection_
20987         Assembly_get_code_base signature to accept a boolean (to escape, or 
20988         not, the assembly code base).
20989
20990 2005-12-23  Dick Porter  <dick@ximian.com>
20991
20992         * icall.c: 
20993         * threads-types.h: 
20994         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20995         CreateEvent icall now returns "created" boolean parameter.
20996
20997 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20998
20999         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
21000         #76967.
21001
21002         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
21003         when attr_klass is an interface. Fixes #77045.
21004
21005 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
21006
21007         * marshal.c (emit_struct_conv): Fix previous patch.
21008         
21009         * marshal.c (emit_struct_conv): Add a check for fields with the same
21010         offset.
21011
21012 2005-12-20  Raja R Harinath  <rharinath@novell.com>
21013
21014         Fix regression in Mono.C5.
21015         * class.c (mono_class_create_generic): If 'klass' is an interface
21016         set up the interface offsets.
21017         (mono_class_is_assignable_from): Don't throw away generic arguments.
21018
21019 2005-12-19  Raja R Harinath  <rharinath@novell.com>
21020
21021         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
21022         type parameters.
21023
21024 2005-12-15  Raja R Harinath  <rharinath@novell.com>
21025
21026         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
21027         dead store.
21028         (do_mono_metadata_parse_generic_class): Don't pass the current
21029         generic context when parsing the type being instantiated: it
21030         cannot use it, anyway.
21031
21032         * loader.c (method_from_memberref): Don't inflate a signature if
21033         it doesn't contain any type parameters.
21034
21035 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
21036
21037         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
21038
21039 2005-12-14  Martin Baulig  <martin@ximian.com>
21040
21041         * class.c
21042         (mono_type_get_name_recurse): Don't return null for type
21043         parameters and open generic classes.
21044         (mono_class_setup_methods): Don't exclude generic instances.
21045         (mono_get_unique_iid): Use different IDs for different
21046         instantiations of the same generic type.
21047         (mono_class_setup_vtable): Only use setup_generic_vtable() for
21048         open generic instances; create a normal vtable for closed generic
21049         instances.
21050         (mono_class_setup_vtable_general): We're now also called for
21051         closed generic instances.
21052
21053         * reflection.c
21054         (mono_reflection_bind_generic_parameters): Correctly use
21055         mono_metadata_lookup_generic_inst() everywhere.
21056
21057 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
21058
21059         * object.c (mono_class_create_runtime_vtable): Call 
21060         mono_class_setup_vtable ().
21061
21062         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
21063         function.
21064         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
21065         #76959.
21066
21067         * loader.c (mono_loader_set_error_type_load): Print the type load
21068         warnings to the console so they are more visible to the user.
21069         (mono_loader_set_error_method_load): Ditto.
21070
21071         * reflection.c (ensure_runtime_vtable): Revert the last change as it
21072         is still broken.
21073         
21074         * reflection.c (ensure_runtime_vtable): Fix build.
21075
21076         * reflection.c (ensure_runtime_vtable): Disable an optimization which
21077         doesn't work in all cases.
21078
21079 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
21080
21081         * object.c (mono_array_new_full): Treat a single dimensional array
21082         with 0 lower bounds as an szarray. Fixes #76973.
21083
21084         * reflection.c (custom_attr_visible): Really fix this.
21085
21086 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
21087
21088         * reflection.c (custom_attr_visible): Allow nested public attributes
21089         as well.
21090
21091         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
21092         interface check.
21093
21094 2005-12-12  Raja R Harinath  <harinath@gmail.com>
21095
21096         * class.c (set_generic_param_owner): Delete.
21097         (mono_class_create_from_typedef): Don't set ->owner field of
21098         generic parameters to "param containers" of enclosing classes.
21099         * reflection.c (mono_reflection_initialize_generic_parameter):
21100         Likewise.
21101
21102 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
21103
21104         * reflection.c (custom_attr_visible): Fix build.
21105
21106 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
21107
21108         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
21109         private attributes.
21110         
21111         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
21112         handling of null parameter defaults.
21113
21114 2005-12-09  Raja R Harinath  <rharinath@novell.com>
21115
21116         * class.c (mono_class_from_generic_parameter): Don't set
21117         klass->generic_container.
21118         (my_mono_class_from_generic_parameter): Likewise.
21119
21120 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
21121
21122         * reflection.c (load_public_key): Fix a warning.
21123         (method_encode_code): Fix unaligned accesses.
21124
21125 2005-12-07  Martin Baulig  <martin@ximian.com>
21126
21127         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
21128
21129         * reflection.c
21130         (write_generic_param_entry): Encode our custom attrs.
21131
21132         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
21133
21134 2005-12-07  Martin Baulig  <martin@ximian.com>
21135
21136         * reflection.c (encode_new_constraint): Removed; we don't use the
21137         `NewConstraintAttribute' anymore.
21138
21139 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
21140
21141         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
21142         not fire a TypeResolve event when Assembly.GetType () is called.
21143
21144 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
21145
21146         Beginning of support for nullable types in the runtime. Parts of
21147         this patch are from Martin.
21148
21149         * appdomain.c (MONO_CORLIB_VERSION): Bump
21150
21151         * domain.c (mono_init_internal): get the nullable type
21152
21153         * class.c (mono_class_is_nullable): New method
21154         (mono_class_get_nullable_param): New mehod
21155         (mono_class_create_generic): In types T? set cast_class to T
21156
21157         * class-internals.h (MonoDefaults): new nullable default class
21158         (mono_class_get_nullable_param, mono_class_get_nullable_param):
21159         new methods.
21160
21161 2005-12-05  Raja R Harinath  <rharinath@novell.com>
21162
21163         * metadata.c (select_container): New.  Refactor code to select the
21164         appropriate GenericContainer given the type of generic parameter
21165         we are looking for.
21166         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
21167         not a MonoGenericContext.  Use select_container.  Update parameters.
21168         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
21169         and MONO_TYPE_MVAR.
21170         (unwrap_arrays): Remove duplicate tests.
21171         (find_generic_param): Rename from 'has_same_context'.  Now walks a
21172         generic instantiated class to find any arguments that are generic
21173         parameters.
21174         (mono_type_create_from_typespec_full): Use find_generic_param to
21175         avoid evicting some generic instantiations from the typespec
21176         cache.
21177
21178 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
21179
21180         * reflection.c: fixed writing of doubles on ARM FPA.
21181
21182 2005-12-02  Robert Jordan  <robertj@gmx.net>
21183
21184         * icall.c: Fixed EventInfo.ReflectedType (#76829).
21185
21186 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21187
21188         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
21189         least on SUSE 10 they are not the same (on debian, they are just the
21190         same thing).
21191
21192 2005-12-01  Raja R Harinath  <rharinath@novell.com>
21193
21194         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
21195         DeclaringType for VARs and MVARs.
21196         * class.c (set_generic_param_owner): Fix initialization of owner
21197         fields.
21198
21199 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21200
21201         * icall.c: fixed Enum.ToObject() to correctly convert the values.
21202
21203 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21204
21205         * threadpool.c: workaround for a bug that shows up on the Mac:
21206         select()+connect() on a blocking socket is not like it should
21207         be, so we proceed to connect() in that case, wasting the I/O
21208         threadpool thread until connect succeedes. Fixes bug #75436.
21209
21210 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21211
21212         * threadpool.c: fix typo when setting file descriptor states.
21213
21214 2005-11-28  Raja R Harinath  <rharinath@novell.com>
21215
21216         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
21217         * metadata.c (mono_metadata_parse_method_signature_full): Don't
21218         create a temporary signature container.
21219         (mono_metadata_parse_generic_param): Update to changes.
21220         (mono_type_create_from_typespec_full): Update to changes.
21221         * loader.c (method_from_memberref): Don't use a
21222         MonoGenericContainer while parsing a memberref signature.
21223         (method_from_methodspec): Remove dead-store of the 'container'
21224         variable.  It's overwritten before use.
21225
21226         * metadata.c (mono_type_create_from_typespec_full): Make debugging
21227         checks tighter.
21228         (mono_metadata_parse_generic_param): Likewise.
21229         * loader.c (find_method_in_class): Does not need a
21230         MonoGenericContainer.  Use 'mono_method_signature' rather than
21231         'mono_method_signature_full'.
21232         (find_method, mono_get_method_constrained, method_from_memberref):
21233         Update to changes.
21234
21235         * metadata.c (mono_type_create_from_typespec_full): Ensure that
21236         owner-less generic-parameters are never evicted from the typespec
21237         cache.
21238
21239         * loader.c (method_from_memberref): Don't use the current context
21240         when parsing signatures.
21241         (method_from_methodspec, mono_get_method_from_token): Update to changes.
21242
21243         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
21244         side-effects in g_assert.
21245         * loader.c (mono_get_method_from_token): Resolve klass earlier so
21246         that we don't potentially lose information.
21247
21248 2005-11-26  Dick Porter  <dick@ximian.com>
21249
21250         * icall.c:
21251         * threads.c: icalls to implement basic (ie, not named)
21252         System.Threading.Semaphore.
21253
21254 2005-11-24  Dick Porter  <dick@ximian.com>
21255
21256         * process.c
21257         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
21258         Use GetProcessId() if it's available.
21259
21260 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
21261
21262         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
21263
21264 2005-11-23  Raja R Harinath  <rharinath@novell.com>
21265             Ankit Jain  <jankit@novell.com>
21266
21267         * loader.c (mono_get_method_from_token): Initialize 'method' field
21268         of all generic parameters before parsing the signature.  Remove
21269         code that "fixed"-up MVAR references.
21270
21271 2005-11-23  Ankit Jain  <jankit@novell.com>
21272
21273         * metadata.c (mono_metadata_has_generic_params):
21274         (mono_metadata_load_generic_param_constraints):
21275         (mono_metadata_load_generic_params): Move duplicate code ...
21276         (mono_metadata_get_generic_param_row): ... here. Returns the
21277         first row-id in GenericParam table for a given owner (token).
21278         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
21279         prototype.
21280
21281 2005-11-23  Raja R Harinath  <rharinath@novell.com>
21282             Ankit Jain  <jankit@novell.com>
21283
21284         * metadata.c (mono_metadata_class_equal): Pass signature_only when
21285         comparing VARs too.
21286         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
21287         type->data.generic_param only if the type is an MVAR.
21288         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
21289         leak owner-less VARs and MVARs into managed space.
21290
21291 2005-11-21  Martin Baulig  <martin@ximian.com>
21292
21293         * class-internals.h
21294         (MonoMethod): Moved the `generic_container' here from
21295         `MonoMethodNormal' since we now also need it for
21296         `MonoMethodPInvoke';
21297         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
21298         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
21299         an union containing both `MonoMethodNormal' and
21300         `MonoMethodPInvoke'.
21301
21302         * loader.c
21303         (mono_get_method_from_token): Allow implementing generic methods
21304         as interncalls.
21305
21306         * threads.c
21307         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
21308         icall.
21309
21310 2005-11-17  Dick Porter  <dick@ximian.com>
21311
21312         * icall.c: 
21313         * process.h: 
21314         * process.c: Split the Process Start_internal icall into
21315         ShellExecuteEx_internal and CreateProcess_internal, which are
21316         called depending on whether UseShellExecute is true.  Fixes bug
21317         76670.
21318
21319         * appdomain.c (MONO_CORLIB_VERSION): Incremented
21320
21321 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
21322
21323         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
21324         'msize' parameters, use the information in 'mspec' instead.
21325         (emit_object_to_ptr_conv): Ditto.
21326
21327         * marshal.c (emit_struct_conv): Handle explicit layout structs with
21328         fields out of order. Fixes #76733.
21329
21330 2005-11-17  Ankit Jain  <jankit@novell.com>
21331
21332         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
21333
21334 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
21335
21336         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
21337           bug #76575.
21338
21339 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
21340
21341         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
21342         for types with non-auto layout. Fixes #76717.
21343
21344 2005-11-16  Ankit Jain  <jankit@novell.com>
21345
21346         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
21347         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
21348         if generic_context is null.
21349           (mono_metadata_generic_param_equal): param->owner can be null.
21350           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
21351         null.
21352
21353 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
21354
21355         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
21356         the correct value.
21357
21358 2005-11-15  Martin Baulig  <martin@ximian.com>
21359
21360         * object.c (set_value): Use mono_class_from_mono_type() instead of
21361         the hack for generic instances; fixes #76136.
21362
21363 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
21364
21365         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
21366         fields.
21367
21368         * image.c (load_metadata_ptrs): Initialize the new fields.
21369
21370         * reflection.c (create_dynamic_mono_image): Ditto.
21371
21372         * reflection.c (build_compressed_metadata): Use the new fields.
21373
21374         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
21375         icall.
21376
21377         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
21378         icall.
21379         
21380 2005-11-15  Ankit Jain  <jankit@novell.com>
21381             Raja R Harinath  <harinath@gmail.com>
21382
21383         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
21384         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
21385         new per-generic_container cache if the cached MonoType's context matches
21386         the current context.
21387           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
21388         to the expected context.
21389           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
21390
21391 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21392
21393         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
21394         we changed the signature of an icall.
21395         * icall.c: Modify to mono_double_ParseImpl return true/false 
21396         depending on the success, instead of throwing the exception. This will
21397         help us in Double.TryParse methods.
21398         
21399 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
21400
21401         * marshal.c (emit_marshal_object): Throw an exception when
21402         marshalling 'object' instead of crashing. Fixes #76696.
21403
21404 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21405
21406         * class-internals.h: Add prototype for mono_type_get_full_name ().
21407
21408 2005-11-11  Dick Porter  <dick@ximian.com>
21409
21410         * threads.c (mono_thread_manage): Make sure the main thread has
21411         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
21412
21413 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21414
21415         * loader.c (mono_loader_set_error_type_load): Log a warning to the
21416         console about the missing type.
21417         (mono_loader_set_error_method_load): Ditto.
21418
21419 2005-11-09  Miguel de Icaza  <miguel@novell.com>
21420
21421         * mono-config.c (mono_get_config_dir): Set the system defaults if
21422         none is specified.
21423
21424         * assembly.c (mono_set_dirs): New API entry point to set the
21425         assembly and the config directory in one call
21426
21427 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
21428
21429         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
21430         the ftnptr was created from a delegate in a domain other than the
21431         current domain. Fixes #75377.
21432
21433         * exception.h exception.c: Add mono_get_exception_not_supported ().
21434
21435 2005-11-08  Martin Baulig  <martin@ximian.com>
21436
21437         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
21438
21439 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
21440
21441         * security-manager.h: Added definitions to deal with strongname key 
21442         pairs bigger (and smaller) than 1024 bits.
21443         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
21444         adjust wrt the public key length being used.
21445
21446 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
21447
21448         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
21449           Windows build (r51396-51397).
21450
21451 2005-11-03  Martin Baulig  <martin@ximian.com>
21452
21453         * class.c (mono_class_setup_vtable_general): Also add generic
21454         methods to the vtable; fixes #76581.
21455
21456 2005-11-01  Miguel de Icaza  <miguel@novell.com>
21457
21458         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
21459         sure that we lookup GetString method from the System.Text.Encoding
21460         class, not the derived class or we get an empty method.
21461
21462         Fixed class #76612.
21463
21464 2005-10-25  Miguel de Icaza  <miguel@novell.com>
21465
21466         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
21467         if it has been previously set (embedders). 
21468
21469         Make mono_set_rootdir available also on Unix.
21470
21471 005-10-24  Robert Jordan  <robertj@gmx.net>
21472
21473         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
21474
21475 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
21476
21477         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
21478         only calls which are made to native code use this flag.
21479
21480         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
21481
21482 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
21483
21484         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
21485         Add support for FieldBuilders.
21486
21487 2005-10-29  Martin Baulig  <martin@ximian.com>
21488
21489         * mono-debug.c
21490         (mono_debug_using_mono_debugger): New public method; returns
21491         whether we're running inside the debugger.
21492
21493 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
21494
21495         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
21496         for Method/Constructor/FieldBuilders.
21497
21498 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
21499
21500         * reflection.c (module_add_cattrs): Save custom attributes for global methods
21501         and fields as well.
21502
21503 2005-10-26  Martin Baulig  <martin@ximian.com>
21504
21505         * mono-debug-debugger.c
21506         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
21507
21508 2005-10-24  Raja R Harinath  <harinath@gmail.com>
21509
21510         * icall.c (base64_to_byte_array): Don't pass an out-of-range
21511         integer to isspace.
21512
21513 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
21514
21515         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
21516         when passing valuetypes byref. Fixes #76502.
21517
21518 2005-10-19  Jackson Harper  <jackson@ximian.com>
21519
21520         * profiler.c: Don't put a . in front of types that are not in a
21521         namespace.
21522
21523 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
21524
21525         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
21526
21527 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
21528
21529         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
21530         #76436.
21531         (mono_marshal_get_ldflda_wrapper): Fix a warning.
21532
21533 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21534
21535         * assembly.c metadata-internals.h icall.c: Define an additional
21536         parameter for mono_assembly_name_parse_full, so we can avoid creating
21537         S.R.AssemblyName.Version when no version info wasn't passed.
21538         
21539 2005-10-09  Miguel de Icaza  <miguel@novell.com>
21540
21541         * class.c (mono_type_get_full_name): Reimplement method that was
21542         removed. 
21543
21544         * image.c: Some docs
21545
21546 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
21547
21548         * profiler.c (output_newobj_profile): Fix printing of Total memory
21549         on x86.
21550
21551 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21552
21553         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
21554
21555 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
21556
21557         * threads.c: remove debug output.
21558
21559 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21560
21561         * threads.c (mono_thread_manage): Fix crashes if more than 64
21562         threads need to be aborted. Hopefully fixes #75899.
21563
21564         * assembly.c (mono_stringify_assembly_name): New helper function.
21565
21566         * class.c: Use mono_stringify_assembly_name instead of the similar
21567         static function.
21568
21569         * assembly.h assembly.c: Add support for calling a postload search 
21570         hook if an assembly cannot be loaded.
21571
21572         * appdomain.c: Register new search hooks which call the AssemblyResolve
21573         events in AppDomain. Fixes #75231
21574
21575 2005-10-07  Martin Baulig  <martin@ximian.com>
21576
21577         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
21578         methods without debug info.
21579
21580 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
21581
21582         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
21583         wrappers.
21584
21585 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21586
21587         * file-io.c: now that we return symlinks, use lstat and, when the file
21588         is a symbolic link, stat, to get the file attributes. Also avoid the
21589         conversion to/from utf16/external.
21590
21591 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
21592
21593         * class.c (mono_class_layout_fields): Compute klass->has_references
21594         correctly if an embedded valuetype is not yet initialized. Fixes
21595         #76331.
21596
21597 2005-10-04  Martin Baulig  <martin@ximian.com>
21598
21599         * metadata.c
21600         (mono_metadata_load_generic_param_constraints): New public
21601         function; splitted the constraints loading out from
21602         mono_metadata_load_generic_params().
21603
21604         * class.c (mono_class_create_from_typedef): Call
21605         mono_metadata_load_generic_param_constraints() after setting up
21606         the type and creating our parent; fixes #75329.
21607
21608 2005-10-04  Martin Baulig  <martin@ximian.com>
21609
21610         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
21611         non-dynamic parent classes.
21612
21613 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
21614
21615         * file-io.c : win32 build fix (ETXTBSY seems not found).
21616
21617 2005-10-04  Martin Baulig  <martin@ximian.com>
21618
21619         * reflection.c
21620         (mono_image_get_methodspec_token): Make the cache actually work;
21621         fixes #75974.
21622
21623 2005-10-04  Martin Baulig  <martin@ximian.com>
21624
21625         * class.c (mono_class_name_from_token): Removed the unneccessary
21626         `MonoGenericContext *' argument.
21627
21628 2005-10-04  Martin Baulig  <martin@ximian.com>
21629
21630         * loader.c
21631         (method_from_methodspec): Make the caching work again; fixes the
21632         performance regression from #76262.
21633
21634 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21635
21636         * file-io.c:
21637         * file-io.h:
21638         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
21639         GetFileSystemEntries that performs the same work but without going
21640         into io-layer, locking, etc.
21641
21642 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
21643
21644         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
21645         ThreadState_Stopped as well. Fixes #76047.
21646
21647 2005-09-29  Martin Baulig  <martin@ximian.com>
21648
21649         * class.c
21650         (inflate_generic_context): If the new context has a `gmethod', set
21651         its `container' that that gmethod's `container'.
21652
21653         * metadata.c
21654         (mono_metadata_parse_generic_param): Simplify things;
21655         `generic_container = generic_context->container;' is just fine.
21656
21657         * loader.c (method_from_methodspec): Code cleanups.
21658
21659 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
21660
21661         * decimal.c: fix warning (and let gcc generate correct
21662         code on ARM with optimizations).
21663
21664 2005-09-28  Martin Baulig  <martin@ximian.com>
21665
21666         * loader.c
21667         (method_from_memberref): Added `MonoGenericContext *class_context'
21668         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
21669         (method_from_methodspec): If we're a memberref, use the enclosing
21670         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
21671
21672 2005-09-28  Martin Baulig  <martin@ximian.com>
21673
21674         * object.c (mono_runtime_invoke_array): Added support for
21675         MONO_TYPE_GENERICINST; fixes #75917.
21676
21677 2005-09-27  Martin Baulig  <martin@ximian.com>
21678
21679         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
21680         `k->byval_arg.type' to determine the actual type.
21681
21682         * loader.c (method_from_methodspec): Removed some hacks.
21683
21684 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
21685
21686         * class-internals.h (mono_field_is_deleted): Do the test for
21687         rtspecialname before we check the actual name of the field. This
21688         prevents us from dereferencing a pointer into the string table,
21689         saving us from accessing a few pages
21690
21691         * *.c: Replace the use of {Enter,Leave}CriticalSection with
21692         macros. This will allow a deadlock debugger to easily be plugged
21693         in.
21694
21695 2005-09-27  Martin Baulig  <martin@ximian.com>
21696
21697         * loader.c (method_from_methodspec): Create a "signature"
21698         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
21699
21700 2005-09-27  Martin Baulig  <martin@ximian.com>
21701
21702         * class.c
21703         (inflate_generic_class): Correctly set the new context's
21704         container.
21705
21706         * loader.c
21707         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
21708         instead of a `MonoGenericContext *'.
21709         (mono_method_signature_full): Take a `MonoGenericContainer *'
21710         instead of a `MonoGenericContext *'.
21711
21712         * metadata.c
21713         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
21714         instead of a `MonoGenericContext *'.
21715         (mono_metadata_parse_method_signature_full): Likewise.
21716
21717 2005-09-26  Martin Baulig  <martin@ximian.com>
21718
21719         * class.c
21720         (mono_class_from_generic_parameter): Set `klass->generic_container'
21721         (mono_class_from_generic_parameter): Likewise.
21722         (mono_bounded_array_class_get): We inherit the generic container
21723         from the element class.
21724
21725         * loader.c
21726         (find_method, find_method_in_class): Take a `MonoGenericContext *'
21727         argument rather than computing it here.
21728         (method_from_memberref): Correctly set the generic context before
21729         parsing the signature.  Fixes #75681.
21730
21731 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
21732
21733         * object.c (mono_class_has_special_static_fields): Fix warnings.
21734
21735 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21736
21737         * assembly.c: Add parse_public_key function, to
21738         par the public keys. Also added mono_assembly_name_parse_full,
21739         to define it the parsed key should be freed or not.
21740         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
21741         to parse a long format assembly name.
21742         * metadata-internals.h: Keep mono_assembly_name_parse_full as
21743         private, since calling it to preserve the key requires
21744         freeing it manually.
21745         
21746 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
21747
21748         * locales.c : removed HAVE_ICU part.
21749
21750 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
21751
21752         * object.c (mono_class_create_runtime_vtable): Avoid calling 
21753         field_is_special_static if the klass has no special static fields.
21754
21755         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
21756         (MonoCachedClassInfo): Likewise.
21757
21758         * object.c (mono_class_has_special_static_fields): New helper function.
21759
21760 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21761
21762         * class.c (mono_class_create_from_typedef): Don't call 
21763         interfaces_from_typedef_full for enums.
21764         (mono_class_create_from_typedef): Compute the base types of enums directly
21765         without calling mono_class_setup_fields ().
21766         (mono_class_find_enum_basetype): New helper function.
21767
21768         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
21769         one place inside the string heap.
21770         
21771 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
21772
21773         * class.c: locking fixes, code cleanups, some docs added.
21774         Allocate some data structures in the image mempool.
21775
21776 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21777
21778         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21779         the example code.
21780         
21781 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
21782
21783         * class-internals.h, class.c, reflection.c: reduce memory taken by
21784         MonoClass.
21785
21786 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
21787
21788         * metadata.c, metadata.h, loader.h: documentation updates, code and
21789         API cleanups.
21790
21791 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21792
21793         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21794         the example code.
21795
21796         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21797         page faults caused by the runtime while reading metadata.
21798
21799 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21800
21801         * socket-io.c: the field names were changed 3 months ago and no one
21802         realized until bug #76077 got filed!
21803
21804 2005-09-20  Martin Baulig  <martin@ximian.com>
21805
21806         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21807
21808 2005-09-20  Martin Baulig  <martin@ximian.com>
21809
21810         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21811         write the rank into the class entry.
21812
21813 2005-09-20  Martin Baulig  <martin@ximian.com>
21814
21815         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21816
21817 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21818
21819         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21820
21821         * icall.c (custom_attrs_defined_internal): New icall.
21822
21823         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21824         function.
21825         (mono_custom_attrs_construct_by_type): New helper function.
21826
21827 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21828
21829         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21830         terminate the resulting string. Fixes #76123.
21831
21832 2005-09-16  Martin Baulig  <martin@ximian.com>
21833
21834         * mono-debug.c
21835         (mono_debug_add_method): Ignore inflated methods for the moment.
21836
21837 2005-09-14  Martin Baulig  <martin@ximian.com>
21838
21839         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21840
21841 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21842
21843         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21844         return a success/failure indication.
21845         (mono_metadata_interfaces_from_typedef_full): Ditto.
21846         (get_constraints): Ditto.
21847
21848 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21849
21850         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21851         
21852         * marshal.c (emit_marshal_array): Add support for returning string
21853         arrays from delegates. Fixes #76063.
21854
21855         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21856
21857 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21858
21859         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21860         icall.
21861
21862 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21863
21864         * reflection.c icall.c: Fix after mono_get_exception_type_load
21865         signature change.
21866
21867         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21868         (mono_assembly_load_reference): Use the new helper.
21869
21870         * class-internals.h (MonoLoaderError): New structure containing 
21871         information about type loading errors.
21872
21873         * class-internals.h loader.c: Add APIs to store per-thread loader
21874         error information.
21875
21876         * loader.c class.c: Set the loader error if needed.
21877
21878         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21879
21880 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21881
21882         * decimal.c: fixed to handle the broken ARM fp format.
21883
21884 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21885
21886         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21887         broken.
21888
21889 2005-09-06  Martin Baulig  <martin@ximian.com>
21890
21891         * domain.c (supported_runtimes): Added v2.0.50727.
21892
21893 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21894
21895         * culture-info.h: reduce the size of some structures.
21896
21897 2005-09-05  Martin Baulig  <martin@ximian.com>
21898
21899         Reflect latest API changes in the August CTP.
21900
21901         * icall.c
21902         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21903         ("MonoType.HasGenericArguments"): Removed.
21904         ("MonoMethod.BindGenericParameters"): Renamed to
21905         "MakeGenericMethod".
21906         ("MethodBuilder.BindGenericParameters"): Renamed to
21907         "MakeGenericMethod".    
21908
21909 2005-09-05  Martin Baulig  <martin@ximian.com>
21910
21911         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21912
21913 2005-09-05  Martin Baulig  <martin@ximian.com>
21914
21915         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21916
21917         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21918         generic_container is non-NULL.
21919
21920 2005-09-05  Martin Baulig  <martin@ximian.com>
21921
21922         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21923
21924         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21925
21926 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21927
21928         * reflection.c (encode_locals,
21929         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21930         for large generic types.
21931
21932 2005-09-05  Martin Baulig  <martin@ximian.com>
21933
21934         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21935
21936         * class.c (mono_dup_array_type): New public method.
21937         (mono_metadata_signature_deep_dup): New public method.
21938         (dup_type): Correctly duplicate array and function types.
21939
21940 2005-09-05  Martin Baulig  <martin@ximian.com>
21941
21942         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21943
21944         * reflection.c (get_default_param_value_blobs): Handle generic types
21945         and generic methods.
21946
21947 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21948
21949         * class.c: Fixed error reporting (method/class were inversed) for 
21950         inheritance demands.
21951         * security-manager.c|h: Added the AppDomain when calling the managed
21952         System.Security.SecurityManager.InheritanceDemand method.
21953
21954 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21955
21956         * reflection.c (encode_marshal_blob): 'marshaltype' and
21957         'marshaltyperef' are alternate sources for the custom marshaler
21958         name.
21959
21960 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21961
21962         * class.c: fix creation of array classes with rank == 1
21963         (patch by Ankit Jain <jankit@novell.com>).
21964
21965 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21966
21967         * object.c: fix check for creating the bound data for arrays vs
21968         szarrays.
21969
21970 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21971
21972         * object.c: configuration file name is now based on the executable name,
21973         not the image name. Fixes bug #75931.
21974
21975 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21976
21977         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21978         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21979
21980 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21981
21982         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21983
21984 2005-08-24  Ankit Jain  <jankit@novell.com>
21985             Raja R Harinath  <rharinath@novell.com>
21986
21987         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21988           called by it recursively.
21989           (mono_class_init): Remove special case in pending_init handling, since it's
21990           superseded by the fix to mono_class_from_typeref.
21991
21992 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21993
21994         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21995         BROKEN_THREAD_START stuff.
21996
21997 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21998
21999         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
22000         trampoline.
22001
22002         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
22003         
22004         * object.c (mono_delegate_ctor): Replace the original function address with
22005         a delegate trampoline.
22006
22007 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
22008
22009         * icall.c: add boolean argument to base64_to_byte_array and 
22010         InternalFromBase64String to control whether a whitespace-only string
22011         is allowed (or should casue a FormatException to be thrown). We need
22012         this as the behavior has changed between MS.NET 1.x and 2.0, and we
22013         to match the MS behaviour in both profiles.
22014         * appdomain.c: Bump corlib version.
22015
22016 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22017
22018         This patch implements a big portion of publisher policy
22019         support, used to bind assembly versions and redirect
22020         one assembly from version A to version B.
22021
22022         * assembly.c:
22023         New GSList loaded_assembly_bindings, for storing the cached
22024         assembly bindings.
22025         (assembly_binding_maps_name): New static function for checking if a 
22026         assembly binding information maps an assembly name.
22027         (mono_assembly_binding_info_free): New function for freeing
22028         assembly binding information resources.
22029         (get_publisher_policy_info): New static function for retrieving 
22030         assembly binding information from a MonoImage.
22031         (compare_versions): New static function for comparing an assembly
22032         binding information data and the version of an assembly name.
22033         (check_policy_versions): New static function for checking if an
22034         assembly binding info mapping an assembly name is valid for it.
22035         (mono_assembly_load_publisher_policy): New static function for
22036         loading the 'policy.major.minor.MyAssembly' image for an assembly
22037         with an assembly name 'aname'.
22038         (mono_assembly_bind_version): New static function for updating
22039         assembly redirection.
22040         (mono_assembly_apply_binding): New static function for applying
22041         assembly binding.
22042         (search_binding_loaded): New static function for searching 
22043         loaded assembly binding infos in the cache domain.
22044         (mono_assembly_load_full): Don't apply assembly binding for
22045         reflection only assemblies.
22046
22047         * metadata-internals.h: Add MonoAssemblyBindingInfo,
22048         which contains information about assembly binding. Also
22049         declare signature for mono_config_parse_publisher_policy ()
22050         function, used to retrieve pub policy info.
22051         
22052         * mono-config.c:
22053         (publisher_policy_start): New static function used to parse publisher 
22054         policy config files.
22055         (publisher_policy_parser): New static MonoParseHandler containing 
22056         the functions used when parsing config files.
22057         (mono_config_parse_publisher_policy): New function for parsing
22058         publisher policy files.
22059         
22060 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
22061
22062         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
22063
22064         * marshal.c (mono_delegate_free_ftnptr): Ditto.
22065
22066         * object.c (mono_get_addr_from_ftnptr): New helper function.
22067
22068         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
22069
22070         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22071
22072 2005-08-19  Dick Porter  <dick@ximian.com>
22073
22074         * threads.c, threads.h, appdomain.c, appdomain.h,
22075         profiler-private.h, monitor.c, object.c, object-internals.h,
22076         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
22077         store the thread ID, so it can hold a 64 bit value if needed.
22078
22079 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
22080
22081         * reflection.c (mono_reflection_create_dynamic_method): Store the
22082         handle class into the method references as well so ldtoken works in
22083         dynamic methods.
22084
22085         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
22086         types.
22087
22088 2005-08-19  Ankit Jain <jankit@novell.com>
22089
22090         Fix #75847.
22091         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
22092           here rather than using the method signature of a arbitrary function
22093           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
22094           two arguments.
22095           Hack done with Harinath.
22096
22097 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22098
22099         * threadpool.c: disable printing stack traces when we get a exception
22100         in a threadpool thread. I need to do more testing to figure out which
22101         cases actually print this. Fixes bug #75828.
22102
22103 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22104
22105         * icall.c: there might be ignored whitespace after the last '='. This
22106         fixes length computation and bug #75840.
22107
22108 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
22109
22110         * assembly.c (mono_assembly_load_full): Consider .exe extension as
22111         well. Fixes #75809.
22112
22113         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
22114         #75784.
22115         
22116         * reflection.c (create_custom_attr_data): Ditto.
22117
22118 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
22119
22120         * locales.c, culture-info.h : removed RegionLCIDMap.
22121         * culture-info-tables.h : regenerated.
22122
22123 2005-08-16  Martin Baulig  <martin@ximian.com>
22124
22125         * class.c (mono_type_get_name_recurse): Small fix.
22126
22127 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
22128
22129         * locales.c : indentation fixie.
22130
22131 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
22132
22133         * object-internals.h,
22134           locales.h,
22135           locales.c,
22136           culture-info.h,
22137           icall.c : added RegionInfo table support.
22138         * culture-info-table.h : regenerated for region support.
22139
22140 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
22141
22142         * reflection.c (resolve_object): handle all kinds of MonoMethod
22143         including generic ones
22144
22145 2005-08-12  Ankit Jain <jankit@novell.com>
22146
22147         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
22148           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
22149
22150 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
22151
22152         * process.c: Don't close a thread handle when it's NULL. This is a
22153         workaround for bug #75733.
22154
22155 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
22156
22157         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
22158
22159 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
22160
22161         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
22162
22163 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22164
22165         * threadpool.c: if a work item in the thread pool has a callback that
22166         catches a exception, don't propagate it after invoking the callback.
22167         Fixes bug #75336.
22168
22169 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
22170
22171         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
22172
22173         * class-internals.h (MonoCachedClassInfo): Add some new fields.
22174
22175         * class.c (mono_class_init): Load field info lazily in the AOT case.    
22176
22177         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
22178
22179 2005-08-03  Ankit Jain  <jankit@novell.com>
22180
22181         Fix #75683.
22182         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
22183           PInvoke calling convention is 0.
22184
22185 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
22186
22187         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
22188         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
22189
22190 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
22191
22192         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
22193         to handle threads not started by the GC (patch by Michael Meeks
22194         <michael.meeks@novell.com>).
22195
22196 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
22197
22198         * reflection.c: Make buffer used in emitting types larger for some
22199         big generic types (patch by Michal Moskal).
22200
22201 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
22202
22203         * mono-debug.c: Fix some (not all) alignment problems.
22204
22205 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22206
22207         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
22208         Invoke mono_image_load_from_data_full passing the refonly
22209         parameter.
22210
22211         * assembly.c
22212         (mono_assembly_open_from_bundle): Add the refonly argument, 
22213         in order to pass it to other methods it calls to.
22214         (do_mono_assembly_open): Add the refonly argument, in order 
22215         to pass it to other methods it calls to.
22216         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
22217         the refonly parameter to it.
22218
22219         * image.c: Add loaded_images_refonly_hash and
22220         loaded_images_refonly_guid_hash to cache the reflection
22221         only loaded images.
22222         (mono_images_init): Initialize the hash tables used for
22223         caching the reflection only images.
22224         (load_modules): Invoke mono_image_open_full passing the refonly
22225         parameter to load the modules the correct way.
22226         (build_guid_table): Add the refonly argument, to re-build the 
22227         correct hash table.
22228         (do_mono_image_open): Added the refonly argument, in order to
22229         define it for the loaded image.
22230         (mono_image_loaded_full): New function, which receives an
22231         additional parameter to look for the image in the refonly or
22232         non-refonly section.
22233         (mono_image_loaded): Updated, using mono_image_loaded_full.
22234         (mono_image_loaded_by_guid_full): The same case that happens
22235         with mono_image_loaded_full.
22236         (mono_image_loaded_by_guid): Likewise.
22237         (register_image): Use the ref_only variable inside MonoImage
22238         to decide in which hash table store the current image.
22239         (mono_image_open_from_data_full): Rename
22240         mono_image_open_from_data to mono_image_open_from_data_full,
22241         adding the refonly argument, to define the ref_only variable 
22242         inside MonoImage.
22243         (mono_image_open_from_data): Return 
22244         mono_image_open_from_data_full.
22245         (mono_image_open_full): Rename mono_image_open to
22246         mono_image_open_full, receiving the new refonly argument,
22247         to pass it to inner methods.
22248         (mono_pe_file_open): Update this function, to open
22249         a MonoImage as a non-refonly image.
22250         (mono_image_close): Use the refonly variable inside
22251         MonoImage to remove the image from the correct caches.
22252
22253         * image.h: Add the signatures of mono_image_open_full,
22254         mono_image_open_from_data_full, mono_image_loaded_full,
22255         mono_image_loaded_by_guid_full.
22256
22257         * metadata-internals.h: Add the ref_only field to 
22258         MonoImage.
22259         
22260 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22261
22262         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
22263         Fix the last behavior, which used to load the assemblies and
22264         extract MonoReflectionAssemblyName information, instead of
22265         extract it from the metadata tables. Needed for Reflection
22266         Only assemblies.
22267         
22268 2005-07-29  Martin Baulig  <martin@ximian.com>
22269
22270         * mono-debug-debugger.c
22271         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
22272         not initialized.
22273
22274         * mono-debug.c
22275         (mono_debug_address_from_il_offset): Check whether we have
22276         debugging support before attempting to take the lock.
22277         (mono_debug_source_location_from_address): Likewise.
22278         (mono_debug_source_location_from_il_offset): Likewise.
22279         (mono_debug_il_offset_from_address): Likewise.
22280         (mono_debug_address_from_il_offset): Likewise.
22281
22282 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
22283
22284         * class.c (mono_class_from_name_case): Add support for dynamic images.
22285         Fixes #75650.
22286
22287         * object.c (mono_class_compute_gc_descriptor): Add a workaround
22288         for #75479.
22289
22290 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
22291         
22292         * reflection.c (mono_method_get_object): Fix warning.
22293
22294 2005-07-28  Martin Baulig  <martin@ximian.com>
22295
22296         * mono-debug.c
22297         (mono_debug_add_wrapper): Also write the wrapper type.
22298
22299 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
22300
22301         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
22302         
22303         * class.c (mono_class_init): Avoid reading nested classes if the AOT
22304         data indicates the class has none.
22305
22306 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
22307
22308         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
22309         loader lock with the debugger lock. Prevents deadlocks for beagle.
22310
22311         Beagle can now run on an smp box for a weekend without any
22312         issues. Woohoo!
22313
22314 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
22315
22316         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
22317         in a module. Fixes #75629.
22318
22319 2005-07-26  Martin Baulig  <martin@ximian.com>
22320
22321         * mono-debug.c (mono_debug_add_wrapper): New static method.
22322         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
22323         interncall or a wrapper.
22324
22325         * mono-debug.h (MonoDebugWrapperData): New public typedef.
22326         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
22327         (MONO_DEBUGGER_VERSION): Bump to 51.
22328
22329         * mono-debug-debugger.c
22330         (mono_debugger_add_type): Removed this empty function.
22331         (mono_debugger_add_method): Likewise.
22332
22333 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
22334
22335         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
22336         before accessing method->slot.
22337
22338 2005-07-21  Jb Evain  <jbevain@gmail.com>
22339
22340         * reflection.c (method_encode_clauses/class): Handle filters clauses.
22341         Fixes #75010.
22342
22343 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
22344
22345         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
22346         #75587.
22347
22348 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
22349
22350         * image.h image.c: Add mono_image_get_guid () API function.
22351
22352 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
22353
22354         There were issues when multiple threads tried to load
22355         assemblies. A deadlock was created between assemblies_mutex and
22356         mono_domain_assemblies_lock. This fixes the issue by making the
22357         assembly ref counting be lock free. See bug 75586.
22358         
22359         * image.c (mono_image_close): The add ref function here was using
22360         Interlocked operations while the unref was using a mutex and a
22361         --. I don't think this was ever a bug that would be exposed in a
22362         non-pendantic way (ie, by an embedder doing a ref on one thread
22363         and an unref on another), but for the sake of correctness, this is
22364         now Interlocked.
22365
22366         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
22367         (mono_assembly_load_reference): Call mono_assembly_addref rather
22368         than touching the refcount ourselves.
22369         (mono_assembly_close): Use InterlockedDecrement to unref the
22370         assembly. Don't acquire the lock unless it is actually needed.
22371
22372 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
22373
22374         * class.c (mono_class_layout_fields): Fix calculation of has_references
22375         for generic types.
22376
22377 2005-07-12  Martin Baulig  <martin@ximian.com>
22378
22379         Applying a patch from Michal Moskal <malekith@nemerle.org>.
22380
22381         * metadata.c
22382         (mono_type_hash): Provide better hashing for generic instances.
22383         (mono_generic_inst_hash): Improve hashing.
22384         (mono_generic_class_hash): Likewise.
22385
22386         * reflection.c (mymono_metadata_type_hash): Improve hashing for
22387         generic instances.
22388
22389 2005-07-12  Martin Baulig  <martin@ximian.com>
22390
22391         * reflection.c (mono_reflection_create_runtime_class): Remove the
22392         hack for generic type definitions and non-`Run' assemblies.
22393         (mono_reflection_bind_generic_parameters): Also use
22394         `klass->wastypebuilder' to check for TypeBuilders.
22395
22396 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
22397
22398         * class.c (mono_class_layout_fields): Fix calculation of has_references
22399         for generic types.
22400
22401         * class.c (inflate_generic_class): Fix a leak.
22402         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
22403         for generic types.
22404
22405 2005-07-11  Martin Baulig  <martin@ximian.com>
22406
22407         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
22408         on error.
22409
22410 2005-07-11  Martin Baulig  <martin@ximian.com>
22411
22412         * loader.c (find_method): Also lookup in
22413         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
22414
22415 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22416
22417         * appdomain.c (mono_domain_unload): Don't free the error message
22418         before passing it to mono_get_exception_...
22419
22420         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
22421         
22422 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
22423
22424         * threads.c: try to better guess an available RT signal (bug #75387).
22425
22426 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22427
22428         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
22429         and CACHE_OBJECT.
22430
22431 2005-07-07  Martin Baulig  <martin@ximian.com>
22432
22433         * class.c (mono_type_get_name_full): Return NULL for
22434         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
22435         fixes #75408.
22436
22437 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22438
22439         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
22440         exit the appdomain as well being aborted.
22441
22442         * threadpool.c: Create all threadpool threads inside the root appdomain, and
22443         change back to the root domain after calling managed code. This enables
22444         appdomains using threadpools to be unloaded.
22445
22446 2005-07-07  Martin Baulig  <martin@ximian.com>
22447
22448         * class-internals.h
22449         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
22450         into `MonoDynamicGenericClass' since we only need it for dynamic
22451         types.
22452
22453         * reflection.c (mono_class_bind_generic_parameters): We don't need
22454         to compute the `parent' here.
22455
22456 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
22457
22458         * culture-info-table.h : regenerated.
22459
22460 2005-07-06  Martin Baulig  <martin@ximian.com>
22461
22462         * icall.c
22463         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
22464
22465         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
22466
22467 2005-07-06  Martin Baulig  <martin@ximian.com>
22468
22469         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
22470         we're doing a signature-only comparision; fixes #74945.
22471
22472 2005-07-06  Martin Baulig  <martin@ximian.com>
22473
22474         * class-internals.h (MonoGenericClass): Moved some things out into
22475         a new `MonoInflatedGenericClass' type.  
22476         (MonoInflatedGenericClass): New type; the `klass' of a
22477         `MonoGenericClass' is now computed lazyly in
22478         mono_get_inflated_generic_class().      
22479
22480         * class.c (mono_get_inflated_generic_class): New public function.
22481         (mono_class_inflate_generic_method): Removed the unused
22482         `MonoClass *' argument.
22483         (setup_generic_vtable): Don't call mono_get_inflated_method() on
22484         all the methods.
22485         (mono_class_create_generic): Make this static and merge it with
22486         mono_class_create_generic_2(); we're now called automatically from
22487         mono_get_inflated_generic_class().
22488
22489         * loader.c (mono_method_signature): Call
22490         mono_get_inflated_method() here.
22491
22492 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
22493
22494         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
22495         type of fields with RVA.
22496
22497         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
22498         for this pseudo class.
22499         (my_mono_class_from_generic_parameter): Likewise.
22500         (mono_class_init): Allow interfaces to have cctors.
22501
22502 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22503
22504         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
22505         lazily for AOT methods.
22506
22507 2005-07-05  Martin Baulig  <martin@ximian.com>
22508
22509         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
22510         returns FALSE for a successful match, not TRUE.
22511
22512 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22513
22514         * loader.c (mono_method_get_index): Optimize this a bit.
22515
22516 2005-07-04  Martin Baulig  <martin@ximian.com>
22517
22518         * class.c
22519         (class_compute_field_layout): Move the check for generic type
22520         definitions into mono_class_layout_fields().  Fixes #74684.
22521         (mono_class_from_generic_parameter): Correctly compute
22522         `klass->parent'; fixes #75457.
22523
22524         * reflection.c (register_assembly, register_module): Make sure
22525         `domain->rejobject_hash' is already created.
22526
22527 2005-07-02  Martin Baulig  <martin@ximian.com>
22528
22529         * class-internals.h
22530         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
22531         `MonoDynamicGenericClass'.      
22532
22533 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
22534
22535         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
22536         returned by a field getter is null, since null is a valid value.
22537
22538 2005-07-01  Martin Baulig  <martin@ximian.com>
22539
22540         * reflection.c (mono_reflection_generic_class_initialize): Update
22541         the `dgclass->fields [i].parent' to the correct class.
22542         (mono_image_get_fieldref_token): Use the declaring type, not the
22543         reflected type.
22544
22545 2005-07-01  Martin Baulig  <martin@ximian.com>
22546
22547         * loader.c (find_method): Also look in the interfaces; fixes #75429.
22548
22549 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
22550
22551         * threads.c (thread_cleanup): assert that thread != NULL
22552         (wait_for_tids_or_state_change): We were using the wrong variable
22553         when accessing wait->threads. `i' was always out of the bounds of
22554         the array.
22555
22556 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22557
22558         * loader.c: map user32 and kernel32 to libMonoSupportW
22559
22560 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
22561
22562         * appdomain.c (unload_thread_main): Mark this as WINAPI.
22563
22564 2005-06-28  Martin Baulig  <martin@ximian.com>
22565
22566         * loader.c (method_from_methodspec): Fix #75334.
22567
22568 2005-06-28  Martin Baulig  <martin@ximian.com>
22569
22570         Fix #74953 - Arrays now implement the generic IList<T> interface
22571         on the 2.0 platform.
22572
22573         * class-internals.h (MonoDefaults): Added `generic_array_class'.
22574
22575         * reflection.c (mono_class_bind_generic_parameters): New public
22576         function; similar to mono_reflection_bind_generic_parameters(),
22577         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
22578
22579         * domain.c (mono_init_internal): Try to initialize.
22580         `mono_defaults.generic_array_class' here; this'll only succeed if
22581         we're using the 2.0 corlib.
22582
22583         * icall.c
22584         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
22585         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
22586         (mono_lookup_internal_call): Added support for nested classes.
22587
22588         * loader.c
22589         (mono_get_method_from_token): Set `result->signature->pinvoke' if
22590         we're an interncall and have generic arguments.
22591
22592         * class.c
22593         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
22594         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
22595         instance of System.Array.InternalArray<T> for arrays, so they
22596         implement the generic IList<T> interface.
22597
22598 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
22599
22600         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
22601         (chastamar@yahoo.com). Fixes #75374.    
22602
22603 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
22604
22605         * culture-info-table.h: regenerated.
22606
22607 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22608
22609         * icall.c: handle spaces correctly for base64 strings.
22610
22611 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
22612
22613         * *.c: Kill some warnings.
22614
22615 2005-06-23  Duncan Mak  <duncan@novell.com>
22616
22617         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
22618         that this builds on Solaris 10 (x86).
22619
22620 2005-06-23  Martin Baulig  <martin@ximian.com>
22621
22622         * class.c
22623         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
22624         generic type definitions.
22625
22626 2005-06-23  Martin Baulig  <martin@ximian.com>
22627
22628         Fix #75331.
22629
22630         * metadata.c (mono_class_get_overrides): Renamed to
22631         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
22632         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
22633         pass it to mono_get_method_full().
22634
22635 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
22636
22637         * reflection.c (mono_reflection_create_runtime_class): take the
22638         mono_domain_lock in this method. Prevents deadlocks
22639
22640 2005-06-22  Martin Baulig  <martin@ximian.com>
22641
22642         * loader.c (method_from_methodspec): Fix #75330.
22643
22644 2005-06-22  Martin Baulig  <martin@ximian.com>
22645
22646         * reflection.c (type_get_qualified_name): Use
22647         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
22648         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
22649         argument; use it if we don't have an assembly name.
22650
22651 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
22652
22653         * object.c: In mono_message_init, set "copy out" flag for in
22654         parameters with the [Out] flag.
22655
22656 2005-06-21  Martin Baulig  <martin@ximian.com>
22657
22658         * class.c
22659         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
22660         and MONO_TYPE_PTR.
22661
22662 2005-06-21  Martin Baulig  <martin@ximian.com>
22663
22664         * class.c (mono_class_init): Don't initialize `class->fields' for
22665         generic instances since they're initialized again in
22666         compute_field_layout(). 
22667         (compute_field_layout): Set the field's `generic_info' here; fix
22668         #75320. 
22669
22670 2005-06-21  Martin Baulig  <martin@ximian.com>
22671
22672         * class-internals.h
22673         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
22674
22675         * metadata.c (mono_metadata_generic_method_equal): Also
22676         distinguish the `generic_class'; fixes #75334.
22677
22678 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22679
22680         * domain.c:
22681         * appdomain.c:
22682         * domain-internals.h:
22683         * reflection.c: 'domain_assemblies' field is now protected by its own
22684         lock. Don't call into managed code to run the AssemblyLoad event if we
22685         now there are no registered delegates for it.
22686
22687 2005-06-20  Martin Baulig  <martin@ximian.com>
22688
22689         * class.c (mono_class_is_assignable_from): Use a custom version of
22690         mono_class_has_parent() to make things work for generic instances;
22691         fix #75300.
22692
22693 2005-06-20  Martin Baulig  <martin@ximian.com>
22694
22695         * loader.c (method_from_methodspec): Apply a patch from
22696         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
22697
22698 2005-06-20  Martin Baulig  <martin@ximian.com>
22699
22700         * class.c (mono_class_init): Reverted Zoltan's last change; it
22701         breaks generics.
22702
22703 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
22704
22705         * threads.c (wait_for_tids_or_state_change): Add missing locking.
22706
22707 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22708
22709         * socket-io.c: fix the index in the socket array for writable/error
22710         sockets. Fixes bug #75306.
22711
22712 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
22713
22714         * class.c (mono_class_init): Allow interfaces to have static ctors.
22715
22716 2005-06-17  Martin Baulig  <martin@ximian.com>
22717
22718         * loader.c (method_from_methodspec): Use `context->container' when
22719         parsing the `gmethod->inst'.
22720
22721 2005-06-17  Martin Baulig  <martin@ximian.com>
22722
22723         * class.c (mono_type_get_name_recurse): Don't add the assembly
22724         name for type arguments.
22725
22726 2005-06-15  Martin Baulig  <martin@ximian.com>
22727
22728         * reflection.c (mono_image_get_inflated_method_token): Encode
22729         correct klass; fixes #75260.
22730
22731 2005-06-13 Michal Moskal <malekith@nemerle.org>
22732
22733         * icall.c: Make GetCorrespondingMethod/Constructor take
22734         MonoReflectionMethod method not MonoMethod. Removed
22735         MonoType.GetCorrespondingField, and make
22736         MonoGenericType.GetCorrespondingField take name not
22737         MonoClassField.
22738
22739 2005-06-13  Michal Moskal <malekith@nemerle.org>
22740
22741         * reflection.c (field_encode_signature, encode_locals):
22742          Make sizes of buffers for types larger (for big generic types).
22743          (create_generic_typespec,
22744          mono_reflection_sighelper_get_signature_local,
22745          mono_reflection_sighelper_get_signature_field):
22746          Add asserts for too small buffers.
22747
22748 2005-06-15  Martin Baulig  <martin@ximian.com>
22749
22750         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
22751         if our parent is not a dynamic type.
22752
22753 2005-06-15  Martin Baulig  <martin@ximian.com>
22754
22755         * class-internals.h (MonoTypeNameFormat): New enum.
22756
22757         * class.c
22758         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
22759         (mono_type_get_full_name): Removed.
22760         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
22761         argument instead of the boolean's.
22762
22763         * icall.c (ves_icall_System_MonoType_getFullName):
22764         Added `gboolean assembly_qualified'.    
22765
22766         * reflection.h
22767         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
22768
22769         * reflection.c (mono_reflection_parse_type): Parse the new type
22770         name format.
22771
22772 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22773
22774         * icall.c: no need to convert from utf16 to utf8 and then back again
22775         after the call to GetLogicalDrives.
22776
22777 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22778
22779         * icall.c: frombase64. Fix problems exposed by new tests.
22780
22781 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22782
22783         * icall.c: added internal calls for converting char [] and strings in
22784         base64 into byte [].
22785
22786 2005-06-10  Martin Baulig  <martin@ximian.com>
22787
22788         * class.c (mono_class_create_generic_2): Read the nested classes
22789         from the metadata rather than from `gklass->nested_classes' since
22790         `gklass' might not be initialized yet.
22791
22792 2005-06-09  Duncan Mak  <duncan@novell.com>
22793
22794         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22795         all public headers. Fixes #74919.
22796
22797 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
22798
22799         * domain.c: The key for proxy_vtable_hash is now a pointer
22800         array. Added new GHashFunc and GCompareFunc functions for this.
22801
22802         * class.h: The list of interfaces in MonoRemoteClass is known in
22803         advance and can't grow (we create a new MonoRemoteClass if needed),
22804         so now the interface array can be allocated together with
22805         MonoRemoteClass.
22806         
22807         * object.c: Added a new method create_remote_class_key.
22808         Fixed mono_remote_class so it does not depend on
22809         mono_upgrade_remote_class.
22810         Removed extend_interface_array.
22811         Added new method clone_remote_class(), which makes a copy of a remote
22812         class and adds a new interface or class to it.
22813         mono_upgrade_remote_class() now creates a new remote class (or gets
22814         it from the cache) if an vtable upgrade is needed. In this way
22815         we make sure that other objects sharing the same remote class
22816         don't get the new vtable with unwanted interfaces.
22817         
22818         * object-internals.h:
22819         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22820         
22821         * marshal.c: Track changes in mono_upgrade_remote_class().
22822
22823 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22824         * icall.c: Add runtime methods for obtaining members of inflated
22825         class, which were created from supplied non-inflated members. It
22826         is used in internal Get{Method,Constructor,Field} methods in
22827         System.Type
22828
22829 2005-06-09  Martin Baulig  <martin@ximian.com>
22830
22831         * reflection.c
22832         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22833
22834 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22835         * reflection.c (mono_image_basic_init): Define
22836         Version in MonoDynamicAssembly. 
22837         
22838 2005-06-08  Martin Baulig  <martin@ximian.com>
22839
22840         Fix #75136.
22841
22842         * loader.c
22843         (mono_method_signature_full): New public method; takes a
22844         `MonoGenericContext *'.
22845         (find_method): Use mono_method_signature_full() and pass the
22846         klass'es context to it.
22847
22848         * class.c (mono_class_is_inflated_method): Use
22849         mono_method_signature_full() and pass the context to it.
22850
22851 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22852
22853         * object.c: add proper locking in mono_remote_class_vtable(),
22854         fixes possible memory corruption.
22855
22856 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22857
22858         * marshal.c (mono_remoting_marshal_init): set
22859         initialized after initialization.
22860
22861 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22862
22863         * locales.c : hush.
22864
22865 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22866
22867         * object.c (extend_interface_array): fix really silly
22868         memory corrupting / comparison bug.
22869
22870 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22871
22872         * reflection.c: Functions added to support the creation
22873         of CustomAttributeData, which includes Attribute data
22874         used by ReflectionOnly methods.
22875
22876         * reflection.h:  mono_reflection_get_custom_attrs_data and
22877          mono_custom_attrs_data_construct added (functions exposed).
22878
22879          * icall.c: Added mono_reflection_get_custom_attrs_data
22880          as icall.
22881         
22882 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22883
22884         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22885         lupus's request.
22886
22887 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22888
22889         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22890
22891         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22892         dynamic DllImportAttribute.
22893
22894         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22895         dynamic DllImportAttribute.
22896
22897         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22898         Fixes #75162.
22899
22900 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22901
22902         * threads.c: avoid segfault when an unstarted thread is aborted.
22903
22904 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22905
22906         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22907         Returns the name and version of the runtime for reporting.
22908
22909 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22910
22911         * appdomain.c: bump corlib version.
22912         * object-internals.h: new field in MonoReflectionAssembly.
22913
22914 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22915
22916         * object-internals.h: Carlos forgot to add this field.
22917
22918 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22919
22920         * icall.c: Added create_version to create instances
22921         of Version of MonoReflectionAssemblyName. This change helps
22922         the AssemblyName tests to keep running fine.
22923         
22924 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22925   
22926         * object.c (mono_method_return_message_restore): A somehow less
22927         intrusive fix for #75138.
22928
22929 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22930
22931         * object.c (mono_method_return_message_restore): Fix computation
22932         of expected number of out args.
22933
22934 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22935
22936         * reflection.c (mono_image_get_method_info): Fix the case when the
22937         charset is empty.
22938
22939 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22940
22941         * object.c: Added missing null check in
22942           mono_method_return_message_restore.
22943
22944 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22945
22946         * reflection.c (mono_image_get_method_info): Handle the case when
22947         dllentry is empty.
22948
22949 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22950
22951         * object.c: When creating the vtable for a proxy, take into account
22952         all inherited interfaces, not only the ones registered in
22953         iclass->interfaces. This fixs bug #74996.
22954         Also, in mono_method_return_message_restore, verify that the array
22955         of out args has the expected lengh.
22956
22957 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22958
22959         * socket-io.c: update the timeout in Poll when the call is interrupte.
22960
22961 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22962
22963         * socket-io.c: support abort/suspend in Select_internal after last
22964         change.
22965
22966 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22967
22968         * threadpool.c: remove warning.
22969
22970 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22971
22972         * icall.c:
22973         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22974         removing the 1024 limit from select(). Runtime part of the fix for
22975         bug #71203.
22976
22977 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22978
22979         * socket-io.c: when resolving the addresses for the same
22980         host returned by gethostname(), get the local IPs from the interface
22981         list. Loopback addresses are discarded if the are interfaces up with
22982         non-loopback ones. Fixes bug #63265.
22983
22984 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22985
22986         * appdomain.c, verify.c, object-internals.h, reflection.c:
22987         bumped corlib number to 36, and added new extra_flags field
22988         to ReflectionMethodBuilder and friends.  Fixes #75060.
22989
22990 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22991
22992         * gc.c: register a new weak link only if the object is non-null
22993         (fixes bug#75047).
22994
22995 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22996
22997         * culture-info.h : short time pattern too.
22998
22999 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
23000
23001         * culture-info.h : expand long time pattern string length.
23002
23003 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
23004
23005         * culture-info-table.h : update (more French date format; #72788).
23006
23007 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
23008
23009         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
23010         the method is static. Fixes #75029.
23011
23012 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
23013
23014         * reflection.c: Update the table_idx field of method builders after
23015         saving the module, since it can change. This is a workaround for
23016         bug #74914. 
23017
23018 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
23019
23020         * culture-info-table.h : update (additional French date format).
23021
23022 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
23023
23024         * icall.c (ves_icall_type_Equals): Revert last change.
23025         
23026         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
23027
23028         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
23029
23030 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
23031
23032         * class-internals.h: Added executioncontext_class field to 
23033         MonoDefaults structure.
23034         * domain.c: Cache System.Threading.ExecutionContext class in 
23035         mono_defaults.
23036         * object.c: Capture the ExecutionContext for asynchroneous calls in
23037          mono_async_result_new.
23038         * object-internals.h: Added execution_context and original_context 
23039         fields to MonoAsyncResult. Added execution_context to MonoThread.
23040         * security-manager.c|.h: Added mono_get_context_capture_method to 
23041         return the capture method (if required by the security manager or by
23042         the framework version used).
23043         * threadpool.c: Apply capture (if present) ExecutionContext in 
23044         mono_async_invoke and revert to original context after it completes.
23045
23046 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
23047
23048         * culture-info-table.h : updated (real hacky solution for zh-CHT).
23049
23050 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
23051
23052         * culture-info-table.h : zh-CHT related workaround.
23053
23054 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
23055
23056         * marshal.c (emit_marshal_custom): Add some error checking and call the
23057         methods in the ICustomMarshaler interface. Fixes #74875.
23058         
23059         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
23060         native->managed wrappers.
23061
23062 2005-05-12  Martin Baulig  <martin@ximian.com>
23063
23064         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
23065         here and use the loader lock.
23066
23067         * mono-debug.c: Properly lock when the debugger is not attached.
23068         (mono_debug_init): Release the initial lock if we're not running
23069         in the debugger.
23070
23071 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
23072
23073         * marshal.c (emit_marshal_custom): Pass through NULL values without
23074         calling the custom marshalling routines.
23075
23076         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
23077         conversion in structures. Fixes #74882.
23078
23079 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
23080
23081         * culture-info-table.h : zh-* cultures were missing.
23082
23083 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
23084
23085         * threads.c: Added a new event background_change_event which is signaled
23086         when a thread changes its background mode.
23087         Moved here several checks previously done in managed code. The checks
23088         require the thread lock, and using the thread lock in managed code
23089         can result in deadlocks.
23090         Merged Start_internal and Thread_internal into a single method. Now 
23091         Thread_internal does all work of creating and starting a thread.
23092         Added icalls for setting and getting the state of the object. Moved from
23093         managed code to avoid locking there.
23094         Added wait_for_tids_or_state_change() which is called instad of
23095         wait_for_tids when waiting for non-backround threads to end. This method
23096         will return if one of the threads ends or the background_change_event
23097         is signaled.
23098         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
23099         the background mode. This method signals the background_change_event
23100         event.
23101         * icall.c:
23102         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
23103         removed Start_internal.
23104         
23105 2005-05-11  Martin Baulig  <martin@ximian.com>
23106
23107         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
23108         to order of some fields to get proper alignment on 64-bit machines.
23109
23110 2005-05-11  Martin Baulig  <martin@ximian.com>
23111
23112         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
23113         changes as they're broken and completely fuck up the debugger.
23114
23115         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
23116
23117 2005-05-10  Martin Baulig  <martin@ximian.com>
23118
23119         * reflection.c (mono_reflection_generic_class_initialize): Don't
23120         call mono_class_setup_parent() here.
23121
23122 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23123
23124         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
23125         send/receive timeout use an integer in milliseconds. We were using a
23126         struct timeval.
23127
23128 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23129
23130         * locales.c:
23131         (internal_get_cultures): reserve the first slot of the array for the
23132         InvariantCulture, which will be filled in managed code.
23133
23134 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
23135
23136         * reflection.c (mono_image_fill_module_table): Initialize the
23137         GENERATION field as well.
23138
23139 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23140
23141         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
23142         Monitor.Enter on the object.
23143
23144 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
23145
23146         * threads.c: Enable the wait for running threads when exiting.
23147         * icall.c: Suspend all threads before exiting.
23148
23149 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
23150
23151         * assembly.c (mono_assembly_load_reference): Fix warning.
23152
23153 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23154
23155         * threadpool.c: changed the default number of threads per cpu. From now
23156         on, the default will be 20 + (5 * number of cpus) instead of 50.
23157
23158 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
23159
23160         * loader.c (mono_method_get_signature_full): Add locking here.
23161
23162 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
23163
23164         * appdomain.c: Moved methods for parsing and freeing assembly
23165         names to assembly.c.
23166         * assembly.c, domain-internals.h: Created public methods for parsing
23167         assembly names. Fixed mono_assembly_load_with_partial_name:
23168         it now finds the best match, taking into account the version,
23169         token and culture specified in the partial name. Also return
23170         the latest version if no version information is specified.
23171
23172 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
23173
23174         * threadpool.c: replace check for SocketAsyncCall class.
23175
23176 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23177
23178         * threadpool-internals.h:
23179         * Makefile.am: added threadpool-internals.h
23180
23181         * threadpool.c: call mono_unhandled_exception on exceptions not handled
23182         that happen in threadpool threads (tested on MS).
23183         (mono_thread_pool_remove_socket): new function that dispatch any pending
23184         AIO call on a socket that is closing. By now only epoll really needs it,
23185         as select/poll wake up when the socket closes.
23186
23187
23188         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
23189
23190 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
23191
23192         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
23193
23194 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
23195
23196         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
23197
23198 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
23199
23200         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
23201         has an abort request, convert it into a suspend request.
23202
23203 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
23204
23205         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
23206         warning for the usage of `UnmanagedFunctionPointerAttribute' which
23207         is not supported yet.
23208
23209 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23210
23211         * image.c: register assemblies loaded from data (bundles) in the loaded
23212         assemblies hash. Fixes bug #74772.
23213
23214 2005-04-29  Martin Baulig  <martin@ximian.com>
23215
23216         * class.c (mono_type_get_name_recurse): Update to the new naming
23217         schema from the latest .NET 2.x beta2.
23218         (mono_class_setup_vtable_general): If we're a generic instance,
23219         copy the vtable from our generic type definition and inflate all
23220         the methods in it.
23221
23222         * loader.c (find_method): Update to the new naming schema from the
23223         latest .NET 2.x beta2.
23224
23225 2005-04-29  Raja R Harinath  <harinath@gmail.com>
23226
23227         * class.c (mono_class_init): Add a mono_loader_unlock to the
23228         #74734 fix.
23229
23230 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
23231
23232         * icall.c (ves_icall_System_Environment_Exit): Remove the 
23233         suspend_all_other_threads () call for the time being, since it can hang.
23234
23235         * threads.c (mono_thread_manage): Similarly, disable the waiting for
23236         the background threads to exit, since it can also hang.
23237
23238         * class.c (mono_class_init): Applied patch from Ankit Jain 
23239         (radical@gmail.com). Avoid pending init errors when a field refers
23240         to a nested class using a typeref. Fixes #74734.
23241
23242         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
23243         this for dynamic modules.
23244
23245 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23246
23247         * threads.c: don't wait for threads that are in the process of aborting
23248         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
23249         and waiting for background threads to finish. This makes xsp and
23250         mod-mono-server exit without random length delays and/or hangs.
23251
23252 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23253
23254         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
23255
23256 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
23257
23258         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
23259         dynamic types to prevent infinite loops. Fixes #74727.
23260
23261         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
23262         ..._is_assignable_to.
23263
23264 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
23265
23266         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
23267
23268 2005-04-25  Martin Baulig  <martin@ximian.com>
23269
23270         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
23271
23272         * domain.c
23273         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
23274
23275         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
23276
23277         * reflection.c (build_compressed_metadata): Set metadata header
23278         version to 2.0.
23279
23280 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
23281
23282         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
23283         number into an integral and a decimal part. Fixes #70473.
23284
23285         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
23286
23287 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
23288
23289         * culture-info-table.h : reflected the latest locale-builder output.
23290
23291 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23292
23293         * threadpool.c: check for SuspendRequested too when deciding if
23294         mono_thread_interruption_checkpoint should be called.
23295
23296 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23297
23298         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
23299         * threads.c: remove interruption_mutex and use Interlocked instead. When
23300         suspending all the threads, wait for all the suspended events at once.
23301         If we're shutting down and get an APC that is going to be queued,
23302         call mono_thread_execute_interruption immediately, as the thread might
23303         be sleeping on a pthread condition or mutex.
23304
23305         * icall.c: call mono_runtime_set_shutting_down before suspending the
23306         threads.
23307
23308         Fixes bug #74693. And now xsp is happier when exiting.
23309
23310 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
23311
23312         * loader.c (mono_stack_walk): Fix #74690.
23313
23314 2005-04-22  Martin Baulig  <martin@ximian.com>
23315
23316         * mono-debug.h (MonoDebugMethodJitInfo): Added
23317         `MonoDebugMethodJitInfo *jit'.
23318
23319         * mono-debug.c (mono_debug_read_method): Cache the
23320         MonoDebugMethodJitInfo in `address->jit'.
23321         (mono_debug_free_method_jit_info): New public method.
23322
23323 2005-04-22  Martin Baulig  <martin@ximian.com>
23324
23325         * class.c (mono_class_is_assignable_from): Disallow
23326         type parameter -> interface.
23327
23328 2005-04-21  Dick Porter  <dick@ximian.com>
23329
23330         * threads.c (mono_thread_create): Turn an assertion into an error.
23331
23332 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
23333
23334         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
23335         
23336         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
23337         Fix some gcc 4.0 warnings.
23338
23339 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
23340
23341         * file-io.c: fix alt dir separator char on unix systems
23342         and cleanup (fixes bug #71214).
23343
23344 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
23345
23346         * marshal.c: Use CALLVIRT instead of CALL when dispatching
23347         a call to a remote domain, since the method may be an
23348         interface method in the client domain. This fixes bug #74192.
23349
23350 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23351
23352         * threadpool.c: recv/send are now performed before going back to managed
23353         code to save one transition.
23354
23355 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23356
23357         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
23358
23359         * metadata/threadpool.c: removed hack to workaround the bug above.
23360
23361         Fixes bug #74618.
23362
23363 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
23364
23365         * reflection.c reflection.h: Fix handling of parameter defaults in
23366         dynamic methods. Also fixes handling of parameter attributes.
23367         Fixes #74609.
23368
23369         * mono-debug.c (mono_debug_close_image): Fix warning.
23370
23371 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23372
23373         * socket-io.h: replaced old unused field with new 'blocking'.
23374         * threadpool.c: restore socket blocking state on windows(tm).
23375
23376 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
23377
23378         * icall.c: don't return the codebase in the AssemblyName[] returned by
23379         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
23380         * object-internals.h: Removed FIXME (fields were presents) and fixed
23381         versioncompat declaration.
23382
23383 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23384
23385         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
23386         not closed, so don't cleanup when it happens.
23387
23388 2005-04-13  Chris Toshok  <toshok@ximian.com>
23389
23390         * mono-debug-debugger.h: change prototype for
23391         mono_debugger_lookup_type.
23392
23393         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
23394         this function, although it should probably be named
23395         mono_debugger_init_type.
23396
23397 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23398
23399         * threadpool.c: fix non-AIO case.
23400
23401 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
23402
23403         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
23404         the built-in profiler to measure just JIT compilation times.
23405
23406 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23407
23408         * threadpool.c: the epollfd might be closed by another thread at
23409         any time, so ignore EBADF at treat it as a "we're closing" sign.
23410
23411 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23412
23413         * threadpool.c: release the semaphores with a count equals to the number
23414         of working threads in both IO and regular pools. Fixed typo that messed
23415         up the count of IO pool threads. Don't initialize the pipe handles if
23416         we're using epoll.
23417
23418 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23419
23420         * threadpool.c: some systems don't like a NULL when deleting the socket
23421         from epoll.
23422
23423 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23424
23425         * threadpool.c: fix semaphore allocation.
23426
23427 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23428
23429         * threadpool.c: added epoll() based implementation for asynchronous IO
23430         that is used instead of the default poll() when available.
23431         It can be disabled by setting MONO_DISABLE_AIO.
23432
23433 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23434
23435         * threadpool.c: windows needs 'closesocket' and instead of returning
23436         0 when the stream is closed while in select, it returns -1. Fixes bug
23437         #74573.
23438
23439 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
23440
23441         * class.c (class_compute_field_layout): Fix the regression caused by
23442         the previous try.
23443
23444 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23445
23446         * threadpool.c: separate pool for socket async. IO.
23447         * threadpool.h: mono_max_worker_threads is not a global any more.
23448
23449 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
23450
23451         * class.c (class_compute_field_layout): Fix #74549.
23452
23453 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23454
23455         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
23456         use 2 connected sockets instead.
23457
23458 2005-04-08  Miguel de Icaza  <miguel@novell.com>
23459
23460         * mono-config.c: Add new entry point for mkbundle
23461         mono_config_parse_memory. 
23462
23463 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23464
23465         * threadpool.c: removed another unused function.
23466
23467 2005-04-08  Ankit Jain  <radical@corewars.org>
23468
23469         * reflection.c (get_default_param_value_blobs): Add 'types'
23470         parameter to get the types encoded in the constant table.
23471         (mono_param_get_objects): Use the type from the constant table,
23472         not the type of the parameter, when creating default values.
23473         Handle null default values correctly.
23474
23475 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23476
23477         * file-io.c:
23478         * file-io.h:
23479         * threadpool.c:
23480         * threadpool.h:
23481         * icall.c:
23482         * socket-io.c: removed dead code for async IO.
23483
23484 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23485
23486         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
23487
23488         * threadpool.c: intercept socket async. calls and pass them to a thread
23489         that is polling and dispatching the job items to the threadpool as
23490         socket become ready. Fixes bugs #71217, #71933.
23491
23492         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
23493         between char and short/ushort arrays.
23494
23495         * socket-io.c: remove dead code.
23496
23497 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23498
23499         * locales.c,
23500           icall.c : removed InternalToUpper_Comp() and
23501           InternalToLower_Comp().
23502
23503 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23504
23505         * char-conversions.h : The tables were incorrectly generated. Should
23506           be generated against invariant culture.
23507
23508 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
23509
23510         * object.c (mono_runtime_invoke_array): Fix return value when 
23511         passing pre-created valuetype objects to ctors.
23512
23513         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
23514         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
23515         Fixes #74338.
23516
23517 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
23518
23519         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
23520         only used with --security and hides the wrong corlib version error.
23521
23522 2005-03-30  Joshua Tauberer  <tauberer@for.net>
23523
23524         * class.c: Changed mono_class_name_from_token so that types
23525         outside of a namespace don't have an initial period.  Improved
23526         the g_warning message used in _mono_class_get when loading
23527         fails.
23528         * assembly.c: In mono_assembly_load_reference, when an assembly
23529         can't be found, "No such file or directory" is misleading and
23530         unhelpful because a few paths were checked for the presence of
23531         the assembly.  When that happens (ENOENT), display a nicer
23532         message indicating the directories that were searched.  In all
23533         cases, the warning is made easier to read for non-hackers.
23534
23535 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
23536
23537         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
23538         project/solution.
23539         * appdomain.h|domain.c: Removed inline from functions.
23540         * appdomain.c: Reduced warnings when compiling on windows.
23541         * icall.c: Fixed output_debug declaration to gunichar2*.
23542         * mono-config.c: Reduced warnings when compiling on windows.
23543         * rand.c: Added missing "windows.h". Added missing return value.
23544         * rawbuffer.c: Added missing winsock2.h for windows.
23545         * sysmath.h: Added mono-compiler.h header to allow/ease 
23546         compilation with non-GCC compilers.
23547         * threads.c: Fixed declarations to compile with VS.NET C compiler.
23548         Removed cast warnings.
23549
23550         Adapted from the work of J Lothian (for VC6).
23551
23552 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
23553
23554         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
23555         from default_path.
23556
23557 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
23558
23559         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
23560         the 2.0 profile.
23561
23562 2005-03-27  Raja R Harinath  <harinath@gmail.com>
23563
23564         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
23565         has to be in $(exec_prefix).  $(prefix) is for arch-independent
23566         stuff, and it would probably use $(prefix)/share rather than
23567         $(prefix)/lib.
23568
23569 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23570
23571         * console-io.c: added 2 includes that might be missing.
23572
23573 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
23574
23575         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
23576         profile.
23577
23578         * reflection.c (create_custom_attr): Allocate the params array using
23579         alloca so it gets GC tracking.
23580
23581 2005-03-23  Chris Toshok  <toshok@ximian.com>
23582
23583         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
23584         out some spew.
23585
23586 2005-03-24  Raja R Harinath  <rharinath@novell.com>
23587
23588         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
23589         changes to pick up any changes in prefix, etc.
23590
23591 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23592
23593         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
23594         
23595         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
23596         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
23597
23598 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23599
23600         * class-internals.h object-internals.h class.c reflection.c: Extend the
23601         mono_lookup_dynamic_token () function to return the class of the
23602         token as well. 
23603
23604         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
23605         well. Fixes #73848.
23606
23607 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
23608
23609         * security-manager.c: Skip inheritance checks for intra-corlib
23610         class inheritance and method overrides. This skips a lot of checks
23611         and (anyway) permissions cannot work until corlib is loaded.
23612
23613 2005-03-23  Martin Baulig  <martin@ximian.com>
23614
23615         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
23616         MONO_TYPE_GENERICINST.  
23617
23618 2005-03-23  Martin Baulig  <martin@ximian.com>
23619
23620         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
23621
23622 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23623
23624         * class.c: added locking comments to some functions.
23625         Cache the interface offsets arrays (saves about 20 KB
23626         of runtime memory in a typical app).
23627         Reduce the time overhead in mono_class_setup_supertypes ().
23628
23629 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
23630
23631         * icall.c: speedup and fix leaks in GetMethodsByName and
23632         GetPropertiesByName.
23633
23634 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23635
23636         * reflection.c: some locking fixes.
23637
23638 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23639
23640         * metadata.c: added missing break in case statement.
23641
23642 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
23643
23644         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23645         typedbyref return values. Fixes #73941.
23646
23647 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
23648
23649         * security-manager.c|h: Added demandunmanaged method and 
23650         suppressunmanagedcodesecurity class to MonoSecurityManager.
23651         Renamed aptc class to allowpartiallytrustedcallers.
23652
23653 2005-03-17  Martin Baulig  <martin@ximian.com>
23654
23655         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
23656
23657 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23658
23659         * file-io.c: disabled file async. IO using aio_*. It uses the
23660         threadpool now. Workaround for bug #73718.
23661
23662 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23663
23664         * assembly.h, mono-config.c: added code to deal with bundled configs
23665         for bundled assemblies.
23666
23667 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
23668
23669         * *.c, private.h: cleanup, removing old private.h header file.
23670
23671 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
23672
23673         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
23674         and throw_on_unmappable_char attributes.
23675
23676 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
23677
23678         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
23679         _ProcessName_internal.
23680
23681 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
23682
23683         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
23684         #73631.
23685
23686         * icall.c threads.c threads-types.h: Remove slothash icalls as they
23687         are no longer used.
23688
23689 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
23690
23691         * object.c (compute_class_bitmap): Add support for generics. Fixes
23692         #73527.
23693
23694 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23695
23696         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
23697
23698 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23699
23700         * filewatcher.c: commented out the code for windows watcher, as we don't
23701         use it (we use the managed implementation instead).
23702
23703 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23704
23705         * object-internals.h (MonoThread): Remove 'unused1' field.
23706
23707         * appdomain.c: Bump corlib version.
23708
23709         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
23710
23711         * reflection.c (mono_reflection_create_runtime_class): Remove the
23712         AssemblyBuilder.Save optimization since it causes too many problems.
23713
23714 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
23715
23716         * exception.c|h: Added mono_get_exception_reflection_type_load to
23717         create a ReflectionTypeLoadException object.
23718         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
23719         to return NULL is a InheritanceDemand fails during reflection. Updated
23720         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
23721         ReflectionTypeLoadException if an InheritanceDemand fails during 
23722         reflection. Added icall mapping for GetLinkDemandSecurity.
23723         * security-manager.c|h: Added ves_icall_System_Security_
23724         SecurityManager_GetLinkDemandSecurity internal call to return the
23725         class and methods permissions set for a LinkDemand. Removed unused
23726         fields in MonoSecurityManager.
23727
23728 2005-03-10  Martin Baulig  <martin@ximian.com>
23729
23730         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
23731         it's a generic instance.
23732
23733 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
23734
23735         * reflection.c (mono_get_object_from_blob): Applied patch from
23736         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
23737
23738         * class.c (mono_class_is_assignable_from): Another try at fixing 
23739         #73469 without breaking anything.
23740
23741 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
23742
23743         * class.c: (mono_class_is_assignable_from): Revert the last changes
23744         since they don't work with generics.
23745         
23746         * class.c (mono_class_is_assignable_from): Fix build bustage.
23747
23748         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
23749         the managed IsAssignableFrom method. Fixes #73469.
23750
23751         * reflection.c (mono_reflection_call_is_assignable_from): New helper
23752         function.
23753
23754 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
23755
23756         * object.c (mono_load_remote_field_new): Fix returning uninitialized
23757         memory when the remoting callback does not sets the out arguments.
23758         Fixes #73007.
23759
23760         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
23761         by mistake.
23762
23763         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
23764
23765         * object-internals.h (MonoStackFrame): Sync with managed object layout.
23766
23767         * appdomain.c: Bump corlib version.
23768
23769 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
23770
23771         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
23772         function.
23773
23774         * threads.c (mono_thread_attach): Detect threads which are not started
23775         by the GC pthread wrappers.
23776
23777 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
23778
23779         * icall.c: Added new icall for RNG.
23780         * rand.c|h: Added new icall to open the RNG. This allows to share a 
23781         single handle on Linux to access /dev/urandom and fix #73183.
23782
23783 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
23784
23785         * object.c: setting the new vtable in a transparent proxy object must
23786         not change the GC descriptor.
23787
23788 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23789
23790         * object.c: fixed compilation without GCJ support.
23791         * reflection.c: for runtime-created types ensure klass->has_references
23792         is correct (bug #73215).
23793
23794 2005-03-02  Martin Baulig  <martin@ximian.com>
23795
23796         * class.c (mono_class_is_assignable_from): Make this work if
23797         `oklass' is a generic instance; fixes #72831.
23798
23799 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23800
23801         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23802         with hasthis set.
23803         
23804         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23805
23806         * marshal.c: Reorganize native->managed marshalling code to also use
23807         the emit_marshal_... functions.
23808
23809 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23810
23811         * object.c: typed allocs have issues with bitmap sizes > 30,
23812         so check for max_set >= 30.
23813
23814 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23815
23816         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23817         managed code. Fixes #73012.
23818
23819         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23820
23821         * metadata.c reflection.c: Load/Emit elem_mult as well.
23822         
23823         * metadata.h (MonoMarshalSpec): Add comment.
23824
23825         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23826
23827         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23828         num_elem to -1 if not given.
23829
23830         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23831
23832         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23833         given values.
23834
23835 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23836
23837         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23838
23839 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23840
23841         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23842
23843         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23844
23845 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23846
23847         * object.c: generalized the reference bitmap creation
23848         and added hooks for the new GC.
23849         * class-internals.c: removed the gc_bitmap field from MonoClass.
23850
23851 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23852
23853         * domain.c: help the compiler to produce better code
23854         in mono_jit_info_table_find ().
23855
23856 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23857
23858         * object.c: make all allocations look typed.
23859
23860 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23861
23862         * socket-io.c: load Mono.Posix if it's not loaded already
23863         (fixes bug#73033).
23864
23865 2005-02-24  Martin Baulig  <martin@ximian.com>
23866
23867         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23868         * reflection.c (dup_type): Likewise.
23869
23870 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23871
23872         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23873         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23874
23875 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23876
23877         * domain.c, threads.c, object-internals.h: make the critical thread
23878         local vars use the fast access mode (even when we're compiled in
23879         a lib). Provide accessors to be used by the jit during codegen.
23880
23881 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23882
23883         * appdomain.c: Changed hook functios behavior to include
23884         support for the reflection only assemblies. Some icalls were changed
23885         to support the mentioned assemblies too. Signatures of static methods
23886         try_assembly_resolve and real_load now have an additional parameter:
23887         refonly.
23888
23889         * assembly.c: General changes to mono_assembly_ methods to support
23890         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23891         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23892         suffix, to support an additional gbool parameter to specify whether
23893         the assembli is reflection only or not. Created some new hook functions 
23894         to add support for reflection only assemblies. Signatures of static 
23895         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23896         have now an additional parameter: refonly.
23897
23898         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23899         indicating whether the assembly is reflection only or not.
23900
23901         * exception.c: Add mono_get_exception_invalid_operation.
23902
23903         * icall.c: Throw an InvalidOperationException when trying to invoke
23904         a property/method/event, or trying to set/get the value of a field.
23905         Also add an icall to retrieve the ref_only flag to the
23906         MonoReflectionAssembly.
23907
23908 2005-02-23  Chris Toshok  <toshok@ximian.com>
23909
23910         Part of fix for #72827.
23911         * mono-debug.c (mono_debug_add_method): add lexical block data to
23912         the info we write.  Kind of a hack at the moment - we copy the
23913         lexical block info from the MonoDebugMethodInfo to the
23914         MonoDebugMethodJitInfo here, before writing it.
23915         (mono_debug_read_method): read the lexical block info.
23916
23917         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23918
23919         * debug-mono-symfile.h: add lexical block support.
23920
23921         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23922         support.
23923
23924 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23925
23926         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23927
23928         * object.c (mono_runtime_free_method): Call mono_free_method () and
23929         put the TODOs there.
23930
23931         * loader.c (mono_free_method): Free up most memory allocated for 
23932         dynamic methods.
23933
23934 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23935
23936         * reflection.c: properly flag a Type argument to a
23937         named custom attr value (bug #72248).
23938
23939 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23940
23941         * reflection.c: reduce code duplication in named custom
23942         attribute encoding.
23943
23944 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23945
23946         * reflection.c: properly encode custom attrs of type object
23947         (bug #72649).
23948
23949 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23950
23951         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23952
23953 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23954
23955         * socket-io.c: load System.dll if it's not loaded already
23956         (bug #72850 and #70477).
23957
23958 2005-02-21  Martin Baulig  <martin@ximian.com>
23959
23960         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23961         generic instances.
23962
23963 2005-02-21  Martin Baulig  <martin@ximian.com>
23964
23965         * reflection.c (mono_image_build_metadata): We also need to
23966         "fixup" the MethodImpl table after we computed the final method
23967         indices.  Call fixup_methodimpl() to do that.
23968         (fixup_methodimpl): New private method.
23969
23970 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23971
23972         * assembly.c: special case mscorlib.dll (bug#72536),
23973         patch from Carlos Alberto Cortez.
23974
23975 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23976
23977         * threads-types.h threads.c: Fix build bustage.
23978
23979         * threads.c: Use a union for long<->double conversions.
23980
23981         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23982         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23983
23984         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23985         containing the checkpoint call with NOT_TAKEN.
23986         
23987         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23988         checkpoint before pushing the arguments, so they won't have to be
23989         spilled to stack.
23990
23991 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23992
23993         * domain.c, assembly.c, domain-internals.h: make some data
23994         const and relocation-free.
23995
23996 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23997
23998         * object.c, appdomain.c, class-internals.h: introduce the
23999         MonoClassRuntimeInfo structure to hold the info needed to
24000         use a class at runtime. Made mono_class_vtable() lock-free
24001         for all the appdomains.
24002
24003 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
24004
24005         * metadata-internals.h, image.c: introduce a per-image mempool to
24006         be used for memory that has the same lifetime as the image.
24007
24008 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
24009
24010         * domain.c: In mono_init_internal(), instead of selecting the first
24011         runtime version supported by an executable, get a list of all
24012         supported versions and select the one for which an mscorlib exists
24013         (since even if the runtime supports a given version, it doesn't mean
24014         that the framework for that version is installed).
24015         Modified get_runtimes_from_exe to support this behavior.
24016         In supported_runtimes, added information about additional system
24017         assembly versions.
24018         
24019         * assembly.c: Added support for more than one system assembly version
24020         per runtime version. Updated the assembly list.
24021         In mono_assembly_remap_version, removed the initial version check,
24022         since we don't know to which version we need to compare until we
24023         get the version set on which the assembly is based.
24024         Moved the code for loading corlib into the new method
24025         mono_assembly_load_corlib(), so it can be used by the initialization
24026         code.
24027         
24028         * domain-internals.h: Updated data structures and added declaration
24029         for mono_assembly_load_corlib.
24030
24031 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
24032
24033         * reflection.c (resolve_object): Fix the creation of the signature in 
24034         the SignatureHelper case.
24035
24036         * assembly.c (mono_assembly_remap_version): Fix binary search.
24037         
24038 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
24039  
24040         * class.c: Added inheritance check when a method is overloaded (from a
24041         virtual method or when implementing an interface) and when a class is
24042         inherited. Added functions to set a failure for a class and to 
24043         retreive the exception from a failure.
24044         * class-internals.h: Added fields to MonoClass to keep the exception
24045         information status for inheritance (or other exceptions) to be thrown
24046         later (i.e. not at load time).
24047         * object.c: Throw the inheritance SecurityException when a type is to 
24048         be created with either class or method inheritance violations.
24049         * reflection.c|h: Fix when getting declsec from a class. Removed 
24050         unrequired code for class. Improved sanity in parameter naming.
24051         * security-manager.c|h: Added functions to check for class and method
24052         inheritance.
24053
24054 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
24055
24056         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
24057         and has_finalize in dynamic types as well.
24058
24059 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
24060
24061         * culture-info-table.h : fixed currency format for en-GB (and so on).
24062
24063 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
24064
24065         * gc.c: ensure the GC handles never have 0 as a value.
24066
24067 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
24068
24069         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
24070         a pointer to a struct to unmanaged code. Fixes #72625.
24071
24072 2005-02-16  Martin Baulig  <martin@ximian.com>
24073
24074         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
24075
24076 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
24077
24078         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
24079
24080 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
24081
24082         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
24083
24084         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
24085         UnmanagedFunctionPointerAttribute, use it for determining calling convention
24086         etc. Fixes #71471.
24087
24088         * reflection.c (mono_custom_attrs_get_attr): New helper function.
24089
24090         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
24091
24092 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
24093
24094         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
24095         changes to make the current context a field in MonoThread.
24096
24097 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
24098
24099         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
24100         the last change.
24101         
24102         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
24103         extracted from mono_marshal_get_native_wrapper.
24104
24105         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
24106         to create wrappers around native functions.
24107
24108         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
24109         delegates for arbitrary function pointers. Fixes #71472.
24110
24111 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24112
24113         * threads.c: cleaned up the code a little.
24114
24115 2005-02-15  Martin Baulig  <martin@ximian.com>
24116
24117         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
24118         the data table.
24119
24120         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
24121         allocate larger chunks if needed.
24122
24123 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
24124
24125         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
24126         in by mistake.
24127
24128 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
24129
24130         * domain.c: keep the domains in an array and ensure the domain ids
24131         are kept small, so they can be used as indexes to domain-specific data
24132         with a small memory overhead.
24133
24134 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
24135
24136         * icall.c: Handle byref types in Type icalls. Fixes #72544.
24137
24138 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
24139
24140         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
24141
24142 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
24143
24144         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
24145
24146         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
24147         values.
24148
24149         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
24150         
24151 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
24152
24153         * domain-internals.h: add the hashtable here.
24154
24155         * class-internals.h: Remove `info' from MonoMethod
24156
24157         * domain.c: Add a new hashtable, jit_trampoline_hash
24158
24159 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24160
24161         * object.c: don't set the value of static fields
24162         (fixes bug#72494).
24163
24164 2005-02-11  Martin Baulig  <martin@ximian.com>
24165
24166         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
24167         (mono_debug_add_method): Silently ignore the method if it's too big.
24168         (mono_debug_add_type): Likewise.
24169
24170 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
24171
24172         * threads.c, appdomain.c: remove #ifdefs from the code.
24173
24174 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
24175
24176         * metadata-internals.h: Added flags to MonoAssembly to cache the most
24177         common security informations. This allows us to stay in unmanaged code
24178         when doing LinkDemand and it's special cases (except for the first 
24179         time for initialization). The flags a very much used with --security.
24180         * reflection.c|h: Added code to get declarative security attributes 
24181         for LinkDemand and InheritanceDemand. This required to refactor the
24182         existing code for Demand.
24183         * security-manager.c|h: Added new method fields for the special cases
24184         of LinkDemand.
24185
24186 2005-02-10  Martin Baulig  <martin@ximian.com>
24187
24188         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
24189         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
24190
24191 2005-02-10  Martin Baulig  <martin@ximian.com>
24192
24193         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
24194         debugging code; this is almost a complete rewrite.
24195
24196         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
24197
24198 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24199
24200         * domain.c, object.h: expose mono_string_equal () and 
24201         mono_string_hash ().
24202         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
24203         it's implemented in managed code.
24204
24205 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24206
24207         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
24208         lo leak objects between appdomains.
24209
24210 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24211
24212         * assembly.c: old compilers compilation fix from 
24213         robertj@gmx.net (Robert Jordan).
24214
24215 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
24216
24217         * class-internals.h: Little reminder for the future.
24218
24219         * debug-helpers.c: Fix up wrapper_type_names
24220
24221 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24222
24223         * image.c, metadata-internals.h: when loading an image from a file,
24224         mmap all of it and use the same codepaths as when using a
24225         in-memory image: the code is simpler and we use less memory
24226         (both writable and readonly).
24227
24228 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
24229
24230         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
24231         API to alloc runtime data structures that need to be tracked by the
24232         GC and contain pointers.
24233         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
24234         make the code more readable and eventually use a different GC.
24235
24236 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
24237
24238         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
24239         for out arguments.
24240         
24241 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
24242
24243         * object.c: In release_type_locks(), don't release the cctor lock
24244         if it has already been released. This fixes a crash in the
24245         thread5 test.
24246
24247 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
24248
24249         * gc.c, marshal.c, icall.c: register a delegate for finalization
24250         only when the native function pointer has been allocated for it.
24251
24252 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24253
24254         * object.c: cleaned up some code, allocate objects that are
24255         pointer free with the atomic malloc variant. Allocate memory
24256         for static data from the mempool if it's pointer-free.
24257         Allocate the bounds array at the end of the array data, when needed.
24258         * object-internals.h, object.h: move a private function in a private
24259         header.
24260         * class.c: handle missing case in tracking references in fields.
24261
24262 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
24263
24264         * class.c, class-internals.h: keep track if a type has
24265         reference fields in either the instance or static fields.
24266
24267 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
24268
24269         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
24270         and renamed to MonoRuntimeInfo. Added fields to store the expected
24271         framework assembly version. Changed mono_get_framework_version and
24272         mono_get_runtime_version for a single mono_get_runtime_info method.
24273         
24274         * assembly.c: Added method to remap system assembly versions to the
24275         current executing runtime version. Removed old mapping code.
24276         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
24277         
24278         * icall.c, reflection.c: Track api changes.
24279
24280 2005-02-06  Miguel de Icaza  <miguel@novell.com>
24281
24282         * loader.c (method_from_memberref): Improve error reporting,
24283         produce the class name instead of the typeref/typedef index. 
24284
24285 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
24286
24287         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
24288
24289 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24290
24291         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
24292         stdcall and charset name mangling.  Reorganize the code and add
24293         some tracing stuff.
24294
24295 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
24296
24297         * monodiet.c: More iters!
24298
24299         * marshal.c: Iter usage.
24300
24301         * icall.c: Iter usage.
24302
24303         * object.c: Use iters.
24304
24305         * debug-helpers.c: More iters
24306
24307 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24308
24309         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
24310         under win32.
24311
24312 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
24313
24314         * mono-debug-debugger.c: use iters
24315
24316         * class.c, class-internals.h: mono_class_setup_events is static
24317         now
24318
24319         * All callers: use iters
24320
24321 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24322
24323         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
24324         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
24325
24326 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
24327
24328         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
24329
24330         * marshal.h: Add prototypes for ldfld/stfld_remote.
24331
24332         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
24333         this is called during startup.
24334         
24335 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
24336
24337         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
24338         MonoThreadsSync struct private in monitor.c. Changed the way
24339         MonoThreadsSync is allocated so it's faster and there is no
24340         need to keep track of it with a finalizer and it uses less memory.
24341         This also finally allows us to allocate mono objects as ptrfree when
24342         there are no reference fields.
24343
24344 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
24345
24346         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
24347         disappearing link to the GC interface and use them to simplify
24348         the gchandles code.
24349
24350 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
24351
24352         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
24353         stfld_remote which call mono_load/store_field_new. This allows methods
24354         calling ldfld/stfld wrappers to be AOTed.
24355
24356         * console-io.c: Include sys/filio.h under solaris.
24357         
24358         * console-io.c: Include curses.h if needed correctly.
24359
24360 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
24361         
24362         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
24363         method->klass as well.
24364
24365         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
24366
24367         * class.c (mono_class_init): Switch on lazy initialization of 
24368         methods.
24369
24370         * class.c (mono_class_get_finalizer): Handle the case when the 
24371         finalizer is inherited.
24372
24373 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24374
24375         * console-io.c: <curses.h> is needed by term.h on solaris.
24376
24377 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
24378
24379         * icall.c, class-internals.h, monodiet.c, class.c: Remove
24380         mono_class_setup_properties where possible. Remove this ftn from
24381         the header file, and make it static.
24382
24383 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
24384
24385         * loader.c: Add missing setup_... call.
24386
24387         * class.c: Add missing setup_... calls.
24388
24389         * class.c (mono_class_init): Switch on lazy initialization of 
24390         the generic vtable.
24391         
24392         * class.c (mono_class_init): Fix generics broken by the recent changes.
24393
24394         * monodiet.c (handle_type): Add missing setup_... calls.
24395
24396         * class.c: Back out garbage in previous patch.
24397         
24398         * class.c: Add missing setup_... calls.
24399
24400         * class.c (mono_class_get_method_from_name_flags): Avoid calling
24401         mono_class_setup_methods () if possible.
24402
24403         * class-internals.h (MonoClass): Add 'has_cctor' flag.
24404
24405         * class-internals.h (MonoCachedClassInfo): New structure.
24406
24407         * class.c: Initialize properties and events fields of MonoClass lazily.
24408
24409         * class.c: Add infrastructure for lazily initializing the methods and
24410         vtable fields of MonoClass. Not yet used.
24411
24412         * class.c (mono_class_get_finalizer): New helper function.
24413
24414         * class.c: Add infrastructure for loading some class related data from
24415         an AOT file.
24416
24417         * object.c: Add infrastructure for initializing the vtable from data
24418         in the AOT file.
24419
24420         * gc.c (run_finalize): Use mono_class_get_finalizer ().
24421
24422         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
24423         appropriate initialization function before accessing parts of the
24424         MonoClass structure.
24425
24426         * marshal.c: Fix warnings.
24427         
24428         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
24429
24430         * mono-debug-debugger.c (get_exception_message): Use 
24431         mono_class_get_method_from_name_flags ().
24432
24433 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
24434
24435         * reflection.c, appdomain.c: Replace a few manual searches that
24436         Zoltan missed. (Paolo approved this part of my initial patch).
24437
24438 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
24439
24440         * profiler.c: disable recording statistical events at report time.
24441
24442 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24443
24444         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
24445         to byteswap arrays of enum values, too (bug #72080).
24446
24447 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
24448
24449         * appdomain.c (set_domain_search_path): Allow this to be called if
24450         domain->setup is not yet set.
24451
24452         * loader.c (mono_method_get_index): New helper function.
24453
24454         * loader.c reflection.c: Use mono_method_get_index ().
24455
24456         * class.c (mono_class_get_method_from_name_flags): New helper method.
24457
24458         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
24459         this.
24460
24461         * class.c (mono_class_get_cctor): New helper method.
24462
24463         * string-icalls.c object.c class.c marshal.c reflection.c: Use
24464         mono_class_get_method () to look up methods.
24465
24466 2005-02-01  Miguel de Icaza  <miguel@novell.com>
24467
24468         * console-io.c: Fix the build, this should work on Windows.
24469
24470 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
24471
24472         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
24473         be set to null to keep things valid
24474
24475 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24476
24477         * icall.c: added Console 2.0 icalls.
24478         * Makefile.am: added console-io.[ch]
24479         * console-io.[ch]: internal calls for Console 2.0 API.
24480
24481 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24482
24483         * class.c: make sure we consider all the interfaces
24484         when calculating max_interface_id (bug found by
24485         Jeroen Frijters running ikvm).
24486
24487 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
24488
24489         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
24490         valuetype fields to null.
24491
24492         * object.c (set_value): Ditto. Fixes #71669.    
24493
24494 2005-01-31  Martin Baulig  <martin@ximian.com>
24495
24496         * metadata.c (mono_metadata_has_generic_params): New public
24497         function; checks whether something is a generic method.
24498
24499 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
24500
24501         * appdomain.c: fix infinite recursion when adding assemblies.
24502
24503 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
24504
24505         * object.c: Fix small typo to return all items for Environment.
24506         GetCommandLineArgs.
24507
24508 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24509
24510         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
24511         reflection.c: more domain and assembly-unload related fixes
24512         and memory leaks plugs.
24513
24514 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
24515
24516         * 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.
24517
24518 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
24519
24520         * loader.c (mono_method_signature): Make this method lazy
24521         (mono_get_method_from_token): Don't computate the signature here.
24522
24523         Doing this saves quite a bit of memory. I got 90 kb on starting up
24524         monodoc. It should also save some disk reads on startup.
24525
24526         * *: MonoMethod->signature might be NULL now. You *MUST* use
24527         mono_method_signature.
24528
24529 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
24530
24531         * object.c (mono_runtime_get_main_args): Return an array from the
24532         current domain here. Fixes #71938.
24533
24534 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
24535
24536         * monitor.c: formatting changes to comply with the
24537         mono coding style and remove #ifdefs from the code.
24538
24539 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24540
24541         * metadata.c, private.h: remove some unneeded data
24542         and use a more compact representation for table schemas.
24543
24544 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
24545
24546         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
24547         to get a better distribution in hash tables.
24548         * *.c: use mono_aligned_addr_hash() where appropriate.
24549         * assembly.c: make var static.
24550
24551 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
24552
24553         * domain-internals.h: Put MonoJitInfo on a diet.
24554
24555         * domain.c: Fix a warning.
24556
24557 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24558
24559         * gc.c: rework the gc handles code to reuse handles
24560         when freed.
24561
24562 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24563
24564         * domain.c: fixed long standing bug in mono_string_equal() which
24565         was brought to light with the ldstr changes.
24566
24567 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
24568
24569         * reflection.c: Remove warning by adding missing include for marshal.h
24570
24571 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24572
24573         * domain.c, object.c: change the ldstr_table to hold
24574         MonoString* as keys: makes the runtime isinterned lookup
24575         faster and simplifies memory management.
24576
24577 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
24578  
24579         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
24580         possible to add imperative security checks before calling the icall.
24581         * reflection.c: Return security attributes on the original MonoMethod
24582         (and not the wrapped one). This fix permissions on icalls.
24583
24584 2005-01-25  Dick Porter  <dick@ximian.com>
24585
24586         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
24587         the check for mktime() support actually test the mktime() return
24588         value.  "Fixes" bug 71682, though the output is still different to
24589         MS.
24590
24591 2005-01-25  Martin Baulig  <martin@ximian.com>
24592
24593         * class.c (mono_class_is_assignable_from): Make this work for
24594         generic instances.
24595
24596 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
24597
24598         * marshal.c (mono_string_utf8_to_builder)
24599         (mono_string_builder_to_utf16): We might not have ownership of the
24600         string. In thise case, we need to create a new buffer.
24601
24602         * object-internals.h (mono_stringbuilder_capacity): sb->str might
24603         be null, in which case, use the default capacity.
24604
24605 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24606
24607         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
24608         GC events to the profiler.
24609
24610 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24611
24612         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
24613         if you don't want the GC to run.
24614
24615 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
24616
24617         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
24618         start providing a GC API and keeping different implementations in
24619         their own file.
24620         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
24621
24622 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
24623
24624         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
24625         mmap rather than allocating a huge buffer.
24626         (mono_debug_close_mono_symbol_file): Free the buffer allocated
24627         above.
24628
24629 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
24630
24631         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
24632         and CheckExecutionRights.
24633         * reflection.c|h: Keep the index of the declarative security to be 
24634         used, instead of the pointer, when AOT compiler is used. Also add 
24635         class initialization when requesting demands.
24636         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
24637         CheckExecutionRights. Both properties are now FALSE by default, and
24638         unmodifiable, unless the --security option is used.
24639
24640 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24641
24642         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
24643         reflection.c: properly refcount images and assemblies, many leaks fixed.
24644
24645 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24646
24647         * threadpool.c: increase the timeout for threads in the thread pool to
24648         10s.  Fixes bug #67159.
24649
24650 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
24651
24652         * class-internals.h: Sun's compiler insists on explicit
24653         signed on bit fields to handle then correctly.
24654
24655 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24656
24657         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
24658         Make the size of the array fit only the number of invalid path
24659         chars that we have.
24660
24661         * class.c (_mono_class_get): Improve the error reporting when a
24662         class referenced is not found, to assist debugging. 
24663
24664 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
24665
24666         * threads.c: fix off-by-one error.
24667         * domain.c: free data allocated in the domain.
24668
24669 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24670
24671         * reflection.c (mono_method_body_get_object): Fill out exception info
24672         as well.
24673
24674         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
24675         structure.
24676         
24677 2005-01-19  Martin Baulig  <martin@ximian.com>
24678
24679         * loader.c (mono_get_method_constrained): Make this work again.
24680
24681 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24682
24683         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
24684         guint16 to match the managed side.
24685
24686         * reflection.c (mono_reflection_body_get_object): Fill out local
24687         variables array.
24688
24689         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
24690         as well.
24691
24692         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
24693         'local_var_sig_token'.
24694
24695 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
24696
24697         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
24698         System.Drawing.
24699
24700         * reflection.c (mono_method_body_get_object): Handle abstract and
24701         runtime methods.
24702
24703 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
24704
24705         * marshal.c, loader.c, class-internals.h, reflection.c:
24706         store the emthod data for a wrapper in an array instead of a list.
24707
24708 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
24709
24710         * marshal.c: change the code to allocate memory more
24711         conservatively for method wrappers.
24712
24713 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
24714
24715         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
24716         fields from MonoClass to the marshal info structure where they belong.
24717
24718 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24719
24720         * class.c, object.c, class-internals.h, marshal.c: rearrange
24721         some fields and tweak some types to lower memory usage.
24722
24723 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
24724
24725         * threads.c (signal_thread_state_change): Handle the case when the
24726         target thread is the current thread.
24727
24728         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
24729
24730         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
24731         emit_ptr_to_object_conv. 
24732
24733         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
24734         marshalling. Fixes #71352.
24735
24736 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24737
24738         * metadata.h, blob.h: move table enum to blob.h so it can be included
24739         in any header.
24740         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
24741         cut the size of MonoImage/MonoDynamicImage.
24742
24743 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
24744
24745         * profiler.c (mono_profiler_install_simple): Fix default arguments.
24746
24747 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
24748
24749         * reflection.c, reflection.h, icall.c: add a function to check
24750         if an attribute type is defined for a metadata object.
24751
24752 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
24753
24754         * object-internals.h: Added some needed fields from StringBuilder class.
24755         * marshal.c: Set the maxCapacity when creating a StringBuilder.
24756
24757 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
24758
24759         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
24760         threads before shutting down the runtime.
24761
24762         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
24763
24764 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24765
24766         * object-internal.h, threads.c: implement stacksize and 
24767         parameterized thread start functionality (requires
24768         matching corlib). Marked broken code for later removal.
24769
24770 2005-01-12  Martin Baulig  <martin@ximian.com>
24771
24772         * class-internals.h (MonoGenericClass): Moved the `initialized'
24773         flag to MonoDynamicGenericClass, removed `init_pending'.
24774         (MonoGenericInst): Added `is_reference' flag.
24775
24776 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
24777
24778         * reflection.c (mono_image_create_pefile): Only set the pe_offset
24779         inside the MSDOS header. Fixes #71201.
24780
24781         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
24782         gc thread.
24783         (mono_domain_finalize): Ditto.
24784
24785 2005-01-12  Martin Baulig  <martin@ximian.com>
24786
24787         * class.c (mono_get_shared_generic_class): Use the cache for
24788         non-dynamic generic classes.
24789
24790         * class-internals.h (mono_class_create_generic_2): Removed
24791         function prototype, this function is now static inside class.c.
24792
24793         * class.c (mono_class_create_generic_2): Made this static, only
24794         call it from mono_class_init() and mono_class_setup_parent().
24795         (collect_implemented_interfaces_aux): Call mono_class_init() on
24796         the interfaces we collect.
24797         (mono_class_setup_vtable): Call mono_class_init (class->parent).
24798
24799 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24800
24801         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24802         it a real thread handle.
24803
24804         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24805         MonoJitExceptionInfo, since each catch clause needs its own variable.
24806         
24807 2005-01-11  Dick Porter  <dick@ximian.com>
24808
24809         * image.c (mono_pe_file_open): New variant on mono_image_open()
24810         that does not set up the CLI metadata; used for FileVersionInfo so
24811         it can get the data for windows binaries too.
24812         
24813         * process.c (process_read_string_block): Don't read off the end of
24814         the StringTable block.
24815
24816         These both fix bug 70766.
24817
24818 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24819
24820         * gc.c: set some fields to NULL at GC cleanup time.
24821         * threads.c: if we quit the main thread, call exit ().
24822
24823 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24824
24825         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24826
24827 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24828
24829         * threads.h, threads.c, object.c: added accessor and settor for
24830         main_thread. Handle it specially when exiting from it: wait
24831         for other foreground threads to exit.
24832
24833 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24834
24835         * process.c, verify.c: remove some bloat.
24836
24837 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24838
24839         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24840         the calling convention to cdecl under win32.
24841
24842 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24843
24844         * object.c (mono_object_get_size): New function to get the size of
24845         an object instance.
24846
24847         * profiler.c (simple_allocation): Use above.
24848
24849 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24850
24851         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24852         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24853         get an appdomain by it's id and we can't assume the root's id is 0).
24854         * domain-internals.h: Change the function prototype to match.
24855         * icall.c: Change the icall table for AppDomain.
24856
24857 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24858
24859         * locales.c (string_invariant_compare_char): Only compute
24860         GUnicodeTypes in the case where we need them.  Test for ordinality
24861         first and return if so.
24862
24863         From the commit:
24864
24865                 /*
24866                  * FIXME: here we must use the information from c1type and c2type
24867                  * to find out the proper collation, even on the InvariantCulture, the
24868                  * sorting is not done by computing the unicode values, but their
24869                  * actual sort order.
24870                  */
24871
24872 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24873
24874         * loader.c: for P/Invoke methods, allow the "Internal" shared
24875         library name to refer to the calling process symbol namespace.
24876
24877 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24878
24879         * Makefile.am: Add the security manager to the build.
24880         * security-manager.c|h: New. Initialization of the security manager.
24881
24882 2005-01-07  Dick Porter  <dick@ximian.com>
24883
24884         * threads.c: 
24885         * monitor.c: Update thread state during Monitor and WaitHandle
24886         waits.  Fixes bug 71031.
24887
24888 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24889
24890         * reflection.c (property_encode_signature): Correctly handle when the
24891         property has no methods.
24892
24893 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24894
24895         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24896         
24897         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24898         fields from mb, not rmb. Fixes #71017.
24899
24900         * marshal.c (emit_ptr_to_str_conv): Add support for 
24901         ByValTStr -> string conversion. Fixes #71015.
24902
24903         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24904
24905         * mempool.c (mono_mempool_contains_addr): New helper function.
24906
24907 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24908
24909         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24910         HasSematics encoded fields.
24911         
24912         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24913         invalid string marshalling.
24914
24915         * metadata.c: Fix warnings.
24916         
24917 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24918
24919         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24920         profiler support.
24921
24922 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24923
24924         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24925         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24926         tests.
24927
24928 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24929
24930         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24931         so methods containing these can be AOTed.
24932
24933 2005-01-03  Martin Baulig  <martin@ximian.com>
24934
24935         * loader.c (find_method): Removed the hack for generic instances.
24936         (method_from_memberref): If our parent is a generic instance, pass
24937         its generic type definition to find_method() and then inflate the
24938         method.
24939         (mono_get_method_constrained): Pass the generic type definition to
24940         find_method() and inflate the method later.
24941
24942         * class-internals.h (MonoStats): Added `generic_class_count'.
24943
24944         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24945         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24946
24947         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24948         generic type definitions.
24949
24950 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24951
24952         * loader.c icall.c: Fix warnings.
24953
24954 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24955
24956         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24957         blittable types. Fixes #70864.
24958
24959 2004-12-29  Martin Baulig  <martin@ximian.com>
24960
24961         * icall.c
24962         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24963
24964         * reflection.c (mono_method_get_object): Create a
24965         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24966         call mono_get_inflated_method().
24967
24968         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24969
24970 2004-12-27  Martin Baulig  <martin@ximian.com>
24971
24972         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24973         (MonoMethodInflated): Added `inflated' field.
24974
24975         * class.c (mono_class_inflate_generic_method): Don't really
24976         inflate the method here; just set the `is_inflated' flag in the
24977         MonoMethod.
24978         (mono_class_get_inflated_method): Actually inflate the method here
24979         if it's not already inflated; we use the MonoMethodInflated's new
24980         `inflated' field as a cache.
24981
24982 2004-12-26  Martin Baulig  <martin@ximian.com>
24983
24984         * class.c
24985         (inflate_generic_class): Moved some code out of inflate_generic_type().
24986         (mono_class_inflate_generic_method): If we're already inflated,
24987         inflate the context and use the declaring method; ie. make sure
24988         the declaring method of an inflated method is always the generic
24989         method definition.
24990         (mono_class_create_from_typedef): Create
24991         `class->generic_container->context->gclass'.
24992
24993 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24994
24995         * metadata-internals.h, marshal.c, reflection.c: More
24996         MonoGHashTable->GHashTable.
24997
24998         * domain-internals.h, class.c: Change MonoGHashTable's into
24999         GHashTables for some cases where no gc stuff is used
25000
25001         All users: update apis
25002
25003 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
25004
25005         * metadata.c (builtin_types): Make this `const'. Makes this get
25006         put into the shareable section.
25007         (mono_metadata_init): Casts to make gcc happy.
25008
25009 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
25010
25011         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
25012
25013 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
25014
25015         * icall.c: Added an internal call to retrieve the position and length
25016         of assembly-level declarative security attributes (RequestMinimum, 
25017         RequestOptional and RequestRefuse). This is used by the Assembly class
25018         to re-create the corresponding permission sets.
25019
25020 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
25021
25022         * marshal.c: fix the stelemref wrapper to be type correct
25023         (and faster).
25024
25025 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
25026
25027         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
25028         to do key & 0x7fffffff. Hashtable already does this. It just
25029         results in longer code.
25030
25031 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
25032
25033         * appdomain.c: Bump corlib version.
25034         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
25035         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
25036         * reflection.c|h: Add functions to get declarative security infos
25037         (blob position and length) for assemblies, classes and methods.
25038
25039 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
25040
25041         * reflection.c: sort the constant table (bug #70693).
25042
25043 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
25044
25045         * object-internals.h, threads.c, domain.c: add accessors for
25046         the MonoThread and MonoDomain tls keys.
25047
25048 2004-12-18  Martin Baulig  <martin@ximian.com>
25049
25050         * class.c (inflate_generic_type): If we're inflating a generic
25051         instance, set `ngclass->context->container = context->container';
25052         ie. the container we inflated into.
25053
25054         * metadata.c (mono_metadata_parse_generic_param): Reflect above
25055         inflate_generic_type() changes.
25056
25057 2004-12-17  Martin Baulig  <martin@ximian.com>
25058
25059         * class-internals.h
25060         (MonoGenericClass): Replaced `MonoType *generic_type' with
25061         `MonoClass *generic_class'.  Removed `dynamic_info'; if
25062         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
25063         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
25064
25065 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
25066
25067         * exception.c (mono_exception_from_token): New helper function.
25068
25069 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
25070
25071         * assembly.c (mono_assembly_load_with_partial_name): Call 
25072         mono_assembly_loaded before invoking the preload hooks. Fixes
25073         #70564.
25074
25075         * object-internals.h (MonoThread): Change culture_info and 
25076         ui_culture_info into an array.
25077
25078         * threads.c: Cache culture info objects from more than one appdomain.
25079
25080         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
25081         current UI culture.
25082
25083 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
25084
25085         * threads.h threads.c appdomain.c: Clear the culture_info field of
25086         all threads during unloading if they point to an object in the dying
25087         appdomain.
25088
25089 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
25090
25091         * culture-info.h (TextInfoEntry): New struct
25092         * object-internals.h: sync with managed
25093         * locales.c: fill the `text_info_data' field
25094         * culture-info-tables.h: update
25095
25096 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
25097
25098         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
25099         collector.
25100
25101 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
25102
25103         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
25104         (ves_icall_ModuleBuilder_getMethodToken): Ditto
25105
25106 2004-12-12  Martin Baulig  <martin@ximian.com>
25107
25108         * mono-debug-debugger.c (write_type): If we're an enum and the
25109         builtin types have already been initialized, call mono_class_init().
25110
25111 2004-12-11  Martin Baulig  <martin@ximian.com>
25112
25113         * metadata.c (mono_metadata_load_generic_params): Added
25114         `MonoGenericContainer *parent_container' argument; automatically
25115         compute `container->is_method'; pass the correct owner to
25116         get_constraints().      
25117
25118         * reflection.c (compare_genericparam): Sort the GenericParam table
25119         according to increasing owners. 
25120
25121 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
25122
25123         * profiler.c: allow disabling the default profiler.
25124
25125 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
25126
25127         * decimal.c, icall.c: allow disabling System.Decimal support.
25128
25129 2004-12-09  Marek Safar <marek.safar@seznam.cz>
25130
25131         * reflection.c: Add support for null attribute arguments.
25132
25133 2004-12-09  Martin Baulig  <martin@ximian.com>
25134
25135         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
25136         names to get rid of compiler warnings.
25137
25138 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
25139
25140         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
25141         mono_marshal_load_type_info (). Fixes #69625.
25142         (mono_marshal_get_ptr_to_struct): Likewise.
25143
25144 2004-12-08  Martin Baulig  <martin@ximian.com>
25145
25146         * mono-debug.h: Bumped version number to 47.
25147
25148         * mono-debug-debugger.c
25149         (mono_debugger_event_handler, mono_debugger_event): Take two
25150         guint64 arguments insteed of a gpointer and a guint32.  
25151
25152 2004-12-08  Martin Baulig  <martin@ximian.com>
25153
25154         * debug-mono-symfile.h
25155         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
25156         `address' to `native_offset'.
25157
25158 2004-12-08  Martin Baulig  <martin@ximian.com>
25159
25160         * class.c (mono_class_create_from_typespec): Only inflate if we
25161         either have `context->gclass' or `context->gmethod'.
25162
25163 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
25164
25165         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
25166
25167         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
25168
25169         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
25170
25171         * reflection.c (mono_assembly_get_object): Remove the workaround put
25172         in for the release.
25173         
25174         * appdomain.c: Use the corlib_internal field from MonoAssembly.
25175
25176         * appdomain.c: Bump corlib version.
25177
25178         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
25179         be visible in other appdomains.
25180
25181 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
25182
25183         * threads.c: Interlocked inc and dec for longs were messed up,
25184         use a KISS based impl for this. Fixes 70234
25185
25186 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
25187
25188         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
25189
25190 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
25191
25192         * icall.c: fix to follow policy not to allow struct
25193         arguments in icalls.
25194
25195 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25196
25197         * process.c: make the patch that handles spaces in file paths work
25198         on mono/windows too.
25199
25200 2004-12-06  Martin Baulig  <martin@ximian.com>
25201
25202         * class.c (mono_class_create_generic): Call
25203         mono_class_setup_supertypes() if we're dynamic.
25204         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
25205
25206 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
25207
25208         * object-internals.h: Add new fields to MonoThread.
25209
25210         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25211
25212         * icall.c threads-types.h threads.c: Add new icalls.
25213
25214         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
25215
25216         * object-internals.h (MonoReflectionAssembly): Sync object layout with
25217         managed side.
25218
25219         * appdomain.c: Bump corlib version.
25220
25221         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
25222         internal assemblies. Fixes #69181.
25223
25224 2004-12-05  Martin Baulig  <martin@ximian.com>
25225
25226         * class.c (mono_class_inflate_generic_signature): Make this a
25227         no-op if `context' is NULL or we don't have any type parameters;
25228         also copy `sentinelpos'.        
25229
25230 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
25231
25232         * image.c: Add unbox_wrapper_cache.
25233
25234         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
25235
25236         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
25237         function generator.
25238         
25239         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
25240         Fixes #70173.
25241
25242         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
25243         
25244 2004-12-04  Martin Baulig  <martin@ximian.com>
25245
25246         * loader.c (mono_method_get_signature_full): New public function;
25247         like mono_method_get_signature(), but with an additional
25248         `MonoGenericContext *' argument.
25249
25250         * class.c (mono_class_inflate_generic_signature): Formerly known
25251         as inflate_generic_signature(); make this public.
25252
25253 2004-12-04  Martin Baulig  <martin@ximian.com>
25254
25255         * metadata.c
25256         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
25257         instead of a `MonoGenericContainer *'.  
25258         (mono_metadata_parse_array_full): Likewise.
25259         (mono_metadata_parse_signature_full): Likewise.
25260         (mono_metadata_parse_method_signature_full): Likewise.
25261         (mono_metadata_parse_generic_inst): Likewise.
25262         (mono_metadata_parse_generic_param): Likewise.
25263         (mono_metadata_parse_mh_full): Likewise.
25264         (mono_type_create_from_typespec_full): Likewise.
25265
25266 2004-12-03  Martin Baulig  <martin@ximian.com>
25267
25268         * class-internals.h (MonoGenericContainer): Replaced the
25269         `MonoGenericContext * pointer with a `MonoGenericContext'
25270         structure and made it the first element.
25271
25272 2004-12-03  Martin Baulig  <martin@ximian.com>
25273
25274         * class.c
25275         (inflate_generic_type): Set the `context->container' when creating
25276         a new MonoGenericContext.
25277         (mono_class_inflate_generic_method): Likewise.
25278         (mono_class_create_from_typespec): Just use `context->container'
25279         to get the container.
25280
25281         * loader.c (method_from_methodspec): Set `context->parent' from
25282         `context->container' - and if that's a method container, use its
25283         parent.  Also set the `context->container' when creating a new
25284         MonoGenericContext.
25285         (mono_get_method_from_token): Use just `context->container' to get
25286         the container.
25287
25288         * metadata.c (do_mono_metadata_parse_generic_class): Also set
25289         `gclass->context->container'.
25290
25291         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
25292         the `context->container' when creating a new MonoGenericContext.
25293
25294 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
25295
25296         * reflection.c (compare_genericparam): Sort params with identical
25297         owner by their number. Fixes gen-111 on sparc.
25298
25299 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
25300
25301         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
25302         around the domain changes.
25303
25304         * appdomain.c (mono_domain_unload): Handle the case when the thread
25305         calling Unload is itself being aborted during unloading. Fixes #70022.
25306
25307         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
25308
25309         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
25310         checkpoint_func as an icall so it gets a wrapper.
25311         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
25312         in the cross-appdomain wrappers too.
25313
25314         * threads.c (mono_thread_has_appdomain_ref): Make this public.
25315
25316         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
25317
25318         * reflection.c: Fix some memory leaks.
25319         
25320 2004-12-02  Martin Baulig  <martin@ximian.com>
25321
25322         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
25323
25324         * metadata.c (generic_class_cache): New static hashtable.
25325         (mono_metadata_lookup_generic_class): New public method.
25326
25327 2004-12-02  Martin Baulig  <martin@ximian.com>
25328
25329         * class.c (mono_class_create_from_typedef): Call
25330         mono_class_setup_parent() and mono_class_create_mono_type() before
25331         parsing the interfaces.
25332
25333 2004-12-02  Martin Baulig  <martin@ximian.com>
25334
25335         * metadata.c (generic_inst_cache): New static hashtable.
25336         (mono_metadata_lookup_generic_inst): New public function.
25337         (mono_metadata_inflate_generic_inst): New public function.
25338         (mono_metadata_parse_generic_inst): New public function.
25339         (do_mono_metadata_parse_generic_class): Use the new
25340         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
25341         since this'll also use the cache.
25342
25343         * reflection.c (mono_reflection_bind_generic_method_parameters):
25344         Use mono_metadata_lookup_generic_inst() to use the new cache.
25345
25346         * class.c (inflate_mono_type): Use
25347         mono_metadata_inflate_generic_inst() to inflate a generic
25348         instance; this'll also use the new cache.
25349
25350         * loader.c (method_from_methodspec): Use
25351         mono_metadata_parse_generic_inst() and
25352         mono_metadata_inflate_generic_inst() rather than parsing it
25353         manually, so we can use the new cache.
25354
25355 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
25356
25357         * threads.c (wait_for_tids): Do not incorrectly free threads when 
25358         the wait times out.
25359
25360 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
25361
25362         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
25363         iter->args based on whether parameters are passed in registers (i.e.
25364         MONO_ARCH_REGPARMS is defined)
25365
25366 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
25367
25368         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
25369         the exception message. Fixes #70070.
25370         (method_from_methodspec): Fix warnings.
25371
25372 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25373
25374         * process.c: (complete_path) return the path quoted
25375
25376 2004-12-01  Martin Baulig  <martin@ximian.com>
25377
25378         * class-internals.h (MonoGenericInst): New structure.
25379         (MonoGenericClass): Replaced `type_argc', `type_argv' and
25380         `is_open' with `MonoGenericInst *inst'.
25381         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
25382         `is_open' with `MonoGenericInst *inst'.
25383
25384 2004-11-30  Martin Baulig  <martin@ximian.com>
25385
25386         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
25387
25388         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
25389         to `generic_class_cache'.
25390
25391         * metadata.c
25392         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
25393         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
25394         (mono_generic_inst_is_valuetype): Renamed to
25395         mono_generic_class_is_valuetype().
25396
25397         * class-internals.h
25398         (MonoGenericInst): Renamed to MonoGenericClass.
25399         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
25400         (MonoClass): Renamed `generic_inst' to `generic_class'.
25401         (MonoGenericContext): Renamed `ginst' to `gclass'.
25402
25403         * object-internals.h
25404         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
25405
25406         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
25407         mono_reflection_generic_class_initialize().
25408
25409         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
25410         now known as "System.Reflection.MonoGenericClass".
25411         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
25412
25413 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
25414
25415         * class-internals.h: Added a flag field to MonoClass to cache the
25416         declarative security attributes actions associated with the class.
25417         * domain-internals.h: Added booleans to MonoJitInfo to cache the
25418         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
25419         applicable to the JITted method.
25420         * reflection.c|h: Added functions to extract (as flags) which security
25421         actions are available (declaratively) for a method, class or assembly.
25422         * metadata.c|h: Added functions to search the declarative security
25423         table in the metadata.
25424         
25425 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
25426
25427         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
25428         EXPORTEDTYPES are already in the class name cache, so there is no
25429         need to add extra code here to look at them. Just removes a bit of
25430         cruft.
25431
25432         (ves_icall_System_Environment_get_TickCount): No need for #if
25433         WINDOWS. We already have the code in io-layer.
25434
25435 2004-11-28  Martin Baulig  <martin@ximian.com>
25436
25437         * loader.c
25438         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
25439         Fixes gen-112.cs.
25440
25441 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
25442
25443         * assembly.c (do_mono_assembly_open): Instead of having a
25444         conditional WITH_BUNDLE, incorporate support for bundles here, by
25445         having a global `bundles' variable holding a pointer to the actual
25446         bundles. 
25447
25448         (mono_register_bundled_assemblies): New API call used by the
25449         bundle code. 
25450
25451         See mkbundle.1 for details.
25452         
25453 2004-11-27  Martin Baulig  <martin@ximian.com>
25454
25455         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
25456         the vtable for generic methods.
25457
25458 2004-11-26  Martin Baulig  <martin@ximian.com>
25459
25460         * metadata.c
25461         (mono_metadata_generic_method_hash): New public function.
25462         (mono_metadata_generic_method_equal): Likewise.
25463
25464         * class-internals.h
25465         (MonoGenericContainer): Added `GHashTable *method_hash'.
25466
25467         * reflection.c (ReflectionMethodBuilder): Added
25468         `MonoGenericContainer *generic_container'.
25469         (reflection_methodbuilder_to_mono_method): Don't create a new
25470         MonoGenericContainer each time we're called.
25471         (mono_reflection_bind_generic_method_parameters): Use
25472         `container->method_hash' to cache the results so we don't create a
25473         different method if we're called several times with the same
25474         arguments.
25475
25476         * loader.c (method_from_methodspec): Use the new
25477         `container->method_hash' here, too.
25478
25479 2004-11-26  Martin Baulig  <martin@ximian.com>
25480
25481         * class.c (inflate_generic_signature): Correctly compute
25482         `res->has_type_parameters'.
25483         (mono_class_vtable): Use the `has_type_parameters' flag to
25484         determine whether we're a generic method.
25485
25486         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
25487
25488 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
25489
25490         * object.c (mono_runtime_run_main): Fix a small memory leak.
25491
25492 2004-11-25  Martin Baulig  <martin@ximian.com>
25493
25494         * class.c (set_generic_param_owner): Fixed the loop.
25495
25496 2004-11-25  Martin Baulig  <martin@ximian.com>
25497
25498         * object.c (mono_class_vtable): Don't create any JIT wrappers for
25499         generic methods.
25500
25501 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
25502
25503         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
25504         names. Fixes #69787.
25505
25506 2004-11-24  Martin Baulig  <martin@ximian.com>
25507
25508         * class.c (mono_class_create_generic_2): If we don't have a
25509         `ginst->parent', inflate `gklass->parent' to get our parent.
25510
25511 2004-11-24  Martin Baulig  <martin@ximian.com>
25512
25513         * reflection.c (compare_genericparam): Correctly sort the
25514         GenericParam table; fixes #69779.
25515
25516 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
25517
25518         * reflection.c: When writing a PE file, don't create a huge
25519         buffer in memory. Just write the arrays we have to the file.
25520         This reduces memory usage.
25521
25522         * metadata-internals.h: MonoDynamicStream pefile is no longer used
25523         globally.
25524
25525 2004-11-17  Martin Baulig  <martin@ximian.com>
25526
25527         * class.c (mono_class_init): Don't setup `class->parent' for
25528         dynamic instances; moved this to mono_class_generic_2().
25529         (mono_class_create_generic): Also set `klass->inited' for dynamic
25530         generic instances.
25531         (mono_class_create_generic_2): Don't do anything for dynamic
25532         generic instances.  Set `klass->parent' here and also call
25533         mono_class_setup_parent() here. 
25534
25535         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
25536         `MonoType *parent' argument; set `ginst->parent' before calling
25537         mono_class_create_generic_2(), so we set the correct parent.
25538
25539 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
25540
25541         * reflection.c: allow getting attributes from ModuleBuilder
25542         (used by ikvm).
25543
25544 2004-11-17  Martin Baulig  <martin@ximian.com>
25545
25546         * class.c (mono_class_create_from_typedef): If a type parameter is
25547         inherited from an outer class, set its owner to that class.
25548
25549 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
25550
25551         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
25552           for (int*) written size. This fixes bug #69592.
25553
25554 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
25555
25556         * icall.c: Added IsAuthenticodePresnet internal call.
25557         * image.c|h: New function that check a MonoImage for an Authenticode
25558         signature in the certificate PE data directory.
25559         * security.c|h: New internal call to ask the runtime if an 
25560         Authenticode signature seems referenced in the PE header.
25561
25562 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
25563
25564         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
25565
25566         * reflection.c (mono_image_create_pefile): Free the assembly streams
25567         after writing out the assembly file.
25568
25569         * object.c (mono_runtime_run_main): Fix small memory leak.
25570
25571         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
25572         property access modifiers. Fixes #69389.
25573
25574 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
25575
25576         * domain.c, object.c, object-internals.h, domain-internals.h,
25577         object.h, marshal.c: keep dynamic code info per domain.
25578
25579 2004-11-15  Martin Baulig  <martin@ximian.com>
25580
25581         * class.c (mono_type_get_name_recurse): Put type arguments in
25582         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
25583         see bug #68387.
25584
25585 2004-11-15  Martin Baulig  <martin@ximian.com>
25586
25587         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
25588         (mono_class_setup_vtable): When computing `the_cname' for a
25589         generic instance, don't include the namespace since we'd otherwise
25590         add it twice.
25591
25592 2004-11-15  Martin Baulig  <martin@ximian.com>
25593
25594         * class.c (mono_class_create_generic): Changed return type to void.
25595         (mono_class_create_generic_2): New public function; setup
25596         `class->method', `class->field' and `class->interfaces' here
25597         instead of in mono_class_init().
25598
25599         * class.h (mono_class_create_generic): Moved to class-internals.h.
25600
25601 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
25602
25603         * reflection.c (mono_image_create_pefile): take a file HANDLE.
25604         rather than writing to memory, write to this file. Right now,
25605         we are just writting into a buffer, and copying that. However
25606         we can avoid the buffer later.
25607
25608         (mono_dynamic_stream_reset): new function
25609
25610         * icall.c, object-internals.h: update for the above.
25611
25612 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
25613
25614         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
25615         have been using gc'd memory. First it is slower, unlikely
25616         the comment in the source code said, secondly, it increases
25617         our footprint to do it in the gc.
25618
25619         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
25620         the method so that it does not have to copy to managed code.
25621
25622 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
25623
25624         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
25625
25626 2004-11-12  Martin Baulig  <martin@localhost>
25627
25628         * reflection.c (mono_image_create_token): Allow generic method
25629         definitions here, since they may appear in an `.override'; see
25630         gen-98/gen-99 for an example.
25631
25632 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
25633
25634         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
25635         #69365.
25636
25637         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
25638         descriptive.
25639
25640 2004-11-11  Martin Baulig  <martin@ximian.com>
25641
25642         * class.c (mono_class_setup_vtable): In an explicit interface
25643         implementation, the method name now includes the arity.
25644
25645 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
25646
25647         * object.c (mono_array_full_copy): Fix warning.
25648
25649 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
25650
25651         * appdomain.c: Removed look_for_method_by_name(). Use the new method
25652         mono_class_get_method_from_name() instead.
25653         
25654         * class-internals.h: Added two new types of wrappers. 
25655         Added MonoRemotingTarget enum. Added new trampoline function type, which
25656         takes an additional MonoRemotingTarget value as parameter, so it is
25657         possible to request a trampoline for a specific target.
25658         
25659         * class.c: Added new mono_class_get_method_from_name() method.
25660         
25661         * class.h: In MonoRemoteClass, we can have now to vtables, one for
25662         general remoting sinks and one specific for cross domain calls.
25663         
25664         * debug-helpers.c: Added new wrapper names.
25665         
25666         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
25667         of a remote class.
25668         
25669         * image.c: Porperly delete value objects form the remoting invoke hashtable.
25670         
25671         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
25672         with several other methods (mono_marshal_get_xappdomain_dispatch,
25673         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
25674         and others) can generate a fast remoting wrapper for cross domain calls.
25675         More information can be found in docs/remoting.
25676         Other changes: Removed mono_find_method_by_name, and used
25677         mono_class_get_method_from_name instead.
25678         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
25679         is stored in the remoting invoke hashtable.
25680         
25681         * marshal.h: published the new method for getting the xdomain wrapper,
25682         and also added a method for getting the adequate wrapper for a given
25683         method and target.
25684         
25685         * object-internals.h, object.c: Added a couple of methods for capying and
25686         cloning arrays.
25687         Modified mono_install_remoting_trampoline, which takes the new remoting
25688         trampoline that has a remoting target as parameter.
25689         mono_class_proxy_vtable now also takes a remoting target as parameter, and
25690         will return the most suitable vtable for the target.
25691         Added mono_remote_class_vtable, which returns the vtable of a remote class
25692         (which can be the normal remoting vtable or the xdomain vtable).
25693         
25694         * threads.c: the xdomain invoke and dispatch wrappers must also be
25695         protected against interruptions.
25696
25697 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25698
25699         * icall.c: use memmove in BlockCopyInternal when the source and
25700         destination arrays are the same.
25701
25702 2004-11-09  Martin Baulig  <martin@ximian.com>
25703
25704         * class-internals.h (MonoGenericContainer): Removed `method' and
25705         `signature', replaced them with `is_method' and `is_signature'
25706         flags.  Added `context'.
25707
25708         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
25709         instead of a `MonoGenericContainer *'.
25710
25711         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
25712         for dynamic type parameters.
25713         (mono_metadata_load_generic_params): Setup `container->context'.
25714
25715         * reflection.c (mono_reflection_setup_generic_class): Setup
25716         `tb->generic_container->context'.
25717         (do_mono_reflection_bind_generic_parameters): Use
25718         mono_class_inflate_generic_type() to correctly inflate types,
25719         rather than using our own hack just for MONO_TYPE_VAR.
25720
25721 2004-11-09  Martin Baulig  <martin@ximian.com>
25722
25723         * class.c (mono_class_inflate_generic_method): Small fix; don't
25724         crash here.
25725
25726         * icall.c
25727         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
25728         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
25729         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
25730         (ves_icall_Type_BindGenericParameters): Likewise.
25731         (ves_icall_Type_get_IsGenericInstance): Likewise.
25732         (ves_icall_Type_GetGenericParameterPosition): Likewise.
25733         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
25734         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
25735         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
25736
25737 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
25738
25739         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
25740         assembly versions and public key tokens. Fixes #69113.
25741
25742 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
25743
25744         * metadata.c: fix bug introduced with the type cache changes
25745         on 2004-11-06.
25746
25747 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
25748
25749         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
25750         the MonoClass pointer instead of the token in exception clauses.
25751         * reflection.c: updates for the above and make the code not depend
25752         on the structure of MonoExceptionClause.
25753
25754 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
25755
25756         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25757         Add support for dynamic assemblies. Fixes #69114.
25758
25759         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
25760
25761 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
25762
25763         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
25764         since most only those methods use it. the code member of
25765         MonoMethodPInvoke was dead, so that can be removed too. Also,
25766         remove inline_count (again, not used), and move slot so that it
25767         can share bits with some other flags. This saves 8 bytes in the
25768         structure and gives us about 50 kb back for mcs helloworld.cs
25769
25770         * *.[ch]: Do naming changes for the above.
25771
25772         * loader.c (mono_method_get_header): Lazily init the header
25773         on first access.
25774         (mono_get_method_from_token): don't init the header here
25775         (mono_free_method): the header may never be allocated
25776
25777         Overall, this saves 150 kb of unmanaged allocations
25778         for mcs helloworld.cs. That accounts for 10% of the unmanaged
25779         memory at runtime.
25780         
25781         * loader.c, loader.h (mono_method_get_header): new accessor.
25782
25783         * *.[ch]: use the above method. Prepares us to lazily load
25784         the header.
25785
25786         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
25787         three warnings, which are actual bugs (see 69206).
25788
25789         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
25790         unused. Saves a cool 4 bytes / method.
25791
25792 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
25793
25794         * metadata.c (builtin_types): Add types for System.Object here.
25795         (mono_metadata_parse_type_full): Cache MonoType*'s that are
25796         for a class or valuetype from klass->this_arg or klass->byval_arg.
25797
25798         On mcs for a hello world, this gets us down from 21836 MonoType's
25799         to 14560.
25800
25801         (mono_metadata_free_type): Account for the above change.
25802
25803 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25804
25805         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25806         exception instead of asserting if name is null.
25807         (ves_icall_System_AppDomain_GetData): Ditto.
25808
25809 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25810
25811         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25812         EnumBuilder.
25813
25814         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25815         Return NULL when the domain does not have entry_assembly set.
25816
25817         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25818         Add a 'resource_modules' argument.
25819         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25820
25821         * reflection.c (mono_reflection_create_runtime_class): Move setting
25822         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25823         for enums too.
25824
25825         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25826         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25827         Throw an ArgumentNullException if 'ptr' is null.
25828
25829         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25830         assemblies here. Fixes #69020.
25831
25832 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25833
25834         * reflection.c (build_compressed_metadata): Fix the previous patch for
25835         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25836         the stack.
25837
25838 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25839
25840         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25841         the cultures is false. Fixes #69090.
25842
25843         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25844         detected by valgrind.
25845         
25846         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25847         TypeResolve multiple times for the same type. Fixes #65577.
25848
25849 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25850
25851         * marshal.c: Avoid using ldftn to call managed functions. It is
25852         much slower than just a call.
25853
25854         * reflection.c (mono_module_get_object): free the basename we
25855         allocate here from glib.
25856         
25857         * reflection.c (ensure_runtime_vtable): make sure to free
25858         overrides.  Also, we were allocating an array of MonoMethod not an
25859         array of MonoMethod*.
25860
25861         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25862
25863         * image.c (mono_image_close): free image->guid here.
25864
25865 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25866
25867         * reflection.c: Fix some spec conformance issues with the PE file
25868         structures so mcs compiled apps run on the Net 2.0 beta.
25869
25870 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25871
25872         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25873         Implement this. Fixes #67264.
25874
25875         * debug-helpers.h debug-helpers.c marshal.c: Move 
25876         mono_find_method_by_name to debug-helpers.c.
25877
25878 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25879
25880         * object.c (mono_release_type_locks): type_initialization_hash is
25881         a GHashTable.
25882
25883         * reflection.c object.c object-internals.h: Fix warnings.
25884
25885         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25886         without accessors. Fixes #61561.
25887
25888         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25889         application base from the root domain if not set. Fixes #65641.
25890         (mono_runtime_init): Fix warning.
25891
25892 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25893
25894         * appdomain.c: call mono_thread_pool_init.
25895         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25896         of worker threads based on the number of CPUs and the environment
25897         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25898         for non-windows (windows) systems.
25899
25900 2004-10-27  Chris Toshok  <toshok@ximian.com>
25901
25902         * mono-debug-debugger.c (write_class): don't call mono_class_init
25903         here, as even with the check for (!klass->init_pending), we get
25904         into a situation where we're hitting cycles in class
25905         initialization.  Fixes #68816.
25906
25907 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25908
25909         * image.c: Avoid overwriting values in the loaded_images_hash when an
25910         assembly is loaded multiple times. Fixes #61152.
25911
25912         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25913         so multiple satellite assemblies for the same name can be loaded.
25914         Fixes #68259.
25915
25916         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25917         not NULL.
25918
25919         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25920         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25921
25922         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25923         pending finalizers are not invoked after the appdomain has been 
25924         unloaded. Fixes #67862.
25925
25926 2004-10-22  Martin Baulig  <martin@ximian.com>
25927
25928         * mono-debug-debugger.c
25929         (mono_debugger_runtime_invoke): Don't box valuetypes.
25930
25931 2004-10-22  Chris Toshok  <toshok@ximian.com>
25932
25933         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25934         don't hide private methods.
25935
25936 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25937
25938         * icall.c: Allows the runtime to "share" (when known) the public key
25939         token of an assembly. This avoid the need to recalculate the token 
25940         (from the public key) in managed code.
25941
25942 2004-10-21  Chris Toshok  <toshok@ximian.com>
25943
25944         * debug-helpers.c (append_class_name): argh, revert last patch.
25945         
25946 2004-10-21  Chris Toshok  <toshok@ximian.com>
25947
25948         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25949         not '/', so that it matches what the debugger uses to look up
25950         methods.
25951
25952 2004-10-21  Martin Baulig  <martin@ximian.com>
25953
25954         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25955         public method; this is called each time an exception is thrown and
25956         allows the debugger to use exception catch points.
25957
25958 2004-10-21  Martin Baulig  <martin@ximian.com>
25959
25960         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25961         the stack pointer and the exception object in some struct and pass
25962         that to the debugger.
25963
25964 2004-10-21  Chris Toshok  <toshok@ximian.com>
25965
25966         * mono-debug-debugger.c (do_write_class): add instance/static
25967         event support.  We don't expose "raise" or "other" yet.
25968         (event_is_static): new method.
25969
25970 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25971
25972         * mono-debug-debugger.c
25973         (mono_debugger_handle_exception): Remove
25974         bogus return value for fussy compilers.
25975
25976 2004-10-20  Martin Baulig  <martin@ximian.com>
25977
25978         * mono-debug-debugger.c
25979         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25980         (mono_debugger_handled_exception): Likewise.
25981
25982 2004-10-20  Martin Baulig  <martin@ximian.com>
25983
25984         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25985         MONO_DEBUGGER_EVENT_EXCEPTION.
25986
25987         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25988         public function to send the debugger a notification for an
25989         exception and inform it about a catch/finally clause.
25990
25991 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25992
25993         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25994         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25995         fix 2.95 build. 
25996
25997         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25998
25999 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
26000
26001         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
26002         marshalled as [In,Out]. Fixes #58325.
26003
26004 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
26005
26006         * reflection.c (mono_method_body_get_object): Implement some fields.
26007
26008 2004-10-12  Martin Baulig  <martin@ximian.com>
26009
26010         * reflection.c (mono_reflection_bind_generic_parameters): Small
26011         fix, correctly retrieve our parent from a generic instance.
26012
26013 2004-10-12  Martin Baulig  <martin@ximian.com>
26014
26015         * metadata.c (mono_metadata_generic_param_equal): We always have
26016         an owner.
26017
26018         * class.c
26019         (mono_class_from_generic_parameter): We need to have an owner.
26020         (my_mono_class_from_generic_parameter): Likewise.
26021
26022         * reflection.c (mono_reflection_setup_generic_class): Renamed to
26023         mono_reflection_create_generic_class() and added a new
26024         mono_reflection_setup_generic_class().  
26025         (mono_reflection_initialize_generic_param): If we're a nested
26026         generic type and inherited from the containing class, set our
26027         owner to the outer class.
26028
26029 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
26030
26031         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
26032
26033         * reflection.c (mono_method_body_get_object): New function to create
26034         a MethodBody object.
26035
26036         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
26037
26038 2004-10-11  Martin Baulig  <martin@ximian.com>
26039
26040         * metadata.c (_mono_metadata_type_equal): Renamed to
26041         do_mono_metadata_type_equal() and made static.
26042
26043 2004-10-11  Martin Baulig  <martin@ximian.com>
26044
26045         * appdomain.c: Bump corlib version number to 28.
26046
26047 2004-10-10  Martin Baulig  <martin@ximian.com>
26048
26049         * class-internals.h
26050         (MonoGenericInst): Added `MonoGenericContainer *container'.
26051         (MonoGenericMethod): Likewise.
26052         (MonoGenericContext): Likewise.
26053         (MonoGenericParam): Added `MonoGenericContainer *owner'.
26054
26055         * metadata.c
26056         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
26057         (do_mono_metadata_parse_generic_inst): Likewise.
26058         (mono_metadata_parse_type_full): New public method.  This is the actual
26059         mono_metadata_parse_type() implementation - with an additional
26060         `MonoGenericContainer *' argument.
26061         (mono_metadata_parse_array_full): Likewise.
26062         (mono_metadata_parse_signature_full): Likewise.
26063         (mono_metadata_parse_method_signature_full): Likewise.
26064         (mono_metadata_parse_mh_full): Likewise.
26065         (mono_type_create_from_typespec): Likewise.
26066         (mono_metadata_interfaces_from_typedef_full): New public method;
26067         this is similar to the other _full() methods, but we take a
26068         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
26069         (mono_metadata_parse_generic_param): Take an additional
26070         `MonoGenericContainer *' argument and lookup the MonoGenericParam
26071         from that container.
26072         (mono_metadata_generic_param_equal): New static method to compare
26073         two type parameters.
26074         (_mono_metadata_type_equal): New static method; takes an
26075         additional `gboolean signature_only' argument - if true, we don't
26076         compare the owners of generic parameters.
26077         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
26078         with a TRUE argument - do a signature-only comparision.
26079
26080         * loader.c: Use the new _full() methods and pass the
26081         MonoGenericContainer to them.
26082
26083         * object-internals.h (MonoReflectionTypeBuilder): Added
26084         `MonoGenericContainer *generic_container' field.
26085         (MonoReflectionMethodBuilder): Likewise.
26086
26087 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
26088
26089         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
26090         case initial images of dynamic assemblies.
26091
26092         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
26093
26094         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
26095
26096         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
26097         length of event->other array.
26098         (typebuilder_setup_events): Ditto.
26099
26100         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
26101         'assembly_by_name' and add an 'assemblies' list.
26102
26103         * assembly.h assembly.c: Add a new search hook for determining whenever
26104         an assembly is already loaded. Use this instead of searching in the
26105         loaded_assemblies list.
26106
26107         * domain.c appdomain.c: Implement the new search hook so loaded 
26108         assemblies are now scoped by appdomain. Fixes #67727.
26109
26110 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
26111
26112         * threads.c (mono_thread_attach): Initialize synch_lock field so
26113         mono_thread_detach works again.
26114
26115         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
26116         'lib' too. Fixes #63130.
26117
26118 2004-10-06  Jackson Harper  <jackson@ximian.com>
26119
26120         * culture-info-tables.h: regenerated.
26121
26122 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
26123
26124         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
26125         implemented by other interfaces in the result. Fixes #65764.
26126         
26127         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
26128         Handle unloadable modules without crashing.
26129
26130         * image.c (load_modules): Revert the previous patch since modules must
26131         have a fixed index inside the array.
26132         
26133         * image.c (load_modules): Don't include native modules in the modules
26134         array.
26135
26136 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
26137
26138         * reflection.h: Add param_defaults field.
26139
26140         * reflection.c: Add support for parameter defaults in dynamic methods.
26141         Fixes #64595.
26142
26143         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
26144         an empty string when a type has no namespace. Fixes #64230.
26145
26146 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
26147
26148         * tabledefs.h: Added "internal" security actions to support non-CAS
26149         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
26150         Note: they do not seems to be used anymore in 2.0 (new metadata format)
26151
26152 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
26153
26154         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
26155         constructor of abstract class. Fixes #61689.
26156
26157 2004-10-04  Martin Baulig  <martin@ximian.com>
26158
26159         * class-internals.h (MonoGenericContainer): New type.
26160         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
26161         `MonoGenericContainer *generic_container'.
26162         (MonoClass): Replaced `gen_params' and `num_gen_params' with
26163         `MonoGenericContainer *generic_container'.
26164
26165         * metadata.c (mono_metadata_load_generic_params): Return a
26166         `MonoGenericContainer *' instead of a `MonoGenericParam *';
26167         removed the `num' argument.
26168
26169 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
26170
26171         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
26172         for dynamic images.
26173
26174         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
26175         machine fields.
26176
26177         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
26178
26179         * reflection.c: Save pe_kind and machine values into the generated
26180         image file.
26181
26182         * appdomain.c: Bump corlib version number.
26183
26184         * object-internals.h: Reorganize layout of LocalBuilder.
26185
26186         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
26187         New helper function.
26188
26189         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
26190         created MonoType for dynamic types. Fixes #66180.
26191
26192 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
26193
26194         * threadpool.c: the ares hashtable needs a critical section around it.
26195         this prevents some nasty segfaults
26196
26197 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
26198
26199         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
26200         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
26201         bug 67324).
26202         
26203 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
26204
26205         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
26206         
26207 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
26208
26209         * image.c: Always canonicalize image file names, to avoid loading
26210         the same assembly twice when referenced using a relative path.
26211
26212 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
26213
26214         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
26215
26216         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
26217
26218         * marshal.c: Fix warnings.
26219
26220 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
26221
26222         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
26223         attempting to marshal the delegate_trampoline as the method_addr.
26224         This patch has a static hashtable of marshalled delegates so that 
26225         we can map delegate_trampoline addresses back to delegates.  This
26226         allows a delegate passed to managed code to be passed back into native
26227         code.  Fixes #67039
26228
26229 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
26230
26231         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
26232
26233         * reflection.c (method_encode_code): Align method headers properly.
26234         Fixes #66025.
26235
26236 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
26237
26238         * marshal.c: In the runtime invoke wrapper, reset the abort
26239         exception if it is cached. This avoids the automatic rethrowal of 
26240         the exception after the catch of the wrapper. Also check for pending
26241         interruptions before calling the managed method. This is done using
26242         the new method emit_thread_force_interrupt_checkpoint, since the
26243         normal checkpoint method is ignored when running the invoke wrapper.
26244         * object.c: If the abort exception is rethrown, set the abort_exc
26245         field of the thread, so it will be rethrown aftere every catch.
26246         * threadpool.c: Only run an interruption checkpoint if what has been
26247         requested is a stop of the thread (aborts will be ignored).
26248         * threads.c: By default, a thread will now never be interrumped while
26249         running the runtime invoke wrapper (this ensures that runtime_invoke
26250         will always return to the caller if an exception pointer is provided).
26251         There is a new special method mono_thread_force_interruption_checkpoint()
26252         to force an interruption checkpoint even if running a protected
26253         wrapper, which is used by the same runtime invoke wrapper to do a check
26254         at a safe point.
26255
26256 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
26257
26258         * object.c, object-internals.h: Implemented mono_release_type_locks,
26259         which releases the cctor locks held by a thread.
26260         * threads.c, threads.h: In thread_cleanup, release cctor locks held
26261         by a thread. Added mono_thread_exit() method to be used to safely stop
26262         a thread.
26263
26264 2004-09-28  Raja R Harinath  <rharinath@novell.com>
26265
26266         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
26267         Move null check before dereference.  Avoid indexing beyond the end
26268         of the 'modules' array.
26269
26270 2004-09-28  Raja R Harinath  <rharinath@novell.com>
26271
26272         * metadata-internals.h (MonoImage): Add module_count field.
26273         * image.c (load_modules): Set image->module_count.
26274         (mono_image_load_file_for_image): Use image->module_count.
26275         * reflection.c (mono_image_load_module): Append to image->modules array 
26276         of dynamic assembly.
26277         (mono_module_get_object): Fix loop to actually increment index.
26278         Use image->module_count.
26279         * assembly.c (mono_assembly_load_references): Use image->module_count.
26280         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
26281         Likewise.
26282
26283 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
26284
26285         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
26286         Avoid assert on generic types.
26287
26288 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
26289
26290         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
26291
26292         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
26293
26294         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
26295         function to convert a MarshalSpec structure to its managed counterpart.
26296
26297         * reflection.c: Fix warnings.
26298         
26299         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
26300         field.
26301
26302         * icall.c (mono_create_icall_signature): Fix build.
26303
26304 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
26305
26306         * icall.c: Add MakePointType icall.
26307
26308         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
26309         warnings.
26310
26311 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26312
26313         * threadpool.c: reuse allocated slots in the queue.
26314
26315 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
26316
26317         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
26318
26319         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
26320
26321         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
26322         previous change.
26323
26324         * tabledefs.h: Add constants for pinvoke attributes BestFit and
26325         ThrowOnUnmappableChar.
26326
26327         * icall.c (ves_icall_Type_GetPacking): New icall.
26328
26329 2004-09-24  Martin Baulig  <martin@ximian.com>
26330
26331         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
26332
26333 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26334
26335         * appdomain.c:
26336         (mono_domain_set): allow setting a domain that is being unloaded.
26337         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
26338         being unloaded.
26339
26340 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
26341
26342         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
26343         the GetCustomAttributes icall.
26344
26345 2004-09-23  Martin Baulig  <martin@ximian.com>
26346
26347         * object-internals.h (MonoReflectionGenericParam): Replaced
26348         'has_ctor_constraint', `has_reference_type' and `has_value_type'
26349         with `guint32 attrs'.
26350
26351 2004-09-23  Martin Baulig  <martin@ximian.com>
26352
26353         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
26354
26355 2004-09-23  Martin Baulig  <martin@ximian.com>
26356
26357         * object-internals.h (GenericParameterAttributes): New enum.
26358
26359 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
26360
26361         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
26362         
26363         * class.c (init_events): Fill out event->other field.
26364
26365         * class.c: Fix warnings.
26366
26367         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
26368
26369 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
26370
26371         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
26372         walk which doesn't supply the IL offset.
26373
26374 2004-09-22  Martin Baulig  <martin@ximian.com>
26375
26376         * reflection.c (mono_reflection_setup_internal_class): If we're
26377         System.ValueType, System.Object or System.Enum, set
26378         `klass->instance_size' and create the vtable.
26379         (mono_reflection_create_internal_class): If we're an enum type,
26380         get the base class from our current corlib.
26381
26382 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
26383
26384         * reflection.h (MonoResolveTokenError): New type.
26385
26386         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
26387         icall.
26388
26389         * icall.c: Add an 'error' argument to the ResolveToken icalls.
26390
26391 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
26392
26393         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
26394         Support also calling constructors, but only for already allocated objects.
26395
26396 2004-09-17  Geoff Norton <gnorton@customerdna.com>
26397
26398         * reflection.c (type_get_qualified_name): If the klass is null
26399         return the typename to avoid a NullRefEx.
26400         (encode_cattr_value): Get the qualified name of the boxed type,
26401         not the underlying enumtype.  Fixes #62984.
26402
26403 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
26404
26405         * marshal.c: Fix problems with previous checkin.
26406
26407 2004-09-21    <vargaz@freemail.hu>
26408
26409         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
26410         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
26411
26412         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
26413
26414 2004-09-21  Geoff Norton <gnorton@customerdna.com>
26415
26416         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
26417         should only return a type for pointers, arrays, and passbyref types.
26418         Fixes bug #63841.
26419
26420 2004-09-21  Martin Baulig  <martin@ximian.com>
26421
26422         * domain.c (mono_debugger_check_runtime_version): New public
26423         function.
26424
26425         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
26426
26427 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
26428
26429         * reflection.c: Added missing sort to the declarative security 
26430         attributes table. MS implementation stops seeing the attributes if the
26431         token number regress in the table (as shown by ildasm and permview).
26432
26433 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
26434
26435         * object-internals.h (MonoReflectionModule): Add 'token' field.
26436         
26437         * reflection.c (mono_reflection_get_token): Add support for Module
26438         and Assembly.
26439         (mono_module_get_object): Set 'token' field.
26440         (mono_module_file_get_object): Set 'token' field.
26441
26442         * icall.c: Add new Assembly and Module icalls.
26443
26444         * appdomain.c: Bump corlib version.
26445
26446 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
26447
26448         * loader.h loader.c class.h class.c: Add helper functions for obtaining
26449         tokens of metadata objects.
26450
26451         * reflection.h reflection.c (mono_reflection_get_token): New function
26452         to obtain the token of a metadata object.
26453
26454         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
26455
26456 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
26457
26458         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
26459         
26460         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
26461
26462 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
26463
26464         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
26465         * object-internals.h: Added 3 MonoArray* members to MonoReflection
26466         AssemblyBuilder to access the permissions set in the class lib.
26467         * reflection.c: Added security attributes encoding step in 
26468         mono_image_build_metadata.
26469         * tabledefs.h: Added new security actions defined in 2.0:
26470         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
26471
26472 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26473
26474         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
26475         macro parameter.
26476
26477 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26478  
26479         * locales.c: nullify the ICU_collator member of CompareInfo when it is
26480           finalized. There where random SIGSEVs at program termination, when
26481           an object being finalized was trying to do a string comparison and
26482           the current culture was already finalized.
26483  
26484 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26485
26486         * threads.c: call thread_cleanup before finishing the thread if we get
26487         there.
26488
26489 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
26490
26491         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
26492         assemblies from the parent. Fixes #65665.
26493
26494 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
26495
26496         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
26497         modifiers.
26498
26499 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
26500
26501         * reflection.h: add prototype for mono_get_dbnull_object
26502         * reflection.c: add prototypes for get_default_param_value_blobs 
26503         and mono_get_object_from_blob for fussier compilers
26504
26505 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
26506  
26507         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
26508         false deadlock checks in class initialization.
26509  
26510 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
26511
26512         * image.c (mono_image_addref): Fix comment.
26513
26514         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
26515         possible.
26516
26517 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
26518
26519         * reflection.c (mono_param_get_objects): Modified to return
26520         ParameterInfo.DefaultValue object.
26521
26522         (get_default_param_value_blobs):
26523         (mono_get_object_from_blob):
26524         (mono_get_dbnull_object): New helper routines. 
26525
26526         * object.c (mono_get_constant_value_from_blob): New helper routine
26527         carved out from get_default_field_value ()
26528
26529         * object-internals.h (mono_get_constant_value_from_blob): Added
26530         function declaration.
26531
26532 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
26533
26534         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
26535         referenced assemblies. Fixes #62135.
26536
26537         * exception.h exception.c (mono_get_exception_file_not_found2): New
26538         helper function.
26539
26540 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
26541
26542         * class.h class.c: Add mono_type_get_underlying_type ().
26543
26544 2004-09-09  Geoff Norton <gnorton@customerndna.com>
26545
26546         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
26547         Fix GetTypes() to support dynamically created assemblies.
26548
26549 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
26550
26551         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
26552         
26553         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
26554         previous patch.
26555
26556         * reflection.h reflection.c loader.c: Allow dynamic construction of
26557         pinvoke methods. Fixes #65571.
26558         
26559         * reflection.c (mono_reflection_get_type): Revert previous change since
26560         it causes regressions.
26561
26562 2004-09-08  Martin Baulig  <martin@ximian.com>
26563
26564         * class.c (class_compute_field_layout): Don't call
26565         mono_class_layout_fields() for open generic instances.
26566
26567 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
26568         * threads.c appdomain.c: fix typo in GC macro
26569
26570 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26571
26572         * threads.c: don't call mono_thread_detach() in start_wrapper(),
26573         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
26574
26575 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
26576
26577         * image.c (mono_image_close): Applied patch from 
26578         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
26579         assembly is loaded multiple times from data.
26580         
26581         * image.c (mono_image_open): Fix warning.
26582
26583 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26584
26585         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
26586         once. Fixes #58334.
26587         
26588         * reflection.c (mono_reflection_create_runtime_class): Initialize
26589         klass->nested_classes. Fixes #61224.
26590
26591 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26592
26593         * threads.c: sched_yield() on exit, to allow threads to quit.
26594
26595 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26596
26597         * object.c (mono_unhandled_exception): Remove leftover debug code.
26598
26599 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
26600
26601         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
26602
26603 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26604
26605         * marshal.c (emit_marshal_array): Really null terminate string arrays.
26606         
26607         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
26608
26609 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26610
26611         * marshal.c (emit_marshal_array): Null terminate string arrays.
26612         
26613         * marshal.c (raise_auto_layout_exception): Fix warning.
26614
26615         * reflection.c (mono_param_get_objects): Initialize the default value
26616         with DBNull.Value, not null. Fixes #62123.
26617
26618 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
26619
26620         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
26621         throw an exception with a cute explanation.
26622
26623 2004-09-06  Dick Porter  <dick@ximian.com>
26624
26625         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
26626         Close the new process's thread handle, as we don't use it.  The
26627         handle stays around forever otherwise.
26628
26629 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26630
26631         * object.c (arith_overflow): Fix warning.
26632
26633         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
26634         calling conventions in method refs. Fixes #65352.
26635
26636         * reflection.c: Fix warnings.
26637
26638 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26639
26640         * icall.c: Add a new icall for Array.Clear
26641
26642 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26643
26644         * object.c: When allocating an array, we have to throw
26645         an overflow exception if any of the lengths are < 0.
26646
26647 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26648
26649         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
26650         properly. Also move implementation of string array marshalling to 
26651         managed code. Fixes #42316.
26652
26653 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26654
26655         * assembly.c: provide more information when loading an assembly fails.
26656
26657 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26658
26659         * filewatcher.c: don't expect the development fam package to be
26660         installed.
26661
26662 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
26663
26664         * marshal.c: Make a copy of the signature cookie since it will be
26665         freed by the caller.
26666         
26667         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
26668
26669         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
26670
26671         * metadata.c (mono_metadata_free_marshal_spec): New function to free
26672         marshal specs.
26673
26674         * marshal.c: More refactoring.
26675         
26676         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
26677         smaller functions.
26678
26679 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
26680
26681         * object.c: In mono_message_invoke, fill the output parameter array after
26682           calling the managed method (it was done before the call). This fixes
26683           bug #59299.
26684
26685 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26686
26687         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
26688         as well.
26689
26690 2004-09-02  Martin Baulig  <martin@ximian.com>
26691
26692         * class.c (mono_class_instance_size): Don't allow generic type
26693         definitions or open generic instances.
26694         (mono_class_array_element_size): If we're a value type, call
26695         mono_class_instance_size() on the original class.
26696
26697         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
26698         handle generic instances.
26699
26700         * mono-debug-debugger.c (write_type): Handle generic instances
26701         like classes.
26702
26703 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26704
26705         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
26706         the allocation request fails. Fixes #65089.
26707
26708         * object.c (mono_runtime_free_method): Do not call mono_free_method.
26709         
26710         * object.c (mono_runtime_free_method): New function to free a dynamic
26711         method.
26712
26713         * marshal.c (mono_delegate_free_ftnptr): New function to free the
26714         delegate trampoline.
26715
26716         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
26717         with hasthis as dynamic,
26718
26719         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
26720
26721         * domain.c (mono_jit_info_table_remove): New function to remove an
26722         entry from the jit info table.
26723
26724         * class-internals.h (MonoMethod): Add 'dynamic' field.
26725
26726         * loader.c: Fix warnings.
26727
26728 2004-09-01  Martin Baulig  <martin@ximian.com>
26729
26730         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
26731         instead of mono_debugger_lock() because the latter one is a no-op
26732         unless running in the debugger.
26733
26734 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26735
26736         * class.c (class_compute_field_layout): Classes with auto-layout or
26737         reference fields are not blittable.
26738         
26739 2004-09-01  Dick Porter  <dick@ximian.com>
26740
26741         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
26742         mono_image_get_filename() to get the assembly location.
26743
26744         * icall.c:
26745         * metadata.h: Fix compile warnings
26746
26747 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26748
26749         * class.c (class_compute_field_layout): System.Object is blittable.
26750
26751         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
26752         as in/out. Fixes #59909.
26753
26754 2004-09-01  Martin Baulig  <martin@ximian.com>
26755
26756         * metadata.h (MONO_TYPE_ISREFERENCE): Call
26757         mono_metadata_generic_inst_is_valuetype() if we're a generic
26758         instance to check whether our underlying type is a reference type.
26759
26760 2004-09-01  Martin Baulig  <martin@ximian.com>
26761
26762         * metadata.c (mono_type_size): If we're a generic instance, call
26763         mono_class_value_size() for value types.
26764
26765 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
26766
26767         * marshal.c: Implement more custom marshalling functionality. Fixes
26768         #64915.
26769
26770 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26771
26772         * mono-debug.c, debug-mono-symfile.c: add some locking love.
26773
26774 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
26775
26776         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
26777
26778         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
26779
26780         * icall.c: Fix some warnings.
26781
26782         * threads.c (abort_appdomain_thread): Fix unref errors.
26783         (mono_thread_current): Fix THREAD_DEBUG define.
26784
26785 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
26786
26787         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
26788
26789         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
26790
26791 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
26792
26793         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
26794         string arrays.
26795
26796 2004-08-28  Martin Baulig  <martin@ximian.com>
26797
26798         * metadata.c
26799         (mono_metadata_generic_inst_is_valuetype): New public function.
26800
26801         * metadata.h (MONO_TYPE_ISSTRUCT): Call
26802         mono_metadata_generic_inst_is_valuetype() if we're a generic
26803         instance to check whether our underlying type is a valuetype.
26804
26805 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26806
26807         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26808         #63768.
26809
26810 2004-08-25  Martin Baulig  <martin@ximian.com>
26811
26812         * loader.c (mono_get_method_from_token): Abstract methods can also
26813         be generic and thus have type parameters.
26814
26815         * metadata-internals.h
26816         (MonoDynamicImage): Added `GPtrArray *gen_params'.
26817
26818         * reflection.c (mono_image_get_generic_param_info): Don't create a
26819         metadata row, just add an entry to the `gen_params' array.
26820         (build_compressed_metadata): Sort the `gen_params' array and then
26821         actually create the metadata.
26822
26823 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26824
26825         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26826
26827 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26828
26829         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26830
26831 2004-08-24  Martin Baulig  <martin@ximian.com>
26832
26833         * class.cs (mono_class_is_subclass_of): Like an interface, a
26834         generic instance also derives from System.Object.
26835
26836 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26837
26838         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26839         custom modifiers to be in any order. Fixes #61990.
26840
26841 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26842
26843         * object.c: Register mono_object_new_fast icall.
26844         
26845         * object.c (mono_class_get_allocation_ftn): Return to calling
26846         mono_object_new_fast, since it seems faster to compute the object 
26847         size in unmanaged code than passing it as a parameter.
26848
26849         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26850
26851         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26852         this function with Boehm as the oom handler, so we don't have to check
26853         the result of GC_malloc.
26854
26855         * object.c: Remove checks for oom.
26856
26857         * object.h object.c (mono_class_get_allocation_ftn): New function to
26858         return the icall which can be used to allocate an instance of a given
26859         class. 
26860
26861         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26862
26863         * class-internals.h: Add 'enabled' field.
26864
26865 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26866
26867         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26868
26869 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26870         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26871         value 0x0010.
26872
26873 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26874
26875         * appdomain.c: use the Tls function for appdomain too,
26876         at Zoltan's request. Actually return in mono_context_get
26877
26878         * appdomain.c, profiler.c, threads.c: use __thread
26879
26880 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26881
26882         * appdomain.c threads.c: Call GC_CreateThread on windows.
26883
26884         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26885         multiple libraries since this don't work on windows.
26886
26887 2004-08-18  Martin Baulig  <martin@ximian.com>
26888
26889         * class-internals.h
26890         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26891         MonoMethodHeader.
26892
26893         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26894         MonoMethodNormal since we also need it for abstract and interface
26895         methods.
26896
26897         * reflection.c
26898         (build_compressed_metadata): Sort the GenericParam table.
26899         (mono_image_create_token): Added `gboolean create_methodspec'
26900         argument; this is false when generating a MethodImpl token.
26901         (reflection_methodbuilder_to_mono_method): Abstract and interface
26902         methods may also have generic parameters.
26903
26904 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26905
26906         * appdomain.c: thread local alloc
26907
26908 2004-08-17  Martin Baulig  <martin@ximian.com>
26909
26910         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26911
26912         * icall.c
26913         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26914         argument.
26915
26916         * class.c (mono_type_get_full_name): New public function.
26917         (mono_type_get_name): Don't include the type arguments.
26918
26919 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26920
26921         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26922         for inclusion into the mono executable.
26923
26924 2004-08-16  Martin Baulig  <martin@ximian.com>
26925
26926         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26927         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26928
26929 2004-08-14  Martin Baulig  <martin@ximian.com>
26930
26931         * class.c (dup_type): Also copy the `byref' field.
26932
26933 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26934
26935         * reflection.c (create_dynamic_mono_image): Revert the last change 
26936         since it breaks bootstrap.
26937
26938 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26939
26940         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26941
26942         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26943         not free them with g_free.
26944
26945 2004-08-11  Martin Baulig  <martin@ximian.com>
26946
26947         * reflection.c (mono_reflection_setup_internal_class): Also call
26948         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26949
26950 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26951
26952         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26953         called during default (first) AppDomain creation. Keep track of
26954         Evidence when loading assemblies.
26955
26956 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26957
26958         * opcodes.c, opcodes.h: reduce runtime relocations.
26959
26960 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26961
26962         * culture-info.h, locales.c: fixes and chages to sue the new
26963         optimized format of the locale data.
26964         * culture-info-tables.h: regenerated.
26965
26966 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26967         
26968         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26969
26970 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26971
26972         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26973         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26974         * domain-internals.h: icall declaration.
26975         * icall.c: icall registration.
26976         * object-internals.h: New fields in MonoAssembly for CAS.
26977
26978 2004-08-05  Duncan Mak  <duncan@ximian.com>
26979
26980         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26981         CEE_LDELEM_ANY.
26982
26983 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26984
26985         * reflection.c: fix to deal with object[] arrays in custom ctors
26986         (bug #62550).
26987
26988 2004-08-05  Martin Baulig  <martin@ximian.com>
26989
26990         * class.c (mono_class_array_element_size): Added support for
26991         generic instances and correctly handle "recursive" types.
26992
26993 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26994
26995         * assembly.c: Fix warnings.
26996
26997 2004-08-04  Martin Baulig  <martin@ximian.com>
26998
26999         * class.c
27000         (mono_type_get_name_recurse): Added `gboolean include_arity'
27001         argument specifying whether or not we should include the generic
27002         arity in the type name.
27003         (_mono_type_get_name): New static function.
27004         (mono_class_setup_vtable): If we're a generic instance, don't
27005         include the generic arity in the names of explicit method
27006         implementations.        
27007
27008 2004-08-03  Martin Baulig  <martin@ximian.com>
27009
27010         * class.c (mono_type_get_name_recurse): Enclose the generic type
27011         arguments in `<', '>'.
27012
27013 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27014
27015         * gc.c: make GC warning messages use the trace API, they are just
27016         noise to most of the users.
27017
27018 2004-08-03  Martin Baulig  <martin@ximian.com>
27019
27020         * debug-mono-symfile.c (read_string): Correctly read the string.
27021
27022 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
27023
27024         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
27025         
27026         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
27027         icalls.
27028         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
27029
27030 2004-07-30  Martin Baulig  <martin@ximian.com>
27031
27032         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
27033         Reflect latest symbol writer changes.   
27034
27035 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
27036
27037         * object.c: always create an object if null is passed
27038         to Invoke() where a valuetype is expected.
27039
27040 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
27041
27042         * marshal.c (mono_marshal_init): make managed
27043         signatures match native ones better for 64bits.
27044
27045 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27046
27047         * appdomain.c: hack to build correctly the private bin path on windows.
27048         Fixes bug #61991.
27049
27050 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
27051
27052         * assembly.c: Load mscorlib from the correct framework directory
27053           (mono/<version>/mscorlib.dll).
27054         * appdomain.h: Added prototypes for new functions.
27055         * internals.h: Added some prototypes.
27056         * domain.c: When initializing the runtime, get from the executable and
27057           the configuration files the runtime version that the app supports.
27058           Added support methods for reading app.exe.config. Added list of versions
27059           supported by the JIT. Added two new methods: mono_init_from_assembly,
27060           which initializes the runtime and determines the required version from
27061           the provided exe file, and mono_init_version, which initializes
27062           the runtime using the provided version.
27063         * icall.c: Get machine.config from version-specific directory.
27064         * reflection.c: When generating an image, embed the version number
27065           of the current runtime.
27066
27067 2004-07-28  Dick Porter  <dick@ximian.com>
27068
27069         * socket-io.c
27070         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
27071         returned sockaddr size before creating the remote address object.
27072         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
27073         61608.
27074
27075 2004-07-28  Dick Porter  <dick@ximian.com>
27076
27077         * locales.c (string_invariant_compare_char): Fix invariant char
27078         compares between upper and lower cases.  Fixes bug 61458.
27079
27080 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
27081         
27082         * marshal.c: actually cache stelem.ref wrappers.
27083         
27084 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
27085
27086         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
27087         sections and remove the mono_cli_rva_map () function.
27088
27089 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27090
27091         * debug-mono-symfile.c: fix one more endianess issue, from a patch
27092         by Geoff Norton (<gnorton@customerdna.com>).
27093
27094 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27095
27096         * class.c: fix class loads for pointer types (typeof(int) !=
27097         typeof(int*)).
27098
27099 2004-07-27  Martin Baulig  <martin@ximian.com>
27100
27101         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
27102         reading the debugging information from an external ".mdb" file.
27103
27104 2004-07-24  Martin Baulig  <martin@ximian.com>
27105
27106         * reflection.c (mono_image_get_type_info): Only write a class
27107         layout entry if we actually have a size or a packing size.
27108
27109 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
27110
27111         * reflection.c (type_get_fully_qualified_name): 
27112         insert cast to get type checking of ?: with non-gcc compilers
27113
27114 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
27115
27116         * rand.c: use g_getenv for both lookups of
27117         MONO_EGD_SOCKET
27118
27119 2004-07-17  Martin Baulig  <martin@ximian.com>
27120
27121         * reflection.c (mono_reflection_bind_generic_method_parameters):
27122         Set `gmethod->reflection_info'.
27123
27124 2004-07-17  Martin Baulig  <martin@ximian.com>
27125
27126         * class.c (mono_class_create_from_typedef): Insert the newly
27127         created class into the hash table before computing the interfaces
27128         since we could be called recursively.
27129
27130 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
27131
27132         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
27133         function to implement stelem.ref in managed code
27134         * class-internals.h, debug-helpers.c: a new wrapper type
27135         for the above.
27136
27137 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
27138
27139         * gc.c: allow GC handles to work even when no GC is compiled in.
27140         Fix part of bug #61134 (GetAddrOfPinnedObject).
27141
27142 2004-07-13  Peter Williams  <peter@newton.cx>
27143  
27144         * process.c (complete_path): Make sure we don't attempt to execute
27145         directories.
27146  
27147 2004-07-12  Geoff Norton <gnorton@customerdna.com>
27148
27149         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
27150           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
27151           and will add/subtract the hour if needed
27152
27153 2004-07-12  Martin Baulig  <martin@ximian.com>
27154
27155         * reflection.c (mono_field_get_object): If we have
27156         `field->generic_info', take the attributes from
27157         `field->generic_info->generic_type'.    
27158
27159 2004-07-12  Martin Baulig  <martin@ximian.com>
27160
27161         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
27162         This function must be called before initializing the runtime.
27163         (mono_debug_init_1): New function; call this after initializing
27164         the runtime, but before loading the assembly.  It tells the
27165         debugger to load corlib and the builtin types.
27166
27167         * mono-debug-debugger.c: Did some larger changes in the debugging
27168         code; support recursive class declarations, make sure we actually
27169         add all classes.
27170
27171 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27172
27173         * debug-helpers.c: undo my previous patch and fixed the real issue in
27174         ../mini/exceptions-x86.c
27175
27176 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27177
27178         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
27179         when no HOME env. variable was set and a NullRef was thrown in a .cctor
27180         called from other .cctors.
27181
27182 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
27183
27184         * loader.c: Removed the mono_loader_wine_init hack now that we are
27185         doing a managed version of Windows.Forms.
27186
27187 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
27188
27189         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
27190         threadpool.c, threads.c: remove static data from rootset.
27191
27192 2004-07-09  Dick Porter  <dick@ximian.com>
27193
27194         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
27195         Don't do any more processing if the matched length was 0.  It was
27196         increasing the size of the string before.  Fixes bug 61167.
27197
27198 2004-07-09  Dick Porter  <dick@ximian.com>
27199
27200         * socket-io.h:
27201         * socket-io.c
27202         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
27203         Add support for SO_PEERCRED if its available.
27204
27205 2004-07-09  Peter Bartok <pbartok@novell.com>
27206         * loader.c: winelib.exe.so error message is now only displayed if
27207         MONO_DEBUG is set. To help us avoid questions when people are trying
27208         out the new Managed.Windows.Forms.
27209
27210 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
27211
27212         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
27213         for isinst and castclass wrappers.
27214
27215         * class-internals.h icall.c: Move registration and lookup of JIT icalls
27216         to libmetadata from the JIT, so they could be used by the marshalling
27217         code and the interpreter.
27218
27219         * marshal.c: Register marshalling related JIT icalls here instead of
27220         in mini.c. Use CEE_MONO_ICALL instead of the family of 
27221         CEE_MONO_PROC<x> opcodes to call marshalling functions.
27222
27223         * metadata.h: Remove unneeded marshalling conversions.
27224
27225         * opcodes.c: Update for new opcodes.
27226         
27227 2004-07-08  Martin Baulig  <martin@ximian.com>
27228
27229         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
27230         (mono_debug_get_domain_data): Make this function static.
27231
27232 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
27233
27234         * gc.c, object.h: add nice GC handle API for embedders.
27235
27236 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
27237
27238         * reflection.c: more changes for the new api
27239
27240         * object.c: When we reflect on a field w/ a constant value, it
27241         will not have a memory location, so we must access metadata. Also,
27242         allow easier reading of strings so that we can read them from
27243         the constant data.
27244
27245         * class.c (mono_class_layout_fields): no need for literal fields here.
27246
27247         * class-internals.h: api changes for const fields
27248
27249         * icall.c (ves_icall_get_enum_info): use new apis for const fields
27250
27251 2004-07-06  Martin Baulig  <martin@ximian.com>
27252
27253         * mono-debug.h: Increment version number to 44.
27254
27255         * mono-debug.c (mono_debug_add_wrapper): The second argument is
27256         now a gpointer, rewrote this whole method.
27257
27258         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
27259         function.  Add information about the wrapper in a new "misc table".
27260
27261         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
27262         for the new misc table.
27263
27264 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
27265
27266         * metadata-internals.h image.c: Add a cache for helper signatures.
27267
27268         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
27269
27270 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
27271
27272         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
27273         delegates from a delegate. Fixes #61033.
27274         
27275         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
27276         marshalling of stringbuilder arrays. Fixes #59900.
27277
27278 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
27279
27280         * icall.c: Add EnumBuilder:setup_enum_type icall.
27281
27282 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
27283
27284         * icall.c: Added a new icall for the property version of
27285         OffsetOfStringData.
27286
27287 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
27288
27289         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
27290         it has a constant size across platforms.
27291
27292         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
27293         stack trace.
27294
27295 2004-06-29  Martin Baulig  <martin@ximian.com>
27296
27297         * mono-debug.c (mono_debug_add_method): Protect the whole function
27298         in mono_debugger_lock(), not just parts of it.
27299
27300 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
27301
27302         * reflection.c: make sure padding bytes in heaps are zeroed.
27303
27304 2004-06-24  David Waite  <mass@akuma.org>
27305
27306         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
27307         image.c, loader.c, locales.c, marshal.c, metadata.c,
27308         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
27309         string-icalls.c, threads.c: change to C90-style comments from C99 /
27310         C++ -style
27311
27312 2004-06-24  Dick Porter  <dick@ximian.com>
27313
27314         * threads.c
27315         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
27316         return createdNew.  Fixes bug 60412.
27317
27318         * threads-types.h: 
27319         * icall.c: Add createdNew parameter to CreateMutex icall
27320
27321 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27322
27323         * reflection.c, object-internals.h: save default value in params.
27324
27325 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27326
27327         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
27328         no need to build a new path combining that with the application base.
27329         Fixes bug #60442.
27330
27331 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
27332
27333         * reflection.c: fixed minor standard compliance issues.
27334
27335 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
27336
27337         * reflection.c: fixed issue with encoding some custom attributes
27338         (arrays in properties and fields, bug #60411).
27339
27340 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27341
27342         * reflection.c: fix start address when copying the public key token.
27343
27344 2004-06-23  Martin Baulig  <martin@ximian.com>
27345
27346         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
27347         the `exc' object in a static object to put it into the GC's root set.
27348
27349 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
27350
27351         * reflection.c: make mono_reflection_setup_internal_class ()
27352         callable a second time to setup a new parent class.
27353
27354 2004-06-23  Dick Porter  <dick@ximian.com>
27355
27356         * threads.c: Check for WAIT_IO_COMPLETION return values.
27357
27358 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
27359
27360         * appdomain.c: Removed the g_free on the public key token. Now copy 
27361         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
27362         * assembly.c: Added public key token string value when loading 
27363         assemblies. Fix bug #60439.
27364         * icall.c: Added missing informations (like public key) in 
27365         GetReferencedAssemblies. Fix #60519.
27366         * image.h: Changed definition for public key token from const char*
27367         public_tok_value to guchar public_key_token [17];
27368         * reflection.c: Updated for changes to public key token.
27369
27370 2004-06-22  Lluis Sanchez Gual
27371
27372         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
27373         for the field in base classes.
27374
27375 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27376
27377         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
27378         mark headers as not supported, they are installed only for use by the
27379         debugger.
27380
27381 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
27382
27383         * *.c, *.h: avoid namespace pollution in public headers.
27384
27385 2004-06-21  Martin Baulig  <martin@ximian.com>
27386
27387         * exception.c (mono_get_exception_security): It's in
27388         "System.Security", not in "System".
27389
27390         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
27391         the exception classes.
27392
27393 2004-06-21  Martin Baulig  <martin@ximian.com>
27394
27395         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
27396         Protect the exception object from being finalized.
27397
27398 2004-06-21  Martin Baulig  <martin@ximian.com>
27399
27400         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
27401         public function.
27402
27403 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
27404
27405         * reflection.c: Load the assembly in mono_reflection_type_from_name,
27406         if it was not loaded before. Fix parts of #60439.
27407
27408 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
27409
27410         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
27411         code that was broken since Ben's change: wrappers are now
27412         dependent on the method signature only again.
27413
27414 2004-06-21  Martin Baulig  <martin@ximian.com>
27415
27416         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
27417         added interface support.
27418
27419 2004-06-21  Martin Baulig  <martin@ximian.com>
27420
27421         * class.c (mono_vtable_get_static_field_data): New public method.
27422
27423 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
27424
27425         * filewatcher.c : Windows build fix to be compliant with API changes.
27426
27427 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27428
27429         * class.h, class.c: more accessors.
27430         * metadata.h, metadata.c: prepare for hiding MonoType and
27431         MonoMethodSignature: people should use the accessors from now on
27432         outside of the tree.
27433
27434 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27435
27436         * *.c, *.h: more API cleanups.
27437
27438 2004-06-18  Jackson Harper  <jackson@ximian.com>
27439
27440         * assembly.c: Trace loading assemblies.
27441         * loader.c: Trace loading native libraries.
27442         * mono-config.c: Trace loading config files.
27443         
27444 2004-06-18  Dick Porter  <dick@ximian.com>
27445
27446         * locales.c: Tell ICU the lengths of strings, it can cope with
27447         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
27448
27449 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
27450
27451         * image.c: swapped name/filename;
27452
27453 2004-06-18  Martin Baulig  <martin@ximian.com>
27454
27455         * mono-debug-debugger.c (write_class): Write the parent class at
27456         the end of the header.
27457
27458 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
27459
27460         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
27461
27462 2004-06-17  Raja R Harinath  <rharinath@novell.com>
27463
27464         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
27465         (bundle_obj): New conditional define.
27466         (BUILT_SOURCES): Remove.
27467         ($(bundle_srcs)): Make parallel-make safe.
27468         (libmonoruntime_la_LIBADD): Make unconditional.
27469         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
27470         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
27471
27472 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
27473
27474         * culture-info-tables.h: It was inconsistent with the latest
27475           supp info files.
27476
27477 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
27478
27479         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
27480         be loaded.
27481
27482         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
27483         with gcc 2.95.
27484
27485 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
27486
27487         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
27488         cleaned up public header threads.h.
27489
27490 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27491
27492         * Makefile.am, *.c, *.h: more API cleanups.
27493
27494 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
27495
27496         * Makefile.am: removed monosn from compilation.
27497         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
27498         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
27499         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
27500         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
27501         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
27502         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
27503
27504 2004-06-15  Jackson Harper  <jackson@ximian.com>
27505
27506         * assembly.c: Make locales lower case when searching the GAC for
27507         assemblies. gacutil will always make locales lowercase when
27508         installing so this effectively makes them case insensitive.
27509         
27510 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
27511
27512         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
27513         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
27514           parameter which allows to choose whether the wait can be interrupted or 
27515           not. Also added the method mono_monitor_enter(), which locks the monitor
27516           using an infinite wait and without allowing interruption.
27517           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
27518           interrupted.
27519         * object.h: Added new fields in MonoThread. suspend_event holds the event
27520           used to susped/resume the thread. synch_lock is the lock object to use for
27521           modifying the thread state.
27522         * threads.c: Use the new synch_lock object for locking, instead of "this",
27523           which can generate deadlocks.
27524           Moved thread state change in Thread.Sleep and Thread.Join from managed
27525           to unmanaged code. This avoids a deadlock when the thread was suspended
27526           just after acquiring the thread lock.
27527           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
27528           Implemented Thread.Suspend using an event instead of ThreadSuspend,
27529           which is not fully implemented in the io-layer.
27530         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
27531
27532 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
27533
27534         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
27535         threads-types.h: more API cleanups.
27536
27537 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27538
27539         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
27540         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
27541         threadpool.c, threads.c: first pass at the exported API cleanup.
27542
27543 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
27544
27545         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
27546
27547 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27548
27549         * icall.c: added internalGetHome.
27550
27551 2004-06-14  Dick Porter  <dick@ximian.com>
27552
27553         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
27554         possible to return successfully when '.' or '..' were the only
27555         entries in a directory, but were skipped.  The MonoIOStat was not
27556         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
27557         Fixes bug 59574.
27558
27559 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
27560
27561         * reflection.c: make binaries run on .Net 1.1 by default.
27562
27563 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27564
27565         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
27566
27567 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
27568
27569         * marshal.c: keep track of struct size with explicit layout
27570         (bug #59979).
27571
27572 2004-06-12  Martin Baulig  <martin@ximian.com>
27573
27574         * mono-debug-debugger.c: Comment out a debugging g_message().
27575
27576 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27577
27578         * reflection.c, reflection.h: do not free custom attrs that are cached.
27579         * icall.c: use braces to make code clearer.
27580
27581 2004-06-11  Martin Baulig  <martin@ximian.com>
27582
27583         * class.h (MonoInflatedField): New type.
27584         (MonoClassField): Replaced `MonoType *generic_type' with
27585         `MonoInflatedField *generic_info'.
27586
27587         * icall.c
27588         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
27589
27590 2004-06-11  Martin Baulig  <martin@ximian.com>
27591
27592         * reflection.c (mono_image_create_method_token): Correctly encode
27593         varargs methods.
27594
27595 2004-06-11  Martin Baulig  <martin@ximian.com>
27596
27597         * metadata.c (mono_metadata_parse_method_signature): When parsing
27598         a MethodDef which has VarArgs, also set sentinelpos if we don't
27599         have any parameters.
27600
27601 2004-06-11  Martin Baulig  <martin@ximian.com>
27602
27603         * verify.c (mono_method_verify): In CEE_CALL, use
27604         mono_method_get_signature() to get the method's signature, unless
27605         we're a PInvoke method.
27606
27607 2004-06-10  Jackson Harper  <jackson@ximian.com>
27608
27609         * assembly.c: Use <path>/lib/mono/gac for the extra paths
27610         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
27611         logical name as the supplied path is just a prefix to the gac not
27612         the direct path to it.
27613         
27614 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
27615
27616         * reflection.c: make the token for a created method match
27617         the token of the MethodBuilder it was created from
27618         (IKVM requires this behaviour now).
27619
27620 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
27621
27622         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
27623         reflection.c, socket-io.c: leak fixes.
27624
27625 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
27626
27627         * icall.c: handle sentinel pos in vararg methods in position different
27628         from 0.
27629
27630 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27631
27632         * culture-info-tables.h: freshly generated.
27633
27634 2004-06-09  Martin Baulig  <martin@ximian.com>
27635
27636         * loader.c (mono_get_method_constrained): Call `mono_class_init
27637         (constrained_class)'.   
27638
27639 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
27640
27641         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
27642         any methods. Fixes #59629.
27643
27644 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27645
27646         * culture-info-tables.h: reflecting locale-builder updates.
27647
27648 2004-06-08  Dick Porter  <dick@ximian.com>
27649
27650         * object.h:
27651         * locales.c: Fixed compile warnings, including a real bug in
27652         CompareInfo_internal_compare.
27653         
27654 2004-06-08  Dick Porter  <dick@ximian.com>
27655
27656         * locales.c
27657         (ves_icall_System_Globalization_CompareInfo_internal_index):
27658         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27659         Double-check the resuls of usearches, because ICU currently
27660         ignores most of the collator settings here.  Fixes bug 59720.
27661         
27662 2004-06-08  Dick Porter  <dick@ximian.com>
27663
27664         * locales.c
27665         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27666         Fix memory leak and segfault-causing typo.  No idea how this one
27667         lasted so long without being noticed.
27668
27669 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
27670
27671         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
27672         any methods. Fixes #59629.
27673
27674 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27675
27676         * assembly.c:
27677         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
27678         own the critical section before). Removed dead code (that's done
27679         in the preload hook).
27680
27681         (mono_assembly_load_with_partial_name): call the preload hook.
27682
27683 2004-06-08  Martin Baulig  <martin@ximian.com>
27684
27685         * metadata.c (mono_metadata_signature_alloc): Default
27686         `sentinelpos' to -1.
27687
27688         * reflection.c (mono_image_get_array_token): Likewise.
27689
27690 2004-06-08  Martin Baulig  <martin@ximian.com>
27691
27692         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
27693
27694         * metadata.c (mono_metadata_parse_method_signature): When parsing
27695         a MethodDef which has VarArgs, set sentinelpos.
27696
27697         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
27698         `gint16' since we're using -1 for non-varargs methods.
27699
27700         * reflection.c
27701         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
27702         (method_encode_signature): Added varargs support.
27703         (method_builder_encode_signature): Likewise.
27704         (mono_image_get_varargs_method_token): New static method.
27705         (mono_image_create_method_token): New public method; this is
27706         called via an icall instead of mono_image_create_token() when
27707         calling a varargs method.       
27708
27709 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
27710
27711         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
27712
27713 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27714
27715         * culture-info-tables.h : Reflecting the latest locale-builder that
27716           fixed empty array representation ({} to {0}).
27717
27718 2004-06-07  Jackson Harper  <jackson@ximian.com>
27719
27720         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
27721         looking up extra gac paths. This allows MONO_GAC_PATH to act
27722         exactly like a prefix.
27723         
27724 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27725
27726         * reflection.c (mono_reflection_type_from_name): Make a copy of the
27727         type name before modifying it. Fixes #59405.
27728
27729 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27730
27731         * culture-info.h: added fields for "all datetime patterns".
27732         * locales.c: (  ves_icall_System_Globalization_CultureInfo
27733           _construct_datetime_format ()): fill xxx_patterns fields.
27734         * object.h: added fields for "all datetime patterns" to
27735           MonoDateTimeFormatInfo.
27736         * culture-info-tables.h: reflecting locale-builder updates.
27737
27738 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27739
27740         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
27741         the event has no add and remove methods. Fixes #59629.
27742
27743 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
27744
27745         * object.c: Fixed possible integer overflow when allocating large
27746         strings.
27747
27748 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27749
27750         * culture-info-tables.h: reflecting locale-builder updates.
27751
27752 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27753
27754         * culture-info-tables.h: reflecting locale-builder updates.
27755
27756 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
27757
27758         * culture-info-tables.h: reflecting locale-builder updates.
27759
27760 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
27761
27762         * threads.c: Made Thread.Sleep abortable.
27763
27764 2004-06-02  Martin Baulig  <martin@ximian.com>
27765
27766         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
27767
27768         * debug-mono-symfile.h: Bumped symbol file version number to 37.
27769
27770 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
27771
27772         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
27773
27774 2004-05-30  Jackson Harper  <jackson@ximian.com>
27775
27776         * reflection.c: Do not hardcode assembly versions or public key
27777         tokens anymore. All of this except the corlib section was dead
27778         code anyways.
27779         
27780 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
27781
27782         * object.c (mono_runtime_invoke_array): Automatically create boxed
27783         objects for byref valuetypes if needed. Fixes #59300.
27784         
27785         * object.c (mono_method_return_message_restore): Handle 
27786         MONO_TYPE_OBJECT as well.
27787
27788 2004-05-28  Jackson Harper  <jackson@ximian.com>
27789
27790         * reflection.c: The modified type encoding was causing build
27791         problems. Reverted for now.
27792         
27793 2004-05-28  Jackson Harper  <jackson@ximian.com>
27794
27795         * reflection.c/h: Take an assembly ref so that we dont create
27796         fully qualified names when encoding types in the same assembly as
27797         the custom attribute being emitted.
27798         * appdomain.c: Increment version number.
27799         
27800 2004-05-26  Duncan Mak  <duncan@ximian.com>
27801
27802         * icall.c
27803         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27804         Set the full version number (major, minor, build, revision).
27805
27806 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27807
27808         * marshal.c (emit_struct_conv): increment src/dst after blit
27809         (mono_marshal_get_managed_wrapper,
27810         mono_marshal_get_native_wrapper): make sure we have marshalling
27811         info before marshalling params (info computation affects
27812         blittable)
27813
27814         * class.c (class_compute_field_layout): correctly deal with
27815         blittable
27816         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27817         value types (as per what windows dows by default)
27818         (mono_class_setup_mono_type): System.ValueType is blittable
27819         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27820         blittable
27821
27822         * marshal.c (mono_marshal_load_type_info): flag types  as
27823         non-blittable if the native layout doesn't match the managed
27824         layout
27825
27826 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27827
27828         * appdomain.c: don't add stuff in the private search path that is
27829         above the application base. If application base is not set, there's
27830         no private search path.
27831
27832 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27833
27834         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27835         byref struct arguments in native->managed marshalling.
27836
27837 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27838
27839         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27840         cache methods using signature (special case for methods
27841         that are value type or string class)
27842         
27843         * image.c (mono_image_close): clean up allocated GSList's
27844         in runtime_invoke_cache.
27845
27846 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27847
27848         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27849         there's no MONO_CFG_DIR environment variable defined.
27850
27851 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27852
27853         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27854
27855 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27856
27857         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27858           is interrumped.
27859         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27860           before waiting for it, and call CloseHandle after the wait to unref it.
27861           This will make sure that handles are not disposed too early.
27862
27863 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27864
27865         * appdomain.c:
27866         * appdomain.h:
27867         * icall.c: removed
27868         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27869         needed now.
27870
27871         * object.c: se the application_base only for the domain that runs
27872         Main. Fixes bug #59216,
27873
27874 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27875
27876         * appdomain.c:
27877         * object.c: only the domain in which Main is run have
27878         SetupInformation.ConfigurationFile set, so moved a few lines from
27879         appdomain.c to object.c.
27880
27881 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27882
27883         * appdomain.c: we tried to load [name].(dll|exe), but according
27884         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27885         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27886         There's a test case attached to bug #58922.
27887
27888 2004-05-27  Dick Porter  <dick@ximian.com>
27889
27890         * icall.c:
27891         * file-io.c: Implemented icalls for locking and unlocking regions
27892         in a file.
27893         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27894         FALSE on error (fixes both compiler warning and real bug.)
27895
27896 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27897
27898         * culture-info-tables.h: reflecting locale-builder updates.
27899
27900           (Added missing ChangeLog entry for 05/26)
27901
27902 2004-05-27  Jackson Harper  <jackson@ximian.com>
27903
27904         * locales.c: Fix some cut and paste errors.
27905         
27906 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27907
27908         * mono-config.c: set the correct path for config. directory on windows.
27909
27910 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27911
27912         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27913           on win32.
27914
27915 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27916
27917         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27918         from pinvoke functions.
27919         
27920         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27921
27922 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27923
27924         * culture-info-tables.h: reflecting locale-builder updates.
27925
27926 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27927
27928         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27929         #59086.
27930
27931 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27932
27933         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27934         * icall.c: Modified icalls for RNG.
27935         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27936         Windows (CryptoAPI).
27937
27938 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27939
27940         * locales.c: Fix build.
27941
27942 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27943
27944         * culture-info-tables.h: reflecting locale-builder updates.
27945
27946 2004-05-25  Jackson Harper  <jackson@ximian.com>
27947
27948         * locales.c: When creating the current culture use the $LANGs
27949         specific culture. So DateTimeFormat and NumberFormat entries are created.
27950         
27951 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27952
27953         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27954         a char array as parameter.
27955
27956 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27957
27958         * image.c: In mono_image_open(), always use an absolute path name to
27959           look for already loaded images.
27960
27961 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27962
27963         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27964         missing in the windows build (like older cygwin include files).
27965
27966 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27967
27968         * icall.c: Fixed check for possible integer overflow in Buffer_
27969         BlockCopy icall. Replaced comments style // by /* */.
27970
27971 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27972
27973         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27974         
27975         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27976         check after MONO_VTADDR. Fixes pinvoke2.exe.
27977
27978         * marshal.h marshal.c metadata.h: Add beginnings of support for
27979         ftnptr -> delegate marshalling.
27980
27981 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27982
27983         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27984         * threads.c: Fix warnings.
27985
27986 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27987
27988         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27989         * icall.c: Registered icalls for Suspend and Resume.
27990         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27991           Thread.Abort.
27992         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27993         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27994         * process.c: Use WaitForSingleObjectEx.
27995         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27996           checkpoints.
27997         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27998           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27999           for Suspend and Resume. Added new mono_thread_stop, used for stoping
28000           background threads. Added basic support for Abort in Windows.
28001           Start new threads using a managed delegate invoke wrapper. This wrapper
28002           has an interruption checkpoint that is needed since an interruption
28003           can be requested before the thread leaves the unmanaged code that starts 
28004           the thread.
28005         * marshal.c: Added interruption checkpoint after every native call, and
28006           also before managed calls for wrappers called from unmanaged code to
28007           go into managed code.
28008         * object.h: Added new field in MonoThread to keep track of interruption
28009           requests.
28010
28011 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
28012
28013         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
28014         calls.
28015
28016 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28017
28018         * appdomain.c:
28019         * assembly.c:
28020         * gc.c:
28021         * locales.c:
28022         * mono-config.c:
28023         * rand.c: getenv -> g_getenv (windows!)
28024
28025         * process.c: complete_path is also used on non-windows platforms.
28026
28027 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28028
28029         * icall.c: new signature for Process_Start.
28030
28031         * process.[ch]: new signature for Process_Start. If we're on windows
28032         and UseShellExecute is false, we have to search for the program by
28033         ourselves if we don't get a full path.
28034
28035 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
28036
28037         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
28038         marshalling and call CleanUpNativeData if needed. Fixes #58646.
28039
28040 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28041
28042         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
28043         Fixes bug #58373.
28044
28045 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28046
28047         * process.c: use double quotes to quote program name and arguments on
28048         windows. Fixes bug #58575.
28049
28050 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28051
28052         * file-io.c: don't return "." and ".." when using windows Find*File.
28053
28054 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
28055
28056         * marshal.c: Don't pass wrappers to message init because method 
28057         addressed used to lookup metadata. part of remoting[2|3] fix.
28058
28059 2004-05-15  Jackson Harper  <jackson@ximian.com>
28060
28061         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
28062         path is essentially the same as MONO_PATH except that it points to
28063         GACs instead of lib directories.
28064         * loader.h: The user gac is gone so we dont need function to
28065         enable/disable it.
28066         * mono-config.c: user gac option is now gone.
28067         
28068 2004-05-15  Jackson Harper  <jackson@ximian.com>
28069
28070         * culture-info.h: Make defines more consistent, add calendar data
28071         to the culture info table.
28072         * culture-info-tables.h: Add basic calendar data. Basically
28073         everyone gets default gregorian until all the data is
28074         updated.
28075         * locales.c: Use the new consistent defines. Set calendar data for
28076         culture info objects.
28077         * object.h: add a field for calendar data to CultureInfo
28078         
28079 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
28080
28081         * image.c: image->runtime_invoke_cache is keyed on signatures now.
28082         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
28083         a signature.
28084         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
28085         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
28086         an extra param that is the pointer of the method to invoke. The IL for
28087         the invoke method is no longer specific to the method, but to the
28088         signature of the method. Thus, we can share the same code for multiple
28089         methods. This reduces the number of methods that have to be compiled.
28090
28091 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
28092
28093         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
28094
28095         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28096
28097         * icall.c: Optimize Buffer.BlockCopy.
28098
28099 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28100
28101         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
28102         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
28103         quote). Changed them to "MMMM yyyy".
28104
28105 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
28106
28107         * rand.c
28108         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
28109
28110 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
28111
28112         * reflection.h: Updated after changes to managed structures.
28113
28114         * appdomain.c: Bump corlib version.
28115
28116 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28117
28118         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
28119         windows.
28120
28121 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28122
28123         * Makefile.am: link to ../os/libmonoos.la on windows.
28124
28125         * assembly.c:
28126                 -If MONO_DEBUG, warn about non-existing directories in
28127                 MONO_PATH.
28128                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
28129                 compile time variable.
28130                 -Removed init_default_path and call mono_set_rootdir from
28131                 libmonoos.a instead (windows only).
28132
28133         * assembly.h: declare mono_assembly_getrootdir().
28134
28135         * domain.c:
28136         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
28137
28138         * loader.c: s/getenv/g_getenv/
28139
28140 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
28141
28142         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
28143
28144         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
28145
28146         * metadata.h: Add new marshalling conversions.
28147
28148         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
28149         function.
28150
28151         * reflection.c (mono_reflection_get_type): Lookup the type in all
28152         modules of a multi-module assembly. Fixes #58291.
28153
28154 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
28155
28156         * threads.c: Before aborting a background, set the StopRequested
28157         state.  This avoids throwing the Abort exception.
28158         In mono_thread_manage, don't continue with the shutdown until all
28159         aborted threads have actually stopped.
28160
28161 2004-05-10  Jackson Harper  <jackson@ximian.com>
28162
28163         * locales.c: Remove the modifier from culture names.
28164         
28165 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28166
28167         * Makefile.am: monosn is not installed any more. It has been deprecated
28168         in favor of sn.
28169
28170 2004-05-07  Jackson Harper  <jackson@ximian.com>
28171
28172         * locales.c
28173         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
28174         Fix array construction, add bailout if the length is 0.
28175
28176 2004-05-07  Dick Porter  <dick@ximian.com>
28177
28178         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
28179         machine doesn't have a DNS entry.  Patch by Urs Muff
28180         (umuff@quark.com), fixes bug 57928.
28181
28182 2004-05-06  Jackson Harper  <jackson@ximian.com>
28183
28184         * reflection.c: Handle null PublicTokens properly. alloc mem for
28185         assembly names culture so we dont crash when freeing it.
28186         
28187 2004-05-06  Jackson Harper  <jackson@ximian.com>
28188
28189         * assembly.c: Check the usergac when loading with partial names.
28190         
28191 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
28192
28193         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
28194         does nothing for now (not required for Linux/Windows) but the class
28195         library can call it (and a newer or modified runtime could need it).
28196         * icall.c: Registred icall.
28197
28198 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28199
28200         * loader.c: prints a message on module loading error we set MONO_DEBUG
28201         environment variable.
28202
28203 2004-05-05  Jackson Harper  <jackson@ximian.com>
28204
28205         * appdomain.c: Handle PublicKeyToken=null properly.
28206         
28207 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
28208
28209         * environment.c|h: Added icall ves_icall_System_Environment_
28210         GetOSVersionString to get the current OS version as a string.
28211         * icall.c: Registred icall.
28212
28213 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
28214
28215         * object.c: in mono_object_get_virtual_method(), take into account that
28216         non-virtual methods don't have a slot in the vtable. Check needed when
28217         the object is a proxy.
28218
28219 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
28220
28221         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
28222         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
28223
28224         * object.c (mono_class_compute_gc_descriptor): Fix warning.
28225
28226         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
28227         passed when a valuetype is expected.
28228
28229         * object.c (mono_unhandled_exception): Only set the exit code if the
28230         exception happens in the main thread. Fixes thread5.exe.
28231
28232         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
28233         invalid names. Fixes #58047.
28234
28235 2004-05-03  Jackson Harper  <jackson@ximian.com>
28236
28237         * assembly.c: This line was committed accidently and is unneeded.
28238         
28239 2004-05-03  Jackson Harper  <jackson@ximian.com>
28240
28241         * icall.c: Add new icall for Assembly::LoadWithPartialName
28242         * assembly.c/.h: new function that probes the GAC to load partial
28243         assembly names by Paolo Molaro.
28244         
28245 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28246
28247         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
28248         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
28249         (type_get_fully_qualified_name): Added PublicKeyToken when building a
28250         full type name.
28251
28252 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28253
28254         * appdomain.c: fixed check for 'neutral' culture and removed warning.
28255         * reflection.c: fix bug when parsing a full type name and Version is not
28256         the last thing in the string.
28257
28258 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
28259
28260         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
28261         crashes when it is freed.
28262
28263 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28264
28265         * assembly.c: print the compat warning to stderr.
28266
28267 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
28268
28269         * assembly.c (mono_assembly_load_references): Add a compatibility
28270         hack to run old applications that might be still referencing the
28271         3300-based assemblies, only do this for System.xxx.
28272
28273 2004-05-01  Jackson Harper  <jackson@ximian.com>
28274
28275         * appdomain.c: If the culture is neutral we set it to "".
28276         
28277 2004-04-29  Jackson Harper  <jackson@ximian.com>
28278
28279         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
28280
28281 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
28282  
28283         * string-icalls.c: added low overhead function for copying chars
28284         * icall.c: added needed icall for the above function
28285  
28286 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28287
28288         * icall.c: fix return value of get_global_assembly_cache.  Implemented
28289         Environment.GetLogicalDrives.
28290
28291 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
28292
28293         * rand.c: try and talk to egd or prngd
28294         for random bytes if opening devices fail.
28295
28296 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
28297
28298         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
28299         alignment for the type using the native alignment of its members 
28300         instead of using klass->min_align.
28301
28302         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
28303
28304 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28305
28306         * file-io.c:
28307         * socket-io.c: added check for sys/aio.h.
28308
28309 2004-04-28  Dick Porter  <dick@ximian.com>
28310
28311         * threads.c: Don't abort a thread thats already aborting, when
28312         terminating everything.
28313
28314 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28315
28316         * icall.c: added 2 new async calls for Socket.
28317
28318         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
28319         IO on *nix systems.
28320
28321         * threadpool.c: removed unused variable.
28322
28323 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
28324
28325         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
28326
28327 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
28328
28329         * locales.c: put back string_invariant_tolower () and
28330         string_invariant_toupper ().
28331
28332 2004-04-26 David Waite <mass@akuma.org>
28333
28334         * file-io.h:
28335         * socket-io.h:
28336         * threads.h:
28337         * unicode.h: remove comma from end of enumeration declarations
28338
28339 2004-04-26 David Waite <mass@akuma.org>
28340
28341         * debug-mono-symfile.h:
28342         * decimal.c:
28343         * mono_debug.h:
28344         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
28345
28346
28347 2004-04-26  Jackson Harper  <jackson@ximian.com>
28348
28349         * appdomain.c: Increment version number.
28350         
28351 2004-04-26  Jackson Harper  <jackson@ximian.com>
28352
28353         * appdomain.c: Set assembly references public token value when
28354         PublicKeyToken is specified, not the hash_value. Free public token
28355         values when free assembly name data. Previously the public key
28356         token was hex decoded, however we are using hex encoded public key
28357         tokens, so this is not neccasary.
28358         * assembly.c: Lookup assemblies in the gac if their public token
28359         value is set. Add function to allow enabling user gac
28360         lookups. Specify whether or not the assembly was loaded from the
28361         GAC. Compare full assembly names when checking the cache for
28362         assemblies (Temporarily disabled see comment in code). Remove
28363         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
28364         specifies trace-loader they get extra info to stdout on the
28365         loading of assemblies.
28366         * image.h: Add a field for an assembly references public token
28367         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
28368         whether an assembly has been loaded from the GAC.
28369         * image.c: Remove a corlib -> mscorlib name mapping.
28370         * loader.h: Add function to enable/disable the user gac.
28371         * mono-config.c: Check if the usergac is enabled in the config
28372         file.
28373         * icall.c: New icall to determine whether or not an assembly has
28374         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
28375         * tabldefs.h: Add constant for assemblyref flag that specifies a
28376         full public key is used instead of a public token.
28377         * reflection.c: Remove mscorlib -> corlib mappings. Set
28378         PublicTokenValue instead of hash value. This value is a hex
28379         string so it does not need to be expanded.
28380
28381 2004-04-26  Martin Baulig  <martin@ximian.com>
28382
28383         * mono-debug-debugger.c (mono_debugger_initialize): Set
28384         `mono_debugger_initialized' before calling mono_debug_lock().
28385
28386 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
28387
28388         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
28389           InternalToUpper/InternalToLower.
28390         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
28391           removed invariant culture shortcut.  This is now done in managed code.
28392         * locales.c: (string_invariant_toupper/tolower) removed.
28393
28394 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28395
28396         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
28397         Added Poll internal call.
28398
28399         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
28400         call for Poll. Select was too heavy for polling a single socket.
28401
28402         * threadpool.[ch]: added mono_threadpool_cleanup.
28403         * threads.c: use it. Don't use Thread_Abort on windows.
28404
28405 2004-04-23  Martin Baulig  <martin@ximian.com>
28406
28407         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
28408
28409 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
28410
28411         * icall.c: Registred new icalls for key pair protection and added an
28412         icall for Environment.GetFolderPath on Windows.
28413         * security.c|h: Added new icalls for key pair protection.
28414
28415 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28416
28417         * socket-io.c: don't display the non-supported family warning for known
28418         families. Now this is not displayed on windows when checking support
28419         for IPv4/IPv6.
28420
28421 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28422
28423         * class.c: don't display the layout warning for static fields.
28424
28425 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
28426
28427         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
28428         * locales.c, locales.h: Added new icalls for culture-specific
28429         Char.ToLower and Char.ToUpper.
28430
28431 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28432
28433         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
28434         by David Waite.
28435
28436 2004-04-20  Martin Baulig  <martin@ximian.com>
28437
28438         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
28439         of the type name before passing it to mono_reflection_type_from_name().
28440
28441 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
28442
28443         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
28444         encodings here. Fixes #56965.
28445
28446 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
28447
28448         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28449         fix test on strstr result not that I can see anything that
28450         relies on the result.
28451
28452 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
28453
28454         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
28455         Fixes #57081.
28456
28457         * marshal.c (mono_marshal_get_string_encoding): New helper function.
28458
28459         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
28460         function to determine which marshalling to use for strings. Fixes
28461         #56965.
28462
28463         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
28464
28465         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
28466
28467 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
28468
28469         * icall.c: #include mono-config.h
28470
28471 2004-04-15  Jackson Harper  <jackson@ximian.com>
28472
28473         * culture-info-tables.h: Fix date formats for en-US culture.
28474         
28475 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
28476
28477         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
28478         ThreadPool.SetMinThreads.
28479         * threadpool.c: Implemented ThreadPool.GetMinThreads and
28480         ThreadPool.SetMinThreads.
28481
28482 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
28483
28484         * mono-config.c: also load the .config file in the directory
28485         where the assembly was found.
28486
28487 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
28488
28489         * assembly.c: load per-assembly config files.
28490         * icall.c: decrapified code to get the config dir and moved to
28491         mono-config.c.
28492         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
28493         per-assembly config files. When doing a dll map lookup give precedence
28494         to the per-assembly data.
28495
28496 2004-04-14  Martin Baulig  <martin@ximian.com>
28497
28498         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
28499         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
28500         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
28501
28502         * mono-debugger-debugger.c: While the debugger is locked, remember
28503         whether the symbol tables have changes and send one single
28504         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
28505
28506 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
28507
28508         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
28509
28510         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
28511         function.
28512
28513         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
28514         account when marshalling string arrays. Fixes #56965.
28515
28516 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
28517
28518         * icall.c: Add new icalls mapping for security.
28519         * security.c|h: Add internal calls for WindowsIdentity,
28520         WindowsImpersonationContext and WindowsPrincipal.
28521
28522 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
28523
28524         * class.c: Added comment to ensure the System.MonoDummy class
28525         is removed when no longer necessary
28526
28527 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
28528
28529         * appdomain.c: Pass arguments to the bootstraping exceptions to
28530         minimize JITed methods at boot
28531
28532         * metadata.c (mono_exception_from_name_two_strings): Allow for the
28533         second string to be null.
28534
28535         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28536         Change the protocol to minimize the JIT methods at startup.  Now
28537         it Returns the internal codepage, if the value of "int_code_page"
28538         is 1 at entry, and we can not compute a suitable code page
28539         number, returns the code page as a string.
28540
28541 2004-04-13  Jackson Harper  <jackson@ximian.com>
28542
28543         * culture-info-tables.h: Fix number of decimal digits for all
28544         english locales.
28545
28546 2004-04-13  Jackson Harper  <jackson@ximian.com>
28547
28548         * icall.c: Clairfy out of sync error message. It is not always
28549         your corlib that is out of sync.
28550
28551 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
28552
28553         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
28554         properties when only the set accessor is overriden. Fixes #55874.
28555
28556 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
28557
28558         * assembly.c (mono_assembly_load_references): Make this thread safe.
28559         Fixes #56327.
28560
28561 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
28562
28563         * monosn.c: Add missing initialization calls.
28564
28565 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
28566
28567         * locales.c:
28568         ves_icall_System_Globalization_CultureInfo_construct_number_format
28569         Fix g_assert so it compiles on fussier compilers re int/ptr
28570         mismatch
28571
28572 2004-04-08  Dick Porter  <dick@ximian.com>
28573
28574         * socket-io.h:
28575         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
28576         53992.  Also rearrange the code so that the internal calls return
28577         an error value and exceptions are thrown from managed code.
28578
28579         * icall.c: Add type info to the socket icalls.
28580
28581 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28582
28583         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
28584         owes me a beer.
28585
28586 2004-04-07  Martin Baulig  <martin@ximian.com>
28587
28588         * class.c (mono_class_from_generic_parameter): Don't default
28589         `klass->parent' to `mono_defaults.object_type'.
28590
28591 2004-04-07  Martin Baulig  <martin@ximian.com>
28592
28593         * reflection.c (mono_reflection_initialize_generic_parameter): Set
28594         `param->pklass->reflection_info'.       
28595
28596 2004-04-07  Jackson Harper  <jackson@ximian.com>
28597
28598         * culture-info-tables.h: Fix date separator symbol.
28599         
28600 2004-04-07  Martin Baulig  <martin@ximian.com>
28601
28602         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
28603         from System.Type to System.MonoType.
28604
28605 2004-04-07  Martin Baulig  <martin@ximian.com>
28606
28607         * reflection.h
28608         (MonoReflectionGenericParam): Added `has_reference_type' and
28609         `has_value_type' fields.
28610
28611         * reflection.c (mono_image_get_generic_param_info): Encode the
28612         correct flags if we have the `class' or `struct' constraint.
28613
28614 2004-04-07  Martin Baulig  <martin@ximian.com>
28615
28616         * reflection.h
28617         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
28618
28619 2004-04-07  Jackson Harper  <jackson@ximian.com>
28620
28621         * appdomain.c: Revert extra patches, just wanted to bump the
28622         version number.
28623         
28624 2004-04-07  Jackson Harper  <jackson@ximian.com>
28625
28626         * Makefile.am: Add culture-info private headers.
28627         * icall.c: Add new icalls for contructing locales.
28628         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
28629         * locales.h: Declare new culture info construction methods.
28630         * object.h: Add new fields used to avoid the CultureMap to
28631         MonoCultureInfo.
28632         * culture-info.h: Definition of structs used in the culture info
28633         tables.
28634         * culture-info-tables.h: Autogenerated tables that contain culture
28635         info data. This file was generated with the locale-builder tool.
28636         * appdomain.c: Incement corlib version number.
28637         
28638 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
28639
28640         * appdomain.c: (mono_runtime_init) move mono_thread_init
28641         to before mono_object_new calls so critical sections
28642         are initialized before use.
28643
28644 2004-04-07  Martin Baulig  <martin@ximian.com>
28645
28646         * icall.c
28647         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
28648         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
28649         (ves_icall_MonoGenericParam_initialize): Removed.
28650         (monogenericparam_icalls): Removed.
28651         (generictypeparambuilder_icalls): Added new table for
28652         System.Reflection.Emit.GenericTypeParameterBuilder.
28653
28654         * reflection.c
28655         (mono_reflection_define_generic_parameter): Removed.
28656         (mono_reflection_initialize_generic_parameter): This is now called
28657         from GenericTypeParameterBuilder's .ctor.
28658
28659 2004-04-06  Martin Baulig  <martin@ximian.com>
28660
28661         * class.c (mono_class_init): Don't inflate nested classes in a
28662         generic instance.
28663         (mono_type_get_name_recurse): Include the generic arguments for
28664         generic instances and generic type declarations.
28665         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
28666         (_mono_class_get_instantiation_name): Removed.
28667         (mono_class_create_generic): Always use `gklass->name' as our name.
28668
28669         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
28670
28671         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
28672         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
28673         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
28674         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
28675         closed generic methods here.
28676
28677         * reflection.c
28678         (mono_reflection_generic_inst_get_nested_types): Removed.
28679         (inflate_mono_method): Copy the generic parameters from the
28680         MonoMethodHeader into out MonoGenericMethod.
28681
28682 2004-04-06  Martin Baulig  <martin@ximian.com>
28683
28684         * row-indexes.h
28685         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
28686
28687         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
28688
28689         * reflection.c (build_compressed_metadata): If we have any entries
28690         in the GenericParam, MethodSpec or GenericParamConstraint tables,
28691         set the header version to 1.1.
28692
28693 2004-04-06  Martin Baulig  <martin@ximian.com>
28694
28695         * class.c (mono_class_init): If we're a generic instance,
28696         initialize our nested classes, too.
28697         (_mono_class_get_instantiation_name): Deal with the new `!%d'
28698         suffix. 
28699
28700 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28701
28702         * process.c: quote the argument passed to the shell on windows.
28703
28704 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
28705
28706         * threads.c (mono_alloc_special_static_data): Allow this to be
28707         called during startup.
28708
28709 2004-04-02  Martin Baulig  <martin@ximian.com>
28710
28711         * icall.c
28712         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
28713
28714 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
28715
28716         * icall.c: Fix build.
28717
28718 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
28719
28720         * Makefile.am: Added security.c|h.
28721         * icall.c: Added icall for get_UserName;
28722         * security.c: New file for security related icalls. Added function
28723         get_UserName for System.Environment (fix #56144).
28724         * security.h: New. Header file for security.c
28725
28726 2004-04-02  Dick Porter  <dick@ximian.com>
28727
28728         * icall.c: Deleted the icalls that were obsoleted some time ago
28729         by the ICU string code, and which were mixed into the icall
28730         rearranging.  Fixes bug 55969.
28731
28732         * string-icalls.h: 
28733         * string-icalls.c: Deleted the code that those icalls reference.
28734
28735 2004-04-01  Martin Baulig  <martin@ximian.com>
28736
28737         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
28738
28739         * class.c (mono_class_from_generic_parameter): Don't set 
28740         TYPE_ATTRIBUTE_INTERFACE.
28741         (my_mono_class_from_generic_parameter): Likewise.
28742
28743 2004-04-01  Martin Baulig  <martin@ximian.com>
28744
28745         * loader.c (find_method): Added an optional `MonoClass *ic'
28746         argument to search in a specific interface.
28747         (mono_get_method_constrained): New public function.
28748
28749 2004-04-01  Martin Baulig  <martin@ximian.com>
28750
28751         * reflection.c (mono_image_get_generic_field_token): Use the
28752         `handleref' cache here.
28753
28754 2004-04-01  Martin Baulig  <martin@ximian.com>
28755
28756         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
28757
28758         * reflection.c (create_generic_typespec): Use the `typespec' hash
28759         here, not the `typeref' one.    
28760
28761 2004-04-01  Martin Baulig  <martin@ximian.com>
28762
28763         * class.c (mono_class_inflate_generic_type): Moved the
28764         functionality into a new static inflate_generic_type() which
28765         returns NULL if it didn't do anything.  Only increment the
28766         `mono_stats.inflated_type_count' if we actually inflated
28767         something.
28768         (mono_class_get_full): Check the classes type to see whether we
28769         need to inflate it; also inflate MONO_TYPE_(M)VAR.
28770
28771 2004-04-01  Jackson Harper  <jackson@ximian.com>
28772
28773         * reflection.c: Set culture for assembly references.
28774         
28775 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
28776
28777         * reflection.[ch], icall.[ch], Fix support for pinning variables.
28778
28779 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28780
28781         * assembly.c:
28782         (do_mono_assembly_open): the critical section also covers
28783         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
28784
28785 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28786
28787         * threads.c:
28788         (mono_manage_threads): abort the background threads when finishing.
28789         Fixes bug #47232.
28790
28791 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28792
28793         * gc.c: only close the done_event handle if there was no timeout.
28794         C-ified comments.
28795
28796 2004-03-30  Martin Baulig  <martin@ximian.com>
28797
28798         * icall.c (icall_entries): It's called "System.Activator", not
28799         "System.Activation".    
28800
28801 2004-03-30  Martin Baulig  <martin@ximian.com>
28802
28803         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28804         (mono_class_create_from_typespec): Likewise.
28805
28806 2004-03-30  Martin Baulig  <martin@ximian.com>
28807
28808         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28809         `has_ctor_constraint' and `initialized'.
28810
28811 2004-03-30  Martin Baulig  <martin@ximian.com>
28812
28813         * reflection.c (encode_new_constraint): New static function to add
28814         the constructor constraint attribute to a type parameter.
28815         (encode_constraints): Call encode_new_constraint() if necessary.
28816
28817         * reflection.h
28818         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28819
28820         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28821         
28822 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28823
28824         * reflection.c, icall.c: add support for pinning variables. 
28825
28826 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28827
28828         * marshal.c (mono_marshal_get_managed_wrapper):
28829         init bool local with zero rather than null.
28830
28831 2004-03-29  Martin Baulig  <martin@ximian.com>
28832
28833         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28834         the "official" behavior here.
28835         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28836
28837 2004-03-29  Martin Baulig  <martin@ximian.com>
28838
28839         * icall.c: Reflect latest API changes.
28840
28841 2004-03-29  Martin Baulig  <martin@ximian.com>
28842
28843         * loader.c (mono_get_method_from_token): Also call
28844         mono_metadata_load_generic_params () for abstract and interface
28845         methods; replace the type arguments in the method signature with
28846         the ones which are loaded from the metadata.
28847
28848 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28849
28850         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28851         of the lock is not the current thread. MS.NET don't do it, in spite of
28852         what the documentation says. See bug #56157.
28853
28854 2004-03-28  Martin Baulig  <martin@ximian.com>
28855
28856         * class.c (mono_class_init): Don't call init_properties() and
28857         init_events() for generic instances; set `prop->parent' when
28858         inflating properties.
28859
28860         * reflection.c (mono_generic_inst_get_object): Call
28861         `mono_class_init (ginst->klass)'.
28862         (mono_type_get_object): Only create a MonoGenericInst if your
28863         generic type is a TypeBuilder.
28864         (do_mono_reflection_bind_generic_parameters): Only set
28865         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28866
28867 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28868
28869         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28870         Fixes #56091.
28871
28872 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28873
28874         * icall.c: added Kill_internal icall.
28875         * process.[ch]: added Kill_internal icall.
28876
28877 2004-03-25  Martin Baulig  <martin@ximian.com>
28878
28879         * class.h (MonoStats): Added `generic_instance_count',
28880         `inflated_method_count', `inflated_type_count' and
28881         `generics_metadata_size'.       
28882
28883 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28884
28885         * reflection.c: no warnings now.
28886
28887 2004-03-25  Martin Baulig  <martin@ximian.com>
28888
28889         * class.c (mono_class_get_full): New public function; does a
28890         mono_class_get(), but also takes a `MonoGenericContext *'.
28891
28892         * loader.c (mono_field_from_memberref): Renamed to
28893         `field_from_memberref', made static and added `MonoGenericContext *'
28894         argument.
28895         (mono_field_from_token): Added `MonoGenericInst *' argument.
28896         (method_from_memberef): Likewise.
28897         (mono_get_method_from_token): Likewise.
28898         (mono_get_method_full): New public function; does a
28899         mono_get_method(), but also takes a `MonoGenericContext *'.
28900
28901         * verify.c (mono_method_verify): Get the method's generic context
28902         and pass it to mono_field_from_token(), mono_get_method_full() and
28903         mono_class_get_full().
28904
28905 2004-03-25  Martin Baulig  <martin@ximian.com>
28906
28907         * class.c (mono_class_inflate_generic_type): Take a
28908         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28909         `MonoGenericMethod *'.
28910
28911 2004-03-25  Martin Baulig  <martin@ximian.com>
28912
28913         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28914         instead of the MonoGenericMethod here.
28915
28916 2004-03-25  Martin Baulig  <martin@ximian.com>
28917
28918         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28919         each time we create a new MonoGenericInst, we also create a new
28920         context which points back to us.
28921
28922         * class.c (inflate_method): Use `ginst->context' instead of
28923         creating a new context.
28924
28925         * loader.c (method_from_memberref): Use
28926         `klass->generic_inst->context' instead of creating a new context.
28927
28928 2004-03-25  Martin Baulig  <martin@ximian.com>
28929
28930         * class.h (MonoGenericContext): New struct.
28931         (MonoGenericMethod): Removed `generic_inst'.
28932
28933         * class.c (mono_class_inflate_generic_method): Take a
28934         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28935
28936 2004-03-25  Martin Baulig  <martin@ximian.com>
28937
28938         * loader.h (MonoMethodInflated): New typedef.
28939
28940         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28941         `generic_param_count' consume just 30 bits, added `is_inflated'
28942         and `has_type_parameters' flags (one bit each).
28943
28944         * class.c (mono_class_inflate_generic_method): Create a
28945         MonoMethodInflated instead of a MonoMethodNormal and set
28946         `is_inflated' in the method signature.
28947
28948         * class.h (MonoGenericMethod): Removed `generic_method'.
28949
28950 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28951
28952         * image.c: Make sure the name of a MonoImage is always an absolute path.
28953           This fixes bug #54415.
28954
28955 2004-03-24  Martin Baulig  <martin@ximian.com>
28956
28957         * class.c (mono_class_setup_vtable): If we're a generic instance,
28958         use our generic type's vtable size.
28959
28960 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28961
28962         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28963         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28964         problems.
28965
28966 2004-03-23  Martin Baulig  <martin@ximian.com>
28967
28968         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28969         `MonoEvent *events'.
28970
28971         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28972         (typebuilder_icalls): Added "get_event_info"; calls
28973         mono_reflection_event_builder_get_event_info(). 
28974
28975         * reflection.c (mono_reflection_generic_inst_initialize): Added
28976         `MonoArray *events'.
28977         (mono_reflection_event_builder_get_event_info): New function.
28978
28979 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28980
28981         * object.h: add mono_type_initialization_init
28982
28983         * object.c (mono_runtime_class_init): 
28984         implement class constructor synchronization rules
28985         to cope with threading issues.  
28986         add mono_type_initialization_init
28987
28988         * appdomain.c (mono_runtime_init): call 
28989         mono_type_initialization_init
28990
28991         * class.h: removing initializing field from MonoVTable
28992
28993 2004-03-23  Martin Baulig  <martin@ximian.com>
28994
28995         * class.c (my_mono_class_from_generic_parameter): Use
28996         `param->name' if it's not NULL. 
28997
28998 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28999
29000         * class.c: do not insert non-virtual methods in the vtable.
29001         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
29002         that means the method is non-virtual. This never would have
29003         happened before.
29004
29005 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
29006
29007         * profiler.c: Added lock for accessing coverage_hash.
29008
29009 2004-03-22  Martin Baulig  <martin@ximian.com>
29010
29011         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
29012         `method->method->signature->generic_param_count != 0' to make it
29013         work for interface methods.
29014
29015 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29016
29017         * process.c: quote the string passed to the shell using g_shell_quote.
29018
29019 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29020
29021         * threads.c:
29022         (mono_threads_manage): don't remove the finalizer thread and self
29023         from the threads hash table so that mono_thread_manage can be called
29024         more than once.
29025
29026 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29027
29028         * process.c: quote the arguments when UseShellExecute is true. Fixes
29029         bug #55790.
29030
29031 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29032
29033         * threads.c: set mono_thread_detach as a cleanup routine for every
29034         thread. This way it's always executed upon thread termination, either
29035         aborted or finished normally. No more xsp hangs!
29036
29037 2004-03-17  Martin Baulig  <martin@ximian.com>
29038
29039         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
29040         `int count_nested' and a `MonoType **nested'.
29041
29042         * reflection.c (mono_reflection_bind_generic_parameters): Moved
29043         most of the functionality into a new static
29044         do_mono_reflection_bind_generic_parameters() and don't take a
29045         `MonoType *nested_in' argument any more.  Don't compute nested
29046         types here.
29047         (mono_reflection_generic_inst_get_nested_types): New public method
29048         to get nested types.
29049
29050         * class.c (mono_class_create_generic): Set `klass->nested_in' if
29051         we're a nested class.
29052
29053         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
29054         mono_reflection_generic_inst_get_nested_types() to compute the
29055         nested types.
29056
29057 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
29058
29059         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
29060         descriptive error message under windows.
29061         
29062 2004-03-17  Martin Baulig  <martin@ximian.com>
29063
29064         * class.c (dup_type): Added `const MonoType *original' argument;
29065         copy the attrs from the original type.
29066
29067 2004-03-17  Martin Baulig  <martin@ximian.com>
29068
29069         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
29070         `m->generic_inst_cache' here.
29071
29072 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
29073
29074         * exception.h exception.c: Add stack_overflow_exception.
29075
29076 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29077
29078         * threadpool.c:
29079         (overlapped_callback): call SetEvent *after* invoking the callback.
29080         No need to call CloseHandle.
29081
29082 2004-03-16  Martin Baulig  <martin@ximian.com>
29083
29084         * reflection.c (mono_image_get_fieldref_token): Take a
29085         `MonoReflectionField *' instead of a `MonoClassField *' and a
29086         `MonoClass *'; store the `MonoReflectionField *' in the hash.
29087
29088 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29089
29090         * appdomain.c: don't add the culture to the filename we're looking for
29091         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
29092
29093 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29094
29095         * locales.c: don't ignore symbols when doing case insensitive compares.
29096         Thanks Dick! Fixes bug #54046.
29097
29098         * threads.c: surround 'threads' usage with enter/leave in
29099         mono_thread_manage.
29100
29101 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
29102
29103         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
29104         implicitly marshalled as [Out]. Fixes #55450.
29105
29106         (mono_marshal_get_runtime_invoke): Zero out the result if there is
29107         an exception.
29108
29109 2004-03-16  Martin Baulig  <martin@ximian.com>
29110
29111         * class.c (mono_class_from_generic_parameter): Use the actual
29112         parameter name. 
29113
29114 2004-03-16  Martin Baulig  <martin@ximian.com>
29115
29116         * reflection.c (type_get_signature_size): New static function.
29117         Compues the size of the type in a method signature.
29118         (method_get_signature_size): New static function; calls
29119         type_get_signature_size() to compute the actual size of the
29120         method's signature.
29121         (method_encode_signature): Use method_get_signature_size() to get
29122         the signature's size rather than using `nparams * 10'.
29123
29124 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29125
29126         * file-io.h: define here WapiOverlapped on windows. I don't want the
29127         regular OVERLAPPED one.
29128
29129         * file-io.c:
29130         * threadpool.c: somehow, BindIoCompletionCallback is not found.
29131         Disabling AIO on windows.
29132
29133 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29134
29135         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
29136         bug #55385.
29137
29138 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29139
29140         * appdomain.c: upgraded corlib version.
29141
29142         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
29143         and BeginWrite. Allow opening files for asynchrnous operations.
29144
29145         * file-io.h: new struct that maps FileStreamAsyncResult.
29146         * icall.c: added new icalls.
29147         * process.[ch]: support setting child process environment variables
29148         and use the SHELL or COMSPEC when UseShellExecute is true.
29149
29150         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
29151         callback for async. IO is here and also BindHandle.
29152
29153         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
29154         from here.
29155
29156 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
29157
29158         * reflection.c (create_custom_attr): Allow len == 0.
29159
29160         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
29161         computation on big-endian machines.
29162
29163 2004-03-13  Martin Baulig  <martin@ximian.com>
29164
29165         * class.h (MonoGenericInst): Added `int count_ifaces'.
29166
29167         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
29168         `ginst->count_ifaces' instead `klass->interface_count' since we
29169         may get called before the vtable is created.
29170
29171         * loader.c (mono_method_get_param_names): If we're a generic
29172         instance, return and don't initialize the class.
29173
29174         * reflection.c (mono_reflection_setup_generic_class): Don't call
29175         ensure_runtime_vtable().
29176         (mono_reflection_bind_generic_parameters): Set
29177         `ginst->count_ifaces'.
29178
29179 2004-03-11  Jackson Harper <jackson@ximian.com>
29180
29181         * icall.c:
29182         * unicode.c:
29183         * unicode.h: Remove unused System.Char icalls.
29184         
29185 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
29186
29187         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
29188         code when we P/Invoke the first library in Windows.Forms, instead
29189         of when we first open the assembly.
29190
29191         * assembly.c: Drop the lookup from here.
29192
29193 2004-03-10  Martin Baulig  <martin@ximian.com>
29194
29195         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
29196         class for properties, fields and events.  Finally fixes #54945.
29197
29198 2004-03-10  Martin Baulig  <martin@ximian.com>
29199
29200         * metadata.c (mono_metadata_class_equal): New static function;
29201         checks whether two generic instances or two generic parameters are
29202         equal.
29203         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
29204         compare classes.        
29205
29206 2004-03-10  Martin Baulig  <martin@ximian.com>
29207
29208         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
29209
29210         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
29211         argument and write it into the `reflection_info' field.
29212
29213         * icall.c
29214         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
29215         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
29216
29217 2004-03-09  Jackson Harper  <jackson@ximian.com>
29218
29219         * char-conversions.h: use 8 bits for numeric data its all we need
29220         * icall.c: numeric data is only 8 bits now.
29221
29222 2004-03-09  Martin Baulig  <martin@ximian.com>
29223
29224         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
29225
29226         * class.c (init_properties, init_events): Initialize the new
29227         `parent' field.
29228
29229         * reflection.c (typebuilder_setup_properties): Likewise.
29230         (typebuilder_setup_events): Likewise.
29231
29232         * reflection.h (MonoEventInfo): Replaced `parent with
29233         `declaring_type' and `reflected_type'.
29234
29235         * icall.c (ves_icall_get_property_info): Distinguish between
29236         declaring and reflected type.
29237         (ves_icall_get_event_info): Likewise.
29238
29239 2004-03-09  Martin Baulig  <martin@ximian.com>
29240
29241         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
29242         (ves_icall_Type_GetField): Correctly set field->klass.
29243
29244 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
29245
29246         * loader.h: Fix warning.
29247
29248 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
29249
29250         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
29251         library routine if present.  Notice that it will still continue
29252         executing even if its missing, for those working on the Gtk#
29253         edition of Windows.Forms.
29254
29255         * assembly.c (do_mono_assembly_open): If loading the
29256         System.Windows.Forms call mono_loader_wini_init.
29257
29258 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
29259
29260         * class.h: Added MonoRemoteClass struct.
29261         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
29262         function for MonoStrings.
29263         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
29264         Added internal call for getting the proxy type.
29265         * marshal.c: Get the type of transparent proxies from its remote_class.
29266         Added methods that generate the IL for type checks and casts:
29267         mono_marshal_get_isinst, mono_marshal_get_castclass, 
29268         mono_marshal_get_proxy_cancast.
29269         * marshal.h: Declaration of the previous new methods.
29270         * object.c: Added new moethods for creating and updating MonoRemoteClass
29271         instances: mono_remote_class, mono_upgrade_remote_class, 
29272         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
29273         * verify.c: FIx transparent_proxy_fields layout.
29274         * appdomain.c: Bump corlib version.
29275
29276 2004-03-04  Jackson Harper  <jackson@ximian.com>
29277
29278         * icall.c: Add icall to access char conversion tables.
29279         * char-conversions.h: Character conversion tables.
29280         * Makefile.am: Add char-conversions.h private header file.
29281         
29282 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
29283
29284         * appdomain.c (unload_thread_main): Increase unloading timeout to
29285         10 sec as a temporary workaround for Nant problems.
29286
29287 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
29288
29289         * gc.c: Add checks for GC_enable and GC_disable.
29290
29291         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
29292         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
29293         (bug #54988).
29294         
29295 2004-02-27  Martin Baulig  <martin@ximian.com>
29296
29297         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29298         `MonoReflectionType *' instead of a `MonoType *'.
29299
29300 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
29301
29302         * gc.c (run_finalize): Avoid finalizing the object representing the
29303         finalizer thread.
29304         (finalizer_thread): Fix warning.
29305
29306 2004-02-25  Martin Baulig  <martin@ximian.com>
29307
29308         * class.c (_mono_class_get_instantiation_name): Added `int offset'
29309         argument for nested types.
29310         (mono_class_create_generic): Added support for nested generictypes.
29311
29312         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
29313         `GList *nested'.
29314
29315         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
29316
29317         * reflection.c (method_encode_signature): Increase the minimum
29318         value of `size' from 10 to 11.
29319         (mono_reflection_bind_generic_parameters): Take `int type_argc'
29320         and `MonoType **types' arguments instead of the `MonoArray
29321         *types'; added `MonoType *nested_in'.  Recursively instantiate
29322         nested classes. 
29323
29324 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
29325
29326         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
29327         stack_overflow_ex members which are used by exception handling.
29328
29329         * appdomain.c (mono_runtime_init): Initialize the new members.
29330
29331         * gc.c (mono_gc_enable): New helper function.
29332         * gc.c (mono_gc_disable): New helper function.
29333
29334 2004-02-23  Martin Baulig  <martin@ximian.com>
29335
29336         * icall.c: I must have been really stupid - make it actually work
29337         this time ;-)
29338
29339 2004-02-23  Martin Baulig  <martin@ximian.com>
29340
29341         * loader.c (method_from_memberref): Only inflate the method if
29342         it's in another klass.
29343
29344 2004-02-23  Martin Baulig  <martin@ximian.com>
29345
29346         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
29347         (mono_class_init): If we're a generic instance and an interface,
29348         compute `class->interface_id'; also create `class->interfaces'
29349         here and inflate them.
29350
29351         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
29352         `ginst->is_open'.
29353         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
29354
29355         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
29356
29357 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
29358
29359         * reflection.c (method_encode_code): Improved the error message
29360         generated by the exception.
29361
29362 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29363
29364         * icall.c: Martin did not do what he said in the ChangeLog for
29365         2004-02-18, but put back the changes for properties and events.
29366         Commenting those changes out again and adding comment to bug #54518.
29367         
29368         * process.c: removed warning.
29369
29370 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
29371
29372         * marshal.c (emit_struct_conv): Print an error message instead of
29373         asserting when a type does not have the StructLayout attribute.
29374
29375 2004-02-20  Martin Baulig  <martin@ximian.com>
29376
29377         * reflection.c (mono_type_get_object): Also use the cache for
29378         generic instances.
29379         (mono_reflection_bind_generic_parameters): Always compute
29380         `ginst->ifaces'.        
29381
29382 2004-02-20  Martin Baulig  <martin@ximian.com>
29383
29384         * class.h (MonoGenericMethod): Removed `klass'.
29385
29386         * class.c (mono_class_inflate_generic_method): Added `MonoClass
29387         *klass' argument.
29388
29389 2004-02-20  Martin Baulig  <martin@ximian.com>
29390
29391         * reflection.c (method_encode_methodspec): Actually use the
29392         uninflated signature for the memberref.
29393
29394 2004-02-20  Martin Baulig  <martin@ximian.com>
29395
29396         * class.h (MonoGenericMethod): Removed `declaring'.
29397
29398         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
29399         is NULL, compute it here.
29400
29401 2004-02-20  Martin Baulig  <martin@ximian.com>
29402
29403         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
29404
29405         * metadata.c (mono_metadata_generic_inst_hash): New method.
29406         (mono_metadata_generic_inst_equal): New method.
29407
29408         * reflection.c (mono_reflection_bind_generic_parameters): Use the
29409         `klass->image->generic_inst_cache' cache to avoid creating
29410         duplicate MonoGenericInst's.
29411
29412         * class.c (mono_class_inflate_generic_type): Use the cache.
29413
29414 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
29415
29416         * object.c: fixed gc descriptor calculation for embedded valuetypes.
29417
29418 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29419
29420         * icall.c: added Socket.WSAIoctl icall.
29421
29422         * socket-io.[ch]: implemented
29423         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
29424
29425 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
29426
29427         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
29428
29429 2004-02-18  Urs C Muff  <umuff@quark.com>
29430
29431         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
29432         this work on PPC and other big-endian architectures.
29433
29434         * debug-mono-symfile.h: Prepended the names of all the `guint32'
29435         fields with an underscore to make sure they're only accessed by
29436         the read32() macro.
29437
29438 2004-02-18  Martin Baulig  <martin@ximian.com>
29439
29440         * icall.c: Put the klass->refclass changes back for methods and
29441         fields, but not for properties and events.  We're currently not
29442         distinguishing between DeclaringType and ReflectedType for
29443         properties and events, that's what caused the regressions.
29444
29445 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29446
29447         * object.c:
29448         (mono_async_result_new): the handle can be NULL.
29449
29450         * threadpool.c: Use an event instead of a semaphore, don't initialize
29451         it until needed. This saves quite a few semaphores from being created
29452         when using the threadpool.
29453
29454 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
29455
29456         * object.c (mono_string_is_interned_lookup): Fix interning of long
29457         strings. Fixes #54473.
29458
29459         * domain.c (ldstr_equal): Optimize if the two strings are equal.
29460
29461         * icall.c: Revert the klass->refclass changes since they introduce
29462         regressions (bug #54518).
29463
29464 2004-02-18  Martin Baulig  <martin@ximian.com>
29465
29466         * class.c (mono_class_init): If we're a generic instance and don't
29467         come from a TypeBuilder, inflate our members here.
29468         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
29469         (mono_class_create_generic): New public method.
29470         (mono_class_initialize_generic): Removed.
29471         (get_instantiation_name): Renamed to
29472         _mono_class_get_instantiation_name() and made it public.
29473
29474 2004-02-18  Martin Baulig  <martin@ximian.com>
29475
29476         * class.c (mono_class_inflate_generic_type): Clear the new
29477         instance's `nginst->klass' when inflating a generic instance.
29478         (mono_class_is_subclass_of): Added (basic) support for generic
29479         instances.
29480
29481 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
29482
29483         * appdomain.h, domain.c: use a MonoCodeManager instead of a
29484         MonoMempool to hold compiled native code.
29485
29486 2004-02-17  Martin Baulig  <martin@ximian.com>
29487
29488         * class.h (MonoDynamicGenericInst): Added `count_properties' and
29489         `properties'.
29490
29491         * reflection.c (mono_reflection_generic_inst_initialize): Added
29492         `MonoArray *properties' argument.
29493
29494         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
29495
29496 2004-02-17  Martin Baulig  <martin@ximian.com>
29497
29498         * icall.c (ves_icall_Type_GetFields): Renamed to
29499         ves_icall_Type_GetFields_internal() and added a
29500         `MonoReflectionType *rtype' argument; pass it to
29501         mono_field_get_object() to set the field's "reflected" type.
29502         (ves_icall_Type_GetConstructors): Likewise.
29503         (ves_icall_Type_GetEvents): Likewise.
29504         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
29505         argument; pass it to mono_method_get_object() to set the method's
29506         "reflected" type.       
29507
29508 2004-02-17  Martin Baulig  <martin@ximian.com>
29509
29510         * class.h (MonoDynamicGenericInst): New type.
29511         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
29512
29513         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
29514         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
29515         (ves_icall_MonoGenericInst_GetFields): New interncall.
29516
29517         * class.c (mono_class_from_generic): Don't call
29518         mono_class_initialize_generic() if this is a dynamic instance;
29519         ie. it's being created from a TypeBuilder.
29520         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
29521         `class->byval_arg.type'.
29522
29523         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
29524         to `inflate_method' and made static.
29525         (mono_reflection_inflate_field): Removed.
29526         (mono_reflection_generic_inst_initialize): New public method.
29527
29528         * reflection.h (MonoReflectionGenericInst): Removed `methods',
29529         `ctors' and `fields'; added `initialized'.
29530
29531 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
29532
29533         * debug-helpers.c (mono_method_full_name): Fix output for empty
29534         namespaces.
29535
29536 2004-02-12  Martin Baulig  <martin@ximian.com>
29537
29538         * class.h (MonoClassField): Added `MonoType *generic_type'.
29539
29540         * reflection.c (mono_image_get_fieldref_token): Added support for
29541         instantiated generic types.
29542         (field_encode_inflated_field): Removed.
29543         (mono_image_get_inflated_field_token): Removed.
29544         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
29545
29546         * reflection.h (MonoReflectionInflatedField): Removed.
29547
29548 2004-02-12  Martin Baulig  <martin@ximian.com>
29549
29550         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
29551         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
29552
29553         * reflection.c (mono_image_get_methodspec_token): Take a
29554         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
29555         (mono_image_create_token): Check whether we have a
29556         `method->signature->gen_method' and call
29557         mono_image_get_methodspec_token() if appropriate.
29558         (inflated_method_get_object): Removed.
29559         (mono_reflection_bind_generic_method_parameters): Return a
29560         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
29561         (mono_reflection_inflate_method_or_ctor): Likewise.
29562
29563         * reflection.h (MonoReflectionInflatedMethod): Removed.
29564
29565 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
29566
29567         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
29568         for custom valuetype marshalling.
29569
29570         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
29571
29572 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29573
29574         * icall.c: fixed WSAGetLastError_internal name.
29575
29576 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
29577
29578         * threads.c (mono_thread_attach): Allow this to be called multiple
29579         times for a thread.
29580         
29581         * threads.c (build_wait_tids): Do not wait for ourselves.
29582
29583         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
29584         appdomain list is empty.
29585
29586         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
29587         memory returned by mono_string_builder_to_utf16, since it points into
29588         managed memory. Thanks to Bernie Solomon for noticing this.
29589
29590         * icall.c: Add AppDomainSetup icalls.
29591
29592         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
29593
29594         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
29595         types.
29596
29597         * reflection.c (reflection_methodbuilder_to_mono_method): Save
29598         custom attributes to the method_aux struct. Also fix array indexes etc.
29599
29600         * loader.c (mono_method_get_param_names): Make dynamic case work again.
29601         
29602 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
29603
29604         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
29605         (both static and runtime) and reduce startup time.
29606
29607 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
29608
29609         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
29610         AsAny marshalling conversion instead of crashing.
29611
29612         * marshal.c: Fix warnings.
29613
29614 2004-02-09  Martin Baulig  <martin@ximian.com>
29615
29616         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
29617
29618         * reflection.h (MonoReflectionInflatedMethod): Removed the
29619         `declaring' field, it's now in the unmanaged MonoGenericMethod.
29620
29621         * reflection.c (method_encode_methodspec): Removed the `method'
29622         argument; we get it from `gmethod->declaring'.
29623         (inflated_method_get_object): Removed the `declaring' argument.
29624
29625 2004-02-09  Martin Baulig  <martin@ximian.com>
29626
29627         * class.h (MonoGenericMethod): New type.
29628         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
29629         `generic_method'.
29630
29631         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
29632         a `MonoGenericMethod *gen_method' one.
29633
29634         * class.c (mono_class_inflate_generic_type): Take an additional
29635         `MonoGenericMethod * argument.  This is only non-NULL if we're
29636         inflating types for a generic method.   
29637         (mono_class_inflate_generic_signature): Renamed to
29638         inflate_generic_signature() and made static; take a
29639         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29640         (inflate_generic_header): Take a `MonoGenericMethod *' argument
29641         instead of a `MonoGenericInst *' one.
29642         (mono_class_inflate_generic_method): Likewise.
29643
29644         * reflection.c (encode_generic_method_sig): Take a
29645         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29646         (method_encode_methodspec): Likewise.
29647         (inflated_method_get_object): Likewise. 
29648
29649         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
29650         field with a `MonoGenericMethod *gmethod' one.  
29651
29652 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
29653
29654         * class.h (mono_class_has_parent): add parens to expansion
29655         so you can ! this.
29656
29657 2004-02-08  Martin Baulig  <martin@ximian.com>
29658
29659         * image.h (MonoImage): Removed `generics_cache'.
29660
29661         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
29662         instead of a `MonoType *' argument; removed the `inflate_methods'
29663         argument.  Don't inflate methods here.
29664
29665         * loader.c (find_method): If it's a generic instance, call
29666         mono_class_init() on the `sclass->generic_inst->generic_type'.
29667
29668         * metadata.c (mono_type_size): Make this work on uninitialized
29669         generic instances; call it on the `ginst->generic_type's class.
29670
29671         * reflection.c (mono_reflection_bind_generic_parameters): Call
29672         mono_class_from_generic() to create the `ginst->klass'.
29673
29674 2004-02-08  Martin Baulig  <martin@ximian.com>
29675
29676         * class.h (MonoClass): Changed type of `generic_inst' from
29677         `MonoType *' to `MonoGenericInst *'.
29678
29679 2004-02-08  Martin Baulig  <martin@ximian.com>
29680
29681         * icall.c (ves_icall_Type_BindGenericParameters): Just call
29682         mono_type_get_object(), this is now creating a `MonoGenericInst'
29683         for MONO_TYPE_GENERICINST.
29684         (ves_icall_MonoGenericInst_GetParentType): Likewise.
29685         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
29686
29687         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
29688         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
29689         (inflated_method_get_object): Added `MonoClass *refclass' argument.
29690         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
29691         and reflected type.
29692
29693         * reflection.h (MonoReflectionInflatedMethod): Removed
29694         `declaring_type' and `reflected_type'.
29695
29696 2004-02-08  Martin Baulig  <martin@ximian.com>
29697
29698         * class.h (MonoGenericInst): Added `MonoType *parent' and
29699         `MonoType **ifaces'.
29700
29701         * reflection.h (MonoReflectionGenericInst): Removed `klass',
29702         `parent' and `interfaces'.
29703
29704         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29705         `MonoType *' argument and return a `MonoType *'.
29706
29707         * icall.c
29708         (ves_icall_MonoGenericInst_GetParentType): New interncall.
29709         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
29710
29711 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29712
29713         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
29714         valuetype marshalling.
29715
29716 2004-02-06  Martin Baulig  <martin@ximian.com>
29717
29718         * class.c
29719         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
29720         (my_mono_class_from_generic_parameter): Likewise.
29721
29722 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29723
29724         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
29725         contents of the symbol files lazily.
29726
29727         * object.h (MonoThread): Add 'name' and 'name_len' fields.
29728
29729         * threads.h threads.c icall.c: New icalls for getting and setting the
29730         threads name.
29731
29732 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
29733
29734         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
29735         Raise an exception when the domain is not found.
29736
29737 2004-02-03  Martin Baulig  <martin@ximian.com>
29738
29739         * reflection.c (mono_image_get_methodspec_token): Use the
29740         uninflated signature; fixes gen-33.
29741
29742 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
29743
29744         * gc.c threads.c: Make the finalizer thread a normal managed thread so
29745         the finalizer code can use thread functionality.
29746
29747         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
29748         the finalizer thread.
29749
29750         * threads.c: Make some functions more robust.
29751
29752         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
29753
29754         * metadata.h: Add new marshalling conventions.
29755
29756         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
29757         stringbuilder marshalling. Fixes #53700.
29758
29759         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
29760
29761         * reflection.c (mono_image_get_type_info): Save declarative security
29762         info.
29763
29764         * reflection.c (mono_image_get_field_info): Handle uninitialized 
29765         unmanaged fields as well.
29766
29767         * appdomain.c: Bump corlib version.
29768
29769 2004-02-01  Martin Baulig  <martin@ximian.com>
29770
29771         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
29772         method type arguments.  
29773
29774 2004-01-30  Duncan Mak  <duncan@ximian.com>
29775
29776         * marshal.h: Add prototype for
29777         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
29778         and
29779         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
29780         fix the build.
29781
29782 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
29783
29784         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
29785         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
29786
29787 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29788
29789         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29790         custom marshalling of valuetypes.
29791
29792         * marshal.c: Fix some warnings.
29793
29794 2004-01-29  Martin Baulig  <martin@ximian.com>
29795
29796         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29797         for generic method parameters.
29798
29799         * reflection.c (method_encode_methodspec): Write the uninflated
29800         signature into the methodspec table.
29801         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29802         is always the uninflated method.
29803         (reflection_methodbuilder_to_mono_method): Copy the generic
29804         parameters from the MethodBuilder into `header->gen_params'.
29805
29806 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29807
29808         * class.c (mono_class_from_generic_parameter): Fix warning.
29809
29810 2004-01-27  Martin Baulig  <martin@ximian.com>
29811
29812         * class.c (mono_class_from_generic_parameter): Don't create
29813         `klass->methods' here.  
29814
29815 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
29816
29817         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29818         extension since it does not work with libraries named lib<FOO>.dll.so.
29819
29820 2004-01-25  Martin Baulig  <martin@ximian.com>
29821
29822         * class.c (mono_class_inflate_generic_type): Added support for
29823         MONO_TYPE_GENERICINST.
29824
29825         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29826         inflate methods on open constructed types.      
29827
29828 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29829
29830         * object.c: fire ProcessExit event in the root AppDomain after running
29831         Main. Fixes bug #53299.
29832
29833 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29834
29835         * socket-io.c: include the new socket-wrappers.h header.
29836         Use the wrappers instead of the unix socket functions to make the code
29837         more clear.
29838
29839 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29840
29841         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29842
29843         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29844         Fixes #22532.
29845
29846 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29847
29848         * reflection.c (mono_image_create_pefile): Handle the case when the
29849         entry point is not a MethodBuilder.
29850
29851         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29852         field to ReflectionMethod since it is not allways a builder.
29853
29854         * reflection.c (type_get_fully_qualified_name): New helper function to
29855         return the fully qualified name of a type.
29856
29857         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29858         type name for custom marshallers.
29859
29860         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29861
29862         * class.c (mono_class_setup_vtable): If a parent class already 
29863         implements an interface, use the implementing methods from that class.
29864         Fixes #53148.
29865
29866 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29867
29868         * threadpool.c: just return instead of ExitThread to allow for thread
29869         clean up earlier.
29870
29871 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29872
29873         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29874         when closing resource modules.
29875
29876         * reflection.c (mono_image_create_pefile): Handle the case when the
29877         entry point is not a MethodBuilder.
29878
29879         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29880         field to ReflectionMethod since it is not allways a builder.
29881
29882 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29883
29884         * marshal.c (mono_marshal_get_managed_wrapper): 
29885         mono_marshal_alloc takes native int so CONV_I
29886         the arg for 64bits.
29887
29888 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29889
29890         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29891         tokens in the cattr table. Fixes #53108.
29892
29893 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29894
29895         * loader.c: don't trim ".dll" before looking up in the config file.
29896         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29897
29898 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29899
29900         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29901         Return the module which contains the resource as well.
29902         (ves_icall_System_Reflection_Module_Close): New icall.
29903
29904         * appdomain.c: Bump corlib version number.
29905
29906         * image.c (mono_image_addref): New public function.
29907
29908         * assembly.c: Call mono_image_addref.
29909
29910         * reflection.c (mono_module_get_object): Increase reference count of 
29911         the image.
29912
29913         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29914         Fixes #22532.
29915
29916         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29917         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29918         proper exceptions on DllImport problems.
29919
29920 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29921
29922         * class.c, metadata.c: eliminate CSIZE macro.
29923
29924 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29925
29926         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29927         * object.h: Added async_callback field in MonoAsyncResult.
29928         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29929         * verify.c: Added async_callback in MonoAsyncResult layout.
29930
29931 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29932
29933         * reflection.c (mono_reflection_get_custom_attrs): Add support
29934         for Modules.
29935
29936 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29937
29938         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29939         marshalling.
29940         (mono_marshal_method_from_wrapper): Add null pointer check.
29941
29942 2004-01-16  Martin Baulig  <martin@ximian.com>
29943
29944         * debug-mono-symfile.h: Set version number to 36 and reflect
29945         latest symbol writer changes.
29946
29947 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29948
29949         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29950         multi-dimensional arrays.
29951         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29952         (mono_class_from_mono_type): Use bounded_array_class_get.
29953         
29954         * class.c (mono_bounded_array_class_get): New function which takes
29955         a 'bounded' bool argument to distinguish vectors from one dimensional
29956         arrays.
29957
29958         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29959         bounded_array_class_get if the array has bounds.
29960
29961         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29962         Search modules loaded using AssemblyBuilder:AddModule as well.
29963
29964 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29965
29966         * appdomain.c: increased corlib version.
29967         * filewatcher.c: removed g_print.
29968         * icall.c:
29969         (get_property_info): only allocate what is actually requested.
29970         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29971
29972 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29973
29974         * Makefile.am: added filewatcher.[ch]
29975         * filewatcher.[ch]: FileSystemWatcher runtime support.
29976         * icall.c: added new FSW icalls.
29977
29978 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29979
29980         * string-icalls.c: fix stringbuilder regression as suggested by
29981         Iain McCoy <iain@mccoy.id.au>.
29982
29983 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29984
29985         * process.c (process_read_stringtable_block): Recognize '007f' as
29986         a language neutral stringtable block.
29987
29988 2004-01-12  Patrik Torstensson
29989
29990         * object.h (MonoStringBuilder) : Changed layout to support our
29991         new stringbuilder class.
29992         * marshal.c: Change marshalling to support the new layout of 
29993         string builder.
29994         * appdomain.c: increased version number because new layout of
29995         string builder.
29996
29997 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29998
29999         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
30000         assembly name as an string instead of an AssemblyName, since it is
30001         easier to extract info from it.
30002
30003         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
30004         the culture subdirectories too. Fixes #52231.
30005
30006 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30007
30008         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
30009         It takes 2 new parameters with an optional name for the method to look
30010         for and case ignoring info.
30011
30012         * threadpool.c: removed unused variable.
30013
30014 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30015
30016         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
30017         It takes 2 new parameters with an optional name for the property to look
30018         for and case ignoring info.
30019         Fixes bug #52753.
30020
30021 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
30022
30023         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
30024         Fix #52451.
30025
30026 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30027
30028         * appdomain.c:
30029         * assembly.c: escape the uri before passing it to g_filename_from_uri.
30030         Fixes bug #52630.
30031
30032 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
30033
30034         * reflection.c: Add support for more than one unmanaged resource.
30035
30036         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
30037         in field->def_value, as done in all other cases.
30038
30039         * reflection.c (mono_reflection_get_custom_attrs): Add support for
30040         TypeBuilders.
30041
30042         * reflection.c (mono_reflection_create_runtime_class): Remove 
30043         errorneous assignment to klass->element_class, since it is already
30044         done in mono_reflection_setup_internal_class.
30045
30046 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30047
30048         * gc.c: added missing LeaveCriticalSection.
30049         * icall.c: indented a couple of lines.
30050         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
30051         if we call EndInvoke inside a callback. Fixes bug #52601.
30052
30053 2004-01-07  Martin Baulig  <martin@ximian.com>
30054
30055         * mono-debug-debugger.h
30056         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
30057
30058 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
30059
30060         * appdomain.c: Use messages in NotImplementedException.
30061
30062         * exception.c (mono_get_exception_not_implemented): Now this takes
30063         a message argument.
30064
30065         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
30066         exception instead of g_asserting an aborting when something is not
30067         implemented.
30068
30069         Add some inline docs.
30070
30071 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
30072
30073         * reflection.h: Update after changes to object layout.
30074
30075         * reflection.c: Implement saving of unmanaged aka win32 resources.
30076
30077         * appdomain.c: Bump version number.
30078
30079         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
30080         Handle missing domains gracefully.
30081
30082 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
30083
30084         * file-io.c : On Windows, there are much more invalid_path_chars.
30085
30086 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
30087
30088         * class.h, object.c: prepare for GetType () speedup.
30089
30090 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
30091
30092         * profiler.c: workaround for --profile null reference exception on
30093           cygwin. Patch by Patrik Torstensson.
30094
30095 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
30096
30097         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
30098         make work for unaligned access.
30099
30100 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
30101
30102         * class.c: small cleanup (class->fields [i] -> field).
30103         * image.c: check address of metadata is valid.
30104
30105 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
30106
30107         * assembly.h assembly.c (mono_assembly_loaded): New public function to
30108         search the list of loaded assemblies.
30109
30110         * reflection.c (mono_reflection_type_from_name): Use 
30111         mono_assembly_loaded instead of mono_image_loaded.
30112
30113         * reflection.c: Fix warnings.
30114
30115 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
30116
30117         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
30118         is dynamic. This is needed since an assembly can contain both dynamic and
30119         non-dynamic images.
30120
30121         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
30122         assembly->dynamic.
30123
30124         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
30125
30126         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
30127         to store modules loaded using AddModule.
30128
30129         * reflection.c (mono_image_fill_file_table): Generalize this so it works
30130         on Modules.
30131
30132         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
30133
30134         * reflection.c (mono_image_fill_export_table_from_module): New function to
30135         fill out the EXPORTEDTYPES table from a module.
30136
30137         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
30138         into a separate function. Also handle loaded non-dynamic modules.
30139
30140         * reflection.c (mono_image_basic_init): Fix memory allocation.
30141
30142         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
30143
30144         * assembly.c (mono_assembly_load_references): Make this public.
30145
30146 2003-12-19  Martin Baulig  <martin@ximian.com>
30147
30148         * class.c (mono_class_initialize_generic): Made this static, take
30149         a `MonoGenericInst *' instead of a `MonoClass *'.
30150         (mono_class_from_generic): Call mono_class_initialize_generic()
30151         unless we're already initialized or being called from
30152         do_mono_metadata_parse_generic_inst().
30153
30154         * class.h (MonoGenericInst): Added `initialized' and
30155         `init_pending' flags.
30156
30157         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
30158         `mono_class_init (gklass)' or mono_class_initialize_generic()
30159         here; set `generic_inst->init_pending' while parsing the
30160         `type_argv'.
30161
30162 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
30163
30164         * locales.c: include string.h for memxxx prototypes
30165
30166 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
30167
30168         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
30169         constructor when accessing literal fields.
30170
30171 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
30172
30173         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
30174
30175         * reflection.c (assembly_add_resource_manifest): New function to fill
30176         the MANIFESTRESOURCE table.
30177
30178         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
30179
30180         * reflection.h: Update to changes in class layout.
30181
30182         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
30183         Reenable call to mono_runtime_is_shutting_down ().
30184
30185         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
30186         determine if the runtime is shutting down.
30187
30188 2003-12-16  Jackson Harper <jackson@ximian.com>
30189
30190         * icall.c: comment out call to mono_runtime_is_shutting_down to
30191         fix build.
30192         
30193 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
30194
30195         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
30196         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
30197
30198 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
30199
30200         * reflection.c: move definition of swap_with_size
30201         to before its first call
30202
30203 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
30204
30205         * appdomain.c (mono_runtime_is_shutting_down): New public function.
30206
30207         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
30208         icall.
30209
30210         * object.c: Fix warnings.
30211
30212         * icall.c (ves_icall_Type_Get...): Only consider inherited static
30213         members if FlattenHierarchy is set.
30214
30215         * reflection.c (mono_image_add_decl_security): New function to emit
30216         declarative security.
30217
30218         * reflection.h reflection.c: Add support for declarative security.
30219
30220         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
30221         
30222 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
30223
30224         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
30225         
30226         * appdomain.c verify.c: Moved corlib version checking into its own
30227         function in appdomain.c since it needs to create vtables etc.
30228
30229 2003-12-13  Patrik Torstensson <p@rxc.se>
30230
30231         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
30232         instead of unwrapped server.
30233
30234 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
30235
30236         * verify.c (check_corlib): Fix field index.
30237
30238 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
30239
30240         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
30241         GetGacPath icall.
30242
30243 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
30244
30245         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
30246         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
30247         cope with sizeof(size_t) != sizeof(guint32).
30248
30249 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30250
30251         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
30252         in case of failure.
30253
30254 2003-12-10  Mark Crichton <crichton@gimp.org>
30255
30256         * icall.c: removed the GetNonZeroBytes.  We now handle this case
30257         in managed code.
30258
30259         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
30260
30261 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
30262
30263         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
30264         marked as deleted.
30265
30266 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
30267
30268         * verify.c (check_corlib): Handle the case when the version field is 
30269         initialized by a static constructor.
30270
30271 2003-12-08  Patrik Torstensson  <p@rxc.se>
30272
30273     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
30274
30275 2003-12-08  Martin Baulig  <martin@ximian.com>
30276
30277         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
30278         a MonoReflectionGenericParameter, also take the parameter index
30279         and name as arguments.
30280         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
30281         (ves_icall_MonoGenericParam_initialize): New interncall.
30282         (ves_icall_Type_make_byref_type): New interncall.
30283
30284         * reflection.h (MonoReflectionGenericParam): Derive from
30285         MonoReflectionType, not just from MonoObject.  Added `refobj' and
30286         `index' fields.
30287
30288         * reflection.c (mono_reflection_define_generic_parameter): Create
30289         and return a new MonoReflectionGenericParam; don't initialize the
30290         constraints here.
30291         (mono_reflection_initialize_generic_parameter): New public method;
30292         initializes the constraints and creates the `param->pklass'.
30293
30294 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
30295
30296         * reflection.h reflection.c: Use the new fields 'num_types', 
30297         'num_fields' and 'num_methods' to track the number of types etc.
30298
30299         * verify.c (check_corlib): Check corlib version number.
30300
30301 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
30302
30303         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
30304         function works on all methods.
30305
30306 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
30307
30308         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
30309         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
30310         the custom_type_info flag of the transparent proxy.
30311         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
30312         objects that supports IRemotingTypeInfo.
30313         * object.h: Added custom_type_info field in transparent proxy.
30314
30315 2003-12-06  Martin Baulig  <martin@ximian.com>
30316
30317         * class.c (mono_class_create_from_generic): Removed.
30318         (mono_class_from_generic): Check `ginst->klass' before doing
30319         anything else.  This is important to fully support "recursive"
30320         generic types.
30321
30322         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
30323         empty `generic_inst->klass' before doing anything else.
30324
30325 2003-12-06  Dick Porter  <dick@ximian.com>
30326
30327         * verify.c: 
30328         * object.h:
30329         * icall.c:
30330         * locales.c: Use C structs to access class fields.  Don't do a
30331         conversion between MonoString and UChar because both are
30332         platform-endian UTF-16.  Compare now takes startindex and count
30333         parameters.  Add a char overload for IndexOf.  Speed up the
30334         invariant string IndexOf.
30335
30336 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
30337
30338         * Makefile.am (monosn_LDADD): Fix parallel build.
30339
30340 2003-12-04  Martin Baulig  <martin@ximian.com>
30341
30342         * icall.c
30343         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30344         (ves_icall_Type_make_array_type): New interncall.       
30345
30346 2003-12-04  Martin Baulig  <martin@ximian.com>
30347
30348         * locales.c: also change it in the !HAVE_ICU case.
30349
30350 2003-12-04  Dick Porter  <dick@ximian.com>
30351
30352         * icall.c:
30353         * locales.c: construct_compareinfo is now in CompareInfo, not
30354         CultureInfo.
30355
30356 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
30357
30358         * image.c (mono_image_load_file_for_image): Cache loaded images in the
30359         image->files array.
30360
30361         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
30362         table as well.
30363
30364         * assembly.c (mono_assembly_load_references): Only load references
30365         once.
30366
30367         * class.c (mono_class_from_name): Avoid linear search of the 
30368         EXPORTEDTYPE table.
30369
30370         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
30371
30372 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
30373
30374         * image.h (MonoImage): Add 'field_cache' field.
30375
30376         * loader.c (mono_field_from_token): Cache field lookups.
30377         
30378         * reflection.c (mono_module_get_object): Fix name property.
30379
30380         * icall.c (ves_icall_get_enum_info): Update after changes to 
30381         mono_metadata_get_constant_index ().
30382
30383         * icall.c: Get rid of get_type_info icall, use a separate icall for
30384         each type property to avoid needless memory allocations. Fixes #51514.
30385
30386         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
30387         to avoid needless binary searches.
30388
30389         * class.c (class_compute_field_layout): Move the initialization of
30390         field->def_value to mono_class_vtable ().
30391
30392         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
30393         non-corlib types.
30394
30395         * object.c (mono_object_allocate): Make it inline.
30396
30397         * object.c (mono_object_allocate_spec): Make it inline.
30398         
30399 2003-12-02  Dick Porter  <dick@ximian.com>
30400
30401         * locales.c (create_NumberFormat): NumberFormatInfo construction.
30402         Patch by Mohammad DAMT (mdamt@cdl2000.com).
30403
30404 2003-12-01  Dick Porter  <dick@ximian.com>
30405
30406         * threads.c: Fix signature and call in CreateMutex and
30407         CreateEvent.
30408
30409 2003-12-01  Dick Porter  <dick@ximian.com>
30410
30411         * icall.c: 
30412         * locales.c: Implement string compares and searching
30413
30414         * object.h: Add extra Thread field
30415
30416 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
30417
30418         * reflection.c (fixup_method): Add support for MonoCMethod.
30419
30420 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
30421
30422         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
30423
30424         * reflection.c (assembly_name_to_aname): Allow extra characters in
30425         assembly names. Fixes #51468.
30426
30427 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
30428
30429         * exception.c (mono_exception_from_name_domain): New helper function.
30430
30431         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
30432         exception object in the correct domain.
30433
30434         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
30435         formatting + make a copy a the input data.
30436
30437         * loader.c (mono_get_method_from_token): Methods which contain
30438         native code do not have entries in the ImplMap.
30439
30440         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
30441         Thanks to Gonzalo for spotting this.
30442         
30443         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
30444         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
30445
30446         * assembly.h (mono_assembly_load_from): Split the second part of 
30447         assembly loading into a new public function.
30448
30449         * exception.h (mono_get_exception_bad_image_format): New function.
30450
30451 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
30452
30453         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30454         Enumerate all modules inside a dynamic assembly. Fixes #51293.
30455         
30456         * icall.c: Add new icall for creating dynamic methods.
30457
30458         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
30459
30460         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
30461
30462         * reflection.c (mono_reflection_create_dynamic_method): New icall to
30463         create a dynamic method.
30464
30465         * reflection.c (resolve_object): New helper function.
30466
30467         * reflection.c: Generalize ReflectionMethodBuilder and the functions
30468         which manipulate it so they can also work on dynamic methods.
30469
30470         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
30471         creating the MonoReflectionMethodAux structure if it is not needed.
30472         
30473         * reflection.h verify.c: Update after changes to object layout.
30474
30475         * reflection.c (method_builder_encode_signature): Fix compilation on
30476         gcc 2.95.x.
30477
30478 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
30479
30480         * appdomain.h: Added support for context static fields. Added static_data
30481           field to MonoAppContext and renamed thread_static_fields to a more
30482           generic special_static_fields in MonoAppDomain, since it can now contain
30483           context static fields.
30484         * domain.c: Updated hashtable name.
30485         * object.c: Replaced field_is_thread_static() for a more generic
30486           field_is_special_static() which also checks for context static attribute.
30487           In mono_class_vtable(), added support for static context fields.
30488         * threads.c: Changed methods that manage thread static fields to more
30489           generic methods so they can be reused both for thread and context static
30490           data.
30491         * threads.h: Declared some new methods.
30492
30493 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
30494
30495         * reflection.h: Update after changes to the managed types.
30496
30497         * reflection.c (encode_custom_modifiers): New helper function.
30498
30499         * reflection.c (method_encode_signature): Emit custom modifiers.
30500
30501         * reflection.c (field_encode_signature): Emit custom modifiers.
30502
30503 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
30504
30505         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
30506
30507         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
30508         implementation.
30509
30510         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
30511         icall.
30512
30513         * object.c (mono_field_get_value_object): New function.
30514
30515         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
30516         specific.
30517
30518 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
30519
30520         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
30521         return a preallocated out-of-memory exception instance.
30522
30523         * object.c (out_of_memory): Use the new function.
30524
30525         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
30526         flag is before the custom modifiers. Fixes #49802.
30527
30528 2003-11-16  Martin Baulig  <martin@ximian.com>
30529
30530         * class.c (mono_class_is_open_constructed_type): Implemented the
30531         MONO_TYPE_GENERICINST case.
30532
30533 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
30534
30535         * assembly.c (mono_assembly_fill_assembly_name): New function to
30536         fill out the MonoAssemblyName structure.
30537         (mono_assembly_open): Use the new function.
30538
30539         * icall.c (fill_reflection_assembly_name): New helper function.
30540
30541         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
30542         new function.
30543
30544         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
30545
30546 2003-11-15  Martin Baulig  <martin@ximian.com>
30547
30548         * class.c (mono_class_is_open_constructed_type): New public
30549         function; checks whether a type is an open constructed type,
30550         ie. whether it still contains type parameters.
30551         (mono_class_inflate_generic_type): If we're a type parameter and
30552         the inflated type is also a MONO_TYPE_(M)VAR, return the original
30553         type.
30554
30555         * class.h (MonoGenericInst): Added `guint32 is_open'.
30556
30557         * loader.c (method_from_methodspec): Check whether we're an open
30558         or closed constructed type and set `ginst->is_open'.
30559
30560         * reflection.c (mono_reflection_bind_generic_parameters): Check
30561         whether we're an open or closed constructed type and set
30562         `ginst->is_open'.
30563         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
30564         from open constructed types.
30565
30566 2003-11-15  Martin Baulig  <martin@ximian.com>
30567
30568         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30569         a generic instance (instead of a generic type declaration) with
30570         unbound generic parameters, bind them to our actual types.
30571
30572 2003-11-14  Martin Baulig  <martin@ximian.com>
30573
30574         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
30575
30576         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30577         an interface type, populate `res->interfaces' with instantiated
30578         versions of all the interfaces we inherit.
30579
30580 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
30581
30582         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
30583         when MONO_PATH is set but doesn't contain the install dir.
30584
30585 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30586
30587         * icall.c:
30588         (ves_icall_Type_GetInterfaces): don't return an interface twice when
30589         it's also implemented in base classes. Fixes bug #50927.
30590
30591 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
30592
30593         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
30594         if this method is called from a finalizer. Fixes #50913.
30595
30596 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
30597
30598         * threads.c: Implement VolatileRead/VolatileWrite
30599
30600         * icall.c: Add new icalls for VolatileRead/VolatileWrite
30601
30602 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30603
30604         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
30605         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
30606         2.95.3.
30607
30608         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
30609         from Peter Ross (pro@missioncriticalit.com).
30610         
30611 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
30612
30613         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
30614
30615 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30616
30617         * assembly.c (mono_assembly_load_references): Disable check because it
30618         triggers on older corlibs which lots of people have.
30619
30620 2003-11-12  Jackson Harper  <jackson@ximian.com>
30621
30622         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
30623         load corlib.dll if mscorlib.dll is not found.
30624         * assembly.h: Remove corlib name define.
30625         * class.c:
30626         * domain.c:
30627         * image.c: Change corlib name to mscorlib.
30628         
30629 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30630
30631         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
30632
30633 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
30634
30635         * appdomain.h: Added loader_optimization here to sync with the C#
30636         code, and add disallow_binding_redirects field.
30637
30638 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30639
30640         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
30641
30642         * reflection.c (mono_image_build_metadata): Fix crash on modules
30643         with no types.
30644
30645         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
30646
30647         * icall.c (ves_icall_get_method_info): Return callingConvention as
30648         well.
30649
30650         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
30651         namespaces from the EXPORTEDTYPE table as well.
30652
30653         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
30654         from all modules inside the assembly.
30655         
30656 2003-11-11  Martin Baulig  <martin@ximian.com>
30657
30658         * reflection.c (mono_reflection_bind_generic_parameters): Make
30659         this work for interfaces.
30660
30661 2003-11-11  Martin Baulig  <martin@ximian.com>
30662
30663         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
30664
30665 2003-11-11  Martin Baulig  <martin@ximian.com>
30666
30667         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
30668         "MonoInflatedMethod" and "MonoInflatedCtor".
30669
30670 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30671
30672         * reflection.c (resolution_scope_from_image): Use the assembly table
30673         from the manifest module, since other modules don't have it.
30674
30675         * debug-helpers.c (mono_type_full_name): New helper function.
30676
30677         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
30678
30679         * image.c (mono_image_load_file_for_image): New public function which
30680         is a replacement for the load_file_for_image in class.c.
30681
30682         * assembly.c (mono_assembly_load_module): A wrapper for the function
30683         above which does assembly association and reference loading too.
30684
30685         * class.c (mono_class_from_name): Call mono_assembly_load_module.
30686
30687 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30688
30689         * appdomain.c: not all of the attributes for the full assembly name
30690         are required and the order doesn't matter. Fixes bug #50787.
30691
30692 2003-11-10  Dick Porter  <dick@ximian.com>
30693
30694         * locales.c: Use platform-endian UTF16
30695
30696 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30697
30698         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30699         
30700 2003-11-10  Martin Baulig  <martin@ximian.com>
30701
30702         * metadata.c
30703         (mono_metadata_load_generic_params): Make this actually work.
30704
30705         * reflection.c (mono_reflection_bind_generic_parameters): If our
30706         parent is a generic instance, pass all the `types' to it, no
30707         matter whether it has the same number of type parameters or not.
30708
30709 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30710
30711         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30712
30713         * assembly.c (mono_assembly_load_references): Move the image<->assembly
30714         assignment code to this function so it gets called recursively for all
30715         modules.
30716
30717         * image.c (load_modules): Remove the assembly assignment since it is
30718         now done by mono_assembly_load_references.
30719         
30720         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30721         Add 'module' argument.
30722         (mono_module_get_types): New helper function.
30723         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
30724
30725 2003-11-08  Martin Baulig  <martin@ximian.com>
30726
30727         * class.c (mono_class_inflate_generic_method): Interface method
30728         don't have a header.
30729
30730         * reflection.c (mono_image_get_methodspec_token): Take an
30731         additional `MonoGenericInst *' argument instead of reading it from
30732         the header; this is necessary to support interfaces.
30733         (mono_image_create_token): Pass the `MonoGenericInst *' from the
30734         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
30735         (inflated_method_get_object): Take an additional `MonoGenericInst *'
30736         argument.
30737
30738         * reflection.h (MonoReflectionInflatedMethod): Added
30739         `MonoGenericInst *ginst'.
30740
30741 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
30742
30743         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
30744
30745 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
30746
30747         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
30748
30749 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
30750
30751         * reflection.c 
30752         (reflection_methodbuilder_from_method_builder):
30753         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
30754         initialize a ReflectionMethodBuilder structure.
30755         (mono_image_get_methodbuilder_token):
30756         (mono_image_get_ctorbuilder_token): New functions to emit memberref
30757         tokens which point to types in another module inside the same assembly.
30758
30759         * reflection.c: Use the new helper functions.
30760         
30761         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
30762
30763         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
30764         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
30765
30766         * reflection.c (resolution_scope_from_image): Emit a moduleref if
30767         neccesary.
30768
30769         * reflection.c (mono_image_build_metadata): Emit metadata only for the
30770         current module. Emit the manifest only for the main module.
30771
30772         * reflection.c (mono_image_create_token): Add assertion when a 
30773         memberref needs to be created.
30774
30775         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
30776
30777         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
30778         larger buffer for the custom attribute blob. Fixes #50637.
30779         
30780 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30781
30782         * threadpool.c: notify listener on async processing handles after
30783         invoking the async callback. Thanks to Zoltan.
30784
30785 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30786
30787         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
30788         avoid code duplication.
30789
30790         * reflection.h (MonoDynamicImage): New type which is currently unused,
30791         but will be used through the ref.emit code in place of 
30792         MonoDynamicAssembly.
30793
30794         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30795         object layout.
30796
30797         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30798         a MonoDynamicImage instead of just a MonoImage.
30799         
30800         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30801         icalls to ModuleBuilder but keep their semantics, so they will work
30802         with moduleb->assemblyb. This will change later.
30803         
30804 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30805
30806         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30807         object layout.
30808
30809         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30810         main module, since it is now done by the managed code.
30811
30812 2003-11-03  Martin Baulig  <martin@ximian.com>
30813
30814         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30815         `ginst->klass' here.
30816         (method_encode_methodspec): Don't use the `ginst->generic_method's
30817         klass if it's a generic instance, use `ginst->klass' in this case.
30818
30819 2003-11-03  Martin Baulig  <martin@ximian.com>
30820
30821         * reflection.c (mono_image_get_generic_method_param_info):
30822         Removed, use mono_image_get_generic_param_info() instead.
30823         (mono_image_get_type_info): Write the GenericParam table before
30824         the Method table.  This is neccessary because in the GenericParam
30825         table, type parameters of the class (ie. '!0' etc.) must come
30826         before the ones from its generic methods (ie. '!!0' etc).
30827
30828 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30829
30830         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30831
30832 2003-11-02  Martin Baulig  <martin@ximian.com>
30833
30834         * reflection.c (create_generic_typespec): Take a
30835         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30836         the generic parameters from it.
30837
30838 2003-11-02  Martin Baulig  <martin@ximian.com>
30839
30840         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30841         instead of a `MonoClassField *' since we just need the type.
30842         (create_generic_typespec): New static function.  Creates a
30843         TypeSpec token for a generic type declaration.
30844         (mono_image_get_generic_field_token): New static function.
30845         (mono_image_create_token): If we're a FieldBuilder in a generic
30846         type declaration, call mono_image_get_generic_field_token() to get
30847         the token.
30848
30849 2003-11-02  Martin Baulig  <martin@ximian.com>
30850
30851         * reflection.h
30852         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30853         `MonoReflectionGenericInst *declaring_type' and
30854         `MonoReflectionGenericInst *reflected_type' fields.
30855
30856         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30857         `MonoReflectionGenericInst *declaring_type' and a
30858         `MonoReflectionGenericInst *reflected_type' argument instead of a
30859         single `MonoReflectionGenericInst *type' one.  Set
30860         `res->declaring_type' and `res->reflected_type' from them.
30861         (mono_reflection_inflate_field): Likewise.      
30862
30863 2003-11-02  Martin Baulig  <martin@ximian.com>
30864
30865         * class.c (mono_class_setup_vtable): Don't store generic methods
30866         in the vtable.  
30867
30868 2003-11-02  Martin Baulig  <martin@ximian.com>
30869
30870         * reflection.h (MonoReflectionGenericInst): Added
30871         `MonoReflectionType *declaring_type'.
30872
30873         * reflection.c (mono_reflection_bind_generic_parameters): Use
30874         `if (tb->parent)' instead of `klass->parent'.
30875
30876 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30877
30878         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30879         with an empty ASSEMBLY table.
30880
30881         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30882         variable in the inner and outer loops.
30883
30884 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30885
30886         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30887         argument.
30888
30889         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30890         
30891         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30892         icalls. Instead, do everything in managed code. This is needed since
30893         it is hard to restore the original domain etc. in unmanaged code in the
30894         presence of undeniable exceptions.
30895
30896         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30897         New icalls to push and pop appdomain refs.
30898
30899 2003-10-31  Martin Baulig  <martin@ximian.com>
30900
30901         * class.c (inflate_generic_type): Renamed to
30902         mono_class_inflate_generic_type() and made it public.
30903
30904         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30905         New interncall.
30906
30907         * loader.c (mono_field_from_memberref): Also set the retklass for
30908         typespecs.
30909
30910         * fielder.c (mono_image_get_inflated_field_token): New static
30911         method; creates a metadata token for an inflated field.
30912         (mono_image_create_token, fixup_method): Added support for
30913         "MonoInflatedField".
30914         (fieldbuilder_to_mono_class_field): New static function.
30915         (mono_reflection_inflate_field): New public function.
30916
30917         * reflection.h
30918         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30919         (MonoReflectionInflatedField): New typedef.     
30920
30921 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30922
30923         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30924         for Solaris and other platforms without s6_addr16
30925
30926 2003-10-30  Martin Baulig  <martin@ximian.com>
30927
30928         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30929         argument instead of two.
30930         (mono_class_inflate_generic_signature): Likewise.
30931         (inflate_generic_header): Likewise.
30932         (mono_class_inflate_generic_method): Likewise.  In addition, if
30933         `ginst->klass' is set, it becomes the new `method->klass'.
30934
30935         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30936         field.
30937
30938         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30939         first byte. [FIXME]
30940         (method_encode_methodspec): If we have generic parameters, create
30941         a MethodSpec instead of a MethodRef.
30942         (fixup_method): Added support for "MonoInflatedMethod" and
30943         "MonoInflatedCtor".
30944         (mono_image_create_token): Added support for "MonoInflatedMethod"
30945         and "MonoInflatedCtor".
30946         (inflated_method_get_object): New static function; returns a
30947         managed "System.Reflection.MonoInflatedMethod" object.
30948         (mono_reflection_bind_generic_method_parameters): Return a
30949         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30950         (mono_reflection_inflate_method_or_ctor): Likewise.
30951         (mono_image_get_generic_method_param_info): Initialize unused
30952         fields to zero.
30953         (mono_image_get_generic_param_info): Likewise.
30954
30955         * reflection.h (MonoReflectionInflatedMethod): New public
30956         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30957         "S.R.MonoInflatedCtor" classes.
30958
30959         * loader.c (method_from_memberref): If we're a TypeSpec and it
30960         resolves to a generic instance, inflate the method.
30961
30962 2003-10-28  Dick Porter  <dick@ximian.com>
30963
30964         * object.c (mono_runtime_run_main): Convert command-line arguments
30965         into utf8, falling back to the user's locale encoding to do so.
30966
30967 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30968
30969         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30970         at this time.
30971
30972         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30973
30974         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30975         up icalls at method definition time. Partially fixes #33569.
30976
30977 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30978
30979         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30980         marshalling of arrays. Fixes #50116.
30981
30982         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30983
30984         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30985         points to a vtable in the dying appdomain.
30986
30987         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30988         listeners into unmanaged code inside the lock.
30989
30990         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30991         domains and add some comments.
30992
30993 2003-10-25  Martin Baulig  <martin@ximian.com>
30994
30995         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30996
30997         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30998
30999         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
31000         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
31001         currently parsing.  Create the generic class and store it in
31002         `generic_inst->klass' before parsing the type arguments.  This is
31003         required to support "recursive" definitions; see mcs/tests/gen-23.cs
31004         for an example.
31005         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
31006         to support recursive typespec entries.
31007
31008         * class.c (mono_class_setup_parent): If our parent is a generic
31009         instance, we may get called before it has its name set.
31010         (mono_class_from_generic): Splitted into
31011         mono_class_create_from_generic() and mono_class_initialize_generic().
31012
31013 2003-10-25  Martin Baulig  <martin@ximian.com>
31014
31015         * icall.c (ves_icall_Type_BindGenericParameters): Return a
31016         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
31017         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
31018         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
31019
31020         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
31021         (create_typespec): Likewise.
31022         (mono_reflection_bind_generic_parameters): Return a
31023         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
31024         (mono_reflection_inflate_method_or_ctor): New public function.
31025
31026         * reflection.h (MonoReflectionGenericInst): New typedef.        
31027
31028 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
31029
31030         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
31031         inside the domain lock. Fixes #49993.
31032         
31033         * object.c (mono_class_vtable): When typed allocation is used, 
31034         allocate vtables in the GC heap instead of in the mempool, since the
31035         vtables contain GC descriptors which are used by the collector even
31036         after the domain owning the mempool is unloaded.
31037
31038         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
31039
31040         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
31041         reflect what it does. Also invalidate mempools instead of freeing
31042         them if a define is set.
31043
31044         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
31045         of the appdomain.
31046         
31047         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
31048         hold the finalizable objects in this domain.
31049
31050         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
31051         appdomain.
31052
31053         * appdomain.c (mono_domain_set): New function to set the current
31054         appdomain, but only if it is not being unloaded.
31055
31056         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
31057         appdomain which is being unloaded.
31058         
31059         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
31060         unloading of the root appdomain.
31061
31062         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
31063         icall to execute a method in another appdomain. Intended as a 
31064         replacement for InternalSetDomain, which can confuse the code 
31065         generation in the JIT.
31066
31067         * appdomain.c (mono_domain_is_unloading): New function to determine
31068         whenever an appdomain is unloading.
31069
31070         * appdomain.c (mono_domain_unload): New function to correctly unload
31071         an appdomain.
31072
31073         * assembly.c (mono_assembly_load_references): Check that an assembly
31074         does not references itself.
31075
31076         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
31077         domain manually, it asks the finalizer thread to do it, then waits for
31078         the result. Also added a timeout.
31079
31080         * icall.c: Register the new icalls.
31081
31082         * threads.h threads.c: Export the mono_gc_stop_world and 
31083         mono_gc_start_world functions.
31084         
31085         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
31086         function to fill out the mempool with 0x2a.
31087
31088 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
31089
31090         * reflection.h (MonoReflectionMethodAux): New structure to store
31091         information which is rarely used, thus is not in the MonoMethod
31092         structure.
31093
31094         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
31095         store the aux info.
31096
31097         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
31098         and marshalling info into the aux structure.
31099
31100         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
31101         from the aux structure.
31102
31103         * loader.c (mono_method_get_param_names): Retrieve the param names from
31104         the aux structure.
31105         
31106 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
31107
31108         * exception.h exception.c: Add AppDomainUnloadedException && fix 
31109         warning.
31110
31111 2003-10-21  Dick Porter  <dick@ximian.com>
31112
31113         * socket-io.c
31114         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
31115         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
31116
31117 2003-10-21  Martin Baulig  <martin@ximian.com>
31118
31119         * reflection.c (mono_reflection_bind_generic_parameters):
31120         `klass->parent' is NULL for interfaces.
31121
31122 2003-10-21  Martin Baulig  <martin@ximian.com>
31123
31124         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31125
31126 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
31127
31128         * exception.c (mono_exception_from_name_msg): New helper function for
31129         creating exceptions and initializing their message field.
31130
31131         * exception.c: Simplify functions using the new helper.
31132
31133         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
31134         New function.
31135
31136         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
31137         mono_raise_exception, since otherwise gcc doesn't generate the function
31138         epilog for raise_exception, confusing the stack unwinding in the JIT.
31139         Fixes #45043.
31140
31141         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
31142         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
31143         Fixes #49499.
31144
31145 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31146
31147         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
31148         utf8.
31149
31150 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
31151
31152         * icall.c: Removed GetUninitializedObject method because
31153           AllocateUninitializedClassInstance does the same.
31154
31155 2003-10-18  Martin Baulig  <martin@ximian.com>
31156
31157         * class.c (inflate_generic_signature): Renamed to
31158         mono_class_inflate_generic_signature() and made it public.
31159         (my_mono_class_from_generic_parameter): New static function; if we
31160         don't already have the generic parameter's MonoClass, create a
31161         very simple one which is just used internally in the runtime and
31162         not passed back to managed code.
31163
31164         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
31165
31166         * metadata.h (MonoMethodSignature): Moved the
31167         `MonoGenericParam *gen_params' to the MonoMethodHeader.
31168         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
31169
31170         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
31171         ves_icall_MonoMethod_GetGenericArguments(); this is now an
31172         interncall on the MonoMethod class, not on MethodInfo.
31173         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
31174         calling mono_reflection_bind_generic_method_parameters() directly.
31175
31176         * loader.c (mono_method_get_signature): If this is a MethodSpec;
31177         return the already computed `method->signature'.
31178         (method_from_methodspec): New static function to load a method
31179         from a MethodSpec entry.
31180         (mono_get_method_from_token): Call the new method_from_methodspec()
31181         for MethodSpec tokens.  
31182         (mono_get_method_from_token): If we're a generic method, load the
31183         type parameters.
31184
31185         * reflection.c (mono_image_get_memberref_token): Allow
31186         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
31187         table.
31188         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
31189         (mono_image_create_token): First check whether it's a generic
31190         method (so we'd need to create a MethodSpec), then do the other
31191         two alternatives.
31192         (mono_reflection_bind_generic_method_parameters): Return a
31193         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
31194         called directly from the interncall.
31195
31196 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
31197
31198         * reflection.c (load_public_key): Move loading of the public key
31199         into managed code.
31200
31201         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
31202
31203         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
31204         fields.
31205
31206         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
31207         culture, hash_alg and public_key. Fixes #49555.
31208
31209 2003-10-17  Martin Baulig  <martin@ximian.com>
31210
31211         * class.h (MonoGenericInst): Moved this declaration here and added
31212         `MonoMethod *generic_method'.
31213
31214         * icall.c
31215         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
31216         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
31217
31218         * metadata.c (mono_metadata_type_equal): Two types of
31219         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
31220         index; ie. don't compare the address of the `MonoGenericParam'
31221         structure.
31222         (mono_metadata_load_generic_params): Removed the `MonoMethod
31223         *method' argument.
31224
31225         * metadata.h (MonoGenericInst): Moved declaration to class.h.
31226         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
31227
31228         * reflection.c (method_encode_signature): Encode the number of
31229         generic parameters.
31230         (encode_generic_method_sig): New static function.
31231         (method_encode_methodspec): New static function; creates an entry
31232         in the MethodSpec table for a generic method.
31233         (mono_image_get_methodspec_token): New static function.
31234         (mono_image_create_token): Call mono_image_get_methodspec_token()
31235         for generic methods.
31236         (mono_reflection_bind_generic_method_parameters): New public
31237         function.  Instantiates a generic method.
31238
31239 2003-10-16  Martin Baulig  <martin@ximian.com>
31240
31241         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
31242         *gen_params' here from MonoMethodHeader.
31243
31244         * metadata.c (mono_metadata_parse_method_signature): If we have
31245         generic parameters, initialize `method->gen_params' and then set
31246         the correct `type->data.generic_param' in all the parameters.
31247
31248 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
31249
31250         * threads.c (mono_threads_get_default_stacksize): New function to 
31251         return the default stacksize.
31252
31253         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
31254         termination of the finalizer thread, since the previous method had
31255         race conditions. Fixes #49628.
31256
31257         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
31258         as for the other managed threads.
31259
31260 2003-10-16  Martin Baulig  <martin@ximian.com>
31261
31262         * class.c (inflate_generic_signature): Copy `generic_param_count'
31263         and `gen_params'.
31264
31265         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
31266         New interncall.
31267
31268         * metadata.c (mono_metadata_parse_method_signature): Actually set
31269         the `method->generic_param_count' here.
31270         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
31271
31272 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
31273
31274         * object.h: Add a new field to TypedRef to simplify the implementation
31275         of the REFANY opcodes in the JIT.
31276
31277         * icall.c: Make use of the new field.
31278
31279         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
31280         dynamically.
31281
31282 2003-10-15  Martin Baulig  <martin@ximian.com>
31283
31284         * class.c (mono_class_from_gen_param): Renamed to
31285         mono_class_from_generic_parameter() and moved most of the
31286         functionality from mono_reflection_define_generic_parameter()
31287         here; ie. we create a "real" class here.
31288         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
31289         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
31290         previously been called.
31291
31292         * class.h (MonoGenericParam): Moved the declaration of this struct
31293         here from metadata.h and added `MonoMethod *method'.
31294
31295         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
31296         interncall.
31297
31298         * loader.c (mono_get_method_from_token): If we have any generic
31299         parameters, call mono_metadata_load_generic_params() to read them
31300         from the MONO_TABLE_GENERICPAR.
31301
31302         * metadata.c (mono_metadata_load_generic_params): Added
31303         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
31304
31305         * metadata.h (MonoMethodSignature): Replaced
31306         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
31307         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
31308
31309         * reflection.c (mono_reflection_define_generic_parameter): Moved
31310         most of the functionality into the new
31311         mono_class_from_generic_parameter(); set the `method' field if
31312         we're a method parameter.       
31313
31314 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
31315
31316         * marshal.c (emit_struct_conv): if native size is 0
31317         emit no code.
31318
31319 2003-10-14  Martin Baulig  <martin@ximian.com>
31320
31321         * icall.c: The generics API has changed in the spec since it was
31322         added to System.Type; these modifications make it match the spec
31323         again.
31324         (ves_icall_Type_GetGenericParameters): Renamed to
31325         `ves_icall_Type_GetGenericArguments'.
31326         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
31327         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
31328         `ves_icall_MonoType_get_HasGenericArguments'.
31329         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
31330         `ves_icall_MonoType_get_IsGenericParameter'.
31331         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
31332         this is no interncall anymore.
31333         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
31334         `ves_icall_TypeBuilder_get_IsGenericParameter'.
31335
31336 2003-10-14  Martin Baulig  <martin@ximian.com>
31337
31338         * reflection.c (mono_reflection_bind_generic_parameters): Also
31339         inflate generic methods if we're reading the class from IL.
31340
31341 2003-10-13  Martin Baulig  <martin@ximian.com>
31342
31343         * reflection.c (mono_reflection_define_generic_parameter): This
31344         method isn't called directly from the icall anymore; take a
31345         `MonoReflectionAssemblyBuilder *' so we can use this for type and
31346         method generic parameters.
31347         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
31348         (method_builder_encode_signature): Encode generic parameters.
31349         (mono_image_get_method_info): Write generic params to the
31350         MONO_TABLE_GENERICPARAM table.
31351
31352         * reflection.h (MonoReflectionMethodBuilder): Added
31353         `MonoArray *generic_params'.
31354
31355         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
31356
31357         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
31358         wrapper for mono_reflection_define_generic_parameter().
31359         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
31360
31361 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
31362
31363         * marshal.h: Add missing function to fix build.
31364
31365         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
31366         the SetLastError pinvoke attribute.
31367
31368         * marshal.c (mono_marshal_set_last_error): New helper function called
31369         by the generated code.
31370         
31371         * marshal.c (mono_mb_emit_branch): New helper function.
31372
31373         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
31374
31375         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
31376         classes as parameters and return values of delegates. Fixes #29256. 
31377
31378 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
31379
31380         * locales.c: use gint32 in non HAVE_ICU case
31381
31382 2003-10-11  Martin Baulig  <martin@ximian.com>
31383
31384         * mono-debug.c (mono_debug_add_method): Added a workaround for
31385         bug #48591.
31386
31387 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
31388
31389         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
31390         delegates passed to native code must use the STDCALL calling 
31391         convention. Fixes #35987.
31392
31393 2003-10-10  Martin Baulig  <martin@ximian.com>
31394
31395         * class.c (inflate_generic_type): If we're inflating for a generic
31396         type instance (and not for a generic method), return
31397         MONO_TYPE_MVAR unchanged.
31398
31399 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31400
31401         * string-icalls.c: Join ignores null strings in the source array.
31402         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
31403         * threads.c: GetAvailableTheads is slightly more accurate.
31404
31405 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
31406
31407         * threads.h threads.c : add mono_threads_set_default_stacksize
31408         and pass default to CreateThread calls.
31409
31410 2003-10-09  Dick Porter  <dick@ximian.com>
31411
31412         * icall.c:
31413         * locales.h:
31414         * locales.c: Internal calls for constructing CultureInfo and
31415         related objects from libicu (if its available.)
31416
31417 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
31418
31419         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
31420
31421 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31422
31423         * threadpool.c: added an argument to async_invoke_thread that is the
31424         item to process, pass the MonoAsyncResult to the thread start function
31425         when creating a new thread. This way we don't need to acquire any lock
31426         when we're creating a new thread. Readded a semaphore for faster
31427         response times (instead of that Sleep i added).
31428
31429 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
31430
31431         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
31432         get daylight change dates better on Windows, fix handling
31433         of platforms without tm_gmtoff.
31434
31435 2003-10-06  Martin Baulig  <martin@ximian.com>
31436
31437         * class.c (inflate_generic_method): Renamed to
31438         mono_class_inflate_generic_method() and made public.
31439         (mono_class_init): Don't inflate the generic methods here.
31440         (mono_class_from_generic): Added `gboolean inflate_methods'
31441         argument.  Inflate the methods here.
31442
31443         * loader.c (mono_method_get_param_names): Ignore instances of
31444         generic types for the moment.
31445
31446         * reflection.c (fixup_method): Added support for inflated methods.
31447         (mono_image_create_token): Use mono_image_get_methodref_token()
31448         for inflated methods.
31449         (mono_custom_attrs_from_param): Ignore instances of generic types
31450         for the moment.
31451         (mono_reflection_bind_generic_parameters): New public function.
31452         Moved all the functionality from
31453         ves_icall_Type_BindGenericParameters() here and added support for
31454         dynamic types.
31455         (mono_reflection_define_generic_parameter): Initialize
31456         `klass->methods' here.
31457
31458         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
31459         functionality into mono_reflection_define_generic_parameter().
31460         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
31461         TypeBuilder, return that TypeBuilder.
31462
31463 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31464
31465         * appdomain.c: removed mono_delegate_semaphore.
31466
31467         * threadpool.c:
31468         (mono_thread_pool_add): moved hash table creation inside and the thread 
31469         creation outside of the critical region.
31470         (mono_thread_pool_finish): removed obsolete code.
31471         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
31472         continue or exit the thread depending on the queue.
31473
31474 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
31475
31476         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
31477         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
31478         handle more bool marshalling options
31479
31480 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
31481
31482         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
31483         arrays of structs. Also add a more descriptive error message when
31484         a structure member is marshalled as LPArray.
31485
31486 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
31487
31488         * marshal.c (mono_marshal_get_native_wrapper): Add support for
31489         marshalling arrays of complex types. Fixes #29098. Also remove an
31490         usused and incomplete function.
31491
31492 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31493
31494         * gc.c: report heap_size - free_bytes as total memory allocated
31495         (bug#49362).
31496
31497 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
31498
31499         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
31500         fix timezone handling problems on Windows.
31501         
31502         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
31503         asserts when the year is outside the range handled by ms the functions.
31504
31505         * class.c (setup_interface_offsets): If the class is an interface,
31506         fill out its interface_offsets slot.
31507
31508 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31509
31510         * threadpool.c: mark threadpool threads as background.
31511
31512 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
31513
31514         * decimal.c - define DECINLINE to nothing if not using GCC
31515
31516 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
31517
31518         * assembly.c: More refcount fixes.
31519
31520 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31521
31522         * string-icalls.c: if we're not trimming, return the same string.
31523         When not splitting, don't create a new string.
31524
31525 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31526
31527         * image.c:
31528         (mono_image_open): increment the ref_count inside the critical section.
31529
31530 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
31531
31532         * image.c (mono_image_open): Fix reference counting bug.
31533
31534 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
31535
31536         * marshal.c (mono_marshal_type_size) struct alignment changed for 
31537         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
31538         64bits. Avoid leak in mono_marshal_get_native_wrapper when
31539         mono_lookup_pinvoke_call throws.        
31540
31541 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
31542
31543         * reflection.c (mono_reflection_parse_type): Fix #49114.
31544
31545         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
31546         temporary workaround for cygwin header problem.
31547
31548         * object.c (mono_object_isinst): Synchronize this with the code
31549         generated by the JIT for casts.
31550
31551 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
31552
31553         * reflection.c (encode_type): Fix #38332.
31554
31555 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
31556
31557         * marshal.c (mono_marshal_method_from_wrapper): New function to return
31558         the original method from the wrapper method.
31559
31560 2003-09-25  Martin Baulig  <martin@ximian.com>
31561
31562         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
31563         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
31564         (ves_icall_Type_get_IsGenericInstance): New interncall.
31565
31566 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
31567
31568         * object.c: fix cast warning in big endian code.
31569
31570 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
31571
31572         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
31573         
31574 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31575
31576         * assembly.c: don't call check_env from mono_assembly_load. It's
31577         already done once in mono_assemblies_init and may cause headaches when
31578         multiple threads are loading assemblies.
31579
31580 2003-09-19  Martin Baulig  <martin@ximian.com>
31581
31582         * reflection.c (mono_reflection_define_generic_parameter): Don't
31583         allocate `klass->methods', set `klass->flags' to
31584         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
31585
31586 2003-09-18  Martin Baulig  <martin@ximian.com>
31587
31588         * class.c (mono_class_init): Don't create `class->methods' if it's
31589         already initialized.
31590
31591         * metadata.c (mono_metadata_load_generic_params): Make this
31592         actually work.
31593
31594         * reflection.c (mono_reflection_define_generic_parameter): Set
31595         parent class and interfaces from the constraints.
31596
31597         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
31598         to keep this struct in sync with the declaration in TypeBuilder.cs.
31599
31600 2003-09-17  Martin Baulig  <martin@ximian.com>
31601
31602         * metadata.h (MonoType): Replaced the data's `int type_param'
31603         field with `MonoGenericParam *generic_param'.
31604         (MonoGenericParam): Added `MonoClass *klass'.
31605
31606         * class.c (mono_class_from_gen_param): Removed the
31607         `MonoImage *image' and `int type_num' arguments.
31608
31609         * metadata.c (mono_metadata_parse_generic_param): New static
31610         method; creates a MonoGenericParam which just contains the index.
31611         (do_mono_metadata_parse_type): Call
31612         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
31613         MONO_TYPE_MVAR.
31614
31615         * reflection.c (mono_image_typedef_or_ref): Generic type
31616         parameters may be in the same assembly, but never use a typedef
31617         for them.
31618         (mono_reflection_define_generic_parameter): We're now creating a
31619         "real" class for the type parameter; it's now safe to call
31620         mono_class_from_mono_type() on the class'es type, it'll do the
31621         right thing.
31622
31623 2003-09-16  Martin Baulig  <martin@ximian.com>
31624
31625         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
31626         `symfile->range_entry_size' and `symfile->class_entry_size' here;
31627         the `symfile' data structure must be fully initialized before it
31628         gets added to the table.
31629
31630 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
31631
31632         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
31633
31634         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
31635         class init trampolines.
31636
31637 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
31638
31639         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
31640         to the built-in profiler to turn off time and allocation profiling
31641         respectively.
31642
31643 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
31644
31645         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
31646         g_direct_equal.
31647
31648         * debug-helpers.c (mono_method_full_name): Print the wrapper type
31649         in human readable form.
31650
31651 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
31652
31653         * reflection.c icall.c: Fixed warnings.
31654
31655         * image.c (load_class_names): Use a temporary hash table to hold the
31656         namespaces in order to avoid doing many string comparisons.
31657
31658         * image.h: Fix typo.
31659
31660         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
31661         Pass NULL instead of g_direct_equal to the GHashTable constructor 
31662         since the NULL case is short-circuited inside g_hash_table_lookup, 
31663         leading to better performance.  
31664
31665         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
31666         obtain the first custom attribute for a given index. Depends on the
31667         CustomAttribute table being sorted by the parent field.
31668
31669         * reflection.c (mono_custom_attrs_from_index): Use the new function 
31670         for better performance.
31671
31672 2003-09-07  Martin Baulig  <martin@ximian.com>
31673
31674         * class.c (mono_class_init): If we're a generic instance, inflate
31675         all our methods instead of loading them from the image.
31676         (mono_class_from_generic): Set `class->methods = gklass->methods'.
31677
31678 2003-09-07  Martin Baulig  <martin@ximian.com>
31679
31680         * mono-debug-debugger.c: Added support for constructors.
31681
31682 2003-09-06  Martin Baulig  <martin@ximian.com>
31683
31684         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
31685         New interncall.
31686
31687         * reflection.c (mono_reflection_setup_generic_class): Call
31688         ensure_runtime_vtable() to create the vtable.
31689
31690 2003-09-05  Martin Baulig  <martin@ximian.com>
31691
31692         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
31693         MONO_TYPE_MVAR.
31694
31695 2003-09-04  Martin Baulig  <martin@ximian.com>
31696
31697         * reflection.c (mono_reflection_define_generic_parameter): Generic
31698         parameters start with zero.
31699
31700 2003-09-04  Martin Baulig  <martin@ximian.com>
31701
31702         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31703
31704         * reflection.h (MonoReflectionGenericParam): New typedef.
31705         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
31706         the generic parameters from the managed TypeBuilder.
31707
31708         * reflection.c (mono_reflection_define_generic_parameter): New function.
31709         (mono_reflection_create_runtime_class): Encode generic parameters.
31710         (mono_reflection_setup_generic_class): New function; this is
31711         called after adding adding all generic params to the TypeBuilder.
31712         (encode_type): Added MONO_TYPE_VAR.
31713
31714 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
31715
31716         * class.h class.c (mono_class_needs_cctor_run): Moved this method
31717         here from the JIT.
31718
31719         * assembly.h assembly.c: Moved the AOT loading code into an assembly
31720         load hook.
31721
31722 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
31723
31724         * reflection.h reflection.c class.h class.c: Delete duplicate 
31725         definition of mono_type_get_name () from reflection.c and export the
31726         one in class.c.
31727
31728         * class.c: Class loading fixes from Bernie Solomon 
31729         (bernard@ugsolutions.com).
31730
31731         * reflection.c: Endianness fixes from Bernie Solomon 
31732         (bernard@ugsolutions.com).
31733         
31734 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
31735
31736         * assembly.h assembly.c: Define a file format version for AOT
31737         libraries.
31738         
31739         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
31740
31741         * appdomain.h (MonoJitInfo): New field to determine whenever the
31742         code is domain neutral.
31743         
31744 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
31745
31746         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
31747
31748 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
31749
31750         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
31751         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
31752         Avoid caching the result since strings must be domain specific. Fixes
31753         #48050.
31754
31755 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
31756
31757         * marshal.c (mono_marshal_init): Make this callable multiple times
31758         since it is hard to find a correct place to call it.
31759
31760         * object.c (mono_runtime_class_init): Execute static constructors in
31761         the correct appdomain.
31762
31763         * image.c (build_guid_table): Handle the case when multiple images have
31764         the same GUID.
31765
31766 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31767
31768         * icall.c: added a couple of icalls for System.Web.
31769
31770 2003-08-28  Martin Baulig  <martin@ximian.com>
31771
31772         * icall.c (ves_icall_Type_BindGenericParameters): Use
31773         `klass->generic_inst' instead of `&klass->byval_arg' in the
31774         mono_type_get_object() call.  The returned type must be
31775         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
31776
31777 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
31778
31779         * NOTES: New file.
31780
31781         * object.c (mono_class_proxy_vtable): Make it thread safe.
31782
31783         * pedump.c: Fix warning.
31784
31785         * object.c appdomain.h: Get rid of metadata_section. 
31786         It is no longer needed and it was causing deadlocks with domain->lock.
31787
31788         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
31789
31790 2003-08-26  Martin Baulig  <martin@ximian.com>
31791
31792         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31793
31794 2003-08-26  Martin Baulig  <martin@ximian.com>
31795
31796         * pedump.c (main): Call mono_metadata_init(),
31797         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31798         and mono_loader_init().
31799
31800 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
31801
31802         * loader.h: Add missing include to fix build.
31803
31804         * image.h: mono_image_load_references is no more.
31805
31806         * assembly.c: Reworked assembly loading to make it really thread safe.
31807         After these changes, the assembly returned by mono_assembly_open is
31808         fully initialized, i.e. all its references assemblies are loaded.
31809
31810         * assembly.c (mono_image_load_references): Renamed to 
31811         mono_assembly_load_references, and made private, since clients no
31812         longer need to call it.
31813
31814         * class.c: Removed calls to mono_assembly_load_references, since it was
31815         a source of deadlocks.
31816
31817         * loader.h loader.c class.h class.c: Protect data structures using a 
31818         new lock, the loader lock.
31819
31820         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31821         GPtrArrays only when needed.
31822
31823         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31824         into empty structures by mcs. Fixes pinvoke7.cs.
31825         
31826         * domain.c (mono_init): Call a new initialization function.
31827
31828         * appdomain.c (mono_runtime_init): Call the new initializer function
31829         of the marshal module.
31830
31831         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31832         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31833
31834         * marshal.h marshal.c: Added locks around the wrapper caches to make
31835         this module thread safe.
31836
31837         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31838         this argument. Fixes pinvoke1.exe.
31839
31840 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31841
31842         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31843         enumeration of values. Removed fields to store remote call output values in
31844         MonoAsyncResult. Not needed any more.
31845         * object.c: Initialize call_type and async_result fields in mono_message_init.
31846         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31847         dispatching the message.
31848         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31849         async call to finish. To do it use a message with EndInvoke call type.
31850
31851 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31852
31853         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31854         determines whenever a method has marshalling info.
31855
31856 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31857
31858         * assembly.c: fix the build on windows.
31859
31860 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31861
31862         * object.cs: Fixed bug #47785.
31863
31864 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31865
31866         * string-icalls.c (StringReplace): If their are no occurances of
31867         the old string found return a reference to the supplied
31868         string. This saves some memory and matches MS behavoir.
31869         
31870 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31871
31872         * socket-io.c: fixed compilation for systems that define AF_INET6
31873         and don't define SOL_IP/SOL_IPV6.
31874
31875 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31876
31877         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31878         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31879
31880         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31881
31882         * domain.c: Make this module thread safe.
31883
31884         * domain.c (mono_init): Call new initialization function.
31885
31886         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31887         reference types too. Fixes #38812.
31888
31889         * image.c (mono_image_init): Fixed warnings.
31890
31891         * class.c (mono_class_from_typeref): Handle assembly load failure
31892         correctly.
31893
31894         * appdomain.c (add_assemblies_to_domain): Handle the case when
31895         the references of an assembly are not yet loaded.
31896
31897         * metadata.c image.c assembly.c: Moved initialization of global
31898         variables to a separate function called at startup since lazy 
31899         initialization of these variables is not thread safe.
31900         
31901         * image.c assembly.c: Made this module thread safe by adding locks in 
31902         the appropriate places.
31903
31904         * domain.c (mono_init): Call the new initialization functions of the
31905         three modules.
31906
31907 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31908
31909         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31910           make a direct call. It is proxy's work to make the call asynchronous.
31911           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31912           the return values.
31913         * object.cs: mono_method_call_message_new(): read AsyncResult and
31914           state object from parameters list, if this info is requested.
31915         * object.h: Added fields to store remote call output values in
31916           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31917
31918 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31919
31920         * object.h: add needed fields to MonoThread.
31921         * threads.c, threads.h: allow registering a function to cleanup data
31922         allocated per thread by the JIT.
31923
31924 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31925
31926         * loader.h: portability fix by Bernie Solomon
31927         * <bernard@ugsolutions.com>.
31928
31929 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31930
31931         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31932         return a MonoArray. This simplifies the code and also ensures that
31933         the cache allways contains an object reference as a value.
31934
31935         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31936         function.
31937
31938 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31939
31940         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31941         fixes a problem with byte ordering when getting the address family for
31942         a socket.
31943
31944 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31945
31946         * .cvsignore: Added monosn.
31947
31948         * reflection.h reflection.c loader.c: Added support for parameter
31949         marshalling to dynamically created types. Fixes #47295.
31950
31951 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31952
31953         * rand.c: remove useless warnings.
31954
31955 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31956
31957         * class.c: implemented ldtoken for methods and fieldrefs.
31958
31959 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31960
31961         * threadpool.c: when mono_async_invoke was called, no one took care of
31962         monitoring the queue. So if the method invoked took some time and we
31963         got new async invoke requests after 500 ms (the thread created waited
31964         that long in WaitForSingleObject), the new async invoke was not called
31965         until the previous one finished.
31966
31967         This is fixed now. Thanks to Totte for helping with it.
31968
31969 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31970
31971         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31972
31973 2003-08-11  Martin Baulig  <martin@ximian.com>
31974
31975         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31976
31977 2003-08-06  Martin Baulig  <martin@ximian.com>
31978
31979         * mono-debug-debugger.c: Added support for static fields,
31980         properties and methods.
31981
31982 2003-08-06  Martin Baulig  <martin@ximian.com>
31983
31984         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31985         make this work for applications with multiple application domains.
31986
31987 2003-08-04  Martin Baulig  <martin@ximian.com>
31988
31989         * mono-debug-debugger.c: Completely reworked the type support; the
31990         most important thing is that we're now just using one single
31991         `MonoType' instance per type.
31992
31993 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31994
31995         * mono-endian.h, mono-endian.c, icall.c: Added icall
31996         ves_icall_System_Double_AssertEndianity to assert double word endianity
31997         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31998
31999 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32000
32001         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
32002         support, icalls and fixes.
32003
32004 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
32005
32006         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
32007         classes that are a punctuation character in .NET is not the same a
32008         g_unichar_ispunct.
32009
32010 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32011
32012         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
32013
32014 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
32015
32016         * icall.c: Add new MemCopy internalcall.
32017         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
32018         Simplified code; It is not necessary to handle all the cases here,
32019         as the C# code takes care of it.  Only handle the case of the name
32020         resource embedded into the assembly.
32021
32022         Changed signature to return the data pointer and the size of the
32023         data. 
32024
32025 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
32026
32027         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
32028         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
32029
32030 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
32031
32032         * socket-io.c: ignore EINTR error in select.
32033
32034 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32035
32036         * class.h, class.c: removed unused subclasses field in MonoClass.
32037
32038 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
32039
32040         * icall.c: improve fix of get_base_definition(). If the parent class
32041           doesn't have the mehod, look at the parent of the parent.
32042         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
32043           to check if a parameter is an in or out parameter
32044           (PARAM_ATTRIBUTE_IN is not set by default).
32045           mono_method_return_message_restore(): Use mono_class_value_size to
32046           get the size of a value type. mono_type_stack_size (parameterType)
32047           does not return the correct value if parameterType is byRef.
32048           mono_load_remote_field(), mono_load_remote_field_new(),
32049           mono_store_remote_field(), mono_store_remote_field_new():
32050           raise exception if the remote call returns an exception.
32051
32052 2003-07-28  Martin Baulig  <martin@ximian.com>
32053
32054         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
32055         method.  This is a wrapper around mono_runtime_invoke() which
32056         boxes the instance object if neccessary.
32057
32058 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32059
32060         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
32061         metadata.h, row-indexes.h, verify.c: first cut of generics support.
32062
32063 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32064
32065         * icall.c: disable mcs bug workaround.
32066
32067 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
32068
32069         * object.c (mono_runtime_class_init): Take the metadata_section
32070         mutex before obtaining the domain mutex.
32071
32072         * appdomain.h: Added definition of metadata_section mutex here. 
32073
32074         * object.c: define metadata_mutex here.
32075
32076 2003-07-24  Ravi Pratap  <ravi@ximian.com>
32077
32078         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
32079         fixed.
32080
32081 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
32082
32083         * reflection.c: Fix bug #46669
32084
32085 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32086
32087         * exception.c:
32088         * exception.h:
32089         * icall.c:
32090         * object.h: fill in the type name for TypeLoadException.
32091
32092 2003-07-23  Ravi Pratap  <ravi@ximian.com>
32093
32094         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
32095         relationship between TypeBuilders while compiling corlib) and bug
32096         45993 (Array types returned from the runtime while compiling
32097         corlib were from the loaded corlib).
32098
32099 2003-07-22  Martin Baulig  <martin@ximian.com>
32100
32101         * mono-debug-debugger.c: Reworked the type support a bit more;
32102         distinguish between types and classes.
32103
32104 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
32105
32106         * icall.c: add IsArrayImpl icall.
32107
32108 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
32109
32110         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
32111         initializing real_size only once. Also fix bug #46602.
32112
32113 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
32114
32115         * object.c: Renamed mono_metadata_section to metadata_section.
32116
32117 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
32118
32119         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
32120           empty array if the type is an array. Fixed.
32121           ves_icall_MonoMethod_get_base_definition: if the base method
32122           is abstract, get the MethodInfo from the list of methods of
32123           the class.
32124         * reflection.c: ParameterInfo.PositionImpl should be zero-based
32125           and it was 1-based. Fixed in mono_param_get_objects.
32126
32127 2003-07-20  Martin Baulig  <martin@ximian.com>
32128
32129         * mono-debug.h: Set version number to 31.
32130         (mono_debug_init): Added `MonoDomain *' argument.
32131
32132         * mono-debug-debugger.c: Reworked the type support; explicitly
32133         tell the debugger about builtin types; pass the `klass' address to
32134         the debugger.
32135
32136 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
32137
32138         * image.c: Allow new metadata tables to be loaded without a
32139         warning. Also update the warning message to give the new constant value.
32140                 
32141 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
32142
32143         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
32144         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
32145         array type representation changes.
32146
32147 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
32148
32149         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
32150         on Environment.Exit () call.
32151
32152 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
32153
32154         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
32155         requires a matching corlib.
32156
32157 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
32158
32159         * Changelog: My editor decided to add a CR to each line. Sorry about that.
32160           Committed again without the CRs.
32161         
32162 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
32163
32164         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
32165           getting it from the "this" socket instance. Did not work
32166           if the socket is a subclass of Socket.
32167           Also fixed bug #35371.
32168
32169 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
32170
32171         * metadata.c: fixed size for TypedByRef.
32172         * loader.c: when searching for a method, consider the vararg amrker.
32173         * unicode.c, decimal.c: constify some arrays.
32174
32175 2003-07-15  Dick Porter  <dick@ximian.com>
32176
32177         * socket-io.c: Fixed compilation for gcc < 3.2.
32178
32179         Fixed compilation for machines that don't have AF_INET6 (thanks to
32180         Bernie Solomon <bernard@ugsolutions.com> for that part.)
32181
32182         Fixed compile warnings.
32183         
32184         Fixed formatting and line endings.
32185
32186 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
32187
32188         * socket-io.h:
32189         * socket-io.c: Added IPv6 support.
32190
32191 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
32192
32193         * class.c (mono_class_is_assignable_from): New function to implement
32194         the is_assignable_from logic. Used by mono_object_isinst, 
32195         Type::IsAssignableFrom () and the interpreter.
32196
32197         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
32198         Object, even interfaces.
32199         
32200         * object.c (mono_object_isinst): Implement in terms of 
32201         is_assignable_from.
32202
32203         * icall.c (ves_icall_type_is_assignable_from): New icall.
32204
32205 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
32206
32207         * domain.c (foreach_domain): fix compiler warning.
32208
32209 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
32210
32211         * image.c (load_metadata_ptrs): use g_strndup because strndup is
32212         not available on all plattforms
32213
32214 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
32215
32216         * image.h image.c: Store the metadata version string in MonoImage.
32217         * icall.c: New icall to retrieve the image version.
32218         * reflection.c (create_dynamic_image): Fill in the image version field
32219         * reflection.c (build_compressed_metadata): Use the image version
32220         from the image structure.
32221
32222 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32223
32224         * appdomain.c: modified comment.
32225         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
32226         That will be its last iteration when mono_gc_cleanup is called from
32227         mono_runtime_cleanup and before the domain is unloaded.
32228
32229         Fixes bug #45962.
32230
32231 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
32232
32233         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
32234         attributes.
32235
32236 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32237
32238         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
32239         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
32240         Bernie Solomon <bernard@ugsolutions.com>.
32241
32242 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32243
32244         * object.c, object.h: provide mono_object_new_fast() for faster
32245         allocation in some special cases.
32246
32247 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
32248
32249         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
32250         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
32251
32252 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
32253
32254         * threadpool.c: fix leaks.
32255
32256 2003-07-01  Dick Porter  <dick@ximian.com>
32257
32258         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
32259         using MonoGHashTables.  Fixes threadpool bug posted to list.
32260
32261 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
32262
32263         * image.h, image.c: added support to load an assembly from a byte array.
32264         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
32265         assembly bundle support.
32266
32267 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
32268
32269         * threadpool.c (mono_thread_pool_add): keep a reference to the
32270         AsyncResult to prevent GC
32271
32272 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32273
32274         * class.c: leak fix.
32275
32276 2003-06-25  Dick Porter  <dick@ximian.com>
32277
32278         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
32279         for the async object, the WaitHandle object will close the handle.
32280         Fixes bug 45321.
32281
32282 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32283
32284         * class.c: in mono_array_class_get (), lookup from the hash with the
32285         same type we insert: this works around a bug in
32286         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
32287         lluis. The real fix will have to wait for after the release.
32288
32289 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32290
32291         * icall.c: fix memory leak when getting type members.
32292
32293 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
32294
32295         * reflection.c: added more pubtoken special cases.
32296
32297 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
32298
32299         * class.c: handle field offset correctly when class size
32300         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
32301
32302 2003-06-20  Martin Baulig  <martin@ximian.com>
32303
32304         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
32305         *image' field.
32306
32307 2003-06-20  Martin Baulig  <martin@ximian.com>
32308
32309         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
32310
32311 2003-06-20  Martin Baulig  <martin@ximian.com>
32312
32313         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
32314         just distinguish between variables in registers and variables at
32315         an offset relative to a register.
32316
32317 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32318
32319         * icall.c: #ifdef out latest changes until mcs is fixed.
32320
32321 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32322
32323         * icall.c: return members in metadata order.
32324
32325 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
32326
32327         * icall.c: avoid infinite loop in GetTimeZoneData.
32328
32329 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
32330
32331         * icall.c: added Marshal.Prelink/All icalls.
32332
32333 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
32334
32335         * object.c, object.h: fix warnings and do some overflow checking
32336         when creating arrays.
32337
32338 2003-06-17  Dick Porter  <dick@ximian.com>
32339
32340         * file-io.h:
32341         * file-io.c: File attributes need to be tweaked slightly when
32342         passed from the managed to the w32 world.
32343
32344 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
32345         * profiler.h profiler-private.h profiler.c: Rework last patch
32346         based on suggestion by Paolo.
32347         
32348 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
32349
32350         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
32351         instruction level coverage data collection.
32352         * profiler.h profiler.c (: Added new callback function which can be
32353         used by the profiler to limit which functions should have coverage
32354         instrumentation.
32355         * profiler.c (mono_profiler_load): Call g_module_build_path to
32356         generate the file name of the profiler library.
32357
32358 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32359
32360         * profiler.c, profiler.h, profiler-private.h: added basic block 
32361         coverage profiling API.
32362
32363 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
32364
32365         * reflection.c (mono_reflection_create_runtime_class): Add support
32366         for events in dynamically generated code.
32367
32368         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
32369         not allocated.
32370
32371 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
32372
32373         * icall.c: when getting timezone info, return reasonable values if we
32374         can't get the actual data.
32375
32376 2003-06-14  Dick Porter  <dick@ximian.com>
32377
32378         * threads.c (start_wrapper): Remove the reference to the thread
32379         object in the TLS data, so the thread object can be finalized.
32380         This won't be reached if the thread threw an uncaught exception,
32381         so those thread handles will stay referenced :-( (This is due to
32382         missing support for scanning thread-specific data in the Boehm GC
32383         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
32384
32385 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
32386
32387         * reflection.c: ensure streams and tables are first allocated with
32388         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
32389
32390 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32391
32392         * icall.c: fixed GetElementType for byrefs (bug# 44792).
32393
32394 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
32395
32396         * reflection.c (mono_reflection_create_runtime_class): Add support for
32397         properties to dynamically created classes.
32398         * reflection.c: Fix a few places where non-MonoObjects were inserted
32399         into the tokens hashtable.
32400
32401 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32402
32403         * object.c: some support to handle out of memory exceptions.
32404
32405 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
32406
32407         * marshal.c (mono_marshal_get_native_wrapper): support reference
32408         return types
32409
32410 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32411
32412         * object.h, object.c: more portability stuff from Bernie Solomon.
32413         Unexport mono_object_allocate(). Added mono_object_unbox ().
32414         Set exitcode when an unhandled exception is thrown.
32415
32416 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
32417
32418         * marshal.c (mono_marshal_get_native_wrapper): use custom
32419         marshaler for return types.
32420
32421 2003-06-10  Dick Porter  <dick@ximian.com>
32422
32423         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
32424         ip_mreq is available
32425
32426 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
32427
32428         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
32429         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
32430         by Bernie Solomon <bernard@ugsolutions.com>.
32431
32432 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
32433
32434         * gc.c (mono_gc_init): Avoid error message on shutdown when
32435         GC_DONT_GC=1 is used.
32436
32437         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
32438         New icall to return the GUID of a module.
32439
32440 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32441
32442         * class.c: ensure instance size always includes the parent's size
32443         even whem class size is set explicitly (fixes bug#44294).
32444
32445 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32446
32447         * profiler.h, profiler.c: made the simple profiler thread-safe,
32448         get more accurate timing info. Allow the loading of an
32449         externally-developed profiler module.
32450
32451 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
32452
32453         * marshal.c (mono_marshal_get_native_wrapper): improved
32454         class/byref arguments.
32455         (mono_marshal_get_native_wrapper): better string marshaling support.
32456
32457 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
32458
32459         * class.c: ensure .pack and .size are handled correctly and
32460         simplified layout of static fields.
32461
32462 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
32463
32464         * appdomain.c
32465         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
32466
32467         * loader.c (mono_lookup_pinvoke_call): look for modules in the
32468         current directory (fix bug 44008)
32469
32470 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
32471
32472         * marshal.c (mono_marshal_get_native_wrapper): started support for
32473         custom marshalers.
32474         (mono_delegate_to_ftnptr): consider marshalling specifications
32475
32476 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
32477
32478         * reflection.c, reflection.h: emit custom marshal info.
32479
32480 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32481
32482         * object.c: free the GError.
32483         * icall.c: added CloseEvent_internal.
32484         * threads.[ch]:
32485         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
32486         call.
32487
32488 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
32489
32490         * loader.c (mono_method_get_signature): Add support for dynamic
32491         assemblies.
32492
32493 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
32494
32495         * reflection.c: fixed bug #43905.
32496
32497 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32498
32499         * class.c, domain.c, icall.c, metadata.h, object.h: support for
32500         handling TypedReference and ArgIterator.
32501         * loader.c, loader.h: added function to get signature at call site.
32502
32503 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32504
32505         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
32506         data readonly. Buglets and warning fixes. Some MethodSpec support.
32507
32508 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32509
32510         * class.h, class.c, object.c: remove relative numbering support.
32511
32512 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
32513
32514         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
32515         free the string, until we get a chance to fix Gtk#
32516
32517 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32518
32519         * marshal.c: revert last patch.
32520
32521 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
32522
32523         * icall.c: updates for new mono_class_vtable() not calling
32524         the type constructor anymore.
32525
32526 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32527
32528         * object.h, object.c: separate vtable creation from type
32529         initialization. Make running the .cctor thread safe.
32530
32531 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
32532
32533         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
32534
32535 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
32536
32537         * loader.c (mono_get_method): consider calling convention
32538
32539 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
32540
32541         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
32542         to return the invisible global type for a module.
32543
32544         * reflection.c (mono_image_build_metadata): Emit global fields too.
32545
32546 2003-05-20  Peter Williams  <peterw@ximian.com>
32547
32548         * loader.c (mono_lookup_internal_call): Add a few newlines.
32549
32550 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
32551
32552         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
32553         literal strings.
32554
32555         * appdomain.c (set_domain_search_path): Recalculate search path when
32556         AppDomainSetup.PrivateBinPath changes.
32557
32558         * object.c (mono_class_compute_gc_descriptor): It turns out some
32559         parts of the class libs (like System.Thread) holds pointers to
32560         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
32561         to treat native int a pointer type here.
32562         
32563 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
32564
32565         * appdomain.h, domain.c: add hashtable for jump target resolution.
32566
32567 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
32568
32569         * reflection.h reflection.c icall.c: Added new icalls 
32570         GetManifestResourceInfoInternal, GetModulesInternal and support
32571         infrastructure.
32572
32573 2003-05-16  Dick Porter  <dick@ximian.com>
32574
32575         * icall.c:
32576         * file-io.h:
32577         * file-io.c: Implement System.IO.MonoIO::GetTempPath
32578
32579 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
32580
32581         * object.c: mono_store_remote_field: little fix to previous patch.
32582
32583 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32584
32585         * class.c: add constructors to array classes.
32586         * icall.c: special case array construction for InternalInvoke (),
32587
32588 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
32589
32590         * class.h class.c reflection.c object.c: Added support for field
32591         defaults in dynamically generated classes.
32592
32593 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
32594
32595         * reflection.c: properly encode charset for ddlimport.
32596
32597 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
32598
32599         * threads.c: allow compiling without GC.
32600
32601 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32602
32603         * appdomain.h, object.c, object.h, threads.c, threads.h: added
32604         handling of thread static data.
32605
32606 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32607
32608         * reflection.h, reflection.c: added mono_custom_attrs_free ().
32609
32610 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
32611
32612         * class.c (mono_array_class_get): always set the serializable flags
32613         (mono_array_class_get): always set the SEALED attribute for array types
32614
32615 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
32616
32617         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
32618         attributes (fix for bug 42021).
32619
32620 2003-05-12  Dick Porter  <dick@ximian.com>
32621
32622         * gc.c: Don't run finalizers when the finalizer thread is
32623         finishing up, because the default domain has already been
32624         destroyed.
32625
32626 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
32627
32628         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
32629         value is null, we should throw an exception.   This is slightly
32630         different than the other conventions used for the constructor.
32631
32632 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32633
32634         * socket-io.c: fixed windows build.
32635
32636 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32637
32638         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
32639
32640 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
32641
32642         * object.c (mono_string_new_wrapper): Compatibility fix for MS
32643         compilers.
32644
32645 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
32646
32647         * class.c (mono_class_layout_fields): Add experimental GC aware
32648         auto layout facility. Requires class library changes to work correctly.
32649
32650         (mono_class_setup_vtable): Avoid overriding explicit interface
32651         method implementations. Fixes iface3.exe test.
32652
32653         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
32654         object reference.
32655         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
32656         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
32657
32658         * metadata.h: Add new type classification macro which determines
32659         whenever the type holds an object reference.
32660
32661 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
32662
32663         * marshal.c (mono_marshal_get_native_wrapper): cleanups
32664
32665 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
32666
32667         * gc.c (finalizer_thread): Work around a GC bug.
32668
32669 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
32670
32671         * marshal.c (emit_struct_conv): allow unions
32672
32673         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
32674
32675 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
32676
32677         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
32678
32679 2003-05-06  Martin Baulig  <martin@ximian.com>
32680
32681         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
32682
32683 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32684
32685         * socket-io.c:
32686         (Select_internal): allow NULLs, don't create arrays if not needed.
32687         Coupled with Socket.cs changes.
32688
32689         * threadpool.c:
32690         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
32691         register a finalizer for it that will close the semaphore handle. This
32692         fixes the leak and make Lupus' test run with > 4080 loops.
32693
32694 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
32695
32696         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
32697         Jerome Laban (bug #42287)
32698
32699 2003-05-02  Martin Baulig  <martin@ximian.com>
32700
32701         * debug-mono-symfile.h
32702         (MonoSymbolFile): Moved declaration into mono-debug.h.
32703         (MonoDebugMethodJitInfo): Likewise.
32704         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
32705         argument.
32706         (_mono_debug_address_from_il_offset): Take a
32707         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
32708
32709         * mono-debug.h
32710         (MonoDebugDomainData): New struct.
32711         (mono_debug_get_domain_data): New function.
32712         (mono_debug_add_method): Take an additional `MonoDomain *'
32713         argument.
32714         (mono_debug_source_location_from_address): Likewise.
32715         (mono_debug_il_offset_from_address): Likewise.
32716         (mono_debug_address_from_il_offset): Likewise.
32717
32718 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
32719
32720         * reflection.c: one more check for null type in custom attrs.
32721
32722 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32723
32724         * reflection.c: avoid warning (comparison is always false due to limited
32725         range of data type).
32726
32727 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32728
32729         * icall.c: throw an exception in Type.GetField if the argument 'name'
32730         is NULL.
32731
32732 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
32733
32734         * reflection.c: fixed handling of enums in named arguments to custom
32735         attributes (bug #42123).
32736
32737 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
32738
32739         * reflection.c: use the right array element type and handle
32740         a null for a Type argument, too.
32741
32742 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
32743
32744         * reflection.c: handle arrays as arguments to custom attributes.
32745
32746 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32747
32748         * reflection.c: handle a string value in a custom attr
32749         ctor that takes an object.
32750
32751 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
32752
32753         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
32754         (fix bug #42063)
32755
32756 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
32757
32758         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
32759
32760 2003-04-27  Martin Baulig  <martin@ximian.com>
32761
32762         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
32763         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
32764         MONO_DEBUGGER_EVENT_BREAKPOINT.
32765         (mono_breakpoint_trampoline_code): Removed.
32766         (mono_debugger_event_handler): The last argument is now a
32767         `guint32'.
32768         (mono_debugger_insert_breakpoint_full): Removed the
32769         `use_trampoline' argument.
32770         (mono_debugger_method_has_breakpoint): Likewise.
32771         (mono_debugger_trampoline_breakpoint_callback): Renamed to
32772         mono_debugger_breakpoint_callback(); take the method and
32773         breakpoint number as arguments.
32774
32775 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
32776
32777         * metadata.c: fix off by one when loading parameters attributes.
32778
32779 2003-04-24  Martin Baulig  <martin@ximian.com>
32780
32781         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
32782
32783 2003-04-24  Martin Baulig  <martin@ximian.com>
32784
32785         * mono-debug-debugger.c: Moved all code which interacts with the
32786         Mono Debugger here.
32787
32788         * debug-mono-symfile.c: This code now just deals with the symbol
32789         file itself, the debugger code is now in mono-debug-debugger.c.
32790
32791 2003-04-23  Martin Baulig  <martin@ximian.com>
32792
32793         * mono-debug.c (mono_debug_source_location_from_il_offset):
32794         New method; like mono_debug_source_location_from_address(), but
32795         takes an IL offset instead of a machine address.
32796
32797 2003-04-23  Martin Baulig  <martin@ximian.com>
32798
32799         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32800         `line' field; this is now computed by the debugger.
32801
32802 2003-04-23  Martin Baulig  <martin@ximian.com>
32803
32804         * mono-debug.[ch]: New files.  This is the new debugging interface.
32805
32806         * mono-debug-debugger.[ch]: New files.  Moved all code which
32807         interacts with the Mono Debugger here.
32808
32809 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32810
32811         * domain.c (mono_init): initialize mono_defaults.monitor_class
32812
32813 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32814
32815         * reflection.c (method_encode_code): Add a spicy exception to help
32816         future compiler authors.
32817
32818 2003-04-21  Martin Baulig  <martin@ximian.com>
32819
32820         * icall.c
32821         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32822         Make this work with relative pathnames; g_filename_to_uri() needs
32823         an absolute filename.
32824
32825 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32826
32827         * icall.c: Track name changes in Object and ValueType.
32828
32829 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32830
32831         * metadata.c (mono_type_stack_size): size should be a multiple of
32832         sizeof (gpointer)
32833
32834 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32835
32836         * gc.c:
32837         (internal_domain_finalize): moved into mono_domain_finalize. No need
32838         to create another thread because the finalizers will be run in the
32839         finalizer thread.
32840         
32841         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32842         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32843         to be run (MS does this too).
32844
32845 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32846
32847         * object.c (mono_class_compute_gc_descriptor): Update comment.
32848
32849         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32850
32851         * image.h: Add synchronized wrapper cache.
32852
32853         * image.c (do_mono_image_open): Initialize cache.
32854
32855         * reflection.c (create_dynamic_mono_image): Initialize cache.
32856
32857 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32858
32859         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32860         ves_icall_System_Buffer_ByteLengthInternal.
32861
32862 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32863
32864         * reflection.c: setup klass->nested_in earlier. Allow
32865         a dash in the assembly name.
32866
32867 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32868
32869         * metadata.c (mono_type_to_unmanaged): dont access
32870         type->data.klass for MONO_TYPE_OBJECT
32871         (mono_type_to_unmanaged): consider System.Delegate class
32872
32873 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32874
32875         * class.c: just setup supertypes in the proper place instead of
32876         initializing the full element class for arrays.
32877
32878 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32879
32880         * class.c: ensure the element class of arrays is initialized.
32881         Setup the supertype info for array classes, too.
32882
32883 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32884
32885         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32886
32887 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32888
32889         * Makefile.am: re-added -m option when running cygpath. This way,
32890         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32891         separator.
32892         * mono-config.c: same codepath for locating mono config file for WIN32
32893         and the rest.
32894         * assembly.c: if mono_assembly_setrootdir is called, don't override
32895         the value set.
32896
32897 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32898
32899         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32900         MONO_ASSEMBLIES variable.
32901
32902 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32903
32904         * icall.c: added Assembly::GetNamespaces() icall.
32905
32906 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32907
32908         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32909
32910 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32911
32912         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32913         * object.c: fixed bug in the construction of vtable for proxies
32914
32915 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32916
32917         * object.c (mono_array_new): Mark mono_array_new as an icall.
32918
32919 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32920
32921         * class.c: fixed test for public method when overriding interfaces.
32922         Closes bug #40970.
32923
32924 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32925
32926         * appdomain.h, domain.c: added mono_domain_foreach() to
32927         be able to access the currently loaded appdomains.
32928         * object.c: make string interning work across sppdomains.
32929         Mark some functions for use as icalls.
32930
32931 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32932
32933         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32934
32935         * reflection.h reflection.c: Allocate long living data using 
32936         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32937
32938         * reflection.c: Double the allocation size in streams instead of
32939         increasing it, to prevent unneccesary copying on large assemblies.
32940         
32941         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32942         creation if the assembly does not have the Run flag set.
32943
32944 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32945
32946         * class.h: avoid the C++ keywords in header files (Jerome Laban
32947         spotted and fixed this).
32948
32949 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32950
32951         * object.c:
32952         (mono_unhandled_exception): fill in the arguments for the
32953         UnhandledException event. Only trigger that event for the default
32954         domain (as MS does).
32955
32956 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32957
32958         * object.c: Improve typed allocation stuff based on suggestions from
32959         Paolo. Also turn it on if the GC library supports it.
32960
32961 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32962
32963         * object.c object.h class.h: Added experimental typed allocation
32964         facility using the interfaces in gc_gcj.h.
32965
32966         * os/gc_wrapper.h: Added new include files.
32967         
32968 2003-04-03  Martin Baulig  <martin@ximian.com>
32969
32970         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32971         which is not yet enabled by default.
32972
32973         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32974         functions.
32975         (mono_gc_lock, mono_gc_unlock): New static functions.
32976
32977         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32978         functions; stop/start the world for the garbage collector.  This
32979         is using the windows API; we need to complete the SuspendThread()/
32980         ResumeThread() implementation in the io-layer to make this work on Unix.
32981         (mono_gc_push_all_stacks): New public function; tells the garbage
32982         collector about the stack pointers from all managed threads.
32983
32984 2003-04-03  Martin Baulig  <martin@ximian.com>
32985
32986         * object.h (MonoThread): Added `gpointer stack_ptr'.
32987
32988         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32989
32990 2003-04-03  Martin Baulig  <martin@ximian.com>
32991
32992         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32993
32994 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32995
32996         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32997         field.last.
32998
32999 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
33000
33001         * loader.c (mono_lookup_internal_call): Report the corlib that is
33002         out of sync.
33003
33004 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
33005
33006         * icall.c (ves_icall_type_GetTypeCode): fixed check for
33007         System.DBNull (it's class not valuetype).
33008
33009 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
33010
33011         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
33012         if the array method was already assigned a token (fixes bug#40646).
33013
33014 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
33015
33016         * reflection.c (mono_reflection_get_type): Attempt type resolve even
33017         if no assembly is given.
33018
33019 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
33020
33021         * metadata.h: Added the new tables.
33022
33023         * row-indexes.h: Added definitions for new tables.
33024
33025         * metadata.c: Add schemas for new tables, and add support for
33026         computing the sizes of them.
33027
33028         * class.c: Update for handling the new type cases.
33029
33030 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
33031
33032         * metadata.h (MONO_TYPE_IS_VOID): new macro
33033
33034 2003-03-31  Martin Baulig  <martin@ximian.com>
33035
33036         * threads.h (MonoThreadCallbacks): Added `thread_created'.
33037
33038         * threads.c (mono_thread_new_init): Call `thread_created' in the
33039         mono_thread_callbacks.
33040
33041 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
33042
33043         * loader.h: added marshalbyrefobject_class to mono_defaults
33044         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
33045         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
33046           generation of output parameters.
33047           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
33048         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
33049           contextbound and the target object belongs to the context of the caller.
33050         * object.h: added context and unwrapped_server variables in MonoRealProxy.
33051         * object.c: Implemented support for interfaces and abstract classes
33052           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
33053           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
33054
33055 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
33056
33057         * class.h class.c (mono_class_is_subclass_of): New function.
33058         
33059         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
33060         routines for most common case (calls from ArrayList::ToArray).
33061
33062         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
33063         routine so programs which call Environment::Exit() can be profiled.
33064
33065         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
33066         Added MONO_ARCH_SAVE_REGS.
33067
33068         * icall.c (ves_icall_type_is_subtype_of): Use new function.
33069
33070 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
33071
33072         * blob.h: Add a couple of new MonoType types definitions.
33073
33074         * tabledefs.h: Add a couple of new call convs.
33075
33076 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
33077
33078         * reflection.h (MonoReflectionDynamicAssembly): track changes in
33079         the layout of the class.
33080
33081         * reflection.c (alloc_table): double the size on overflow to avoid
33082         unnecessary copying.
33083
33084         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
33085         avoid filling out metadata tables and blobs. Also set mb->ilgen to
33086         null so it can be garbage collected.
33087         
33088 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
33089
33090         * reflection.c (mono_reflection_get_type): Return the resolved type
33091         only if it is in the assembly we searched.
33092
33093         * reflection.c (ensure_runtime_vtable): Initialize method slots.
33094
33095         * class.c (mono_class_setup_vtable): Set the slot of the overriding
33096         method.
33097
33098 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33099
33100         * appdomain.c:
33101         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
33102         the right one is 'file:///blah', but MS allows it.
33103         * assembly.c:
33104         (mono_assembly_open): allow 'file://blah'
33105
33106         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
33107
33108 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
33109
33110         * socket-io.c: fixes bug #40310.
33111
33112 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
33113
33114         * reflection.c (mono_reflection_parse_type): handle deeply nested
33115         types correctly.
33116
33117         * reflection.c (mono_image_create_token): Use unique token values
33118         since they will be put into a hash table.
33119
33120         * class.c (mono_class_setup_vtable): If a method occurs in more than
33121         one place in the vtable, and it gets overriden, then change the
33122         other occurances too.
33123
33124         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
33125         object as return type.
33126
33127 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33128
33129         * icall.c: Deleted "ToString" implementation for double and float
33130         because they are full implemented in managed code.
33131
33132 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33133
33134         * reflection.c, reflection.h: implemented and exported functions
33135         to retrieve info about custom attributes.
33136
33137 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33138
33139         * appdomain.c: moved Uri handling to assembly.c
33140         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
33141         work when using a file Uri in *nix and windows.
33142
33143         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
33144         GetReferencedAssemblies.
33145
33146 2003-03-18  Dick Porter  <dick@ximian.com>
33147
33148         * icall.c: Rename a couple of internal calls
33149
33150         * threads.c: Set the thread state to Stopped when a thread exits.
33151         Fixes bug 39377.
33152
33153 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
33154
33155         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
33156         New icall.
33157
33158         * object.c (mono_class_vtable): fix warning.
33159
33160 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
33161
33162         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
33163
33164         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
33165         memory.
33166         (method_encode_clauses): Create exception info structures in the right
33167         order.
33168         (mono_reflection_setup_internal_class): Initialize supertypes field.
33169
33170         * class.c object.c: Handle interfaces which implement other interfaces 
33171         correctly.
33172
33173         * class.h class.c: Move the supertypes array initialization code into 
33174         a separate function so it can be used for dynamic types too. Also call
33175         it earlier, in mono_class_init(), since it can be used before the
33176         type is initialized.
33177
33178 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33179
33180         * Makefile.am:
33181         * assembly.c:
33182         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
33183
33184         * appdomain.c:
33185         * appdomain.h:
33186         * marshal.c:
33187         * object.c: remove warnings.
33188
33189 2003-03-13  Martin Baulig  <martin@ximian.com>
33190
33191         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
33192         (MonoDebugLexicalBlockEntry): New types.
33193
33194         * debug-mono-symfile.c
33195         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
33196
33197 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33198
33199         * process.c: ret can be any non-zero value accroding to MS doc.
33200
33201 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
33202
33203         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
33204         fixing a warning for a miss-used prototype, would have cause
33205         random memory corruption.
33206
33207 2003-03-07  Martin Baulig  <martin@ximian.com>
33208
33209         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
33210         getting really annoying ....
33211
33212 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
33213
33214         * reflection.c (fixup_method): added support for array methods.
33215
33216 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
33217
33218         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
33219         (pointed out by Michael Adams).
33220
33221 2003-03-04  Dick Porter  <dick@ximian.com>
33222
33223         * icall.c: Temporarily reverted the Double and Single ToString()
33224         change, because it broke nunit.
33225
33226 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
33227
33228         * object.h, threads.h: make include files compatible with C++
33229         (patch by Jerome Laban <jlaban@wanadoo.fr>).
33230
33231 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33232
33233         * icall.c: Erased ToString helper functions for Double and Single.
33234         Now, that implementations ar all in managed code (Double and Single
33235         Formatters).
33236
33237 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
33238
33239         * appdomain.c: Added method for initializing the default context of
33240         a domain. Added internal call for getting the default context.
33241         * appdomain.h: Added context variable in MonoDomain struct.
33242         * domain.c: mono_domain_set also sets the default context of the domain
33243         * icall.c: Mapped internal method InternalGetDefaultContext.
33244         * object.c: mono_object_get_virtual_method returns always a remoting
33245         wrapper if the object is a transparent proxy.
33246         mono_runtime_invoke_array: when creating an object by calling the
33247         constructor, if the created object is a proxy, then the constructor should
33248         be called using the a remoting wrapper.
33249
33250 2003-03-03  Dick Porter  <dick@ximian.com>
33251
33252         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
33253         variable so it compiles on solaris.  Problem spotted by
33254         Christopher Taylor <ct@cs.clemson.edu>
33255
33256 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33257
33258         * appdomain.c:
33259         (get_info_from_assembly_name): don't leak value.
33260
33261         * icall.c:
33262         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
33263         result.
33264
33265 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
33266
33267         * assembly.c: export mono_image_load_references ().
33268         * class.c: handle function pointers. mono_class_from_name() now
33269         supports nested type names directly.
33270
33271 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
33272
33273         * reflection.h reflection.c: Encode already created dynamic methods 
33274         and fields correctly as a DEF instead of a REF.
33275
33276         * reflection.c: Get rid of the force_ref argument to 
33277         mono_image_typedef_or_ref since it was wrong in the first place.
33278
33279         * string-icalls.c: add error checking to string constructors according
33280         to the MSDN docs.
33281
33282         * reflection.c: Emit types in the order their TypeBuilders were 
33283         created. Previously, a new table index was assigned to each type before
33284         the tables were emitted. This was wrong because the signature blob
33285         might already refer to a type by its original table index.
33286
33287 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
33288
33289         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
33290         change.
33291         
33292 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33293
33294         * Makefile.am: make assemblies dir have \ instead of / on windows.
33295
33296 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
33297
33298         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
33299         iterate over the NESTEDCLASS table using a linear search since the
33300         table is not guaranteed to be sorted by the secondary key.
33301
33302         * class.c (mono_class_create_from_typedef): fixed up call to
33303         mono_metadata_nesting_typedef.
33304         
33305 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
33306
33307         * marshal.c (mono_string_to_byvalstr): clear the memory as
33308         suggested by Jerome Laban <jlaban@wanadoo.fr>
33309
33310 2003-02-26  Dick Porter  <dick@ximian.com>
33311
33312         * process.c: Cope with padding in .rsrc blocks
33313
33314 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
33315
33316         * metadata.h: reverted the filter_len change, it breaks reflection
33317         
33318 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
33319
33320         * metadata.h: added a new field to store the filter_len
33321         
33322
33323 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
33324
33325         * reflection.c: handle custom attributes for types and members
33326         created with Reflection.Emit (bug#38422).
33327
33328 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
33329
33330         * reflection.c: define RTSpecialName automatically for constructors for
33331         compatibility with MS.NET.
33332
33333         * reflection.c (mono_reflection_create_runtime_class): initialize
33334         nested_in field of dynamically created classes.
33335
33336 2003-02-22  Martin Baulig  <martin@ximian.com>
33337
33338         * debug-mono-symfile.h: Incremented version number.
33339
33340 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
33341
33342         * object.h icall.c process.c: fix warnings.
33343
33344 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
33345
33346         * appdomain.h appdomain.c:
33347         (mono_domain_try_type_resolve): split the 
33348         name_or_tb argument into a name and a tb argument.
33349         (mono_domain_has_type_resolve): new function to check whenever the
33350         application has registered a TypeResolve event handler.
33351         
33352         * icall.c reflection.h reflection.c: move the type resolve logic into
33353         mono_reflection_get_type () so it will be invoked when 
33354         Assembly::GetType () is called.
33355
33356         * reflection.c:
33357         (mono_reflection_get_type): renamed to get_type_internal.
33358         (mono_reflection_get_type): fixed type name generation so it works 
33359         for nested types too.
33360         (mono_reflection_get_type): call has_type_resolve () to avoid the 
33361         costly type name generation if there is no resolve event handler.
33362
33363 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33364
33365         * class.c, image.c: load exported types from file references.
33366
33367 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
33368
33369         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
33370           used to cache the managed methods used to create proxies and make 
33371           remote invocation of methods.
33372         * class.h: Added in MonoVTable a flag to indicate that a class needs 
33373           to be remotely created.
33374         * object.c: Modified the method mono_class_vtable(). It now initializes 
33375           the remote flag of the vtable. Modified mono_object_new_specific(), 
33376           so now it checks the remote flag.
33377         * icall.c: Added a couple of internal methods, one for enabling instance 
33378           creation interception for a type, and one for creating objects bypassing
33379           the remote check.
33380
33381 2003-02-18  Martin Baulig  <martin@ximian.com>
33382
33383         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
33384         New interncall to get a method's metadata token.
33385
33386         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
33387         New interncall for the debugger.
33388
33389 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
33390
33391         * class.c (mono_class_setup_vtable): allocate supertype array
33392
33393 2003-02-18  Martin Baulig  <martin@ximian.com>
33394
33395         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
33396
33397 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33398
33399         * reflection.c:
33400         (assembly_name_to_aname): jump over unknown properties (i've found
33401         something like: 'type, assembly, version=xxx, custom=null, public...',
33402         so now will ignore custom=null and still get the rest of the values).
33403
33404 2003-02-17  Dick Porter  <dick@ximian.com>
33405
33406         * threads.c: Have Thread.Start() wait for a semaphore to signal
33407         that the thread has set up all its local data.  This fixes bug
33408         34323, where Abort() raced the new thread's TLS data.
33409
33410         Also removes the handle_store() call from start_wrapper, because
33411         threads are now always created suspended and there is no longer a
33412         race between the parent and child threads to store the info.
33413
33414 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
33415
33416         * image.c: explain the #- heap issue in a message, hopefully
33417         avoiding FAQs on mono-list.
33418
33419 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33420
33421         * icall.c:
33422         (GetEntryAssembly): if the domain has not invoked
33423         AppDomain.ExecuteAssembly yet, return the assembly of the default
33424         AppDomain.
33425
33426 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
33427
33428         * class.c (mono_ldtoken): make it work in dynamic assemblies.
33429
33430 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
33431
33432         * metadata.c, reflection.c: simple speedup to type hash
33433         and equals code.
33434
33435 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
33436
33437         * image.c, image.h, class.c, assembly.c: move module loading
33438         to MonoImage. When loading metadata, consider alignemnet from
33439         the start of metadata, not from the metadata address in memory.
33440
33441 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
33442
33443         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
33444         AssemblyBuilder objects. Factored out custom attribute creation into
33445         a separate function.
33446         (create_custom_attr): new function to create custom attributes.
33447
33448 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
33449
33450         * Makefile.am: Got tired of typing the full pathname to pedump.
33451         Until there is another option, am installing this.
33452
33453 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
33454
33455         * class.c (class_compute_field_layout): always set field->parent 
33456         (mono_ldtoken): use mono_defaults.fieldhandle_class;
33457
33458 2003-02-11  Dick Porter  <dick@ximian.com>
33459
33460         * threads-types.h:
33461         * monitor.c: Rewrote Monitor, making lock much faster and
33462         Pulse/Wait work as specified.  Also uses much fewer handles, and only
33463         creates them as needed.
33464
33465         * exception.c: Added SynchronizationLockException
33466
33467         * threads.c: Deleted old Monitor implementation.  The new one is
33468         in a new file.
33469
33470 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
33471
33472         * class.c: handled TypedReference type code. Set the correct size for
33473         class data. Setup interface_offsets for interface classes, too.
33474
33475 2003-02-09  Martin Baulig  <martin@ximian.com>
33476
33477         * debug-mono-symfile.h: Reflect latest symbol writer changes.
33478
33479 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
33480
33481         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
33482         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
33483         * object.c: fixed mono_object_get_virtual_method () for interfaces.
33484         * verify.c: check for code that runs after the end of the method.
33485
33486 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33487
33488         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
33489         "System.Math::Round2".
33490         * sysmath.h: Added Floor, Round and Round2 definitions.
33491         * sysmath.c: Modified certain functions that were not 100% compliant
33492         with MS.NET (math precision) and added the implementation of Floor,
33493         Round and Round2.
33494
33495 2003-02-07  Martin Baulig  <martin@ximian.com>
33496
33497         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
33498
33499 2003-02-07  Martin Baulig  <martin@ximian.com>
33500
33501         * debug-mono-symfile.c: Reflected latest symwriter changes.
33502         (mono_debug_create_mono_symbol_file): Removed.
33503         (mono_debug_open_mono_symbol_file): Take an argument which
33504         specifies whether to create a dynamic symbol file.
33505
33506 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
33507
33508         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
33509
33510 2003-02-05  Martin Baulig  <martin@ximian.com>
33511
33512         * reflection.c (mono_image_build_metadata): Make this public,
33513         protect it against being called multiple times, don't create
33514         resources and don't build the compressed metadata here.
33515         (mono_image_create_pefile): Do this here.
33516
33517         * icall.c
33518         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
33519
33520 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33521
33522         * socket-io.c: fixed bug #36322.
33523
33524 2003-02-06  Piers Haken <piersh@friskit.com>
33525
33526         * appdomain.[ch]:
33527         * class.h:
33528         * debug-mono-symfile.c:
33529         * icall.c:
33530         * loader.c:
33531         * mono-config.c:
33532         * monosn.c:
33533         * reflection.c:
33534         * socket-io.c: warning cleanups
33535
33536 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
33537
33538         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
33539         function. works like remoting invoke, but does a check for the Proxy first.
33540
33541 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
33542
33543         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
33544
33545 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
33546
33547         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
33548         array of pointers.
33549         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
33550         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
33551
33552         * object.c (mono_store_remote_field_new): used by the new jit
33553         instead of mono_store_remote_field
33554         (mono_load_remote_field_new): used by the new jit
33555         instead of mono_load_remote_field
33556
33557 2003-02-05  Patrik Torstensson
33558
33559         * appdomain.c: changed unload to take the domain id instead
33560         of domain
33561         
33562         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
33563
33564
33565 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33566
33567         * appdomain.c: don't look for assemblies in ApplicationBase if
33568         PrivateBinPathProbe is set.
33569
33570 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33571
33572         * object.c: make the first argument in main_args contain the absolute
33573         path to the assembly. Fixes bug #37511.
33574
33575 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33576
33577         * icall.c: get correct UTC offset for countries not using daylight
33578         time saving. Fixes bug #30030.
33579
33580 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33581
33582         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
33583         and 1 are the family).
33584
33585 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
33586
33587         * icall.c (ves_icall_InternalExecute): removed wrong assertion
33588
33589         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
33590
33591 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
33592
33593         * reflection.c: added support for SignatureHelper tokens, which is
33594         needed by the Calli opcode.
33595
33596         * reflection.h: track changes to SignatureHelper class.
33597
33598         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
33599
33600 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33601
33602         * appdomain.c: fixed loading assemblies from PrivateBinPath.
33603
33604 2003-02-03  Patrik Torstensson
33605         * appdomain.[c|h], domain.c : 
33606          - Added support for getting a domain via domain id
33607          - Support for setting and getting domain from System.AppDomain 
33608            (used in cross appdomain channel)
33609          - Added support for get/set for a MonoAppContext on a thread 
33610            (Context class in System.Runtime.Remoting.Contexts),
33611          - Removed hack in Get/SetData and ExecuteAssembly.
33612         
33613         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
33614         the managed world to get control when a proxy is created.
33615
33616         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
33617         
33618 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
33619
33620         * icall.c
33621         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
33622         Populate the codebase field as well.
33623
33624 2003-02-02  Martin Baulig  <martin@ximian.com>
33625
33626         * debug-mono-symfile.c
33627         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
33628         (mono_debug_symfile_add_method): Allow interncalls.
33629
33630 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33631
33632         * icall.c: throw parse exception if strtod fails or the string is empty.
33633
33634 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
33635
33636         * marshal.c: handle object type separately from defined
33637         class types.
33638
33639 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
33640
33641         * marshal.c: handle NATIVE_LPSTR for strings when it's
33642         explicitly specified.
33643
33644 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
33645
33646         * reflection.c, reflection.h, icall.c: setup the reflection
33647         handle cache for ModuleBuilders and AssemblyBuilders.
33648
33649 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
33650
33651         * reflection.c (reflection_methodbuilder_to_mono_method): set
33652         pinvoke flag
33653
33654 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33655
33656         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
33657
33658 2003-01-29  Dick Porter  <dick@ximian.com>
33659
33660         * threads.c: No need for the fake_thread kludge now that Thread
33661         doesn't run a class constructor
33662         
33663 2003-01-29  Dick Porter  <dick@ximian.com>
33664
33665         * threads.c: Use g_direct_hash instead of the rather bogus
33666         g_int_hash
33667
33668 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
33669
33670         * marshal.c (mono_marshal_get_native_wrapper): add check for null
33671         (fix pinvoke12.exe)
33672         (mono_marshal_get_struct_to_ptr): generate valid IL code
33673         (mono_marshal_get_ptr_to_struct): generate valid IL code
33674         (*): correctly set sig->pinvoke, we need to memdup the signature
33675         to do that
33676
33677 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33678
33679         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
33680         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
33681
33682 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33683
33684         * profiler.c: provide more callers information.
33685
33686 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
33687
33688         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
33689
33690         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
33691
33692         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
33693
33694 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33695
33696         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
33697         exception instead of going into an infinite loop on dates which it 
33698         can't yet handle.
33699
33700         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
33701         out-of-range exception if needed.
33702
33703         * class.c (mono_class_setup_vtable): allow a virtual method to provide
33704         an implementation for an interface method and to override an inherited
33705         method at the same time. 
33706         Imagine a scenario when a virtual method is used to override a
33707         virtual abstract method in a parent class, and this same method 
33708         provides an implementation for an method inherited from an interface. 
33709         In this case, the interface resolution code will set im->slot, which 
33710         means that the virtual method override pass will skip this method 
33711         which means a pointer to the abstract method inherited from the parent
33712         will remain in the vtable of this non-abstract class.
33713
33714         * class.c: (mono_class_setup_vtable): continue search for a real 
33715         method if only an abstract method is found.     
33716
33717 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33718
33719         * reflection.c: add size to encoding for ByValStr and ByValArray
33720         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
33721
33722 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33723
33724         * class.c (mono_class_setup_vtable): pass the override info as an
33725         argument.
33726
33727         * class.c (mono_class_setup_vtable): set the slot of overriding methods
33728         correctly.
33729         
33730         * reflection.c (ensure_runtime_vtable); add support for method 
33731         overrides.
33732         
33733 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33734
33735         * reflection.c (resolution_scope_from_image): Hack to work to work with
33736         dynamic assemblies.
33737
33738         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
33739         added a 'force_ref' argument to force this function to allways return 
33740         a TypeRef. This is needed by mono_image_get_memberref_token ().
33741         
33742 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33743
33744         * reflection.c (mono_image_get_type_info): interfaces really don't have
33745         a parent.
33746
33747         * reflection.c (mono_image_basic_init): fill out missing fields of
33748         image structure.
33749
33750         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
33751         dynamic assemblies. This is required so dynamic assemblies show up in
33752         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
33753         Type::GetType() etc. This is consistent with MS behaviour.
33754
33755         * image.c image.h reflection.c: add newly created classes to the name 
33756         cache so mono_class_get () will find them.      
33757
33758 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33759
33760         First part of changes to get IKVM.NET running under mono.
33761         
33762         * appdomain.h, appdomain.c: added new function 
33763         mono_domain_try_type_resolve() which will emit TypeResolve events. 
33764         This function will call AppDomain::DoTypeResolve to do the actual work.
33765
33766         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
33767         moved existing code dealing with dynamic tokens to a new function 
33768         called mono_reflection_lookup_dynamic_token (). This function will 
33769         raise TypeResolve events when appropriate. Since reflection.c is not 
33770         part of libmetadata, a new hook function called 
33771         mono_lookup_dynamic_token() is added to class.c which will call this.
33772
33773         * assembly.h assembly.c: make the invoke_load_hook function public,
33774         so it can be called for dynamic assemblies.
33775
33776         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
33777
33778         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
33779         type isn't found.
33780
33781         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
33782         MonoGHashTable, since it contains pointers to objects which the GC 
33783         needs to track.
33784
33785         * assembly.c (search_loaded): remove unused variable.
33786         
33787 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
33788
33789         * object.c: fixed issue exposed by gcc-generated IL programs
33790         that use RVA data for pointers.
33791
33792 2003-01-25  Martin Baulig  <martin@ximian.com>
33793
33794         * threads.c (start_wrapper): Moved the initialization of
33795         `start_func' above the mono_new_thread_init() call to which we
33796         pass it as argument.
33797
33798 2003-01-24  Martin Baulig  <martin@ximian.com>
33799
33800         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33801         the MonoThread pointer.
33802
33803 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33804
33805         * icall.c: Rename `PowImpl' to Pow.
33806
33807 2003-01-23  Dick Porter  <dick@ximian.com>
33808
33809         * threads.c (start_wrapper): Create a Thread object if needed, so
33810         the Main() thread can do the class initialisation in a subthread
33811         that has been set up to allow managed code execution.
33812
33813         Pass the thread ID instead of the MonoThread pointer to the thread
33814         start and attach callbacks.  This change is required, because the
33815         jit thread start callback must be called _before_ the Thread
33816         object can be created.
33817         
33818         (mono_thread_init): Removed much object creation code that is no
33819         longer needed.  No managed code is called from here now.
33820
33821         * object.c (mono_runtime_exec_managed_code): Create a subthread
33822         for Main, and call back to the runtime to use it.
33823         Set the exit code when Main exits.
33824
33825         * gc.c: Make sure domain finalisation happens in a subthread.
33826         Re-enable threaded GC, fixing bug 31333 (again).
33827
33828         * environment.c: System.Environment internall calls (so far just
33829         ExitCode is here, the others are still in icall.c)
33830
33831         * appdomain.c (mono_runtime_cleanup): All threads running managed
33832         code should have finished before mono_runtime_cleanup() is
33833         reached, so no need to clean up threads.
33834
33835 2003-01-22  Martin Baulig  <martin@ximian.com>
33836
33837         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33838         `gpointer func' arguments.      
33839         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33840         but added `MonoThread *thread' argument.
33841         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33842
33843         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33844         and pass it to the mono_thread_start_cb callback.
33845         (mono_install_thread_callbacks): New public function to install a
33846         set of callbacks which are set by the debugger.
33847         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33848
33849 2003-01-22  Martin Baulig  <martin@ximian.com>
33850
33851         * Makefile.am: Install debug-mono-symfile.h.
33852
33853 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33854
33855         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33856
33857 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33858
33859         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33860         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33861         (mono_array_class_get): correctly set access levels of arrays
33862
33863 2003-01-20      Patrik Torstensson
33864         * image.h (MonoAssemblyName): changed major, minor, build, revision
33865         from signed to unsigned.
33866
33867 2003-01-20  sean kasun <skasun@azstarnet.com>
33868
33869         * reflection.c (load_cattr_value): Now this handles
33870         MONO_TYPE_SZARRAY.  Fixes bug #35629
33871
33872 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33873
33874         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33875         integer value
33876
33877 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33878
33879         * decimal.c: fixed bug #26056.
33880
33881 2003-01-17  Martin Baulig  <martin@ximian.com>
33882
33883         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33884
33885 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33886
33887         * exception.[ch]:
33888         (mono_get_exception_type_initialization): new function.
33889
33890         * object.c: throw a TypeInitializationException when an exception is
33891         thrown invoking the class constructor.
33892
33893 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33894
33895         * reflection.c: fixed attribute reading.
33896
33897 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33898
33899         * icall.c:
33900         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33901         provided, look for the type in the calling assembly and then in
33902         mscorlib; if the assembly name is provided, only try that one.
33903
33904 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33905
33906         * object.c: register the vtable before there is a chance it's
33907         queried again recursively.
33908
33909 2003-01-13  Duncan Mak  <duncan@ximian.com>
33910
33911         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33912         gc-internal.h. 
33913         
33914 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33915
33916         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33917
33918 2003-01-11  Martin Baulig  <martin@ximian.com>
33919
33920         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33921         this to 20 for the release.
33922
33923 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33924
33925         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33926
33927         * loader.c (mono_method_get_marshal_info): bug fix
33928
33929         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33930         structures with explicit layout
33931
33932 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33933
33934         * profiler.c: made the output more readable (and sorted). 
33935         Added caller information for the allocation profiler.
33936
33937 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33938
33939         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33940
33941 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33942
33943         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33944         to get value types.
33945         
33946 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33947
33948         * object.c, profiler.h, profiler.c, profiler-private.h:
33949         Added object allocation profiler.
33950
33951 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33952
33953         * reflection.h, reflection.c: handle global methods.
33954         Compress blob entries.
33955
33956 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33957
33958         * marshal.c: fix compilation.
33959
33960 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33961
33962         * loader.c (mono_method_get_marshal_info): impl.
33963
33964         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33965
33966 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33967
33968         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33969         for reference types.
33970
33971 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33972
33973         * loader.c: fixed off by one error in loaded parameter names.
33974
33975 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33976
33977         * marshal.c (mono_marshal_get_icall_wrapper): like
33978         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33979         instead of a MonoMethod.
33980
33981 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33982
33983         * decimal.c: fixed bug #36537.
33984
33985 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33986
33987         * marshal.c: throw a missing method exception if a
33988         P/Invoke method is not found.
33989
33990 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33991
33992         * icall.c: allow a null this for constructors.
33993
33994 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33995
33996         * icall.c: raise the proper exceptions if the arguments to the
33997         internal Invoke are incorrect.
33998
33999 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
34000
34001         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
34002
34003 2003-01-03  Martin Baulig  <martin@ximian.com>
34004
34005         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
34006
34007 2002-12-31  Martin Baulig  <martin@ximian.com>
34008
34009         * debug-mono-symfile.c: Completely rewrote the type section.
34010         Instead of using individual malloc()ed fields, we use one big
34011         continuous memory area and offsets into this area.
34012         See the comments in the source code for details.
34013
34014 2002-12-30  Martin Baulig  <martin@ximian.com>
34015
34016         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
34017
34018 2002-12-30  Martin Baulig  <martin@ximian.com>
34019
34020         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
34021         line number table in this data blob instead of using an external
34022         pointer.
34023
34024 2002-12-28  Martin Baulig  <martin@ximian.com>
34025
34026         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
34027
34028 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
34029
34030         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
34031         as a boxed return type.
34032
34033 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
34034
34035         * appdomain.c
34036         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
34037         g_build_filename to properly get separators on the filename created.
34038
34039         * object.h: Small change, introduce MonoMarshalByRefObject to
34040         track the layout of that structure in the C# universe as we make
34041         changes there.
34042
34043 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
34044
34045         * object.c: removed assert to allow static fields on interfaces.
34046         * loader.c: a TypeSpec may be used for any type, not just arrays.
34047
34048 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34049
34050         * class.c, class.h: added mono_class_array_element_size ().
34051         Ignore static methods in interfaces.
34052
34053 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34054
34055         * threads.c: fixed the build under cygwin.
34056
34057 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34058
34059         * reflection.c: handle nullref constants. Allocate keys for
34060         reflection handles with the GC.
34061
34062 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34063
34064         * threads.c, threads.h: added mono_thread_get_abort_signal()
34065         to get a suitable signal for thread abort.
34066
34067 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34068
34069         * metadata.c: fix handling of ExportedType table.
34070
34071 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34072
34073         * icall.c: added WriteWindowsDebugString internal call.
34074
34075 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34076
34077         * reflection.h: added fields to match C# implementation.
34078
34079 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34080
34081         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
34082
34083 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
34084
34085         * gc.h, gc-internal.h: Rename header for GC internal calls to
34086         gc-internal.h from gc.h as to not clash with Boehm GC having its
34087         header installed as <gc.h> in outside include paths.
34088         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
34089         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
34090
34091 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34092
34093         * icall.c: assign minor, build and revision in FillName.
34094
34095 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
34096
34097         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
34098         Added support for running code generated by Reflection.Emit.
34099
34100 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34101
34102         * appdomain.c: check for NULL argument in LoadFrom.
34103
34104 2002-12-10  Dick Porter  <dick@ximian.com>
34105
34106         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
34107
34108 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34109
34110         * appdomain.c: fix buglet when building exe file name.  Handle full
34111         assembly name (needed after latest changes to AssemblyName).
34112         * image.c:
34113         (mono_image_close): free some hashtables.
34114
34115 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
34116
34117         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
34118         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
34119         on some systems (redhat 7.3) 
34120
34121 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
34122
34123         * threads.c: delete the critical section of a sync block,
34124         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
34125
34126 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
34127
34128         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
34129
34130 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34131
34132         * appdomain.[ch]: handle the assembly preload event to try loading the
34133         assemblies using the paths we have in the current domain.
34134
34135         * assembly.[ch]: created an assembly preload hook that is called to try
34136         loading the assembly by other means that the ones provided here.
34137
34138         * domain.c: initialize the domain search path.
34139
34140         From now on, assemblies (TODO: except corlib and System) are loaded
34141         according to these rules when using mono_assembly_load ():
34142
34143                 1. It tries to load the assembly from the ApplicationBase
34144                 of the current domain appending .dll and .exe (TODO: have to
34145                 try loading from name/name.dll and name/name.exe).
34146
34147                 2. It tries the search path specified in PrivateBinPath for the
34148                 current domain (if any).
34149
34150                 3. Previous behavior.
34151
34152 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
34153
34154         * icall.c: implemented GetInterfaceMap() related icall.
34155         * domain.c, loader.h: load MethodInfo in mono_defaults.
34156
34157 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34158
34159         * gc.c: disable the finalizer thread for now, untill all the issues
34160         with it are resolved.
34161
34162 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34163
34164         * string-icalls.c: handle embedded nulls in string ctor when the
34165         length is specified.
34166
34167 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34168
34169         * class.c: look for explicit interface implementation in parent
34170         classes, too.
34171
34172 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
34173
34174         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
34175
34176 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34177
34178         * gc.c: protect handles with a critical section.
34179
34180 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34181
34182         * icall.c:
34183         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
34184         parameters. If no assembly specified, try getting the type from all
34185         the assemblies in the current domain, else, load the assembly and get
34186         the type from it.
34187
34188 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34189
34190         * marshal.c: applied patch from Aleksey Demakov that fixes
34191         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
34192
34193 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34194
34195         * icall.c: fixed get_location.
34196
34197 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
34198
34199         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
34200         declarations to make it work with older gcc. 
34201
34202         * loader.c (mono_get_method): set signature->pinvoke for native calls
34203
34204 2002-11-20  Dick Porter  <dick@ximian.com>
34205
34206         * threads.c (mono_thread_init): Set the main thread's handle
34207
34208 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34209
34210         * gc.c: allow compilation without GC support. Changed to match the
34211         mono coding style.
34212
34213 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34214
34215         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
34216
34217 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
34218
34219         * reflection.c: set a public key token on the core assemblies.
34220
34221 2002-11-18  Dick Porter  <dick@ximian.com>
34222
34223         * threads.c: Split out some thread initialisation so that other
34224         files can set the start callback function.
34225
34226         * gc.c: Run finalisers in a separate thread, to avoid stack
34227         overflow.  Fixes bug 31333.
34228
34229         * appdomain.c: Set up GC finalisation thread.
34230
34231         * reflection.c: 
34232         * object.c: 
34233         * domain.c: Use gc.h macros for GC_malloc
34234         
34235 2002-11-15  Dick Porter  <dick@ximian.com>
34236
34237         * threadpool.c: 
34238         * threads.c:
34239         * appdomain.c: Removed mono_runtime_init_with_attach(),
34240         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
34241         merging the extra parameter with the existing function.  Removed
34242         unneeded code in mono_thread_attach().
34243
34244 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
34245
34246         * image.c (mono_image_loaded_by_guid): a method to get loaded
34247         images by guid. 
34248         (load_metadata_ptrs): we store the guid as string.
34249
34250 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
34251
34252         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
34253
34254         * metadata.c (mono_guid_to_string): imported method form Zoltan
34255         Varga (slightly modified)
34256
34257         * assembly.c (mono_assembly_open): load precompiled code
34258
34259         * loader.h (MonoMethod): we store the method token for use in the
34260         aot compiler. 
34261
34262 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34263
34264         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
34265         the hook function called when an assembly is loaded.
34266         
34267         * domain.c: Modified file.
34268         (mono_domain_assembly_load): removed hash table insertion of assemblies.
34269
34270         Fixes bug #33196.
34271
34272 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
34273
34274         * reflection.c: Map PEFileKind to the value expected by the WinNT
34275         image loader. 
34276
34277 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34278
34279         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
34280         Read until the buffer is filled completely.
34281
34282 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34283
34284         * icall.c: implemented MonoType.InternalGetEvent ().
34285
34286 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34287
34288         * appdomain.c: implemented InitAppDomainSetup. Delayed
34289         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
34290         the entry_assembly.
34291
34292         * assembly.c: base_dir is now an absolute path ending with
34293         G_DIR_SEPARATOR.
34294
34295         * icall.c: modified get_location according to the above changes.
34296
34297         * object.c: init AppDomain.SetupInformation for the default domain after
34298         we have the entry assembly.
34299
34300         * domain.c: when unloading a domain, setup = NULL.
34301
34302 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
34303
34304         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
34305
34306 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
34307
34308         * object.h, object.c: introduced mono_object_get_virtual_method ()
34309         to lookup the method invoked on an object when a callvirt is done on
34310         a method.
34311         * icall.c: make MethodInfo::Invoke() always do a virtual call.
34312
34313 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34314
34315         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
34316         current domain when loaded an assembly and failed to load it.
34317
34318         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
34319
34320 2002-10-31  Dick Porter  <dick@ximian.com>
34321
34322         * icall.c: 
34323         * file-io.h: 
34324         * file-io.c: Return the error status in a parameter, as the
34325         GetLastError() value has long since been blown away if we try and
34326         look it up in a subsequent internal call invocation.  Delete the
34327         GetLastError() internal call, because it's useless.
34328
34329 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
34330
34331         * class.[ch]: added cast_class to fix bug 29517
34332
34333 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
34334
34335         * marshal.c: create valid IL code in the filter clause:
34336         the new JIT is less forgiving:-)
34337
34338 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34339
34340         * icall.c: removed get_property internal call.
34341
34342 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
34343
34344         * appdomain.h domain.c: Added an ID to appdomains.
34345         
34346         * threads.c threads.h icall.c: Implement icall
34347         Thread:GetDomainID(), and remove unused icall 
34348         CurrentThreadDomain_internal.
34349
34350 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34351
34352         * icall.c: Don't recurse through the base types in GetConstructor.
34353         Fixes bug #32063. 
34354
34355 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34356
34357         * mempool.h, mempool.c: added mono_mempool_empty() and
34358         mono_mempool_stats().
34359
34360 2002-10-23  Dick Porter  <dick@ximian.com>
34361
34362         * file-io.c: 
34363         * file-io.h: 
34364         * icall.c: Added MonoIO.GetFileType internal call
34365
34366 2002-10-17  Dick Porter  <dick@ximian.com>
34367
34368         * appdomain.c (mono_runtime_cleanup): Don't signal the async
34369         delegate semaphore before waiting for all threads to finish,
34370         because new threads can also call async delegates.  Fixes bug
34371         32004.
34372
34373         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
34374         of 3 seconds, in case another async job is queued.  (This part is
34375         needed because the bug fix reintroduced the 3s exit lag.)  This
34376         makes the mono_runtime_shutdown flag superfluous.
34377
34378 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34379
34380         * reflection.c: include ehader size in method section headers.
34381         Really check for suplicated modules entries.
34382
34383 2002-10-17  Martin Baulig  <martin@gnome.org>
34384
34385         * debug-mono-symfile.c: Added back support for locals.
34386
34387 2002-10-14  Martin Baulig  <martin@gnome.org>
34388
34389         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
34390         MONO_TYPE_VOID.
34391
34392 2002-10-14  Martin Baulig  <martin@gnome.org>
34393
34394         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
34395         mono_class_get() instead of looking in the class cache. 
34396
34397 2002-10-13  Martin Baulig  <martin@gnome.org>
34398
34399         * debug-mono-symfile.c: Set version number to 28, include the
34400         signature in method names.
34401
34402 2002-10-13  Martin Baulig  <martin@gnome.org>
34403
34404         * debug-mono-symfile.h: Set version number to 27.
34405
34406 2002-10-11  Martin Baulig  <martin@gnome.org>
34407
34408         * gc.c: Don't register/unregister NULL pointers as disappearing links.
34409
34410 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34411
34412         * metadata.c, metadata.h: added helper function to allocate signatures.
34413
34414 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34415
34416         * icall.c: added internal call to get the location of machine.config.
34417
34418 2002-10-08  Martin Baulig  <martin@gnome.org>
34419
34420         * debug-mono-symfile.c: Ignore classes with a pending init for the
34421         moment.
34422
34423 2002-10-03  Dick Porter  <dick@ximian.com>
34424
34425         * threads.c: Freebsd pthread_t is a pointer
34426
34427 2002-10-03  Dick Porter  <dick@ximian.com>
34428
34429         * socket-io.c: Implemented GetHostName_internal
34430
34431 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34432
34433         * mono-config.c:
34434         (mono_config_parse_file): don't leak the text.
34435
34436 2002-10-02  Martin Baulig  <martin@gnome.org>
34437
34438         * debug-mono-symfile.c: Added support for methods.
34439
34440 2002-10-01  Martin Baulig  <martin@gnome.org>
34441
34442         * debug-mono-symfile.c: Don't emit methods and line numbers for
34443         the dynamic symbol file, just write the type table.  We can easily
34444         have an external helper program which creates a symbol file for an
34445         IL file.        
34446
34447 2002-10-01  Dick Porter  <dick@ximian.com>
34448
34449         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
34450         Only add the handle to the cleanup array when we're about to
34451         launch the thread.  Bug 31425 deadlocked when the test was run on
34452         mono under w32.
34453
34454 2002-10-01  Martin Baulig  <martin@gnome.org>
34455
34456         * debug-mono-symfile.c: Added support for properties.
34457
34458 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34459
34460         * reflection.c: unaligned store fix from Mark Crichton
34461         <crichton@gimp.org>.
34462
34463 2002-09-27  Martin Baulig  <martin@gnome.org>
34464
34465         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
34466         New interncall.
34467
34468 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34469
34470         * assembly.h, assembly.c: use a sane API to hook into the assembly
34471         loading process instead of a useless special-purpouse hack
34472         (ngen needs a hook, too, for example).
34473
34474 2002-09-27  Dick Porter  <dick@ximian.com>
34475
34476         * threads.c (mono_thread_init): Call GetCurrentProcess() so
34477         io-layer can set up some process handle info.  Not needed on w32,
34478         but doesn't hurt either.
34479
34480         * process.c: Pass the program name in the second parameter to
34481         CreateProcess, so the path is searched.  Include the working
34482         directory. Implemented process name, process enumeration, and some
34483         process detail internal calls.
34484         
34485         * icall.c: Added internal calls for process lookup, and some
34486         process details
34487
34488 2002-09-26  Martin Baulig  <martin@gnome.org>
34489
34490         * assembly.c (mono_install_open_assembly_hook): New global
34491         function to install a function to be invoked each time a new
34492         assembly is loaded.
34493         (mono_assembly_open): Run this callback function if set.
34494
34495         * debug-mono-symfile.c: Put back line numbers for the dynamic
34496         symbol file and also record the .il file as source file.  This
34497         allows us to install the temporary symbol file as `file.dbg' just
34498         like a compiler-generated one.
34499
34500 2002-09-26  Nick Zigarovich <nick@chemlab.org>
34501
34502         * Corrected typo in gc.c (BOHEM vs BOEHM).
34503
34504 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34505
34506         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
34507         GetProperties. Also avoid calling g_slist_length in GetProperties and
34508         GetMethods.
34509
34510 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34511
34512         * reflection.c: avoid unaligned stores (bug spotted by
34513         Mark Crichton  <crichton@gimp.org>).
34514
34515 2002-09-25  Martin Baulig  <martin@gnome.org>
34516
34517         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
34518         instead of guint64 for addresses and added prologue/epilogue info.
34519
34520 2002-09-25  Martin Baulig  <martin@gnome.org>
34521
34522         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
34523         store line number info.  For the dynamic symbol file, we only need
34524         to provide the JIT generated dynamic line number info for the dynamic
34525         symbol file.
34526
34527 2002-09-25  Martin Baulig  <martin@gnome.org>
34528
34529         * debug-mono-symfile.h: Incremented version number.
34530
34531 2002-09-24  Martin Baulig  <martin@gnome.org>
34532
34533         * class.c (mono_debugger_class_init_func): New global function
34534         pointer variable.
34535         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
34536         call it.
34537
34538         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
34539         function.  This is called via the mono_debugger_class_init_func
34540         hook to add all types to the dynamic type table.
34541         (ves_icall_MonoDebugger_GetType): New interncall to get a class
34542         from its metadata token.
34543
34544         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
34545         New interncall for the debugger.
34546
34547 2002-09-24  Nick Drochak <ndrochak@gol.com>
34548
34549         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
34550         before using it in case it is null.
34551         
34552 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34553
34554         * metadata.c: allow custom modifiers in local var signatures
34555         (bug spotted by Zoltan Varga).
34556
34557 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34558
34559         * class.c: deal with the <Module> class that may have a NULL vtable.
34560         Eliminate warnings.
34561
34562 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34563
34564         * image.c, image.h: more strong name helpers.
34565         * monosn.c: more work: convert pem keys to cryptoapi format.
34566
34567 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34568
34569         * string-icalls.c: speedup IndexOf.
34570
34571 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34572
34573         * icall.c: updates from Zoltan.2.Varga@nokia.com.
34574
34575 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34576
34577         * icall.c: cleanup: use mono_object_domain ().
34578
34579 2002-09-23  Martin Baulig  <martin@gnome.org>
34580
34581         * debug-mono-symfile.c: Improved type support.
34582
34583 2002-09-22  Martin Baulig  <martin@gnome.org>
34584
34585         * debug-mono-symfile.c: Added support for reference types and strings.
34586
34587 2002-09-22  Martin Baulig  <martin@gnome.org>
34588
34589         * debug-mono-symfile.c: Started to work on the type table.
34590
34591 2002-09-21  Martin Baulig  <martin@gnome.org>
34592
34593         * debug-mono-symfile.c: Largely reworked the symbol table format.
34594         The symbol table is now incrementally updated each time a new
34595         method is added.  We're now also using our own magic and version
34596         so that you don't need to recompile all your classes if the
34597         dynamic table changes.
34598         (mono_debug_update_mono_symbol_file): Removed.
34599         (mono_debug_symfile_add_method): New function to add a method.
34600
34601 2002-09-21  Martin Baulig  <martin@gnome.org>
34602
34603         * icall.c
34604         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
34605         New interncall.
34606
34607         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
34608         New interncall to get a method from its metadata token.
34609
34610 2002-09-21  Martin Baulig  <martin@gnome.org>
34611
34612         * debug-mono-symfile.c: Create type table.
34613
34614 2002-09-20  Martin Baulig  <martin@gnome.org>
34615
34616         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
34617
34618 2002-09-20  Martin Baulig  <martin@gnome.org>
34619
34620         * debug-mono-symfile.c: Provide information about params and locals.
34621
34622 2002-09-20  Martin Baulig  <martin@gnome.org>
34623
34624         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
34625         New interncall.
34626
34627         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
34628         interncall to get a method from its metadata token.
34629
34630 2002-09-20  Martin Baulig  <martin@gnome.org>
34631
34632         * debug-mono-symfile.c: Added a few checks for method->header
34633         being non-NULL.  This should never happen, but for the moment
34634         let's use a g_warning() rather than a g_assert().
34635
34636 2002-09-19  Mark Crichton  <crichton@gimp.org>
34637
34638         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
34639         even if support for it isn't present.  Added an #ifdef to fix this.
34640
34641         * socket-io.c: Added checks back for Solaris support.
34642
34643 2002-09-19  Martin Baulig  <martin@gnome.org>
34644
34645         * debug-mono-symfile.c (read_string, write_string): Reflect latest
34646         changes in the symbol file format.
34647
34648 2002-09-18  Martin Baulig  <martin@gnome.org>
34649
34650         * debug-mono-symfile.c: Set version number to 21.
34651
34652 2002-09-18  Dick Porter  <dick@ximian.com>
34653
34654         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
34655         on netbsd.  Fixes bug 30051.
34656
34657 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34658
34659         * reflection.c:
34660         (set_version_from_string): little fix.
34661
34662 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34663
34664         * monosn.c, Makefile.am: added strong name utility.
34665         * reflection.h, reflection.c: implemented delayed signing,
34666         locale, version and hash id assembly attributes.
34667
34668 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34669
34670         * loader.c, metadata.c: load param attributes in signatures.
34671
34672 2002-09-16  Martin Baulig  <martin@gnome.org>
34673
34674         * debug-mono-symfile.c: Added string table with all method names.
34675
34676 2002-09-14  Martin Baulig  <martin@gnome.org>
34677
34678         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
34679         fast method lookup.
34680
34681 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34682
34683         * reflection.c: record the public key token of referenced assemblies.
34684
34685 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34686
34687         * image.c, image.h: added functions to get the strong name and the
34688         public key of an assembly.
34689         * pedump.c: use them.
34690
34691 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
34692
34693         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
34694
34695 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
34696
34697         * marshal.c (mono_marshal_get_managed_wrapper): Added
34698         MONO_TYPE_BOOLEAN 
34699
34700 2002-09-11  Martin Baulig  <martin@gnome.org>
34701
34702         * gc.c: Call GC_unregister_disappearing_link() on all links when
34703         finalizing them, this is necessary to aviod a crash in boehm's
34704         finalize handler.
34705
34706 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34707
34708         * gc.c: handle GetTarget for finalized objects spotted and fixed by
34709         nick@chemlab.org.
34710
34711 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34712
34713         * icall.c: implemented MonoType::Module.
34714         * reflection.c, reflection.h: mono_module_get_object () from
34715         Tomi Pakarinen <tomi.pakarinen@welho.com>.
34716
34717 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34718
34719         * icall.c: ignore overridden methods in GetMethods ().
34720         Fix for FieldInfo::SetValue().
34721         * object.c: handle float/double in runtime invoke.
34722
34723 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34724
34725         * object.c: allow a constructor to be called again on an object.
34726
34727 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34728
34729         * class.h, class.c: move field layout code to it's own function and
34730         export it. Get an interface id earlier. Move fields in MonoClass
34731         so they are more cache friendly and align the bitfields.
34732         * loader.c: temporary handle get_param_names() for a runtime method.
34733         * reflection.c, reflection.h: more code to handle runtime creation of
34734         types.
34735
34736 2002-09-09  Martin Baulig  <martin@gnome.org>
34737
34738         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
34739         signature with the pinvoke field being set for the actual call.
34740
34741 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34742
34743         * icall.c: removed some unused icalls. Start of map of glib charsets
34744         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
34745
34746 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34747
34748         * debug-helpers.c: break infinite loop (found and fixed by
34749         Holger Arnold <harnold@gmx.de>).
34750
34751 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34752
34753         * icall.c: target may be null in create_delegate.
34754
34755 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34756
34757         * marshal.c: handle a boolean return type.
34758
34759 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34760
34761         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
34762
34763 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34764
34765         * gc.c: fix weakreferences.
34766
34767 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34768
34769         * icall.c: added icall to get default codepage.
34770
34771 2002-09-03  Dick Porter  <dick@ximian.com>
34772
34773         * threads.h: 
34774         * threads.c: Use MonoThread instead of MonoObject where
34775         apropriate.
34776
34777         Store running thread objects in a hash table, so that we have all
34778         the info to hand when waiting for them to finish
34779         (means we don't need OpenThread() any more, so mingw builds should
34780         be fully functional again.)
34781
34782         * verify.c:
34783         * object.h: Added thread ID to MonoThread
34784
34785 2002-09-03  Martin Baulig  <martin@gnome.org>
34786
34787         * icall.c (System.Reflection.Assembly::get_location): New interncall.
34788
34789 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34790
34791         * icall.c: fixed leak in get_temp_path. Thanks lupus.
34792
34793 2002-09-03  Martin Baulig  <martin@gnome.org>
34794
34795         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34796         argument to store the end address of the disassembled instruction.
34797
34798         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34799         here from debug-symfile.h.
34800         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34801         JIT into this struct.
34802         (MonoSymbolFile): Added `char *image_file' field.
34803         (MonoDebugGetMethodFunc): Removed.
34804         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34805         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34806         (mono_debug_find_method): New method.
34807
34808         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34809         create a full symbol file.
34810         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34811         and static symbol files.
34812         (mono_debug_find_method): The symbol file keeps an internal method hash,
34813         call this to get a MonoDebugMethodInfo from a MonoMethod.
34814
34815         * debug-symfile.[ch]: Removed.
34816
34817 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34818
34819         * image.c (do_mono_image_open): Remove linker version check.
34820
34821 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34822
34823         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34824         wrappers for instance methods.
34825         
34826 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34827
34828         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34829
34830 2002-08-28  Dick Porter  <dick@ximian.com>
34831
34832         * Makefile.am: Export HOST_CC for w32 builds
34833
34834 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34835
34836         * file-io.c process.c: MonoString are null terminated, no
34837         need for mono_string_to_utf16() anymore.
34838
34839 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34840
34841         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34842
34843 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34844
34845         * icall.c, reflection.h: speedup System.MonoType.
34846
34847 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34848
34849         * reflection.c: allow null as the value of a string argument in
34850         custom attributes constructors.
34851
34852 2002-08-27  Martin Baulig  <martin@gnome.org>
34853
34854         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34855         `trampoline_address' field.
34856
34857 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34858
34859         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34860         check (fixes bug #29486) 
34861
34862 2002-08-27  Martin Baulig  <martin@gnome.org>
34863
34864         * debug-mono-symfile.c: Changed the file format in a way that allows us
34865         open it read-only and to use a specially malloced area for all the
34866         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34867         debugging IL code and there is no MCS generated symbol file for it.
34868
34869 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34870
34871         * object.c: added a define for a good string and array
34872         creation speedup (not enabled by default because we need to deal with
34873         the synch stuff).
34874
34875 2002-08-26  Martin Baulig  <martin@gnome.org>
34876
34877         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34878         function to create a dynamic symbol file.  This is used by the
34879         debugger to create a symbol file for IL code on-the-fly.
34880
34881 2002-08-26  Martin Baulig  <martin@gnome.org>
34882
34883         * loader.c (mono_lookup_pinvoke_call): Include the error message
34884         from g_module_error() in the error message.
34885
34886 2002-08-24  Martin Baulig  <martin@gnome.org>
34887
34888         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34889         function to update the symbol file.  The symbol file is mmap()ed
34890         writable, but private.  This allows us to install the symbol file
34891         together with the assembly.
34892
34893 2002-08-24  Martin Baulig  <martin@gnome.org>
34894
34895         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34896         but they can read the new symbol file format which mcs is now creating.
34897
34898         * debug-symfile.c (mono_debug_find_source_location): Moved to
34899         debug-mono-symfile.c; this is now operating on the new symbol file.
34900
34901 2002-08-23  Martin Baulig  <martin@gnome.org>
34902
34903         * debug-helpers.c (mono_method_desc_from_method): New function to get
34904         a MonoMethodDesc from a MonoMethod.
34905
34906 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34907
34908         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34909         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34910
34911 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34912
34913         * string-icalls.[ch]: make helper methods static.
34914
34915 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34916
34917         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34918         types to it and to SetValueInternal.
34919
34920         * object.c: Moved handle_enum label to its proper place. This was the
34921         f... bug! ;-)
34922
34923         This time i compiled mcs and gtk-sharp and they both work.
34924
34925 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34926
34927         * icall.c: reverted partially my previous patch until 
34928         object.c:set_value handles enums correcly.
34929
34930 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34931
34932         * icall.c:
34933         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34934         (ves_icall_System_Environment_get_MachineName): removed warning when
34935         compiling under cygwin.
34936
34937 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34938
34939         * object.c: fixed field_get_value() for reference types.
34940
34941 2002-08-22  Dick Porter  <dick@ximian.com>
34942
34943         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34944         Don't free a buffer while it's still needed.  Patch from Jonathan
34945         Liger <Jonathan.liger@wanadoo.fr>
34946
34947 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34948
34949         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34950         internal call.
34951
34952 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34953
34954         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34955         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34956
34957         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34958         we call unmanaged code which throws exceptions.
34959
34960 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34961
34962         * appdomain.h: added per-domain entry_assembly.
34963         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34964         arguments.
34965         * icall.c: Assembly::GetEntryAssembly icall.
34966         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34967         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34968
34969 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34970
34971         * appdomain.h, gc.c: added mono_domain_finalize ().
34972
34973 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34974
34975         * object.c:
34976         (mono_print_unhandled_exception): changed g_warning by g_printerr
34977         because g_log has a 1024 characters limit (yeah, i got a big stack
34978         trace). Don't print exception name, that should be in ToString 
34979         returned string.
34980
34981 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34982
34983         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34984         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34985
34986 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34987
34988         * object.c:
34989         (mono_print_unhandled_exception): after previous commit, i realized
34990         that MS calls ToString on the exception. I changed this function to
34991         do that. This way we get stack_trace for free.
34992
34993 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34994
34995         * object.c:
34996         (mono_print_unhandled_exception): invoke Message property instead of
34997         getting 'message' field from Exception. Don't allocate memory for
34998         'trace' and 'message' if not needed.
34999
35000 2002-08-18  Dick Porter  <dick@ximian.com>
35001
35002         * unicode.c: Fix asserts to match Encoder.cs checks
35003
35004 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35005
35006         * marshal.c: fix unaligned store issue and a few wrong
35007         opcode argument types.
35008
35009 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35010
35011         * icall.c: added GetUninitializedObjectInternal internal call.
35012
35013 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
35014
35015         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
35016         to the right domain.
35017
35018 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
35019
35020         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
35021
35022         * class.c (class_compute_field_layout): set blittable to false for Strings
35023
35024         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
35025
35026 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35027
35028         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
35029         first chunk of code to create types at runtime. Code to
35030         handle ReflectedType/DeclaringType. Make reflection handles
35031         domain specific.
35032
35033 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35034
35035         * class.c: set correct name in arrays.
35036
35037 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
35038
35039         * appdomain.c (mono_domain_transfer_object): make it work with
35040         valuetypes. bug fixes.
35041
35042 2002-08-12  Dick Porter  <dick@ximian.com>
35043
35044         * object.h: Rename some parameters to avoid c++ keywords (Patch
35045         from Joseph Wenninger <kde@jowenn.at>)
35046
35047 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
35048
35049         * icall.c: added icall to implement Assembly.GetFile*.
35050
35051 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
35052
35053         * reflection.h, reflection.c: code to embed managed resources.
35054
35055 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35056
35057         * class.c: move all the type size stuff into
35058         class_compute_field_layout().
35059
35060 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35061
35062         * class.c: ensure enums have always the correct instance size.
35063         * unicode.c: remove wrong assert.
35064
35065 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35066
35067         * assembly.c: fix mem corruption issue.
35068         * image.h, image.c: added mono_image_get_resource () to access
35069         managed resources.
35070         * icall.c: implemented Assembly.EntryPoint property and some
35071         Managed Resources related internalcalls.
35072
35073
35074 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35075
35076         * image.c, image.h: impemented mono_image_get_entry_point ().
35077         * appdomain.c: use mono_image_get_entry_point.
35078
35079 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
35080
35081         * reflection.c: support the object type argument when loading
35082         custom attributes.
35083
35084 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
35085
35086         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
35087         String as return type.
35088
35089 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
35090
35091         * reflection.c: fix encoding of named args for custom attrs to match
35092         the ms implementation. Read them back when instantiating custom
35093         attributes.
35094
35095 2002-08-02  Radek Doulik  <rodo@ximian.com>
35096
35097         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
35098         by Dietmar as quick fix
35099         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
35100         16 as stack size, used on more places as quick fix before Dietmar
35101         will fix it properly
35102
35103 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
35104
35105         * object.h, object.c: added accessors for fields and properties.
35106
35107 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
35108
35109         * class.c, class.h: made mono_class_get_field_from_name ()
35110         loop on parent types.
35111         Added mono_class_get_property_from_name ().
35112
35113 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35114
35115         * class.c, class.h: move the code to setup the type vtable in its own
35116         function so that it can be reused also for types created at runtime.
35117         Eliminate the "class" identifier from the header file.
35118         * reflection.c: setup the vtable for enums so that we can create
35119         objects for use in SetConstant ().
35120
35121 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
35122
35123         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
35124         instead of the delegate itself as this pointer (bug #28383)
35125
35126 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
35127
35128         * marshal.c (mono_marshal_get_managed_wrapper): added return type
35129         conversions.
35130
35131 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35132
35133         * loader.c: don't set the pinvoke bit on icalls.
35134
35135 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
35136
35137         * debug-helpers.c (mono_method_full_name): only print a number to
35138         indicate wrapper type (so that the output is more readable in traces).
35139
35140 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
35141
35142         * class.c (mono_class_init): include method override patch from Paolo
35143
35144 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
35145
35146         * icall.c: fixed GetTypeCode().
35147
35148 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
35149
35150         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
35151         use real delegate invoke function to make it work with multicast
35152         delegates (fix bug# 28291).
35153
35154 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35155
35156         * object.c: load constant strings.
35157
35158 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35159
35160         * reflection.c: no magic numbers.
35161         * tabledefs.h: security action enum.
35162
35163 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35164
35165         * assembly.c: fix possible memory corruption.
35166
35167 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35168
35169         * reflection.h, reflection.c: added support for linking resources.
35170         * verify.c: check we have an updated corlib.
35171
35172 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
35173
35174         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
35175         string arrays.
35176         (mono_marshal_string_array): null terminate unmanaged string arrays.
35177         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
35178
35179 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35180
35181         * icall.c: Type.GetType () can now return also types from the
35182         calling assembly.
35183
35184 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
35185
35186         * loader.h, loader.c: stack walking support.
35187         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
35188         GetCallingAssembly.
35189
35190 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
35191
35192         * marshal.c: added optimisations for blittable types 
35193
35194         * class.c (mono_array_class_get): do not set blittable attribute on arrays
35195         (mono_class_setup_mono_type): set blittable attribute for single
35196         and double.
35197
35198         * marshal.c (mono_string_utf8_to_builder): impl.
35199         (mono_string_builder_to_utf8): impl.
35200         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
35201
35202 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
35203
35204         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
35205         (mono_marshal_get_managed_wrapper): impl. byref types
35206
35207 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35208
35209         * icall.c:
35210         (search_method): don't display debug message. 
35211
35212 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
35213
35214         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
35215
35216 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
35217
35218         * appdomain.c: set the missing filename when throwing exception.
35219
35220 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
35221
35222         * metadata.c (mono_type_size): code cleanup
35223         (mono_type_stack_size): removed some test code
35224
35225 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
35226
35227         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
35228         mono_get_exception_file_not_found now.
35229
35230         * exception.c (mono_exception_from_name_two_strings): New version
35231         that will call a constructor with two string arguments. 
35232         (mono_get_exception_file_not_found): New helper routine, used to
35233         report file-not-found errors.
35234
35235 2002-07-20  Dick Porter  <dick@ximian.com>
35236
35237         * process.h:
35238         * process.c: Pass file handles to CreateProcess
35239         
35240         * icall.c:
35241         * file-io.h:
35242         * file-io.c: Implemented CreatePipe
35243
35244 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
35245
35246         * metadata.c (mono_get_param_info): set alignment for value types
35247
35248 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35249
35250         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
35251         Constify mono_domain_assembly_open().
35252         * loader.c: handle null namespace in icalls.
35253
35254 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
35255
35256         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
35257         (emit_str_to_ptr_conv): marshal object as structs
35258
35259         * metadata.c (mono_type_to_unmanaged): marshal object as structs
35260
35261         * marshal.c (mono_marshal_get_runtime_invoke): support value types
35262
35263 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
35264
35265         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
35266         (mono_marshal_get_native_wrapper): we an now return value types
35267
35268 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35269
35270         * verify.c: more checks implemented.
35271
35272 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
35273
35274         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
35275         (fix bug #27695)
35276         (mono_marshal_get_native_wrapper): allow byref arguments
35277         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
35278         impl. PtrToStringXXX methods
35279         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
35280         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
35281         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
35282         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
35283         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
35284
35285 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35286
35287         * reflection.c: fix buglet in parsing an assembly name.
35288
35289 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
35290
35291         * marshal.c (emit_ptr_to_str_conv): first impl.
35292
35293 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35294
35295         * object.c, class.h: cache the vtable in the class as suggested by
35296         vargaz@freemail.hu (Zoltan Varga).
35297
35298 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35299
35300         * class.h, loader.c: added mono_field_from_token().
35301         * verify.c: first cut of type checking code.
35302
35303 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
35304
35305         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
35306
35307 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
35308
35309         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
35310         (fix bug #27782)
35311         (mono_marshal_get_remoting_invoke): impl.
35312         (mono_delegate_begin_invoke): impl.
35313         (mono_mb_emit_save_args): impl.
35314         (mono_delegate_end_invoke): impl.
35315         (mono_marshal_get_delegate_begin_invoke):
35316         (mono_marshal_get_delegate_end_invoke):
35317         (mono_marshal_get_delegate_invoke): generate a special name for
35318         those methods (including the signature) and associate them whith
35319         the delegate class. 
35320
35321 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
35322
35323         * reflection.[ch]: 
35324         (mono_reflection_type_from_name): now it has a MonoImage parameter
35325         which is used as the default image to search the type in. If the image
35326         is NULL or getting the type from it fails, it defaults to corlib.
35327
35328         * icall.c: changed 1 call to mono_reflection_type_from_name to match
35329         new parameter.
35330
35331 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35332
35333         * reflection.c: update the parameter table index.
35334
35335 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35336
35337         * domain.c: don't include the mark byte in the string hash.
35338
35339 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35340
35341         * icall.cs: icall for Type.GetTypeCode ().
35342         * verify: a couple of fixes and disabled local initialization checks.
35343
35344 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
35345
35346         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
35347
35348         * debug-helpers.c (mono_method_full_name): print the type of the
35349         runtime wrapper
35350
35351         * metadata.c (mono_signature_hash): a hash function for signatures
35352         (mono_signature_hash): better hash algorithm
35353
35354         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
35355
35356         * debug-helpers.c (mono_method_full_name): this can now generate
35357         method names with signatures
35358
35359         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
35360         method dont have this pointers.
35361
35362 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35363
35364         * reflection.c: fixup typebuilder tokens.
35365         * image.c: fix buglet.
35366         * marshal.h: remove whitespace.
35367         * metadata.h, metadata.c: reinstate code that was removed.
35368         * verify.c: handle catch directives and fix another couple of bugs.
35369
35370 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
35371
35372         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
35373         (mono_marshal_get_native_wrapper): make it comp. with the old code
35374         (mono_marshal_get_native_wrapper): support boolean
35375         (mono_marshal_get_managed_wrapper): support more types
35376
35377 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
35378
35379         * class.c (class_compute_field_layout): compute class->blittable attribute.
35380
35381 2002-07-09  Dick Porter  <dick@ximian.com>
35382
35383         * threads.c: Make the thread cleaning up cope with threads that
35384         call ExitThread()
35385
35386 2002-07-08  Radek Doulik  <rodo@ximian.com>
35387
35388         * reflection.c (method_encode_code): use non-translated values to
35389         compute finally_start, this fixes exception handling on ppc, yay!
35390
35391         * decimal.h (struct signscale): fix endianess
35392
35393 2002-07-07  Radek Doulik  <rodo@ximian.com>
35394
35395         * reflection.c: swap box_val and not val
35396
35397 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35398
35399         * reflection.c, reflection.h: handle full assembly info in type name.
35400         Handle Type arguments when loading custom attributes.
35401         * icall.c: updated to use new mono_reflection_type_from_name () method.
35402
35403 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35404
35405         * loader.c:
35406         (method_from_memberref): also print assembly name when method not found.
35407
35408 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35409
35410         * icall.c:
35411         (ves_icall_TypeGetProperties): fixed bug #27473. 
35412
35413 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35414
35415         * reflection.c: display image name and token when cannot find the
35416         .ctor for an attribute.
35417
35418 2002-07-05  Martin Baulig  <martin@gnome.org>
35419
35420         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35421
35422 2002-07-04  Dick Porter  <dick@ximian.com>
35423
35424         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
35425         compile on mingw.  This will cause mingw builds to not wait for
35426         subthreads to terminate after the main thread does.  I've lodged a
35427         bug with the mingw developers for them to wrap OpenThread().
35428
35429 2002-07-03  Dick Porter  <dick@ximian.com>
35430
35431         * threads.c: Store thread IDs instead of handles, because
35432         GetCurrentThread() returns a pseudohandle and therefore stores
35433         useless values.  mono_thread_cleanup() continues checking the
35434         array of threads until it is empty, to cope with subthreads
35435         spawning new threads after the main thread has finished.
35436
35437         * profiler.h:
35438         * profiler.c:
35439         * profiler-private.h: Pass the thread ID to thread profiler
35440         functions, instead of a handle
35441
35442 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35443
35444         * verify.c: fixes to make it more usable.
35445         * pedump.c: added --verify code to verify IL code in an assembly.
35446
35447 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35448
35449         * reflection.c: turn errors into warnings to allow compiling corlib.
35450
35451 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
35452
35453         * reflection.c: add special cases to compile corlib.
35454
35455 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35456
35457         * reflection.c: handle properties with only a set method.
35458
35459 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35460
35461         * opcodes.h: add enum with opcodes in opval order.
35462
35463 2002-07-01  Dick Porter  <dick@ximian.com>
35464         
35465         * object.h:
35466         * object.c (mono_runtime_run_main): Removed unneeded argument
35467
35468 2002-06-28  Martin Baulig  <martin@gnome.org>
35469
35470         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35471
35472 2002-06-27  Dick Porter  <dick@ximian.com>
35473
35474         * threads.c: Store the handle in both the parent thread and in the
35475         subthread, to minimise the time between starting a new thread and
35476         storing its ID.
35477
35478 2002-06-26  Dick Porter  <dick@ximian.com>
35479
35480         * appdomain.c (mono_runtime_cleanup): Close the socket library
35481         after all the threads have finished, not before
35482
35483 2002-06-26  Martin Baulig  <martin@gnome.org>
35484
35485         * debug-symfile.c (mono_debug_find_source_location): Added
35486         `guint32 *line_number' argument.  If it's not NULL, store the line number
35487         there and return the file name without the line number.
35488
35489 2002-06-25  Dick Porter  <dick@ximian.com>
35490
35491         * icall.c:
35492         * process.h:
35493         * process.c: Process forking and other support functions
35494
35495 2002-06-25  Dick Porter  <dick@ximian.com>
35496
35497         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
35498         things dont happen when the image is closed.
35499         (mono_image_lookup_resource): Walk the resource section looking
35500         for a particular entry
35501
35502         * cil-coff.h: PE resource section decoding
35503
35504 2002-06-25  Dick Porter  <dick@ximian.com>
35505         
35506         * assembly.h:
35507         * assembly.c: 
35508         (mono_assembly_foreach): Accessor functions to walk the list of
35509         loaded assemblies
35510         (mono_assembly_set_main):
35511         (mono_assembly_get_main): Process methods need to know which
35512         assembly is the "main" one
35513
35514         * object.c (mono_runtime_run_main): Record the main assembly
35515
35516         * debug-helpers.c: Fix typo
35517
35518 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
35519
35520         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
35521         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
35522
35523 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35524
35525         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
35526
35527 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
35528
35529         * image.c (do_mono_image_open): Initialize reference count,
35530         otherwise we leak the MonoImage.
35531
35532 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35533
35534         * reflection.c: small tweak to handle self-hosting.
35535
35536 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
35537
35538         * reflection.c: fix type name parse code.
35539
35540 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35541
35542         * reflection.c: break out of the loop.
35543         * image.c: special case corlib.
35544
35545 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35546
35547         * reflection.c: add all the custom attrs at the end to ensure the
35548         ctors have been properly initialized when the attributes are defined
35549         in the current assembly.
35550
35551 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35552
35553         * reflection.c: handle correctly multiple-nested types.
35554
35555 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
35556
35557         * row-indexes.h: fix typos.
35558         * reflection.c: adjust for typos and fix method_def_or_ref
35559         encoding in MethodImpl table.
35560
35561 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35562
35563         * reflection.c: fix entry point patching (thanks Serge!).
35564
35565 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
35566
35567         * verify.c: add check for System.Exception
35568
35569 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35570
35571         * image.c, class.c: minifix for code just c&p'ed.
35572         * reflection.c: warning fix.
35573         * object.h, loader.h, domain.c: load also StringBuilder.
35574
35575 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35576
35577         * marshal.h, marshal.c: some support code to handle complex marshaling.
35578
35579 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35580
35581         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
35582         Better signatures with vtable error dump.
35583
35584 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
35585
35586         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
35587
35588 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
35589
35590         * icall.c (ves_icall_Type_GetField): impl.
35591
35592 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35593
35594         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
35595         to retrieve a marshal description blob for a field or param.
35596
35597 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35598
35599         * reflection.h, reflection.c: change order of nested type emission
35600         to avoid table corruption. The NestedTypes table is sorted.
35601         * icall.c: change order of GetConstructor results to workaround mcs bug.
35602
35603 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35604
35605         * reflection.h, reflection.c: handle field and param marshal
35606         information.
35607
35608 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35609
35610         * icall.c, marshal.c marshal.h: more Marshal class implementation.
35611
35612 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35613
35614         * reflection.c: fix call convention.
35615
35616 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35617
35618         * reflection.h, reflection.c: mono_image_get_memberref_token()
35619         takes a type instead of a class, now. Added
35620         mono_image_get_array_token() to create tokens for the special
35621         multi-dim array methods.
35622
35623 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35624
35625         * assembly.c: handle modules (no assembly table). Split
35626         loading references in its own function.
35627         * class.c: handle moduleref resolution scope.
35628         * image.c, image.h: cache module name in image.
35629
35630 2002-06-07  Martin Baulig  <martin@gnome.org>
35631
35632         * reflection.c (mono_image_get_type_info): Only add a class layout entry
35633         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
35634
35635 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35636
35637         * icall.c: more signature fixes that used uint instead of int.
35638
35639 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35640
35641         * reflection.c: fixed signature of field refs.
35642
35643 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35644
35645         * class.c, reflection.c: handle typerefs of nested types
35646         (both on read and when writing files).
35647
35648 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
35649
35650         * icall.c: fix method signatures that tried to workaround the previous
35651         typo, d'oh!
35652
35653 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35654
35655         * debug-helpers.c: fix typo.
35656
35657 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35658
35659         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
35660         rewrote the PE/COFF writing code (our programs are understood by the
35661         ms runtime, now).
35662
35663 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35664
35665         * gc.c, gc.h, icall.c: weakreference support.
35666
35667 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35668
35669         * Makefile.am, mono-config.c: use $(sysconfdir).
35670
35671 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35672
35673         * icall.c: changed default precision of Double.ToString() to 15.
35674         Fixed memory leak. Unified with Single.ToString.
35675
35676 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
35677
35678         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
35679
35680 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
35681
35682         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
35683         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
35684         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
35685         and myself.
35686
35687 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35688
35689         * debug-symfile.c, sysmath.c: yet more compilation fixes.
35690
35691 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35692
35693         * reflection.c, socket-io.c: more compilation fixes.
35694
35695 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35696
35697         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
35698         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
35699         unicode.c: warning and compiler compatibility fixes.
35700
35701 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35702
35703         * class.h, metadata.c: fixed warnings/compilation errors.
35704
35705 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35706
35707         * Makefile.am, mono-config.c, mono-config.h: configuration file
35708         support routines.
35709         * loader.c, loader.h: make Dll mapping configurable at runtime in the
35710         config file. Export methods to insert and lookup mappings.
35711
35712 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35713
35714         * reflection.c: handle types and boxed objects in custom attr
35715         constructors.
35716
35717 2002-05-30  Martin Baulig  <martin@gnome.org>
35718
35719         * debug-symfile.c
35720         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
35721
35722 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
35723
35724         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
35725         to lookup the implmap row for a P/Invoke method.
35726         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
35727         P/Invoke method from the runtime on an as needed basis.
35728
35729 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
35730
35731         * metadata.c (mono_metadata_parse_signature): impl.
35732
35733 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35734
35735         * class.c: handle .pack directive.
35736
35737 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
35738
35739         * object.c: initialize static fields with RVA data.
35740
35741 2002-05-25  Martin Baulig  <martin@gnome.org>
35742
35743         * debug-symfile.c
35744         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
35745
35746 2002-05-24  Martin Baulig  <martin@gnome.org>
35747
35748         * debug-symfile.c
35749         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
35750         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
35751         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
35752
35753 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35754
35755         * object.c: special case string ctros in invoke.
35756         * gc.c: silly whitespace changes.
35757
35758 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
35759
35760         * threadpool.[ch]: impl. a threadpool that can
35761         be used by mint and mono.
35762
35763 2002-05-22  Martin Baulig  <martin@gnome.org>
35764
35765         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
35766         The first argument is now a `MonoReflectionModuleBuilder *', the return
35767         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
35768         `methods' field to get the method builder.  The `token' argument is the
35769         unfixed token.
35770
35771         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
35772         invalid characters instead of g_assert_not_reached()ing.  This seems
35773         to be the behaviour of mscorlib.
35774
35775 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
35776
35777         * object.c (mono_runtime_invoke_array): applied patch from Rachel
35778         Hestilow to fix bug #25104
35779
35780 2002-05-21  Martin Baulig  <martin@gnome.org>
35781
35782         * debug-symfile.c (mono_debug_find_source_location): New function.
35783         Looks up an IL offset in the line number table and returns the source
35784         location as a string.
35785
35786 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35787
35788         * icall.c:
35789         (mono_double_ToStringImpl): changed %f by %g until we have something
35790         better.
35791
35792 2002-05-21  Nick Drochak  <ndrochak@gol.com>
35793
35794         * icall.c : Use different name for Math.Pow's icall.  Needed to check
35795         parameters first in C#.
35796
35797 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35798
35799         * icall.c, reflection.h: added icall to get info about an event.
35800
35801 2002-05-20  Radek Doulik  <rodo@ximian.com>
35802
35803         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35804         endian
35805         (mono_value_box): don't use memcpy for small sizes on
35806         architectures with unaligned access
35807
35808 2002-05-20  Martin Baulig  <martin@gnome.org>
35809
35810         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35811         if `tb->parent == NULL'.
35812         (mono_reflection_create_internal_class): New function.  This is
35813         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35814         for enum types.
35815
35816         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35817         New interncall.
35818
35819 2002-05-19  Martin Baulig  <martin@gnome.org>
35820
35821         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35822         argument to get the length, don't default to the array length.
35823
35824 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35825
35826         * assembly.c (mono_assembly_setrootdir): New function used to
35827         override the MONO_ASSEMBLIES directory.
35828
35829 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35830
35831         * icall.c: ValueType_GetHashCode() initialize local var.
35832
35833 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35834
35835         * reflection.c: sort custom attributes table.
35836
35837 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35838
35839         * reflection.c: support named args in custom attributes (write support).
35840
35841 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35842
35843         * reflection.c: fix finally position calculation.
35844
35845 2002-05-15  Radek Doulik  <rodo@ximian.com>
35846
35847         * reflection.c: fixed endianess at many places
35848
35849         * icall.c (ves_icall_InitializeArray): comment out debug msg
35850
35851 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35852
35853         * object.c (mono_unhandled_exception): new function to handle
35854         unhandled exceptions.
35855         (mono_unhandled_exception): call the UnhandledException event.
35856         (mono_runtime_delegate_invoke): impl.
35857
35858 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35859
35860         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35861         returns the RVA, not the direct pointer to the data. Handle the case
35862         when the class size is fixed.
35863
35864 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35865
35866         * reflection.c: fix some endianess issues.
35867
35868 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35869
35870         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35871
35872         * threads.c (mono_thread_init): added a callback which is invoked
35873         at thread start.
35874
35875 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35876         
35877         * icall.c: make GetHashCode return non-negative values.
35878
35879 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35880
35881         * object.c, icall.c, gc.c: revert to address-based hashcode.
35882
35883 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35884
35885         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35886
35887 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35888
35889         * icall.c, class.c: special case <Module>.
35890
35891 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35892
35893         * icall.c: fix bug in GetNow().
35894
35895 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35896
35897         * object.c (mono_runtime_class_init): make sure that we call all
35898         static class constructors.
35899
35900 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35901
35902         * reflection.c: sort methodsemantics table.
35903
35904 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35905
35906         * reflection.h, reflection.c: honour init locals setting.
35907
35908 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35909
35910         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35911
35912 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35913
35914         * reflection.c: support ContructorBuilders in attribute blob creation.
35915
35916 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35917
35918         * reflection.c: some changes to build a binary that can be run
35919         directly in windows.
35920
35921 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35922
35923         * loader.c: print a big message when an icall can't be found.
35924
35925 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35926
35927         * string-icalls.c: fix bug 24248.
35928
35929 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35930
35931         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35932         icall.c, reflection.h: separate assembly loading by pathname and by
35933         assembly name. Use the MONO_PATH env var to search for assemblies.
35934
35935 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35936
35937         * assembly.c, image.h: add some support for assemblies
35938         with multiple modules.
35939         * class.c, class.h: export mono_class_from_typeref().
35940         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35941         instead.
35942
35943 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35944
35945         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35946         documentation says (the ECMA one is correct).
35947
35948 2002-05-02  Dick Porter  <dick@ximian.com>
35949
35950         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35951         Don't name the synchronisation mutex.
35952
35953 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35954
35955         * rand.c
35956         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35957         Make the prototypes match.
35958         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35959         Same.
35960
35961         * icall.c
35962         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35963         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35964         all systems have tm.tm_zone, so use strftime() with %Z to print
35965         the timezone abreviation into a temp string.
35966
35967         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35968         rather than mono_array_addr() on a MonoString on Big Endian
35969         machines.
35970
35971 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35972
35973         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35974         fix bug 24041
35975
35976 2002-04-30  Dick Porter  <dick@ximian.com>
35977
35978         * socket-io.c: Cope with SOCKET being an integer rather than a
35979         pointer now.
35980
35981         * threads.c: Added Thread_free_internal, to deal with thread
35982         handle cleanup.  Moved calls to handle_store() and handle_remove()
35983         to start_wrapper(), so each can only be called once.  Allocate
35984         synchronisation blocks with GC_malloc(), and use GC finalisation
35985         to close the handles.
35986
35987         * icall.c: added System.Threading.Thread::Thread_free_internal
35988
35989 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35990
35991         * icall.c: support Environment.Exit, CommandLineArgs().
35992
35993 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35994
35995         * object.c, object.h: added mono_runtime_run_main () and
35996         mono_runtime_get_main_args () for use in System.Environment.
35997
35998 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35999
36000         * gc.c: fix thinko, enable actual finalization since the jit is now
36001         fixed.
36002
36003 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
36004
36005         * gc.c, object.c: take into account that an object may be offset wrt the address
36006         returned by GC_malloc().
36007
36008 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
36009
36010         * image.c: handle files without entries in the assembly table (modules).
36011
36012 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
36013
36014         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
36015         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
36016         allowed to be null when it's System.Object class setup.
36017
36018 2002-04-27  Martin Baulig  <martin@gnome.org>
36019
36020         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
36021         if `tb->parent == NULL' rather than crashing.
36022
36023 2002-04-28  Nick Drochak  <ndrochak@gol.com>
36024
36025         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
36026         calling acos() where asin() should have been called.
36027
36028 2002-04-26  Martin Baulig  <martin@gnome.org>
36029
36030         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
36031         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
36032         there's a subdirectory called `System', but we don't want to read that
36033         subdirectory as an assembly.
36034
36035 2002-04-25  Martin Baulig  <martin@gnome.org>
36036
36037         * debug-symfile.c: Reflect latest MonoString changes.
36038
36039 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
36040
36041         * rand.c, rand.h: instance method icalls need to have an explicit
36042         this pointer as first argument in the C implementation.
36043
36044 2002-04-25  Nick Drochak <ndrochak@gol.com>
36045
36046         * icall.c: Fix typo in map for GetNonZeroBytes
36047
36048 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36049
36050         * string-icalls.c : String does now passes unit tests without any 
36051         errors, the following changes has been made:
36052         
36053         Implemented replace methods.
36054         Renaming of methods to (try) follow the standard.
36055         Fixed compare ordinal
36056         Made all memory allocated directly to function instead of via icall function.
36057         Small performance fix in is_in_array function
36058                         
36059  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
36060
36061         c (mono_string_Internal_ctor_charp_int_int):
36062         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
36063         sindex < 0, throw ArgumentOutOfRangeException instead of
36064         ArgumentNullException.
36065
36066         Added new check for length == 0, however
36067         I need to make it return String.Empty from the C code.
36068         
36069         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
36070         that calculate the length for us here.
36071         
36072         (mono_string_Internal_ctor_sbytep_int_int): Replaced
36073         mono_string_new_utf16 with mono_string_new, since value is utf8.
36074
36075 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
36076
36077         * object.c: register the object for finalization if needed.
36078         Allocate one more char in the string for the terminating 0 char.
36079
36080 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
36081
36082         * class.c, class.h, image.c: check if a type implemenst a destructor.
36083         Use the proper key for array class lookups.
36084         * icall.c: register the icalls in the System.GC class.
36085         * gc.c, gc.h: GC-related functions and icalls.
36086
36087 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36088
36089         * icall.c:
36090         * socket-io.c:
36091         * unicode.c: free some strings gotten from mono_string_to_utf8 and
36092         changed a couple of free () by g_free ().
36093
36094         * decimal.c: one-liner in the comments for decimal2string ().
36095
36096 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36097
36098         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
36099
36100 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36101
36102         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
36103         * object.c (mono_runtime_invoke_array) : handle null in params
36104
36105 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36106
36107         * string-icalls.c: fixed bug in split (one off bug)
36108
36109 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36110
36111         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
36112         * icalls.c: added String::Equals as internal method
36113
36114 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36115
36116         * threads.c: fixed bug in the double interlocked functions
36117
36118 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
36119
36120         * threads.c: implemented all of the new interlocked icalls.
36121         * string-icalls.c: fix a bug in insert.
36122         * icalls.c: added the icalls for interlocked, removed old string functions.
36123         
36124 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
36125
36126         * loader.c: fix off-by-one error when reading argument names.
36127
36128 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36129
36130         * profiler.c: win32 counter implementation (untested).
36131         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
36132         (the latter needs testing and more complete impl. from win32 folks).
36133
36134 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
36135
36136         * object.c: mono_array_new_full workaround mono_array_class_get
36137         problem.
36138
36139 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36140
36141         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
36142         * object.h (mono_string_chars): Changed casting type.
36143
36144 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36145
36146         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
36147                            method signatures to use gunichar2 instead of gint16.
36148
36149 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
36150
36151         * object.h, object.c: domain-specific versions of mono_object_new and
36152         mono_array_new.
36153
36154 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
36155
36156         * object.c: changed String layout
36157
36158         * string-icalls.c (mono_string_Internal_ctor_chara): added
36159         internal string constructors.
36160
36161 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
36162
36163         * threads.c: pass 'this' to the thread start routine.
36164
36165 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36166
36167         * string-icalls.c: fix IndexOf and LastIndexOf. Now
36168         InternalCompareStr don't call twice mono_string_cmp_char for the last
36169         character. Improved performance in mono_string_cmp_char.
36170
36171 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
36172
36173         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
36174         code into its own library: libmonoruntime.
36175
36176 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
36177
36178         * object.h, object.c: changed array format so that szarrays do not
36179         require a bounds structure.
36180         * icall.c, appdomain.c: support for new szarray format.
36181
36182 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
36183
36184         * metadata.c: compare also the retuns type when comparing signatures:
36185         we didn't do this as an optimization since really overloaded methods
36186         must differ also in the arguments, but this doesn't work with
36187         low-level IL code (or when using explicit conversion operators: see
36188         bug#23498 for an example).
36189
36190 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
36191
36192         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
36193
36194 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
36195
36196         * icall.c: make MonoType::GetElementType its own icall.
36197
36198 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
36199
36200         * icall.c: remove MonoMethod_get_Name().
36201         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
36202         object.
36203
36204 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36205
36206         * string-icalls.c: optimized a few methods.
36207
36208 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36209
36210         * icall.c: added all new string internal calls
36211         * string-icalls.c: added, new string internal call implementation.
36212         * object.c: added mono_string_new_size for allocating a string a size
36213
36214 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
36215
36216         * object.c (mono_object_isinst): use the same code as in the
36217         optimized x86 version.
36218
36219 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
36220
36221         * profiler.c: TSC-based timer code (faster and more accurate).
36222         Not hooked up in configure, yet (set USE_X86TSC to 1).
36223
36224 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
36225
36226         * profiler.c, profiler.h: track time spent compiling methods.
36227         * threads.c: track thread creation/destruction.
36228
36229 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
36230
36231         * profiler.c, profiler.h, profiler-private.h: profiling interface
36232         and sample implementation. Moved here so that it can be used also by
36233         the jit.
36234
36235 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
36236
36237         * reflection.c, reflection.h: keep types and other handles separate in
36238         the hash tables for referred tokens. Add guid for modules.
36239
36240 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
36241
36242         * assembly.c: fix bugs found with valgrind.
36243         * metadata.h, metadata.c: added mono_metadata_guid_heap().
36244
36245 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
36246
36247         * threads: added icall support for getting current domain for
36248                    the thread.
36249  
36250 2002-04-13  Martin Baulig  <martin@gnome.org>
36251
36252         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
36253         (MonoDebugVarInfo): Added `index' field for register based addresses.
36254         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
36255         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
36256         `MonoDebugVarInfo *params' and `guint32 this_offset' with
36257         `MonoDebugVarInfo *this_var'.
36258
36259         * debug-symfile.c (relocate_variable): New static function to write
36260         a location description for a local variable or method parameter.
36261
36262 2002-04-12  Martin Baulig  <martin@gnome.org>
36263
36264         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
36265         stack offset and begin/end scope address of a local variable.
36266         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
36267         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
36268         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
36269
36270         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
36271         Added new relocation types for start/end scope of a local variable.
36272
36273 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
36274
36275         * object.h: add mono_object_domain() macro.
36276         * reflection.c: handle typespecs.
36277         * icall.c: MonoMethod::get_Name() implementation.
36278
36279 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36280
36281         * icall.c: String::GetHashCode() icall implementation.
36282
36283 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
36284
36285         * icall.c: String::IndexOfAny icall.
36286         * object.c, object.h: make array->max_length more useful.
36287         Intrduced mono_object_class() and mono_string_length() macros.
36288
36289 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36290
36291         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
36292         instead of g_unichar_isdigit.
36293
36294 2002-04-11  Nick Drochak  <ndrochak@gol.com>
36295
36296         * icall.c: Implement a simple Double.ToString().
36297
36298 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
36299
36300         * appdomain.h: only io-layer.h is supposed to be included.
36301         * icall.c: explicitly import environ. Fix warning.
36302
36303 2002-04-10  Nick Drochak  <ndrochak@gol.com>
36304
36305         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
36306                 return true even if it's not Daylight Savings time.
36307                 Only return false for the case where the function isn't
36308                 implemented for a plaform (read Windows).
36309
36310 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
36311
36312         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
36313         data with a mutex.
36314
36315 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
36316
36317         * mempool.c (mono_mempool_alloc): only use g_malloc when
36318         absolutely necessary.
36319
36320 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
36321
36322         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
36323
36324         * class.c (mono_class_vtable): use domain mempool to allocate vtable
36325         (mono_class_proxy_vtable): use domain mempool
36326
36327 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
36328
36329         * appdomain.h, appdomain.c: split initialization that requires the
36330         execution engine support into mono_runtime_init().
36331
36332 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
36333
36334         * class.c (mono_class_init): don't include vtable inside MonoClass
36335         to save some memory, gather some statistics.
36336         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
36337
36338 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
36339
36340         * icall.c: internalcall implementation for ValueType.Equals().
36341
36342 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
36343
36344         * object.c (mono_message_init): moved 
36345         (mono_runtime_exec_main): new arch. independent impl.
36346         (mono_runtime_invoke_array): new method - like
36347         mono_runtime_invoke, but you can pass an array of objects.
36348         (mono_remoting_invoke): new arch. independent impl.
36349         (mono_message_invoke): new arch. independent impl.
36350         (mono_runtime_class_init): new arch. independent impl.
36351         (mono_runtime_object_init): new arch. independent impl.
36352
36353 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36354
36355         * metadata.c, object.c, reflection.c: documented the exported
36356         functions.
36357
36358 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
36359
36360         * icall.c: simpler code to pass the assembly builder data to corlib.
36361         Implement GetNestedTypes() internalcall.
36362
36363 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
36364
36365         * class.c: warn if a type can't be loaded.
36366
36367 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
36368
36369         * image.h: typedef MonoImageOpenStatus
36370         * types.h: removed unused file
36371         
36372 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
36373
36374         * icall.c: Enum_ToObject accepts enum value arguments.
36375
36376 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
36377
36378         * class.c: move initialization of properties, events and nested
36379         classes, so that they happen for interfaces, too.
36380
36381 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
36382
36383         * icall.c: cleanup some ugly casts in Array_SetValue*.
36384
36385 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
36386
36387         * icall.c: the values array fro enums is of the correct type, now.
36388         Implement (correctly) getFullName instead of assQualifiedName for
36389         MonoType.
36390         * reflection.h, reflection.c: added mono_type_get_name ().
36391
36392 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
36393
36394         * assembly.c, image.h: for each MonoImage, record from wich assembly
36395         it was loaded.
36396         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
36397         Make Type.Assembly work.
36398
36399 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
36400
36401         * debug-symfile.h: use char* instead of gpointer to avoid
36402         unnecessary casts.
36403
36404         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
36405
36406         * icall.c (ves_icall_InternalExecute): impl. FielSetter
36407         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
36408
36409 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
36410
36411         * icall.c (mono_message_init): impl. (code cleanup)
36412         (ves_icall_InternalExecute): impl. FieldGetter
36413
36414         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
36415         defined we call all (non-static)methods through the vtable. 
36416
36417 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
36418
36419         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
36420         finalizer even though the memory is still referenced (and the chunk of
36421         memory is not freed).
36422
36423 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36424
36425         * assembly.c: fix brokeness.
36426
36427 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
36428
36429         * class.c: kill some warnings. Check explicit interface method
36430         implementation also without considering the namespace.
36431         Load also literal strings in static class data.
36432
36433 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
36434
36435         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
36436         (default_assembly_name_resolver): Make the resolver take the
36437         "base" directory where the assembly was originally defined, so we
36438         can load DLLs that are in the same directory as the assembly that
36439         is being referenced.
36440
36441 2002-03-28  Dick Porter  <dick@ximian.com>
36442
36443         * file-io.h: 
36444         * file-io.c:
36445         * socket-io.c: 
36446         * unicode.h: 
36447         * unicode.c: Warning cleanups
36448
36449 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
36450
36451         * object.h, reflection.h: use the correct type instead of MonoObject.
36452
36453 2002-03-28  Martin Baulig  <martin@gnome.org>
36454
36455         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
36456         (mono_debug_update_symbol_file): Initialize classes if necessary.
36457
36458 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36459
36460         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
36461         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
36462
36463 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
36464
36465         * assembly.h: fix function prototype.
36466         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
36467         * mono-endian.h: use const cast.
36468
36469 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36470
36471         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
36472
36473 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36474
36475         * loader.c: don't assert when a typeref can't be loaded, give
36476         a chance to the runtime to trow an exception instead.
36477         * loader.h: fix warning.
36478
36479 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36480
36481         * class.c (mono_class_proxy_vtable): added proxy support
36482
36483 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
36484
36485         * icall.c: removed last of PAL calls, added System.Environment
36486         * file-io.h, file-io.c: MonoIO implementation
36487         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
36488
36489 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36490
36491         * appdomain.c: do not use the byte marker in ldstr table lookup.
36492         * debug-helpers.c: allow two ':' to separate class and method name.
36493         * object.c: allocate arrays bounds with the GC, too.
36494         * verify: add a few more checks.
36495
36496 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
36497
36498         * reflection.c: output also literal strings. Allocate parameter data
36499         with GC_malloc() (thanks, Martin, for catching this!).
36500
36501 2002-03-26  Martin Baulig  <martin@gnome.org>
36502
36503         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
36504         include the `this' offset in the `param_offsets'.
36505
36506 2002-03-25  Martin Baulig  <martin@gnome.org>
36507
36508         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
36509         mono_debug_get_class() function to get the classes. Added new
36510         relocation types for arrays and strings.
36511         (mono_debug_get_class): New static function to search in all
36512         referenced assemblies for a metadata token.
36513
36514         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
36515
36516 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
36517
36518         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
36519         hold gc-allocated objects. Make the string heap a stream like the
36520         others. Removed duplicated code when writing stream info.
36521         Added asserts to catch possible buffer overflows. Set the sorted map
36522         for tables that need sorting. Added some documentation.
36523
36524 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
36525
36526         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
36527         for interned strings and vtables.
36528
36529 2002-03-24  Martin Baulig  <martin@gnome.org>
36530
36531         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
36532         it in the array since it was created with g_slist_prepend().
36533
36534 2002-03-24  Martin Baulig  <martin@gnome.org>
36535
36536         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
36537         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
36538         (mono_debug_method_from_token): Renamed to
36539         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
36540         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
36541
36542         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
36543         relocation types.
36544
36545         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
36546
36547 2002-03-24  Martin Baulig  <martin@gnome.org>
36548
36549         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
36550         (mono_debug_method_from_token): New func.
36551
36552         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
36553         New interncall, calls mono_debug_local_type_from_signature().
36554         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
36555         calls mono_debug_method_from_token().
36556
36557 2002-03-23  Martin Baulig  <martin@gnome.org>
36558
36559         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
36560         specifies the number of bytes to be converted, not the array size.
36561         Return the number of chars, not the number of bytes.
36562         (ves_icall_iconv_get_chars): The `byteCount' argument
36563         specifies the number of bytes to be converted, not the array size.
36564
36565 2002-03-23  Martin Baulig  <martin@gnome.org>
36566
36567         * reflection.h (MonoReflectionSigHelper): New type.
36568
36569         * reflection.c (mono_reflection_sighelper_get_signature_local),
36570         (mono_reflection_sighelper_get_signature_local): New functions.
36571
36572         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
36573         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
36574         interncalls.
36575
36576 2002-03-23  Martin Baulig  <martin@gnome.org>
36577
36578         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
36579         is_writeable is set.
36580         (mono_raw_buffer_update): New function to write the modified map
36581         back to disk.
36582
36583         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
36584
36585         * debug-symfile.c (mono_debug_update_symbol_file): Call
36586         mono_raw_buffer_update() when done writing.
36587
36588 2002-03-23  Martin Baulig  <martin@gnome.org>
36589
36590         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
36591
36592         * debug-symfile.c: Added support for arguments and local variables.
36593
36594 2002-03-23  Dick Porter  <dick@ximian.com>
36595
36596         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
36597         protected by ifdefs, hence breaking the w32 build.
36598
36599 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36600
36601         * object.c: implement is_interned() the right way.
36602
36603 2002-03-21  Martin Baulig  <martin@gnome.org>
36604
36605         * debug-symfile.[ch]: New files to handle debugging information
36606         files. There's also support to dynamically update these symbol
36607         files to include machine dependent information.
36608
36609 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
36610
36611         * threads.c (mono_thread_create): new function to create thread
36612         from C
36613
36614 2002-03-20  Martin Baulig  <martin@gnome.org>
36615
36616         * icall.c (ves_icall_InternalInvoke): Create a new object if the
36617         method is a constructor.
36618         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
36619         points to ves_icall_InternalInvoke().
36620
36621 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
36622
36623         * file-io.c: Flush shouldn't throw exceptions.
36624
36625 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
36626
36627         * file-io.c: FileStream flush support; FileSetLength now
36628         restores file pointer.
36629
36630 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36631
36632         * class.c: set image for pointer classes.
36633
36634 2002/03/19  Nick Drochak <ndrochak@gol.com>
36635
36636         * sysmath.c: Forgot one.
36637
36638 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
36639
36640         * sysmath.c: Avoid redefining existing names.
36641
36642 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
36643
36644         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
36645         handled by runtime as icall rather than dllimport from libm.so
36646         * file-io.c, file-io.h: fixed handle argument type.
36647
36648 2002-03-18  Dick Porter  <dick@ximian.com>
36649
36650         * reflection.c (mono_image_get_type_info): rename interface to
36651         iface, because of "#define interface struct" on windows.
36652
36653 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
36654
36655         * class.c, class.h: rename and export mono_ptr_class_get().
36656         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
36657         * reflection.c, reflection.h, icall.c: better/saner type name
36658         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
36659         method signatures.
36660
36661 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
36662
36663         * class.c (mono_class_init): removed hardcoded GHC_SLOT
36664
36665         * icall.c (ves_icall_InternalInvoke): impl.
36666
36667 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36668
36669         * reflection.c: output the interface map table, too.
36670
36671 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36672
36673         * class.c (class_compute_field_layout): separate computation of 
36674         static field layout
36675
36676 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
36677
36678         * icall.c: added System.Buffer support.
36679         * file-io.c: moved file icalls from PAL to FileStream.
36680
36681 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36682
36683         * icall.c (ves_icall_System_Object_GetHashCode): impl.
36684
36685 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
36686
36687         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
36688
36689 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36690
36691         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
36692
36693 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36694
36695         * debug-helpers.{c,h}: moved here from monograph some useful functions
36696         to locate a method by name/signature in a class or image. Included
36697         also a small and flexible IL disassembler.
36698
36699 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36700
36701         * reflection.c: fixup tokens in methods with small header size, too.
36702
36703 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
36704
36705         * object.c (mono_string_to_utf8): remove assert(!error), instead
36706         print a warning. 
36707
36708 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
36709
36710         * icall.c: update to the new mono_Array_class_get interface.
36711
36712 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36713
36714         * appdomain.c, object.c: Boehm-GC enable.
36715         * icall.c: make get_data_chunk() support split data requests.
36716         Ensure a class is initialized in more cases. Return only the first
36717         property found in GetProperties() or the compiler gets confused. 
36718         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
36719         * reflection.h, reflection.c: add fixup mechanism for field and method
36720         tokens. Initialize assembly->typeref in a single place. Output
36721         properties after events. Support custom attributes for events, too.
36722         Typo fix for paramter custom attrs.
36723
36724 2002-03-07  Martin Baulig  <martin@gnome.org>
36725
36726         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
36727
36728 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
36729
36730         * class.c (mono_array_class_get): fix. for multi. dim. arrays
36731
36732 2002-03-06  Martin Baulig  <martin@gnome.org>
36733
36734         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
36735         non-zero lower bounds. See testcases #F10-#F13.
36736
36737 2002-03-05  Martin Baulig  <martin@gnome.org>
36738
36739         * exception.c (mono_get_exception_argument_out_of_range): New exception.
36740
36741         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
36742         ves_icall_System_Array_GetValue(), only calculate the absolute array position
36743         here.
36744         (ves_icall_System_Array_SetValue): Likewise.
36745         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
36746         as argument and does the actual work. This function is used when copying a
36747         multi-dimensional array.
36748         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
36749         now do all the widening conversions of value types.
36750         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
36751
36752 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36753
36754         * class.c: remove some magic numbers and use the smbolic names,
36755         instead. Added init_events() to load event info at class init time.
36756         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
36757         and mono_metadata_methods_from_event().
36758         * reflection.h, reflection.c: added support for writing out the evnets
36759         related information.
36760
36761 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36762
36763         * reflection.h, icall.c: use a different method (GetInterfaces)
36764         to gather interface info and add isbyref, isprimitive and
36765         ispointer to the ves_icall_get_type_info() return value.
36766
36767 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36768
36769         * class.h: stared adding support for events.
36770         * icall.c: split find_members implementation. Added debug icall to get
36771         the address of an object.
36772         * reflection.c: handle TypeBuilders in mono_type_get_object().
36773
36774 2002-03-01  Martin Baulig  <martin@gnome.org>
36775
36776         * icall.c (ves_icall_System_Array_GetLength): This must throw an
36777         ArgumentOutOfRangeException(), not an ArgumentException().
36778         (ves_icall_System_Array_GetLowerBound): Likewise.
36779         (ves_icall_System_Array_GetValue): Improved argument checking.
36780         (ves_icall_System_Array_SetValue): Improved argument checking.
36781
36782 2002-03-01  Martin Baulig  <martin@gnome.org>
36783
36784         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
36785         called with invalid arguments rather than just dying with g_assert().
36786         (ves_icall_System_Array_SetValue): Likewise.
36787         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
36788         raise a NotImplementedException instead.
36789         (ves_icall_System_Array_GetLength): Added argument checking.
36790         (ves_icall_System_Array_GetLowerBound): Added argument checking.
36791
36792 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
36793
36794         * object.h (mono_assert): new macros mono_assert and
36795         mono_assert_not_reached
36796
36797 2002-02-28  Martin Baulig  <martin@gnome.org>
36798
36799         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36800         and "System::String::IsInterned" to "System::String::_IsInterned".
36801
36802 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36803
36804         * icall.c: remove hacks for typebuilder. Added icall to create a
36805         modified type from a tybebuilder.
36806         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36807         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36808         to create a backing MonoClass for a TypeBuilder.
36809
36810 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36811
36812         * class.c, class.h: more refactoring of class init.
36813         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36814
36815 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36816
36817         * marshal.c, marshal.h: start of marshaling interface.
36818
36819 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36820
36821         * icall.c: fix order in assembly qualified name icall.
36822
36823 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36824
36825         * class.c: do not free str, since we store it in the hash table.
36826         * reflection.h: add label field to MonoILExceptionInfo.
36827         * reflection.c: handle references to more than one assembly. Handle
36828         case when there isn't a module created in the assembly.
36829
36830 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36831
36832         * class.c: Fix typo. Start refactoring of class init code.
36833
36834 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36835
36836         * appdomain.c: exit with 1 on error.
36837         * class.c: we already have the name in MonoClassField.
36838         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36839         MonoStreamHeader instead of an offset of image->raw_metadata.
36840
36841 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36842
36843         * appdomain.c (mono_init): Be even more descriptive about the error.
36844
36845 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36846
36847         * appdomain.c: give the user an informative message when corlib can't
36848         be loaded.
36849
36850 2002-02-26  Martin Baulig  <martin@gnome.org>
36851
36852         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36853         New icall to get the time zone data.
36854
36855 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36856
36857         * reflection.c: set virtual and raw size of section correctly.
36858         * threads.c: transfer domain information to newly created threads.
36859
36860 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36861
36862         * class.c: when instancing a class in a domain, load the default
36863         vaules for static fields from the constant table. Fix System.Enum to
36864         not be an enum.
36865         * icall.c: implement Object::GetType() internalcall. Implemented
36866         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36867         Fixed checking of binding flags in find_members().
36868         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36869         * reflection.c: handle enumerations when writing to the constant
36870         table. Use a different object cache for types.
36871
36872
36873 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36874
36875         * object.c (mono_object_isinst): fix for arrays
36876
36877         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36878
36879 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36880
36881         * object.c: don't use mprotect ()  and fix intern pool hash table
36882         lookup for big endian systems.
36883
36884 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36885
36886         * icall.c: change type_is_subtype_of () signature.
36887
36888 2002-02-21  Mark Crichton  <crichton@gimp.org>
36889
36890         * rand.c, rand.h: Added random number generator for
36891         System.Security.Cryptography classes.
36892
36893         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36894
36895         * icall.c: Added System.Security.Cryptography calls.
36896
36897 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36898
36899         * class.c, icall.c, metadata.c: better support for pointer types.
36900         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36901         * reflection.c: Add support for getting custom attrs for properties
36902         and simplify some code.
36903
36904 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36905
36906         * icall.c: change getToken () and add custom attribute GetBlob()helper
36907         method.
36908         * reflection.h: add custom attrs array to the reflection builder structures.
36909         * reflection.c: encode and emit custom attributes for all the relevant
36910         reflection objects. Cache fieldref and methodref tokens. Change
36911         mono_image_create_token() interface to take a MonoDynamicAssembly.
36912         More complete custom attributes decoder. Load custom attributes for
36913         Assembly, Field, Method and Constructor objects, too. Make the
36914         returned array an Attribute[] one, not object[]. Added
36915         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36916         custom attribute constructor.
36917
36918 2002-02-20  Dick Porter  <dick@ximian.com>
36919
36920         * icall.c:
36921         * rawbuffer.c:
36922         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36923         problem code out for now).
36924
36925 2002-02-19  Radek Doulik  <rodo@ximian.com>
36926
36927         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36928
36929 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36930
36931         * icall.c: register the GetCustomAttributes method.
36932         * object.c, object.h: add mono_string_new_len ().
36933         * reflection.h, reflection.c: added mono_runtime_invoke(),
36934         mono_install_runtime_invoke(). Added
36935         mono_reflection_get_custom_attrs () to load custom attributes and
36936         create the attribute objects.
36937
36938 2002-02-19  Dick Porter  <dick@ximian.com>
36939         * threads-dummy-types.c:
36940         * threads-dummy-types.h:
36941         * threads-dummy.c:
36942         * threads-dummy.h:
36943         * threads-pthread-types.c:
36944         * threads-pthread-types.h:
36945         * threads-pthread.c:
36946         * threads-pthread.h:  Deleted obsolete files
36947
36948 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36949
36950         * class.c (mono_class_vtable): runtime init the class when we
36951         allocate static class data.
36952
36953         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36954
36955         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36956         and String - but we will need generic marshalling support in the
36957         future. 
36958         (mono_init): set the domain name in a ms compatible way
36959
36960         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36961         String[].
36962
36963 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36964
36965         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36966         for sizes
36967
36968         * appdomain.c (mono_domain_unload): impl.
36969
36970 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36971
36972         * appdomain.c, object.c: fix intern pool implementation.
36973         * class.c: fix alignment code.
36974
36975 2002-02-16  Radek Doulik  <rodo@ximian.com>
36976
36977         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36978         and s2 > s1, just copy lower bytes to be compatible with little
36979         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36980         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36981
36982         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36983         force big_endian to be 1 for big endian machines 
36984         (ves_icall_iconv_new_decoder): ditto
36985
36986 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36987
36988         * socket-io.c (convert_sockopt_level_and_name): If the system
36989         doesn't define SOL_IP or SOL_TCP, get them by hand using
36990         getprotobyname() and caching the values (because this could be a
36991         slow operation).
36992         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36993         Use the appropriate struct when the system does support it. Ie,
36994         not all systems have struct ip_mreqn so use struct ip_mreq when
36995         appropriate.
36996
36997 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36998
36999         * reflection.c: handle finally clauses.
37000
37001 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
37002
37003         * socket-io.c: use g_snprintf() instead of snprintf.
37004
37005 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
37006
37007         * reflection.c (mono_param_get_objects): Cast second argument to
37008         mono_method_get_param_names to a const char** to silence the
37009         compiler warning.
37010
37011         * appdomain.c (mono_domain_assembly_open): Put parens around the
37012         truth statement in the for-loop.
37013
37014         * unicode.c (iconv_convert): Got rid of a compiler warning about
37015         int i being unused when the system has a new iconv.
37016         (iconv_get_length): Same.
37017
37018         * image.c (load_class_names): Cast the second argument to
37019         g_hash_table_insert() to char* to hush compiler warnings about the
37020         arg being a const.
37021         (mono_image_open): Same here.
37022
37023         * socket-io.c: Don't conditionally include sys/filio.h or
37024         sys/sockio.h here anymore since we now get them from
37025         io-layer/io-layer.h
37026         (inet_pton): If the system doesn't support inet_aton, implement
37027         using inet_addr and also #define INADDR_NONE if it isn't defined
37028         by the system.
37029
37030 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
37031
37032         * metadata.c, metadata.h: added function to get packing and size info
37033         of a typedef.
37034         * reflection.h, reflection.c: handle field RVA data. Save info about
37035         the table layout if needed. Assign typedef indexes to all the types
37036         before dumping the info about them to avoid forward reference problems.
37037
37038 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
37039
37040         * socket-io.c (convert_sockopt_level_and_name): ifdef
37041         SO_ACCEPTCONN because it is not defined on my system (old debian)
37042
37043 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
37044
37045         * opcode.c: use stddef.h to get NULL.
37046
37047 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
37048
37049         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
37050         for FIONBIO, FIONREAD and SIOCATMARK.
37051         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
37052         define INADDR_NONE and besides, inet_addr() is deprecated and
37053         should not be used. Use inet_pton() instead - it also has the
37054         added bonus that it can easily handle IPv6 addresses as well.
37055         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
37056
37057 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
37058
37059         * decimal.c: remove _MSC_VER conditional.
37060
37061 2002-02-13  Dick Porter  <dick@ximian.com>
37062
37063         * socket-io.c: 
37064         * icall.c: Internal calls for Blocking, Select, Shutdown,
37065         GetSocketOption and SetSocketOption
37066
37067 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
37068
37069         * assembly.cs: better resolver: use it instead of some kludgy
37070         code.
37071
37072 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
37073
37074         * reflection.c: the best way to speed-up the compiler is to avoid
37075         infinite loops.
37076
37077 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
37078
37079         * class.c (mono_class_vtable): changed the object layout
37080         (obj->vtable->class). 
37081         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
37082
37083 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
37084
37085         * assembly.c: look for assemblies in the assembly dir, too.
37086
37087 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
37088
37089         * class.c: fix thinko in mono_class_from_type().
37090
37091 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
37092
37093         * exception.h, exception.c: added TypeLoadException.
37094         * object.h, object.c: added mono_array_clone ().
37095         * icall.c: handle throwOnError in AssemblyGetType().
37096         Added Array.Clone().
37097         * opcode.h, opcode.c: use a single value for the opcode val.
37098         Compile fix for non-gcc compilers.
37099
37100 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
37101
37102         * opcodes.c, opcodes.h: export interesting info about opcodes.
37103
37104 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
37105
37106         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
37107         icalls. 
37108
37109         * class.c (class_compute_field_layout): set element_class for enums
37110         (mono_class_create_from_typedef): set element_class for normal classes
37111
37112         * icall.c (ves_icall_System_Enum_get_value): impl.
37113
37114         * class.c (mono_class_create_from_typedef): do not set valuetype
37115         flag for System.ValueType and System.Enum
37116
37117 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
37118
37119         * unicode.c (iconv_convert): fix big endian problem.
37120
37121 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
37122
37123         * class.c: add asserts if we are ever going to scribble over memory.
37124         * socket-io.c: not all systems have AF_IRDA defined.
37125
37126 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
37127
37128         * class.c (class_compute_field_layout): do not consider static
37129         fields to compute alignment
37130
37131 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
37132
37133         * appdomain.c (mono_appdomain_get): impl.
37134         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
37135
37136 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
37137
37138         * icall.c: ignore "file://" prefix when loading an assembly.
37139
37140 2002-01-23  Dick Porter  <dick@ximian.com>
37141
37142         * socket-io.c:
37143         * icall.c:
37144         * Makefile.am: Added socket support
37145
37146 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
37147
37148         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
37149         code back.  This should return the assemblies that are loaded by
37150         the runtime on behalf of an application domain. 
37151
37152         The current implementation is still broken, it just returns every
37153         assembly loaded, but until we get real applications domain this
37154         will do.
37155
37156 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
37157
37158         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
37159         AppDomain object.
37160
37161 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
37162
37163         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
37164         the mono_class_from_name lookup.
37165         (ves_icall_get_parameter_info): ditto.
37166         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
37167         method.
37168         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
37169
37170 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
37171
37172         * class.c: load also nested classes on class init.
37173         System.ValueType instance methods gets passed boxed
37174         values, unless methods in derived classed that get a pointer to the
37175         data.
37176         * icall.c: use better name parsing code in GetType().
37177         * image.c, image.h: add mono_image_loaded ().
37178         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
37179         * reflection.c, reflection.h: added mono_reflection_parse_type().
37180
37181 2002-01-22  Veronica De Santis <veron78@interfree.it>
37182
37183         * icall.c : Added mapping of internal calls for Manual and Auto reset events
37184         * threads.c : Added the implementation of internal calls for events
37185         * threads.h : Added prototypes of internal calls for events
37186         
37187 2002-01-21  Radek Doulik  <rodo@ximian.com>
37188
37189         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
37190
37191 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
37192
37193         * class.c (mono_class_init): set min_align to 1 (instead of 0)
37194         (mono_class_value_size): use min_align
37195
37196 2002-01-20  Dick Porter  <dick@ximian.com>
37197
37198         * threads.h:
37199         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
37200         so it compiles on w32.
37201
37202 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
37203
37204         * metadata.c (mono_type_stack_size): impl.
37205
37206         * class.c (mono_class_get_field): impl. memberref token
37207
37208 2002-01-16 Veronica De Santis <veron78@@interfree.it>
37209
37210         * icall.h : Added the internal calls mapping for CreateMutex_internal
37211                     and ReleaseMutex_internal.
37212         * threads.h : Added the prototype of mutexes internal calls.
37213         * threads.c : Added the implementations of mutexes internal calls.
37214
37215 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
37216
37217         * metaparse.h: removed unused file.
37218         * reflection.c, reflection.h: added stream_data_align () function 
37219         to align data in streams and keep stream aligned. Add support for
37220         exception support in method headers.
37221
37222 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
37223
37224         * unicode.c: make iconv_convert () return the number of bytess written
37225         in the output buffer.
37226
37227 2002-01-15  Dick Porter  <dick@ximian.com>
37228         * threads.c: Make the runtime's idea of infinite timeouts coincide
37229         with the class library's
37230
37231         Fix a particularly egregious bug in mono_thread_cleanup(). That
37232         code was so utterly bogus it must have been written on a Monday.
37233
37234 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
37235
37236         * reflection.h: add subtypes field to TypeBuilder.
37237         * reflection.c: encode constants for literal fields.
37238         Handle subtypes. Fix user string token (and add a zero byte)
37239         at the end.
37240         
37241 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
37242
37243         * class.c (mono_class_init): bug fix: assign slot numbers for
37244         abstract methods.
37245
37246 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
37247
37248         * reflection.c: don't try to output a code RVA for abstract methods.
37249         Small fixes for method header format. Output parameter info to the
37250         ParamDef table. Save method overriding info to MethodImpl table.
37251         Fix property support. Allow typedef.extends to be a type in the
37252         building assembly.
37253         * verify.c: fix off-by-one error.
37254
37255 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
37256
37257         * class.c: fix mono_class_from_mono_type () for szarray types.
37258         Remove unused cache check in mono_class_from_type_spec().
37259         * icall.c: *type_from_name () functions handle simple arrays and byref.
37260         * reflection.c: handle byref and szarray types. Handle methods without
37261         body (gets P/Invoke compilation working). Handle types and fields in
37262         get_token ().
37263         * reflection.h: add rank to MonoTypeInfo.
37264
37265 2002-01-10  Dick Porter  <dick@ximian.com>
37266
37267         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
37268         internal calls
37269
37270 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
37271
37272         * icall.c: initialize class in type_from_handle ().
37273         Loop also in parent classes for get_method ().
37274         * reflection.c: properly encode class and valuetype types.
37275         Start on encoding TypeBuilder types. Handle fieldrefs.
37276         Use correct length when registering a user string.
37277         Handle ConstructorBuilder and MonoMethod in get_token ().
37278         Make mono_type_get_object () aware of cached types.
37279         * object.c: back out change to mono_string_new ().
37280
37281 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
37282         * object.c: mono_string_new should return a NULL when the string 
37283         passed in is NULL -- not try to deference it.
37284         
37285 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
37286
37287         * icall.c: hack to make IsSubType work for TypeBuilders.
37288         * reflection.c: emit constructors before methods.
37289         Retrieve param names in mono_param_get_objects().
37290
37291 2002/01/05  Nick Drochak  <ndrochak@gol.com>
37292
37293         * Makefile.am: fix list of headers and sources so automake 1.5
37294         doesn't complain. Removed \# at end of list.
37295
37296 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
37297
37298         * reflection.c: get token for a method ref. Set return type of
37299         constructor to void.
37300         * loader.c: debug message.
37301         * class.c: typo fix.
37302
37303 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
37304
37305         * icall.c: fix array init with rank > 1. FindMembers
37306         loops in parent class as well.
37307         * image.c: do not insert nested types in name cache.
37308         * reflection.c: warning fix.
37309         * reflection.h: add override method (for interface impl).
37310
37311 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
37312
37313         * metadata.c: fix customattr decoding.
37314
37315 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
37316
37317         * rawbuffer.cs: Added native Win32 implementation, avoids using
37318         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
37319
37320 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
37321
37322         * class.c: make the low-level routines handle the cache.
37323
37324 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
37325
37326         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
37327
37328 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
37329
37330         * class.c: fix mono_array_element_size() for objects.
37331         * class.h, class.c: add properties to MonoClass and load them
37332         at init time.
37333         * icall.c: check with isinst() when assigning a value to an array
37334         instead of requiring the classes to match exactly.
37335         Implemented icall for System.Type::GetType().
37336         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
37337         enums. Handle bindingflags when looking for methods and fields.
37338         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
37339         and mono_metadata_methods_from_property().
37340         * reflection.h, reflection.c: added structures for propreties,
37341         parameters and enums. Implemented mono_property_get_object() and
37342         mono_param_get_objects().
37343
37344 2001-12-18  Dick Porter  <dick@ximian.com>
37345
37346         * file-io.c: Use mono_string_to_utf16() instead of
37347         mono_string_chars()
37348
37349         * object.c: Added mono_string_to_utf16(), which copies the non
37350         NULL-terminated MonoString into a new double-null-terminated
37351         buffer.
37352
37353 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
37354
37355         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
37356
37357 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
37358
37359         * file-io.c: raise exceptions if handle is invalid.
37360
37361 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
37362
37363         * assembly.c: yet another check for mscorlib.
37364         * class.c, class.h: load nesting info for classes.
37365         * icall.c: many new functions to support the Reflection classes.
37366         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
37367         * reflection.h, reflection.c: mono_image_create_token(),
37368         mono_assembly_get_object(), mono_type_get_object(),
37369         mono_method_get_object(), mono_field_get_object(): methods to return
37370         objects that parallel the C representation of assemblies, types,
37371         methods, fields.
37372
37373 2001-12-11  Dick Porter  <dick@ximian.com>
37374
37375         * icall.c:
37376         * file-io.c: Internal calls for file IO.
37377
37378 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
37379
37380         * tabledefs.h: missing FileAttributes.
37381         * verify.h, verify.c: use is_valid_string () to simplify and check for
37382         valid strings more correctly. Fix warnings and speeling.
37383         Check more tables: Filed, File, ModuleRef, StandAloneSig.
37384         Check code: branches, maxstack, method calls.
37385
37386 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
37387
37388         * object.c (mono_object_allocate): removed static, so that the jit
37389         can allocate value types.
37390
37391         * icall.c (ves_icall_System_DateTime_GetNow): impl.
37392
37393 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37394
37395         * class.c: init enum types right away and register the
37396         token->MonoClass map in mono_class_create_from_typedef ().
37397         * verify.h, verify.c: first cut of the verifier.
37398         * pedump.c: add --verify switch to verify metadata tables.
37399         * tabledefs.h: add some missing enums.
37400
37401 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
37402
37403         * class.c (mono_install_runtime_class_init): impl.
37404         (mono_class_init): renamed mono_class_metadata_init to
37405         mono_class_init, also removed the metadata_inited flag
37406
37407         * object.c (mono_object_isinst): use faster algorithm
37408
37409 2001-11-30  Radek Doulik  <rodo@ximian.com>
37410
37411         * mono-endian.h: reverted last change
37412         added function prototypes
37413
37414         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
37415         add mono-endian.c back
37416
37417         * mono-endian.c: returned back, as Paolo pointed out, it's needed
37418         for unaligned access, I've mistaked it with endianess. I am
37419         sorry.
37420         (mono_read16): fix reverted endianess
37421         (mono_read64): ditto
37422         (mono_read32): ditto
37423
37424 2001-11-30  Dick Porter  <dick@ximian.com>
37425
37426         * exception.c: Implement mono_exception_from_name()
37427
37428 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37429
37430         * metadata.h, metadata.c: remove params_size and locals_size and their
37431         calculation from the metadata code: they are only usefult to the
37432         interp.
37433
37434 2001-11-29  Radek Doulik  <rodo@ximian.com>
37435
37436         * object.c (mono_ldstr): swap bytes here, it's probably not the
37437         best place, but works for me now, I'll redo it once I know mono
37438         better, also note that I add PROT_WRITE and don't reset back, also
37439         note that it's only affects big endians, so x86 should be OK
37440
37441         * mono-endian.h (read16): use just glib macros for both endians
37442
37443         * mono-endian.c: removed as glib macros are used in in
37444         mono-endian.h so we don't need to care about endianess for read
37445         macros as glib does that for us already
37446
37447 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
37448
37449         * class.h, class.h: take minimum alignment into consideration so
37450         that the fields of a class remain aligned also when in an array.
37451
37452 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37453
37454         * loader.h, loader.c: add mono_method_get_param_names().
37455         * class.c: 0-init class fields.
37456
37457 2001-11-26  Dick Porter  <dick@ximian.com>
37458
37459         * icall.c:
37460         * threads-types.h:
37461         * threads.c: New file that handles System.Threading on all platforms
37462
37463         * object.c: 
37464         * object.h: Remove the synchronisation struct from MonoObject,
37465         replace it with a pointer that gets initialised on demand
37466
37467         * Makefile.am: Replace all the system-specific threading code with
37468         a single file that uses the new wrapper library
37469
37470 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
37471
37472         * class.c, class.h: add mono_install_trampoline() so that the runtime
37473         can register a function to create a trampoline: removes the ugly
37474         requirement that a runtime needed to export arch_create_jit_trampoline.
37475         * object.h, object.c: added mono_install_handler() so that the runtime
37476         can install an handler for exceptions generated in C code (with
37477         mono_raise_exception()). Added C struct for System.Delegate.
37478         * pedump.c: removed arch_create_jit_trampoline.
37479         * reflection.c: some cleanups to allow registering user strings and
37480         later getting a token for methodrefs and fieldrefs before the assembly
37481         is built.
37482         * row-indexes.h: updates and fixes from the new ECMA specs.
37483
37484 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
37485
37486         * class.h, class.c: add enum_basetype field to MonoClass.
37487         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
37488         to get index in the constant table reated to a field, param or
37489         property.
37490         * reflection.h, reflection.c: handle constructors. Set public-key and
37491         version number of the built assembly to 0.
37492         * row-indexes.h: update from new ECMA spec.
37493
37494 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37495
37496         * class.h, class.c: add a max_interface_id to MonoClass.
37497         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
37498         since it's used to do that. Added mono_type_type_from_obj().
37499         Make GetType() return NULL instead of segfaulting if the type was not
37500         found. Handle simple arrays in assQualifiedName.
37501         * object.h: add a struct to represent an Exception.
37502         * reflection.c: output call convention in method signature.
37503         Add code to support P/Invoke methods and fixed offsets for fields.
37504
37505 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
37506
37507         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
37508         the value.
37509         * icall.c: use mono_array_addr instead of array->vector: fixes the
37510         reflection image writing.
37511         * reflection.c: init call convention byte to 0 in method signature.
37512         Encode the property signature. Don't output property-related methods
37513         twice. Really process the properties for a type (don't cast a field to
37514         a property, my mom always told me that).
37515         Fix 64 bit issues in pointer alignment in a different and more
37516         readable way.
37517
37518 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
37519
37520         * loader.h: Removed type class from MonoDefaults, added monotype
37521
37522         * loader.c: Loaded MonoType, removed loading of Type
37523
37524         * icall.c (my_mono_new_object): Now returns a System.MonoType,
37525         and fills in System.Type._impl with a RuntimeTypeHandle rather
37526         than the actual MonoClass *
37527
37528         (ves_icall_type_from_handle): change from type_class to
37529         monotype_class
37530
37531         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
37532         implemented
37533
37534         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
37535         implemented
37536
37537         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
37538
37539         (ves_icall_System_Reflection_Assembly_GetType): implemented
37540
37541         (ves_icall_System_MonoType_assQualifiedName): implemented
37542
37543         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
37544
37545 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
37546
37547         * assembly.c (mono_assembly_open): Implement a cache for the
37548         assemblies. 
37549
37550         (mono_assembly_close): only destroy the assembly when the last
37551         reference is gone.
37552         
37553 2001-11-09  Dick Porter  <dick@ximian.com>
37554
37555         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
37556
37557 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
37558
37559         * class.c (mono_class_metadata_init): bug fix: compute the right slot
37560
37561 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37562
37563         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
37564         from Martin Weindel.
37565         * object.h: add mono_string_chars ().
37566
37567 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
37568
37569         * reflection.c (build_compressed_metadata): Eliminates warnings
37570         and uses 64-bit clean code.
37571
37572         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
37573         (mono_type_equal): Change signature to eliminate warnings.
37574
37575 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37576
37577         * icall.c, loader.c: remove the internalcall array constructors.
37578         Changes to match the new MonoArray structure.
37579         * object.h, object.c: an array object doesn't allocate an extra
37580         vector. Add mono_array_new_full () to create jagged arrays easily.
37581
37582 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37583
37584         * metadata.h, metadata.c: add mono_metadata_field_info () to
37585         retreive all the info about a field from vairous tables.
37586         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
37587         * class.h, class.c: augment MonoClassField with more info.
37588         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
37589         policy and load a field's RVA if needed.
37590
37591 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
37592
37593         * class.c (mono_class_metadata_init): create a trampoline for all
37594         virtual functions instead of actually compiling them.
37595
37596 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
37597
37598         * class.h, class.c: include name in MonoClassField.
37599         * class.c: fix fundamental type of System.Object and System.String.
37600         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
37601         tokens in ldtoken.
37602         * icall.c: remove internalcalls for the Reflection stuff that is now
37603         done in C# code.
37604         * loader.c: mono_field_from_memberref () implementation.
37605         * mono-endian.c: thinko (s/struct/union/g).
37606         * object.c, object.h: make the mono_string_* prototypes actually use
37607         MonoString instead of MonoObject.
37608         * reflection.c, reflection.h: updates for changes in the reflection
37609         code in corlib: we use C structures that map to the actual C# classes.
37610         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
37611         fat method header if needed and use the info from the ILGenerator for
37612         methods. Handle fields in types. Misc fixes.
37613
37614 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
37615
37616         * class.c (mono_class_metadata_init): bug fix: always allocate
37617         space for static class data
37618
37619 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
37620
37621         * class.c (mono_compute_relative_numbering): use relative
37622         numbering to support fast runtime type checks.
37623
37624 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
37625
37626         * class.c (mono_class_create_from_typeref): added debugging output
37627         to print class name when MonoDummy is returned instead of real class
37628
37629 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
37630
37631         * class.c (mono_class_metadata_init): interface offset table now
37632         contains pointers into the vtable - this is more efficient for the jit
37633
37634 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
37635
37636         * class.c (mono_class_metadata_init): use a temporary vtable (the
37637         old algorithm only worked for the interpreter, but not for the jit)
37638
37639 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
37640
37641         * loader.c (method_from_memberref): use mono_class_get to get the
37642         class of an array instead of using System.Array directly.
37643         (mono_get_method): also add MEMBERREF methods to the method cache
37644         which usefull for arrays.
37645
37646 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
37647
37648         * pedump.c (arch_compile_method): added to compute vtable entry
37649
37650         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
37651         number of interfaces.
37652         
37653         * class.h: merged MonoArrayClass into MonoClass
37654
37655         * class.c (mono_class_create_from_typedef): compute the vtable size and
37656         allocate space to include the vtable inside MonoClass
37657         (mono_class_metadata_init): initialize the vtable
37658
37659 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
37660
37661         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
37662         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
37663         * image.c: endian fixes by Laurent Rioux.
37664         * object.h, object.c: rename MonoStringObject to MonoString and
37665         MonoArrayObject to MonoArray. Change some function names to conform to
37666         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
37667         guint16* as first argument, so don't use char*.
37668         Provide macros to do the interesting things on arrays in a portable way.
37669         * threads-pthread.c: updates for the API changes and #include <sched.h>
37670         (required for sched_yield()).
37671         * icall.c: updates for the API changes above.
37672         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
37673         platforms that need them.
37674
37675 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37676
37677         * class.c: set the correct type for all the fundamental
37678         type when loading the class.
37679
37680 2001-10-05  Dick Porter  <dick@ximian.com>
37681
37682         * threads-pthread.c (pthread_mutex_timedlock): Simple
37683         compatibility version for C libraries that lack this call.
37684
37685 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37686
37687         * class.c: MonoTypes stored in MonoClass are stored as
37688         fundamental MonoTypes when the class represents a
37689         fundamental type (System.Int32, ...).
37690         The TypeHandle return by ldtoken is a MonoType*.
37691         * icall.c: ves_icall_get_data_chunk () write out all the
37692         PE/COFF stuff. Implement ves_icall_define_method (),
37693         ves_icall_set_method_body (), ves_icall_type_from_handle ().
37694         * image.c: properly skip unknown streams.
37695         * loader.h, loader.c: add type_class to mono_defaults.
37696         * metadata.c, metadata.h: export compute_size () as
37697         mono_metadata_compute_size () with a better interface.
37698         Typo and C&P fixes.
37699         * pedump.c: don't try to print the entry point RVA if there is no entry point.
37700         * reflection.c, reflection.h: many cleanups, fixes, output method
37701         signatures and headers, typedef and typeref info, compress the metadata
37702         tables, output all the heap streams, cli header etc.
37703         * row-indexes.h: typo fixes.
37704
37705 2001-10-04  Dick Porter  <dick@ximian.com>
37706
37707         * object.h: Add a synchronisation mutex struct to MonoObject
37708
37709         * object.c (mono_new_object): Initialise the object
37710         synchronisation mutexes
37711
37712         * icall.c: System.Threading.Monitor internal calls
37713         
37714         * threads-pthread.h:
37715         * threads-pthread.c: System.Threading.Monitor internal calls
37716
37717         * threads-types.h: New file, includes the system-specific thread
37718         structures
37719         
37720         * threads-pthread-types.h:
37721         * threads-pthread-types.c: New files, handle pthread-specific
37722         synchronisation types
37723
37724         * threads-dummy-types.h: 
37725         * threads-dummy-types.c: New files of dummy support for
37726         thread-specific types
37727
37728         * metadata.c:
37729         * image.c:
37730         * pedump.c: include mono-endian.h not endian.h
37731         
37732         * Makefile.am: More threads files.
37733         Name mono-endian.h not endian.h
37734
37735 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
37736
37737         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
37738         stuff and implement a few more bits.
37739         * icall.c: a field needs to be dereferenced twice. Do not use the same
37740         name for two variables in the same scope.
37741         * image.c, image.h: cleanups.
37742
37743 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
37744
37745         * class.c (mono_class_metadata_init): bug fix: compute the right size
37746
37747 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
37748
37749         * icall.c: implemented some of the Reflection internalcalls.
37750         * image.c, image.h: start writing out the PE/COFF image.
37751         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
37752         that does the reverse than decode_blob_size ().
37753         * object.c: use mono_metadata_encode_value (). Move here
37754         temporary implementation of mono_string_to_utf8 ().
37755         * rawbuffer.c: make malloc_map static.
37756
37757 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37758
37759         * metadata.c: fix type comparison for arrays.
37760         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
37761         Added a couple of new classes to monodefaults.
37762         * icall.c: added a couple of Reflection-related internalcalls.
37763         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
37764         Added a byval_arg MonoType to MonoClass.
37765
37766 2001-09-28  Dick Porter  <dick@ximian.com>
37767
37768         * icall.c:
37769         * threads-pthread.h: 
37770         * threads-pthread.c: Implemented internal calls for
37771         LocalDataStoreSlot operations.  Applied mutexes around all shared
37772         data.  Reworked the thread creation and Start() operations to
37773         avoid a race condition.
37774         
37775         * threads-dummy.h:
37776         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
37777
37778 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
37779
37780         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
37781
37782 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
37783
37784         * class.c, loader.c: warn and return NULL instead of erroring out.
37785         * icall.c: added System.AppDomain::getCurDomain().
37786         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
37787
37788 2001-09-25  Dick Porter  <dick@ximian.com>
37789
37790         * threads-pthread.h:
37791         * threads-pthread.c: Implemented timed thread joining and added
37792         System.Threading.Thread::Join_internal internal call
37793
37794         * icall.c: Added System.Threading.Thread::Join_internal internal call
37795
37796         * threads-dummy.h:
37797         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37798
37799 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37800
37801         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37802         mono_string_intern () to implement the semantics of the ldstr opcode
37803         and the interning of System.Strings.
37804         * icall.c: provide hooks to make String::IsIntern and String::Intern
37805         internalcalls.
37806
37807 2001-09-23  Dick Porter  <dick@ximian.com>
37808
37809         * threads-dummy.c: 
37810         * threads-dummy.h: New files of dummy threading routines
37811
37812         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37813         support code based on system specifics
37814
37815         Rename PTHREAD_LIBS to THREAD_LIBS
37816         
37817 2001-09-23  Dick Porter  <dick@ximian.com>
37818
37819         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37820         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37821         internal calls.
37822         (mono_thread_init): Set up a Thread object instance to return when
37823         the main thread calls Thread.CurrentThread
37824         (mono_thread_cleanup): Wait for all subthreads to exit
37825
37826         * icall.c: New internal calls for System.Threading.Thread::Sleep
37827         (including Schedule) and CurrentThread
37828
37829         * threads.h: New file, to insulate thread-specific stuff from the
37830         rest of the code
37831
37832 2001-09-21  Dick Porter  <dick@ximian.com>
37833
37834         * threads-pthread.h: 
37835         * threads-pthread.c: New file, for handling pthreads-style
37836         threading support.  Start() now starts a new thread and executes
37837         the ThreadStart delegate instance.
37838
37839         * icall.c: Added the internalcall for
37840         System.Threading.Thread::Start_internal
37841
37842         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37843
37844 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37845
37846         * loader.c: work around the different signatures for delegates
37847         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37848
37849 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37850
37851         * class.h, class.c: add mono_class_get_field_from_name ().
37852         * *: Fix C comments and other ANSI C issues.
37853
37854 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37855
37856         * endian.h, assembly.c: fix some endianness issues.
37857
37858 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37859
37860         * loader.h, load.c: add delegate_class to mono_defaults.
37861         Handle runtime provided methods in mono_get_method ().
37862
37863 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37864
37865         * loader.c (mono_get_method): use pinvoke for internal call
37866
37867         * icall.c: use pinvoke for internal call
37868
37869         * loader.c (method_from_memberref): set the method name
37870
37871 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37872
37873         * metadata.c: help the compiler generate better code for
37874         mono_class_from_mono_type ().
37875
37876 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37877
37878         * class.c (mono_class_metadata_init): delayed computing of the
37879         class size to mono_class_metadata_init ()
37880
37881 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37882
37883         * class.c, class.h: add an interfaces member to MonoClass.
37884         * image.c, image.h: add assembly_name field to MonoImage
37885         from the assembly table.
37886         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37887
37888 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37889
37890         * class.c: Handle Array in mono_class_from_mono_type ().
37891         * metadata.c, pedump.c: some endian fixes.
37892
37893 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37894
37895         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37896         * metadata.c: fix small problem introduced with the latest commit.
37897
37898 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37899
37900         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37901         We don't need a MonoMetadata pointer anymore to compare signatures in
37902         mono_metadata_signature_equal (), update callers.
37903         Reduced memory usage an number of allocations for MonoMethodHeader and
37904         MonoMethodSignature.
37905
37906 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37907
37908         * metadata.c: added compare for szarray.
37909
37910 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37911
37912         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37913         and add a couple more types to it and mono_defaults. Give an hint on
37914         classes that need implementing in our corlib and are referenced
37915         in mscorlib.
37916
37917 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37918
37919         * class.h, class.c: keep track if a class is also an Enum.
37920         * loader.c: Implement a couple more types for use in libffi
37921         marshalling. Gives better diagnostics when failing to dlopen
37922         a library. Set method->klass for P/Invoke methods, too.
37923
37924 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37925
37926         * class.c, class.h: add a MonoType this_arg to MonoClass that
37927         represents a pointer to an object of the class' type that
37928         can be used by the interpreter and later the type cache.
37929         Add best guess alignment info for valuetype objects.
37930
37931 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37932
37933         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37934         into MonoType: one less level of indirection and allocation and
37935         simplifies quite a bit of code. Added cache for MonoTypes that are
37936         used frequently, so that we don't need to allocate them all the time.
37937
37938 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37939
37940         * class.c (mono_class_create_from_typedef): System.Enum is also a
37941         value type, although it does not derive from System.ValueType
37942         (maybe a bug in the ms compiler?)
37943
37944         * metadata.c (mono_type_size): return the right size for value types
37945
37946         * loader.c (mono_get_method): only initialize method header if not abstract
37947
37948         * class.c (mono_class_from_mono_type): use mono_default values. 
37949
37950 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37951
37952         * *: use MonoClass pointers instead of <type_tokens>
37953         
37954         * class.h: new flag: metadata_inited.
37955
37956         * class.c (mono_class_metadata_init): impl.
37957         (mono_class_instance_size): impl.
37958         (mono_class_data_size): impl.
37959
37960 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37961
37962         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37963         MonoClass now has the name and name_space fields. 
37964         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37965         mono_get_method () takes and optional MonoClass as argument.
37966         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37967         instead that takes advantage of a map from class names to typedef
37968         tokens in MonoImage.
37969
37970 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37971
37972         * metadata.c: zero is not a valid alignment boundary.
37973         Merge MONO_TYPE_VOID in default decoding code.
37974
37975 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37976
37977         * image.h: merged MonoMetadata into MonoImage
37978
37979         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37980         identify the type of elements.
37981
37982 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37983
37984         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37985         * cil-coff.h: split MonoMSDOSHeader and add size info.
37986         * image.c: add some consistency checks.
37987         * metadata.c: fix row size computation: one programmer
37988         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37989         add explanation for the locator routine.
37990         Fix decoding of size in method header.
37991         
37992 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37993
37994         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37995         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37996         function from gnome-libs.  This uses the right path separator
37997         based on the OS, and also works around a bug in some systems where
37998         a double slash is not allowed. 
37999         (default_assembly_name_resolver): Use g_concat_dir_and_file
38000         (mono_assembly_open): ditto.
38001
38002 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
38003
38004         * metadata.c (mono_metadata_signature_equal): impl.
38005
38006         * *: void is now a realy MonoType (instead of using NULL)
38007         
38008         * metadata.c (do_mono_metadata_parse_type): use
38009         mono_metadata_parse_type to parse void value.
38010
38011 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
38012
38013         * metadata.c, metadata.h: in the signature and method header store
38014         only the space required for holding the loca vars and incoming arguments.
38015
38016 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
38017
38018         * metadata.c (do_mono_metadata_parse_type): treat void like any
38019         other type (instead of assigning NULL);
38020
38021 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
38022
38023         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
38024
38025 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
38026
38027         * image.c (do_mono_image_open): added a cache for arrays.
38028
38029 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
38030
38031         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
38032         decode a single column from a row in a metadata table and changes
38033         to take advantage of it in the typedef locator (gives a nice speed up).
38034         Store offset info for function params.
38035
38036 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
38037
38038         * image.h (MONO_IMAGE_IS_CORLIB): removed 
38039
38040 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
38041
38042         * assembly.c: how could mono_assembly_close () had ever worked?
38043         * metadata.c, metadata.h: provide offset info for local vars.
38044         Implement mono_type_size () to take care of alignment as well
38045         as size (it was mono_field_type_size in cli/class.c before).
38046
38047 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
38048
38049         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
38050
38051         * assembly.h (CORLIB_NAME): set to corlib.dll
38052
38053         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
38054
38055 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
38056
38057         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
38058         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
38059         tokentype.h: massive namespace cleanup.
38060
38061 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
38062
38063         * metadata.h, metadata.c: decode exception clauses when parsing method header.
38064
38065 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
38066
38067         * metadata.c (mono_metadata_free_type): added check for type !=
38068         NULL (void) before calling mono_metadata_free_type()
38069
38070 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
38071
38072         * metadata.h, row_indexes.h: added header with enumerations to use
38073         to index in the columns from tables in metadata and to decode coded
38074         tokens: we should start using this instead of embedding magic numbers
38075         all over the code.
38076
38077 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
38078
38079         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
38080         Move metadata_t info from cli_image_info_t to MonoImage, where
38081         it's easily accessible. Changed all the uses accordingly.
38082         Added the method and class caches to MonoImage.
38083         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
38084         and mono_metadata_decode_value () signature to be more consistent
38085         with the other parse functions (and simplify code). Taken advantage
38086         of zero-length array allocation with GCC. Removed reduntant (and
38087         wrong) MonoFieldType struct and use MonoParam instead. Changed
38088         mono_metadata_parse_field_type () to use common code for parsing.
38089         Added mono_metadata_typedef_from_field () and
38090         mono_metadata_typedef_from_method () to lookup a typedef index from a
38091         field or method token.
38092         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
38093
38094 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
38095
38096         * metadata.c (mono_metadata_parse_field_type): Implement. 
38097         (do_mono_metadata_parse_type): Split engine from
38098         mono_metadata_parse_type, so that we can create smaller structures
38099         for things that just have one pointer to the MonoType (look at
38100         the MonoFieldType)
38101
38102 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
38103
38104         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
38105         as Jan Gray found out, it is incorrect. 
38106
38107 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
38108
38109         * assembly.c: Implement asssembly loading.  This loads an image
38110         and loads all the referenced assemblies.  Come to think of it, we
38111         could always do lazy loading of the assemblies. 
38112
38113         * image.c (mono_image_open): Keep loaded images in a hashtable.
38114
38115         * image.h (MonoImage): Add reference count.
38116
38117 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
38118
38119         * assembly.c (mono_assembly_open): Keep track of the file name in
38120         case the assembly has no ASSEMBLY table.
38121
38122         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
38123         from get.c here.
38124
38125 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
38126
38127         * metadata.c, metadata.h: decode local vars in method header
38128         parse function. Change callers accordingly.
38129
38130 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
38131
38132         * metadata.h, cil-coff.h: protect against multiple inclusion.
38133         Added some new structures to hold information decoded from metadata:
38134         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
38135         and relevant decoding/free functions.
38136         * metadata.c: implement decoding functions. Add warning for out of bounds
38137         index in mono_metadata_locate(). Implement mono_get_method () to retreive
38138         all the info about a method signature and invocation. Remove check on
38139         uninitialized local var in parse_mh() and fix memory leak.
38140
38141 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
38142
38143         * metadata.h: More macros.
38144
38145         * tokentype.h: New file.
38146
38147 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
38148
38149         * assembly.c: added a consistency check and initialize
38150         some structures with g_new0().
38151         * metadata.c: fixed a couple more bugs in table size computation
38152         and add other checks for out-of bound access to metadata.
38153
38154 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
38155
38156         * metatada.c: fix bugs computing table sizes. Spew a
38157         warning when index in string heap is out of bounds.
38158
38159 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
38160
38161         * metadata.h: Add a couple of macros to manipulate tokens. 
38162
38163 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
38164
38165         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
38166         cli_section_tables).
38167
38168 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
38169
38170         * metadata.c (mono_metadata_user_string): New function, provides
38171         access to the UserString heap. 
38172
38173 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
38174
38175         * metadata.c: Add inline documentation.
38176
38177 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
38178
38179         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
38180         files. 
38181
38182 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
38183
38184         * typeattr.h: New file, TypeAttribute flags. 
38185
38186 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
38187
38188         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
38189         mono_assembly_ensure_section): Section loading code.
38190         (load_section_tables): Load the sections.
38191
38192         * mono/metadata/metadata.c (mono_metadata_locate_token,
38193         mono_metadata_locate): Functions to locate the information
38194         definition given a token or a table and an index.
38195         (mono_metadata_compute_table_bases): New.
38196         (compute_size): New function to compute the sizes of the various
38197         tables.
38198
38199         * mono/metadata/metadata.h: Finish listing the different index
38200         types. 
38201
38202         * mono/metadata/pedump.c: Improve to dump new information.
38203
38204 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
38205
38206         * mono/metadata/metadata.c: Entered all the tables matching
38207         Beta2. 
38208
38209         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2